Class: Azure::BotService::Mgmt::V2018_07_12_preview::Models::BotProperties

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb

Overview

The parameters to provide for the Bot.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#configured_channelsArray<String>

configured

Returns:

  • (Array<String>)

    Collection of channels for which the bot is



35
36
37
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 35

def configured_channels
  @configured_channels
end

#descriptionString

Returns The description of the bot.

Returns:

  • (String)

    The description of the bot



19
20
21
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 19

def description
  @description
end

#developer_app_insight_keyString

Returns The Application Insights key.

Returns:

  • (String)

    The Application Insights key



42
43
44
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 42

def developer_app_insight_key
  @developer_app_insight_key
end

#developer_app_insights_api_keyString

Returns The Application Insights Api Key.

Returns:

  • (String)

    The Application Insights Api Key



45
46
47
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 45

def developer_app_insights_api_key
  @developer_app_insights_api_key
end

#developer_app_insights_application_idString

Returns The Application Insights App Id.

Returns:

  • (String)

    The Application Insights App Id



48
49
50
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 48

def developer_app_insights_application_id
  @developer_app_insights_application_id
end

#display_nameString

Returns The Name of the bot.

Returns:

  • (String)

    The Name of the bot



16
17
18
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 16

def display_name
  @display_name
end

#enabled_channelsArray<String>

enabled

Returns:

  • (Array<String>)

    Collection of channels for which the bot is



39
40
41
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 39

def enabled_channels
  @enabled_channels
end

#endpointString

Returns The bot’s endpoint.

Returns:

  • (String)

    The bot’s endpoint



25
26
27
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 25

def endpoint
  @endpoint
end

#endpoint_versionString

Returns The bot’s endpoint version.

Returns:

  • (String)

    The bot’s endpoint version



28
29
30
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 28

def endpoint_version
  @endpoint_version
end

#icon_urlString

Returns The Icon Url of the bot.

Returns:

  • (String)

    The Icon Url of the bot



22
23
24
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 22

def icon_url
  @icon_url
end

#luis_app_idsArray<String>

Returns Collection of LUIS App Ids.

Returns:

  • (Array<String>)

    Collection of LUIS App Ids



51
52
53
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 51

def luis_app_ids
  @luis_app_ids
end

#luis_keyString

Returns The LUIS Key.

Returns:

  • (String)

    The LUIS Key



54
55
56
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 54

def luis_key
  @luis_key
end

#msa_app_idString

Returns Microsoft App Id for the bot.

Returns:

  • (String)

    Microsoft App Id for the bot



31
32
33
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 31

def msa_app_id
  @msa_app_id
end

Class Method Details

.mapperObject

Mapper for BotProperties class as Ruby Hash. This will be used for serialization/deserialization.



61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/2018-07-12-preview/generated/azure_mgmt_bot_service/models/bot_properties.rb', line 61

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'BotProperties',
    type: {
      name: 'Composite',
      class_name: 'BotProperties',
      model_properties: {
        display_name: {
          client_side_validation: true,
          required: true,
          serialized_name: 'displayName',
          type: {
            name: 'String'
          }
        },
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'description',
          type: {
            name: 'String'
          }
        },
        icon_url: {
          client_side_validation: true,
          required: false,
          serialized_name: 'iconUrl',
          type: {
            name: 'String'
          }
        },
        endpoint: {
          client_side_validation: true,
          required: true,
          serialized_name: 'endpoint',
          type: {
            name: 'String'
          }
        },
        endpoint_version: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'endpointVersion',
          type: {
            name: 'String'
          }
        },
        msa_app_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'msaAppId',
          type: {
            name: 'String'
          }
        },
        configured_channels: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'configuredChannels',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        enabled_channels: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'enabledChannels',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        developer_app_insight_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'developerAppInsightKey',
          type: {
            name: 'String'
          }
        },
        developer_app_insights_api_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'developerAppInsightsApiKey',
          type: {
            name: 'String'
          }
        },
        developer_app_insights_application_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'developerAppInsightsApplicationId',
          type: {
            name: 'String'
          }
        },
        luis_app_ids: {
          client_side_validation: true,
          required: false,
          serialized_name: 'luisAppIds',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        luis_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'luisKey',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end