aws-sdk-chatbot 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-chatbot/client.rb +1511 -0
- data/lib/aws-sdk-chatbot/client_api.rb +785 -0
- data/lib/aws-sdk-chatbot/customizations.rb +0 -0
- data/lib/aws-sdk-chatbot/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-chatbot/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-chatbot/endpoints.rb +338 -0
- data/lib/aws-sdk-chatbot/errors.rb +346 -0
- data/lib/aws-sdk-chatbot/plugins/endpoints.rb +116 -0
- data/lib/aws-sdk-chatbot/resource.rb +26 -0
- data/lib/aws-sdk-chatbot/types.rb +1529 -0
- data/lib/aws-sdk-chatbot.rb +57 -0
- data/sig/client.rbs +364 -0
- data/sig/errors.rbs +72 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +454 -0
- data/sig/waiters.rbs +13 -0
- metadata +99 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,454 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Chatbot
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccountPreferences
|
12
|
+
attr_accessor user_authorization_required: bool
|
13
|
+
attr_accessor training_data_collection_enabled: bool
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class ChimeWebhookConfiguration
|
18
|
+
attr_accessor webhook_description: ::String
|
19
|
+
attr_accessor chat_configuration_arn: ::String
|
20
|
+
attr_accessor iam_role_arn: ::String
|
21
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
22
|
+
attr_accessor configuration_name: ::String
|
23
|
+
attr_accessor logging_level: ::String
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class ConfiguredTeam
|
28
|
+
attr_accessor tenant_id: ::String
|
29
|
+
attr_accessor team_id: ::String
|
30
|
+
attr_accessor team_name: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class ConflictException < Aws::EmptyStructure
|
35
|
+
end
|
36
|
+
|
37
|
+
class CreateChimeWebhookConfigurationException < Aws::EmptyStructure
|
38
|
+
end
|
39
|
+
|
40
|
+
class CreateChimeWebhookConfigurationRequest
|
41
|
+
attr_accessor webhook_description: ::String
|
42
|
+
attr_accessor webhook_url: ::String
|
43
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
44
|
+
attr_accessor iam_role_arn: ::String
|
45
|
+
attr_accessor configuration_name: ::String
|
46
|
+
attr_accessor logging_level: ::String
|
47
|
+
SENSITIVE: []
|
48
|
+
end
|
49
|
+
|
50
|
+
class CreateChimeWebhookConfigurationResult
|
51
|
+
attr_accessor webhook_configuration: Types::ChimeWebhookConfiguration
|
52
|
+
SENSITIVE: []
|
53
|
+
end
|
54
|
+
|
55
|
+
class CreateSlackChannelConfigurationException < Aws::EmptyStructure
|
56
|
+
end
|
57
|
+
|
58
|
+
class CreateSlackChannelConfigurationRequest
|
59
|
+
attr_accessor slack_team_id: ::String
|
60
|
+
attr_accessor slack_channel_id: ::String
|
61
|
+
attr_accessor slack_channel_name: ::String
|
62
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
63
|
+
attr_accessor iam_role_arn: ::String
|
64
|
+
attr_accessor configuration_name: ::String
|
65
|
+
attr_accessor logging_level: ::String
|
66
|
+
attr_accessor guardrail_policy_arns: ::Array[::String]
|
67
|
+
attr_accessor user_authorization_required: bool
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CreateSlackChannelConfigurationResult
|
72
|
+
attr_accessor channel_configuration: Types::SlackChannelConfiguration
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class CreateTeamsChannelConfigurationException < Aws::EmptyStructure
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateTeamsChannelConfigurationRequest
|
80
|
+
attr_accessor channel_id: ::String
|
81
|
+
attr_accessor channel_name: ::String
|
82
|
+
attr_accessor team_id: ::String
|
83
|
+
attr_accessor team_name: ::String
|
84
|
+
attr_accessor tenant_id: ::String
|
85
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
86
|
+
attr_accessor iam_role_arn: ::String
|
87
|
+
attr_accessor configuration_name: ::String
|
88
|
+
attr_accessor logging_level: ::String
|
89
|
+
attr_accessor guardrail_policy_arns: ::Array[::String]
|
90
|
+
attr_accessor user_authorization_required: bool
|
91
|
+
SENSITIVE: []
|
92
|
+
end
|
93
|
+
|
94
|
+
class CreateTeamsChannelConfigurationResult
|
95
|
+
attr_accessor channel_configuration: Types::TeamsChannelConfiguration
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class DeleteChimeWebhookConfigurationException < Aws::EmptyStructure
|
100
|
+
end
|
101
|
+
|
102
|
+
class DeleteChimeWebhookConfigurationRequest
|
103
|
+
attr_accessor chat_configuration_arn: ::String
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class DeleteChimeWebhookConfigurationResult < Aws::EmptyStructure
|
108
|
+
end
|
109
|
+
|
110
|
+
class DeleteMicrosoftTeamsUserIdentityException < Aws::EmptyStructure
|
111
|
+
end
|
112
|
+
|
113
|
+
class DeleteMicrosoftTeamsUserIdentityRequest
|
114
|
+
attr_accessor chat_configuration_arn: ::String
|
115
|
+
attr_accessor user_id: ::String
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class DeleteMicrosoftTeamsUserIdentityResult < Aws::EmptyStructure
|
120
|
+
end
|
121
|
+
|
122
|
+
class DeleteSlackChannelConfigurationException < Aws::EmptyStructure
|
123
|
+
end
|
124
|
+
|
125
|
+
class DeleteSlackChannelConfigurationRequest
|
126
|
+
attr_accessor chat_configuration_arn: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class DeleteSlackChannelConfigurationResult < Aws::EmptyStructure
|
131
|
+
end
|
132
|
+
|
133
|
+
class DeleteSlackUserIdentityException < Aws::EmptyStructure
|
134
|
+
end
|
135
|
+
|
136
|
+
class DeleteSlackUserIdentityRequest
|
137
|
+
attr_accessor chat_configuration_arn: ::String
|
138
|
+
attr_accessor slack_team_id: ::String
|
139
|
+
attr_accessor slack_user_id: ::String
|
140
|
+
SENSITIVE: []
|
141
|
+
end
|
142
|
+
|
143
|
+
class DeleteSlackUserIdentityResult < Aws::EmptyStructure
|
144
|
+
end
|
145
|
+
|
146
|
+
class DeleteSlackWorkspaceAuthorizationFault < Aws::EmptyStructure
|
147
|
+
end
|
148
|
+
|
149
|
+
class DeleteSlackWorkspaceAuthorizationRequest
|
150
|
+
attr_accessor slack_team_id: ::String
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class DeleteSlackWorkspaceAuthorizationResult < Aws::EmptyStructure
|
155
|
+
end
|
156
|
+
|
157
|
+
class DeleteTeamsChannelConfigurationException < Aws::EmptyStructure
|
158
|
+
end
|
159
|
+
|
160
|
+
class DeleteTeamsChannelConfigurationRequest
|
161
|
+
attr_accessor chat_configuration_arn: ::String
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class DeleteTeamsChannelConfigurationResult < Aws::EmptyStructure
|
166
|
+
end
|
167
|
+
|
168
|
+
class DeleteTeamsConfiguredTeamException < Aws::EmptyStructure
|
169
|
+
end
|
170
|
+
|
171
|
+
class DeleteTeamsConfiguredTeamRequest
|
172
|
+
attr_accessor team_id: ::String
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class DeleteTeamsConfiguredTeamResult < Aws::EmptyStructure
|
177
|
+
end
|
178
|
+
|
179
|
+
class DescribeChimeWebhookConfigurationsException < Aws::EmptyStructure
|
180
|
+
end
|
181
|
+
|
182
|
+
class DescribeChimeWebhookConfigurationsRequest
|
183
|
+
attr_accessor max_results: ::Integer
|
184
|
+
attr_accessor next_token: ::String
|
185
|
+
attr_accessor chat_configuration_arn: ::String
|
186
|
+
SENSITIVE: []
|
187
|
+
end
|
188
|
+
|
189
|
+
class DescribeChimeWebhookConfigurationsResult
|
190
|
+
attr_accessor next_token: ::String
|
191
|
+
attr_accessor webhook_configurations: ::Array[Types::ChimeWebhookConfiguration]
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class DescribeSlackChannelConfigurationsException < Aws::EmptyStructure
|
196
|
+
end
|
197
|
+
|
198
|
+
class DescribeSlackChannelConfigurationsRequest
|
199
|
+
attr_accessor max_results: ::Integer
|
200
|
+
attr_accessor next_token: ::String
|
201
|
+
attr_accessor chat_configuration_arn: ::String
|
202
|
+
SENSITIVE: []
|
203
|
+
end
|
204
|
+
|
205
|
+
class DescribeSlackChannelConfigurationsResult
|
206
|
+
attr_accessor next_token: ::String
|
207
|
+
attr_accessor slack_channel_configurations: ::Array[Types::SlackChannelConfiguration]
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class DescribeSlackUserIdentitiesException < Aws::EmptyStructure
|
212
|
+
end
|
213
|
+
|
214
|
+
class DescribeSlackUserIdentitiesRequest
|
215
|
+
attr_accessor chat_configuration_arn: ::String
|
216
|
+
attr_accessor next_token: ::String
|
217
|
+
attr_accessor max_results: ::Integer
|
218
|
+
SENSITIVE: []
|
219
|
+
end
|
220
|
+
|
221
|
+
class DescribeSlackUserIdentitiesResult
|
222
|
+
attr_accessor slack_user_identities: ::Array[Types::SlackUserIdentity]
|
223
|
+
attr_accessor next_token: ::String
|
224
|
+
SENSITIVE: []
|
225
|
+
end
|
226
|
+
|
227
|
+
class DescribeSlackWorkspacesException < Aws::EmptyStructure
|
228
|
+
end
|
229
|
+
|
230
|
+
class DescribeSlackWorkspacesRequest
|
231
|
+
attr_accessor max_results: ::Integer
|
232
|
+
attr_accessor next_token: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class DescribeSlackWorkspacesResult
|
237
|
+
attr_accessor slack_workspaces: ::Array[Types::SlackWorkspace]
|
238
|
+
attr_accessor next_token: ::String
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class GetAccountPreferencesException < Aws::EmptyStructure
|
243
|
+
end
|
244
|
+
|
245
|
+
class GetAccountPreferencesRequest < Aws::EmptyStructure
|
246
|
+
end
|
247
|
+
|
248
|
+
class GetAccountPreferencesResult
|
249
|
+
attr_accessor account_preferences: Types::AccountPreferences
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class GetTeamsChannelConfigurationException < Aws::EmptyStructure
|
254
|
+
end
|
255
|
+
|
256
|
+
class GetTeamsChannelConfigurationRequest
|
257
|
+
attr_accessor chat_configuration_arn: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class GetTeamsChannelConfigurationResult
|
262
|
+
attr_accessor channel_configuration: Types::TeamsChannelConfiguration
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class InvalidParameterException < Aws::EmptyStructure
|
267
|
+
end
|
268
|
+
|
269
|
+
class InvalidRequestException < Aws::EmptyStructure
|
270
|
+
end
|
271
|
+
|
272
|
+
class LimitExceededException < Aws::EmptyStructure
|
273
|
+
end
|
274
|
+
|
275
|
+
class ListMicrosoftTeamsConfiguredTeamsException < Aws::EmptyStructure
|
276
|
+
end
|
277
|
+
|
278
|
+
class ListMicrosoftTeamsConfiguredTeamsRequest
|
279
|
+
attr_accessor max_results: ::Integer
|
280
|
+
attr_accessor next_token: ::String
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class ListMicrosoftTeamsConfiguredTeamsResult
|
285
|
+
attr_accessor configured_teams: ::Array[Types::ConfiguredTeam]
|
286
|
+
attr_accessor next_token: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class ListMicrosoftTeamsUserIdentitiesException < Aws::EmptyStructure
|
291
|
+
end
|
292
|
+
|
293
|
+
class ListMicrosoftTeamsUserIdentitiesRequest
|
294
|
+
attr_accessor chat_configuration_arn: ::String
|
295
|
+
attr_accessor next_token: ::String
|
296
|
+
attr_accessor max_results: ::Integer
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class ListMicrosoftTeamsUserIdentitiesResult
|
301
|
+
attr_accessor teams_user_identities: ::Array[Types::TeamsUserIdentity]
|
302
|
+
attr_accessor next_token: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class ListTeamsChannelConfigurationsException < Aws::EmptyStructure
|
307
|
+
end
|
308
|
+
|
309
|
+
class ListTeamsChannelConfigurationsRequest
|
310
|
+
attr_accessor max_results: ::Integer
|
311
|
+
attr_accessor next_token: ::String
|
312
|
+
attr_accessor team_id: ::String
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class ListTeamsChannelConfigurationsResult
|
317
|
+
attr_accessor next_token: ::String
|
318
|
+
attr_accessor team_channel_configurations: ::Array[Types::TeamsChannelConfiguration]
|
319
|
+
SENSITIVE: []
|
320
|
+
end
|
321
|
+
|
322
|
+
class ResourceNotFoundException < Aws::EmptyStructure
|
323
|
+
end
|
324
|
+
|
325
|
+
class SlackChannelConfiguration
|
326
|
+
attr_accessor slack_team_name: ::String
|
327
|
+
attr_accessor slack_team_id: ::String
|
328
|
+
attr_accessor slack_channel_id: ::String
|
329
|
+
attr_accessor slack_channel_name: ::String
|
330
|
+
attr_accessor chat_configuration_arn: ::String
|
331
|
+
attr_accessor iam_role_arn: ::String
|
332
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
333
|
+
attr_accessor configuration_name: ::String
|
334
|
+
attr_accessor logging_level: ::String
|
335
|
+
attr_accessor guardrail_policy_arns: ::Array[::String]
|
336
|
+
attr_accessor user_authorization_required: bool
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class SlackUserIdentity
|
341
|
+
attr_accessor iam_role_arn: ::String
|
342
|
+
attr_accessor chat_configuration_arn: ::String
|
343
|
+
attr_accessor slack_team_id: ::String
|
344
|
+
attr_accessor slack_user_id: ::String
|
345
|
+
attr_accessor aws_user_identity: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class SlackWorkspace
|
350
|
+
attr_accessor slack_team_id: ::String
|
351
|
+
attr_accessor slack_team_name: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class TeamsChannelConfiguration
|
356
|
+
attr_accessor channel_id: ::String
|
357
|
+
attr_accessor channel_name: ::String
|
358
|
+
attr_accessor team_id: ::String
|
359
|
+
attr_accessor team_name: ::String
|
360
|
+
attr_accessor tenant_id: ::String
|
361
|
+
attr_accessor chat_configuration_arn: ::String
|
362
|
+
attr_accessor iam_role_arn: ::String
|
363
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
364
|
+
attr_accessor configuration_name: ::String
|
365
|
+
attr_accessor logging_level: ::String
|
366
|
+
attr_accessor guardrail_policy_arns: ::Array[::String]
|
367
|
+
attr_accessor user_authorization_required: bool
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class TeamsUserIdentity
|
372
|
+
attr_accessor iam_role_arn: ::String
|
373
|
+
attr_accessor chat_configuration_arn: ::String
|
374
|
+
attr_accessor team_id: ::String
|
375
|
+
attr_accessor user_id: ::String
|
376
|
+
attr_accessor aws_user_identity: ::String
|
377
|
+
attr_accessor teams_channel_id: ::String
|
378
|
+
attr_accessor teams_tenant_id: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class UpdateAccountPreferencesException < Aws::EmptyStructure
|
383
|
+
end
|
384
|
+
|
385
|
+
class UpdateAccountPreferencesRequest
|
386
|
+
attr_accessor user_authorization_required: bool
|
387
|
+
attr_accessor training_data_collection_enabled: bool
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class UpdateAccountPreferencesResult
|
392
|
+
attr_accessor account_preferences: Types::AccountPreferences
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class UpdateChimeWebhookConfigurationException < Aws::EmptyStructure
|
397
|
+
end
|
398
|
+
|
399
|
+
class UpdateChimeWebhookConfigurationRequest
|
400
|
+
attr_accessor chat_configuration_arn: ::String
|
401
|
+
attr_accessor webhook_description: ::String
|
402
|
+
attr_accessor webhook_url: ::String
|
403
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
404
|
+
attr_accessor iam_role_arn: ::String
|
405
|
+
attr_accessor logging_level: ::String
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class UpdateChimeWebhookConfigurationResult
|
410
|
+
attr_accessor webhook_configuration: Types::ChimeWebhookConfiguration
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class UpdateSlackChannelConfigurationException < Aws::EmptyStructure
|
415
|
+
end
|
416
|
+
|
417
|
+
class UpdateSlackChannelConfigurationRequest
|
418
|
+
attr_accessor chat_configuration_arn: ::String
|
419
|
+
attr_accessor slack_channel_id: ::String
|
420
|
+
attr_accessor slack_channel_name: ::String
|
421
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
422
|
+
attr_accessor iam_role_arn: ::String
|
423
|
+
attr_accessor logging_level: ::String
|
424
|
+
attr_accessor guardrail_policy_arns: ::Array[::String]
|
425
|
+
attr_accessor user_authorization_required: bool
|
426
|
+
SENSITIVE: []
|
427
|
+
end
|
428
|
+
|
429
|
+
class UpdateSlackChannelConfigurationResult
|
430
|
+
attr_accessor channel_configuration: Types::SlackChannelConfiguration
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class UpdateTeamsChannelConfigurationException < Aws::EmptyStructure
|
435
|
+
end
|
436
|
+
|
437
|
+
class UpdateTeamsChannelConfigurationRequest
|
438
|
+
attr_accessor chat_configuration_arn: ::String
|
439
|
+
attr_accessor channel_id: ::String
|
440
|
+
attr_accessor channel_name: ::String
|
441
|
+
attr_accessor sns_topic_arns: ::Array[::String]
|
442
|
+
attr_accessor iam_role_arn: ::String
|
443
|
+
attr_accessor logging_level: ::String
|
444
|
+
attr_accessor guardrail_policy_arns: ::Array[::String]
|
445
|
+
attr_accessor user_authorization_required: bool
|
446
|
+
SENSITIVE: []
|
447
|
+
end
|
448
|
+
|
449
|
+
class UpdateTeamsChannelConfigurationResult
|
450
|
+
attr_accessor channel_configuration: Types::TeamsChannelConfiguration
|
451
|
+
SENSITIVE: []
|
452
|
+
end
|
453
|
+
end
|
454
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module Chatbot
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,99 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-chatbot
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-02-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.191.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.191.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.1'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.1'
|
47
|
+
description: Official AWS Ruby gem for chatbot. This gem is part of the AWS SDK for
|
48
|
+
Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-chatbot.rb
|
59
|
+
- lib/aws-sdk-chatbot/client.rb
|
60
|
+
- lib/aws-sdk-chatbot/client_api.rb
|
61
|
+
- lib/aws-sdk-chatbot/customizations.rb
|
62
|
+
- lib/aws-sdk-chatbot/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-chatbot/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-chatbot/endpoints.rb
|
65
|
+
- lib/aws-sdk-chatbot/errors.rb
|
66
|
+
- lib/aws-sdk-chatbot/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-chatbot/resource.rb
|
68
|
+
- lib/aws-sdk-chatbot/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
75
|
+
licenses:
|
76
|
+
- Apache-2.0
|
77
|
+
metadata:
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chatbot
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chatbot/CHANGELOG.md
|
80
|
+
post_install_message:
|
81
|
+
rdoc_options: []
|
82
|
+
require_paths:
|
83
|
+
- lib
|
84
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '2.5'
|
89
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
|
+
requirements:
|
91
|
+
- - ">="
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
requirements: []
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
97
|
+
specification_version: 4
|
98
|
+
summary: AWS SDK for Ruby - chatbot
|
99
|
+
test_files: []
|