aws-sdk-chimesdkidentity 1.10.0 → 1.12.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 +4 -4
- data/CHANGELOG.md +12 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkidentity/client.rb +283 -15
- data/lib/aws-sdk-chimesdkidentity/client_api.rb +204 -2
- data/lib/aws-sdk-chimesdkidentity/endpoint_provider.rb +38 -96
- data/lib/aws-sdk-chimesdkidentity/endpoints.rb +84 -0
- data/lib/aws-sdk-chimesdkidentity/errors.rb +21 -0
- data/lib/aws-sdk-chimesdkidentity/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-chimesdkidentity/types.rb +383 -263
- data/lib/aws-sdk-chimesdkidentity.rb +1 -1
- metadata +2 -2
@@ -39,6 +39,20 @@ module Aws::ChimeSDKIdentity
|
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
+
class CreateAppInstanceBot
|
43
|
+
def self.build(context)
|
44
|
+
unless context.config.regional_endpoint
|
45
|
+
endpoint = context.config.endpoint.to_s
|
46
|
+
end
|
47
|
+
Aws::ChimeSDKIdentity::EndpointParameters.new(
|
48
|
+
region: context.config.region,
|
49
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
50
|
+
use_fips: context.config.use_fips_endpoint,
|
51
|
+
endpoint: endpoint,
|
52
|
+
)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
42
56
|
class CreateAppInstanceUser
|
43
57
|
def self.build(context)
|
44
58
|
unless context.config.regional_endpoint
|
@@ -81,6 +95,20 @@ module Aws::ChimeSDKIdentity
|
|
81
95
|
end
|
82
96
|
end
|
83
97
|
|
98
|
+
class DeleteAppInstanceBot
|
99
|
+
def self.build(context)
|
100
|
+
unless context.config.regional_endpoint
|
101
|
+
endpoint = context.config.endpoint.to_s
|
102
|
+
end
|
103
|
+
Aws::ChimeSDKIdentity::EndpointParameters.new(
|
104
|
+
region: context.config.region,
|
105
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
106
|
+
use_fips: context.config.use_fips_endpoint,
|
107
|
+
endpoint: endpoint,
|
108
|
+
)
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
84
112
|
class DeleteAppInstanceUser
|
85
113
|
def self.build(context)
|
86
114
|
unless context.config.regional_endpoint
|
@@ -137,6 +165,20 @@ module Aws::ChimeSDKIdentity
|
|
137
165
|
end
|
138
166
|
end
|
139
167
|
|
168
|
+
class DescribeAppInstanceBot
|
169
|
+
def self.build(context)
|
170
|
+
unless context.config.regional_endpoint
|
171
|
+
endpoint = context.config.endpoint.to_s
|
172
|
+
end
|
173
|
+
Aws::ChimeSDKIdentity::EndpointParameters.new(
|
174
|
+
region: context.config.region,
|
175
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
176
|
+
use_fips: context.config.use_fips_endpoint,
|
177
|
+
endpoint: endpoint,
|
178
|
+
)
|
179
|
+
end
|
180
|
+
end
|
181
|
+
|
140
182
|
class DescribeAppInstanceUser
|
141
183
|
def self.build(context)
|
142
184
|
unless context.config.regional_endpoint
|
@@ -193,6 +235,20 @@ module Aws::ChimeSDKIdentity
|
|
193
235
|
end
|
194
236
|
end
|
195
237
|
|
238
|
+
class ListAppInstanceBots
|
239
|
+
def self.build(context)
|
240
|
+
unless context.config.regional_endpoint
|
241
|
+
endpoint = context.config.endpoint.to_s
|
242
|
+
end
|
243
|
+
Aws::ChimeSDKIdentity::EndpointParameters.new(
|
244
|
+
region: context.config.region,
|
245
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
246
|
+
use_fips: context.config.use_fips_endpoint,
|
247
|
+
endpoint: endpoint,
|
248
|
+
)
|
249
|
+
end
|
250
|
+
end
|
251
|
+
|
196
252
|
class ListAppInstanceUserEndpoints
|
197
253
|
def self.build(context)
|
198
254
|
unless context.config.regional_endpoint
|
@@ -263,6 +319,20 @@ module Aws::ChimeSDKIdentity
|
|
263
319
|
end
|
264
320
|
end
|
265
321
|
|
322
|
+
class PutAppInstanceUserExpirationSettings
|
323
|
+
def self.build(context)
|
324
|
+
unless context.config.regional_endpoint
|
325
|
+
endpoint = context.config.endpoint.to_s
|
326
|
+
end
|
327
|
+
Aws::ChimeSDKIdentity::EndpointParameters.new(
|
328
|
+
region: context.config.region,
|
329
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
330
|
+
use_fips: context.config.use_fips_endpoint,
|
331
|
+
endpoint: endpoint,
|
332
|
+
)
|
333
|
+
end
|
334
|
+
end
|
335
|
+
|
266
336
|
class RegisterAppInstanceUserEndpoint
|
267
337
|
def self.build(context)
|
268
338
|
unless context.config.regional_endpoint
|
@@ -319,6 +389,20 @@ module Aws::ChimeSDKIdentity
|
|
319
389
|
end
|
320
390
|
end
|
321
391
|
|
392
|
+
class UpdateAppInstanceBot
|
393
|
+
def self.build(context)
|
394
|
+
unless context.config.regional_endpoint
|
395
|
+
endpoint = context.config.endpoint.to_s
|
396
|
+
end
|
397
|
+
Aws::ChimeSDKIdentity::EndpointParameters.new(
|
398
|
+
region: context.config.region,
|
399
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
400
|
+
use_fips: context.config.use_fips_endpoint,
|
401
|
+
endpoint: endpoint,
|
402
|
+
)
|
403
|
+
end
|
404
|
+
end
|
405
|
+
|
322
406
|
class UpdateAppInstanceUser
|
323
407
|
def self.build(context)
|
324
408
|
unless context.config.regional_endpoint
|
@@ -30,6 +30,7 @@ module Aws::ChimeSDKIdentity
|
|
30
30
|
# * {BadRequestException}
|
31
31
|
# * {ConflictException}
|
32
32
|
# * {ForbiddenException}
|
33
|
+
# * {NotFoundException}
|
33
34
|
# * {ResourceLimitExceededException}
|
34
35
|
# * {ServiceFailureException}
|
35
36
|
# * {ServiceUnavailableException}
|
@@ -102,6 +103,26 @@ module Aws::ChimeSDKIdentity
|
|
102
103
|
end
|
103
104
|
end
|
104
105
|
|
106
|
+
class NotFoundException < ServiceError
|
107
|
+
|
108
|
+
# @param [Seahorse::Client::RequestContext] context
|
109
|
+
# @param [String] message
|
110
|
+
# @param [Aws::ChimeSDKIdentity::Types::NotFoundException] data
|
111
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
112
|
+
super(context, message, data)
|
113
|
+
end
|
114
|
+
|
115
|
+
# @return [String]
|
116
|
+
def code
|
117
|
+
@code || @data[:code]
|
118
|
+
end
|
119
|
+
|
120
|
+
# @return [String]
|
121
|
+
def message
|
122
|
+
@message || @data[:message]
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
105
126
|
class ResourceLimitExceededException < ServiceError
|
106
127
|
|
107
128
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -60,12 +60,16 @@ module Aws::ChimeSDKIdentity
|
|
60
60
|
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstance.build(context)
|
61
61
|
when :create_app_instance_admin
|
62
62
|
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstanceAdmin.build(context)
|
63
|
+
when :create_app_instance_bot
|
64
|
+
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstanceBot.build(context)
|
63
65
|
when :create_app_instance_user
|
64
66
|
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstanceUser.build(context)
|
65
67
|
when :delete_app_instance
|
66
68
|
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstance.build(context)
|
67
69
|
when :delete_app_instance_admin
|
68
70
|
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstanceAdmin.build(context)
|
71
|
+
when :delete_app_instance_bot
|
72
|
+
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstanceBot.build(context)
|
69
73
|
when :delete_app_instance_user
|
70
74
|
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstanceUser.build(context)
|
71
75
|
when :deregister_app_instance_user_endpoint
|
@@ -74,6 +78,8 @@ module Aws::ChimeSDKIdentity
|
|
74
78
|
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstance.build(context)
|
75
79
|
when :describe_app_instance_admin
|
76
80
|
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstanceAdmin.build(context)
|
81
|
+
when :describe_app_instance_bot
|
82
|
+
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstanceBot.build(context)
|
77
83
|
when :describe_app_instance_user
|
78
84
|
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstanceUser.build(context)
|
79
85
|
when :describe_app_instance_user_endpoint
|
@@ -82,6 +88,8 @@ module Aws::ChimeSDKIdentity
|
|
82
88
|
Aws::ChimeSDKIdentity::Endpoints::GetAppInstanceRetentionSettings.build(context)
|
83
89
|
when :list_app_instance_admins
|
84
90
|
Aws::ChimeSDKIdentity::Endpoints::ListAppInstanceAdmins.build(context)
|
91
|
+
when :list_app_instance_bots
|
92
|
+
Aws::ChimeSDKIdentity::Endpoints::ListAppInstanceBots.build(context)
|
85
93
|
when :list_app_instance_user_endpoints
|
86
94
|
Aws::ChimeSDKIdentity::Endpoints::ListAppInstanceUserEndpoints.build(context)
|
87
95
|
when :list_app_instance_users
|
@@ -92,6 +100,8 @@ module Aws::ChimeSDKIdentity
|
|
92
100
|
Aws::ChimeSDKIdentity::Endpoints::ListTagsForResource.build(context)
|
93
101
|
when :put_app_instance_retention_settings
|
94
102
|
Aws::ChimeSDKIdentity::Endpoints::PutAppInstanceRetentionSettings.build(context)
|
103
|
+
when :put_app_instance_user_expiration_settings
|
104
|
+
Aws::ChimeSDKIdentity::Endpoints::PutAppInstanceUserExpirationSettings.build(context)
|
95
105
|
when :register_app_instance_user_endpoint
|
96
106
|
Aws::ChimeSDKIdentity::Endpoints::RegisterAppInstanceUserEndpoint.build(context)
|
97
107
|
when :tag_resource
|
@@ -100,6 +110,8 @@ module Aws::ChimeSDKIdentity
|
|
100
110
|
Aws::ChimeSDKIdentity::Endpoints::UntagResource.build(context)
|
101
111
|
when :update_app_instance
|
102
112
|
Aws::ChimeSDKIdentity::Endpoints::UpdateAppInstance.build(context)
|
113
|
+
when :update_app_instance_bot
|
114
|
+
Aws::ChimeSDKIdentity::Endpoints::UpdateAppInstanceBot.build(context)
|
103
115
|
when :update_app_instance_user
|
104
116
|
Aws::ChimeSDKIdentity::Endpoints::UpdateAppInstanceUser.build(context)
|
105
117
|
when :update_app_instance_user_endpoint
|