aws-sdk-chimesdkidentity 1.21.0 → 1.23.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkidentity/client.rb +70 -46
- data/lib/aws-sdk-chimesdkidentity/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-chimesdkidentity.rb +1 -1
- data/sig/client.rbs +466 -0
- data/sig/errors.rbs +52 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +538 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/client.rbs
ADDED
@@ -0,0 +1,466 @@
|
|
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 ChimeSDKIdentity
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> instance
|
72
|
+
| (?Hash[Symbol, untyped]) -> instance
|
73
|
+
|
74
|
+
|
75
|
+
interface _CreateAppInstanceResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppInstanceResponse]
|
77
|
+
def app_instance_arn: () -> ::String
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#create_app_instance-instance_method
|
80
|
+
def create_app_instance: (
|
81
|
+
name: ::String,
|
82
|
+
?metadata: ::String,
|
83
|
+
client_request_token: ::String,
|
84
|
+
?tags: Array[
|
85
|
+
{
|
86
|
+
key: ::String,
|
87
|
+
value: ::String
|
88
|
+
},
|
89
|
+
]
|
90
|
+
) -> _CreateAppInstanceResponseSuccess
|
91
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppInstanceResponseSuccess
|
92
|
+
|
93
|
+
interface _CreateAppInstanceAdminResponseSuccess
|
94
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppInstanceAdminResponse]
|
95
|
+
def app_instance_admin: () -> Types::Identity
|
96
|
+
def app_instance_arn: () -> ::String
|
97
|
+
end
|
98
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#create_app_instance_admin-instance_method
|
99
|
+
def create_app_instance_admin: (
|
100
|
+
app_instance_admin_arn: ::String,
|
101
|
+
app_instance_arn: ::String
|
102
|
+
) -> _CreateAppInstanceAdminResponseSuccess
|
103
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppInstanceAdminResponseSuccess
|
104
|
+
|
105
|
+
interface _CreateAppInstanceBotResponseSuccess
|
106
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppInstanceBotResponse]
|
107
|
+
def app_instance_bot_arn: () -> ::String
|
108
|
+
end
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#create_app_instance_bot-instance_method
|
110
|
+
def create_app_instance_bot: (
|
111
|
+
app_instance_arn: ::String,
|
112
|
+
?name: ::String,
|
113
|
+
?metadata: ::String,
|
114
|
+
client_request_token: ::String,
|
115
|
+
?tags: Array[
|
116
|
+
{
|
117
|
+
key: ::String,
|
118
|
+
value: ::String
|
119
|
+
},
|
120
|
+
],
|
121
|
+
configuration: {
|
122
|
+
lex: {
|
123
|
+
responds_to: ("STANDARD_MESSAGES")?,
|
124
|
+
invoked_by: {
|
125
|
+
standard_messages: ("AUTO" | "ALL" | "MENTIONS" | "NONE"),
|
126
|
+
targeted_messages: ("ALL" | "NONE")
|
127
|
+
}?,
|
128
|
+
lex_bot_alias_arn: ::String,
|
129
|
+
locale_id: ::String,
|
130
|
+
welcome_intent: ::String?
|
131
|
+
}
|
132
|
+
}
|
133
|
+
) -> _CreateAppInstanceBotResponseSuccess
|
134
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppInstanceBotResponseSuccess
|
135
|
+
|
136
|
+
interface _CreateAppInstanceUserResponseSuccess
|
137
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAppInstanceUserResponse]
|
138
|
+
def app_instance_user_arn: () -> ::String
|
139
|
+
end
|
140
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#create_app_instance_user-instance_method
|
141
|
+
def create_app_instance_user: (
|
142
|
+
app_instance_arn: ::String,
|
143
|
+
app_instance_user_id: ::String,
|
144
|
+
name: ::String,
|
145
|
+
?metadata: ::String,
|
146
|
+
client_request_token: ::String,
|
147
|
+
?tags: Array[
|
148
|
+
{
|
149
|
+
key: ::String,
|
150
|
+
value: ::String
|
151
|
+
},
|
152
|
+
],
|
153
|
+
?expiration_settings: {
|
154
|
+
expiration_days: ::Integer,
|
155
|
+
expiration_criterion: ("CREATED_TIMESTAMP")
|
156
|
+
}
|
157
|
+
) -> _CreateAppInstanceUserResponseSuccess
|
158
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAppInstanceUserResponseSuccess
|
159
|
+
|
160
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#delete_app_instance-instance_method
|
161
|
+
def delete_app_instance: (
|
162
|
+
app_instance_arn: ::String
|
163
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
164
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
165
|
+
|
166
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#delete_app_instance_admin-instance_method
|
167
|
+
def delete_app_instance_admin: (
|
168
|
+
app_instance_admin_arn: ::String,
|
169
|
+
app_instance_arn: ::String
|
170
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
171
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
172
|
+
|
173
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#delete_app_instance_bot-instance_method
|
174
|
+
def delete_app_instance_bot: (
|
175
|
+
app_instance_bot_arn: ::String
|
176
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
177
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
178
|
+
|
179
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#delete_app_instance_user-instance_method
|
180
|
+
def delete_app_instance_user: (
|
181
|
+
app_instance_user_arn: ::String
|
182
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
183
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
184
|
+
|
185
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#deregister_app_instance_user_endpoint-instance_method
|
186
|
+
def deregister_app_instance_user_endpoint: (
|
187
|
+
app_instance_user_arn: ::String,
|
188
|
+
endpoint_id: ::String
|
189
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
190
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
191
|
+
|
192
|
+
interface _DescribeAppInstanceResponseSuccess
|
193
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppInstanceResponse]
|
194
|
+
def app_instance: () -> Types::AppInstance
|
195
|
+
end
|
196
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#describe_app_instance-instance_method
|
197
|
+
def describe_app_instance: (
|
198
|
+
app_instance_arn: ::String
|
199
|
+
) -> _DescribeAppInstanceResponseSuccess
|
200
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppInstanceResponseSuccess
|
201
|
+
|
202
|
+
interface _DescribeAppInstanceAdminResponseSuccess
|
203
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppInstanceAdminResponse]
|
204
|
+
def app_instance_admin: () -> Types::AppInstanceAdmin
|
205
|
+
end
|
206
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#describe_app_instance_admin-instance_method
|
207
|
+
def describe_app_instance_admin: (
|
208
|
+
app_instance_admin_arn: ::String,
|
209
|
+
app_instance_arn: ::String
|
210
|
+
) -> _DescribeAppInstanceAdminResponseSuccess
|
211
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppInstanceAdminResponseSuccess
|
212
|
+
|
213
|
+
interface _DescribeAppInstanceBotResponseSuccess
|
214
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppInstanceBotResponse]
|
215
|
+
def app_instance_bot: () -> Types::AppInstanceBot
|
216
|
+
end
|
217
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#describe_app_instance_bot-instance_method
|
218
|
+
def describe_app_instance_bot: (
|
219
|
+
app_instance_bot_arn: ::String
|
220
|
+
) -> _DescribeAppInstanceBotResponseSuccess
|
221
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppInstanceBotResponseSuccess
|
222
|
+
|
223
|
+
interface _DescribeAppInstanceUserResponseSuccess
|
224
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppInstanceUserResponse]
|
225
|
+
def app_instance_user: () -> Types::AppInstanceUser
|
226
|
+
end
|
227
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#describe_app_instance_user-instance_method
|
228
|
+
def describe_app_instance_user: (
|
229
|
+
app_instance_user_arn: ::String
|
230
|
+
) -> _DescribeAppInstanceUserResponseSuccess
|
231
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppInstanceUserResponseSuccess
|
232
|
+
|
233
|
+
interface _DescribeAppInstanceUserEndpointResponseSuccess
|
234
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppInstanceUserEndpointResponse]
|
235
|
+
def app_instance_user_endpoint: () -> Types::AppInstanceUserEndpoint
|
236
|
+
end
|
237
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#describe_app_instance_user_endpoint-instance_method
|
238
|
+
def describe_app_instance_user_endpoint: (
|
239
|
+
app_instance_user_arn: ::String,
|
240
|
+
endpoint_id: ::String
|
241
|
+
) -> _DescribeAppInstanceUserEndpointResponseSuccess
|
242
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppInstanceUserEndpointResponseSuccess
|
243
|
+
|
244
|
+
interface _GetAppInstanceRetentionSettingsResponseSuccess
|
245
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAppInstanceRetentionSettingsResponse]
|
246
|
+
def app_instance_retention_settings: () -> Types::AppInstanceRetentionSettings
|
247
|
+
def initiate_deletion_timestamp: () -> ::Time
|
248
|
+
end
|
249
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#get_app_instance_retention_settings-instance_method
|
250
|
+
def get_app_instance_retention_settings: (
|
251
|
+
app_instance_arn: ::String
|
252
|
+
) -> _GetAppInstanceRetentionSettingsResponseSuccess
|
253
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAppInstanceRetentionSettingsResponseSuccess
|
254
|
+
|
255
|
+
interface _ListAppInstanceAdminsResponseSuccess
|
256
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAppInstanceAdminsResponse]
|
257
|
+
def app_instance_arn: () -> ::String
|
258
|
+
def app_instance_admins: () -> ::Array[Types::AppInstanceAdminSummary]
|
259
|
+
def next_token: () -> ::String
|
260
|
+
end
|
261
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#list_app_instance_admins-instance_method
|
262
|
+
def list_app_instance_admins: (
|
263
|
+
app_instance_arn: ::String,
|
264
|
+
?max_results: ::Integer,
|
265
|
+
?next_token: ::String
|
266
|
+
) -> _ListAppInstanceAdminsResponseSuccess
|
267
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppInstanceAdminsResponseSuccess
|
268
|
+
|
269
|
+
interface _ListAppInstanceBotsResponseSuccess
|
270
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAppInstanceBotsResponse]
|
271
|
+
def app_instance_arn: () -> ::String
|
272
|
+
def app_instance_bots: () -> ::Array[Types::AppInstanceBotSummary]
|
273
|
+
def next_token: () -> ::String
|
274
|
+
end
|
275
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#list_app_instance_bots-instance_method
|
276
|
+
def list_app_instance_bots: (
|
277
|
+
app_instance_arn: ::String,
|
278
|
+
?max_results: ::Integer,
|
279
|
+
?next_token: ::String
|
280
|
+
) -> _ListAppInstanceBotsResponseSuccess
|
281
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppInstanceBotsResponseSuccess
|
282
|
+
|
283
|
+
interface _ListAppInstanceUserEndpointsResponseSuccess
|
284
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAppInstanceUserEndpointsResponse]
|
285
|
+
def app_instance_user_endpoints: () -> ::Array[Types::AppInstanceUserEndpointSummary]
|
286
|
+
def next_token: () -> ::String
|
287
|
+
end
|
288
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#list_app_instance_user_endpoints-instance_method
|
289
|
+
def list_app_instance_user_endpoints: (
|
290
|
+
app_instance_user_arn: ::String,
|
291
|
+
?max_results: ::Integer,
|
292
|
+
?next_token: ::String
|
293
|
+
) -> _ListAppInstanceUserEndpointsResponseSuccess
|
294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppInstanceUserEndpointsResponseSuccess
|
295
|
+
|
296
|
+
interface _ListAppInstanceUsersResponseSuccess
|
297
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAppInstanceUsersResponse]
|
298
|
+
def app_instance_arn: () -> ::String
|
299
|
+
def app_instance_users: () -> ::Array[Types::AppInstanceUserSummary]
|
300
|
+
def next_token: () -> ::String
|
301
|
+
end
|
302
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#list_app_instance_users-instance_method
|
303
|
+
def list_app_instance_users: (
|
304
|
+
app_instance_arn: ::String,
|
305
|
+
?max_results: ::Integer,
|
306
|
+
?next_token: ::String
|
307
|
+
) -> _ListAppInstanceUsersResponseSuccess
|
308
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppInstanceUsersResponseSuccess
|
309
|
+
|
310
|
+
interface _ListAppInstancesResponseSuccess
|
311
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAppInstancesResponse]
|
312
|
+
def app_instances: () -> ::Array[Types::AppInstanceSummary]
|
313
|
+
def next_token: () -> ::String
|
314
|
+
end
|
315
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#list_app_instances-instance_method
|
316
|
+
def list_app_instances: (
|
317
|
+
?max_results: ::Integer,
|
318
|
+
?next_token: ::String
|
319
|
+
) -> _ListAppInstancesResponseSuccess
|
320
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAppInstancesResponseSuccess
|
321
|
+
|
322
|
+
interface _ListTagsForResourceResponseSuccess
|
323
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
324
|
+
def tags: () -> ::Array[Types::Tag]
|
325
|
+
end
|
326
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#list_tags_for_resource-instance_method
|
327
|
+
def list_tags_for_resource: (
|
328
|
+
resource_arn: ::String
|
329
|
+
) -> _ListTagsForResourceResponseSuccess
|
330
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
331
|
+
|
332
|
+
interface _PutAppInstanceRetentionSettingsResponseSuccess
|
333
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutAppInstanceRetentionSettingsResponse]
|
334
|
+
def app_instance_retention_settings: () -> Types::AppInstanceRetentionSettings
|
335
|
+
def initiate_deletion_timestamp: () -> ::Time
|
336
|
+
end
|
337
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#put_app_instance_retention_settings-instance_method
|
338
|
+
def put_app_instance_retention_settings: (
|
339
|
+
app_instance_arn: ::String,
|
340
|
+
app_instance_retention_settings: {
|
341
|
+
channel_retention_settings: {
|
342
|
+
retention_days: ::Integer?
|
343
|
+
}?
|
344
|
+
}
|
345
|
+
) -> _PutAppInstanceRetentionSettingsResponseSuccess
|
346
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAppInstanceRetentionSettingsResponseSuccess
|
347
|
+
|
348
|
+
interface _PutAppInstanceUserExpirationSettingsResponseSuccess
|
349
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutAppInstanceUserExpirationSettingsResponse]
|
350
|
+
def app_instance_user_arn: () -> ::String
|
351
|
+
def expiration_settings: () -> Types::ExpirationSettings
|
352
|
+
end
|
353
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#put_app_instance_user_expiration_settings-instance_method
|
354
|
+
def put_app_instance_user_expiration_settings: (
|
355
|
+
app_instance_user_arn: ::String,
|
356
|
+
?expiration_settings: {
|
357
|
+
expiration_days: ::Integer,
|
358
|
+
expiration_criterion: ("CREATED_TIMESTAMP")
|
359
|
+
}
|
360
|
+
) -> _PutAppInstanceUserExpirationSettingsResponseSuccess
|
361
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutAppInstanceUserExpirationSettingsResponseSuccess
|
362
|
+
|
363
|
+
interface _RegisterAppInstanceUserEndpointResponseSuccess
|
364
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RegisterAppInstanceUserEndpointResponse]
|
365
|
+
def app_instance_user_arn: () -> ::String
|
366
|
+
def endpoint_id: () -> ::String
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#register_app_instance_user_endpoint-instance_method
|
369
|
+
def register_app_instance_user_endpoint: (
|
370
|
+
app_instance_user_arn: ::String,
|
371
|
+
?name: ::String,
|
372
|
+
type: ("APNS" | "APNS_SANDBOX" | "GCM"),
|
373
|
+
resource_arn: ::String,
|
374
|
+
endpoint_attributes: {
|
375
|
+
device_token: ::String,
|
376
|
+
voip_device_token: ::String?
|
377
|
+
},
|
378
|
+
client_request_token: ::String,
|
379
|
+
?allow_messages: ("ALL" | "NONE")
|
380
|
+
) -> _RegisterAppInstanceUserEndpointResponseSuccess
|
381
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterAppInstanceUserEndpointResponseSuccess
|
382
|
+
|
383
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#tag_resource-instance_method
|
384
|
+
def tag_resource: (
|
385
|
+
resource_arn: ::String,
|
386
|
+
tags: Array[
|
387
|
+
{
|
388
|
+
key: ::String,
|
389
|
+
value: ::String
|
390
|
+
},
|
391
|
+
]
|
392
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
393
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
394
|
+
|
395
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#untag_resource-instance_method
|
396
|
+
def untag_resource: (
|
397
|
+
resource_arn: ::String,
|
398
|
+
tag_keys: Array[::String]
|
399
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
400
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
401
|
+
|
402
|
+
interface _UpdateAppInstanceResponseSuccess
|
403
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppInstanceResponse]
|
404
|
+
def app_instance_arn: () -> ::String
|
405
|
+
end
|
406
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#update_app_instance-instance_method
|
407
|
+
def update_app_instance: (
|
408
|
+
app_instance_arn: ::String,
|
409
|
+
name: ::String,
|
410
|
+
metadata: ::String
|
411
|
+
) -> _UpdateAppInstanceResponseSuccess
|
412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppInstanceResponseSuccess
|
413
|
+
|
414
|
+
interface _UpdateAppInstanceBotResponseSuccess
|
415
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppInstanceBotResponse]
|
416
|
+
def app_instance_bot_arn: () -> ::String
|
417
|
+
end
|
418
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#update_app_instance_bot-instance_method
|
419
|
+
def update_app_instance_bot: (
|
420
|
+
app_instance_bot_arn: ::String,
|
421
|
+
name: ::String,
|
422
|
+
metadata: ::String,
|
423
|
+
?configuration: {
|
424
|
+
lex: {
|
425
|
+
responds_to: ("STANDARD_MESSAGES")?,
|
426
|
+
invoked_by: {
|
427
|
+
standard_messages: ("AUTO" | "ALL" | "MENTIONS" | "NONE"),
|
428
|
+
targeted_messages: ("ALL" | "NONE")
|
429
|
+
}?,
|
430
|
+
lex_bot_alias_arn: ::String,
|
431
|
+
locale_id: ::String,
|
432
|
+
welcome_intent: ::String?
|
433
|
+
}
|
434
|
+
}
|
435
|
+
) -> _UpdateAppInstanceBotResponseSuccess
|
436
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppInstanceBotResponseSuccess
|
437
|
+
|
438
|
+
interface _UpdateAppInstanceUserResponseSuccess
|
439
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppInstanceUserResponse]
|
440
|
+
def app_instance_user_arn: () -> ::String
|
441
|
+
end
|
442
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#update_app_instance_user-instance_method
|
443
|
+
def update_app_instance_user: (
|
444
|
+
app_instance_user_arn: ::String,
|
445
|
+
name: ::String,
|
446
|
+
metadata: ::String
|
447
|
+
) -> _UpdateAppInstanceUserResponseSuccess
|
448
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppInstanceUserResponseSuccess
|
449
|
+
|
450
|
+
interface _UpdateAppInstanceUserEndpointResponseSuccess
|
451
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAppInstanceUserEndpointResponse]
|
452
|
+
def app_instance_user_arn: () -> ::String
|
453
|
+
def endpoint_id: () -> ::String
|
454
|
+
end
|
455
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Client.html#update_app_instance_user_endpoint-instance_method
|
456
|
+
def update_app_instance_user_endpoint: (
|
457
|
+
app_instance_user_arn: ::String,
|
458
|
+
endpoint_id: ::String,
|
459
|
+
?name: ::String,
|
460
|
+
?allow_messages: ("ALL" | "NONE")
|
461
|
+
) -> _UpdateAppInstanceUserEndpointResponseSuccess
|
462
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAppInstanceUserEndpointResponseSuccess
|
463
|
+
end
|
464
|
+
end
|
465
|
+
end
|
466
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,52 @@
|
|
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 ChimeSDKIdentity
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class BadRequestException < ::Aws::Errors::ServiceError
|
15
|
+
def code: () -> ::String
|
16
|
+
def message: () -> ::String
|
17
|
+
end
|
18
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
19
|
+
def code: () -> ::String
|
20
|
+
def message: () -> ::String
|
21
|
+
end
|
22
|
+
class ForbiddenException < ::Aws::Errors::ServiceError
|
23
|
+
def code: () -> ::String
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class NotFoundException < ::Aws::Errors::ServiceError
|
27
|
+
def code: () -> ::String
|
28
|
+
def message: () -> ::String
|
29
|
+
end
|
30
|
+
class ResourceLimitExceededException < ::Aws::Errors::ServiceError
|
31
|
+
def code: () -> ::String
|
32
|
+
def message: () -> ::String
|
33
|
+
end
|
34
|
+
class ServiceFailureException < ::Aws::Errors::ServiceError
|
35
|
+
def code: () -> ::String
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
39
|
+
def code: () -> ::String
|
40
|
+
def message: () -> ::String
|
41
|
+
end
|
42
|
+
class ThrottledClientException < ::Aws::Errors::ServiceError
|
43
|
+
def code: () -> ::String
|
44
|
+
def message: () -> ::String
|
45
|
+
end
|
46
|
+
class UnauthorizedClientException < ::Aws::Errors::ServiceError
|
47
|
+
def code: () -> ::String
|
48
|
+
def message: () -> ::String
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,79 @@
|
|
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 ChimeSDKIdentity
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ChimeSDKIdentity/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?endpoint_provider: untyped,
|
57
|
+
?http_proxy: String,
|
58
|
+
?http_open_timeout: (Float | Integer),
|
59
|
+
?http_read_timeout: (Float | Integer),
|
60
|
+
?http_idle_timeout: (Float | Integer),
|
61
|
+
?http_continue_timeout: (Float | Integer),
|
62
|
+
?ssl_timeout: (Float | Integer | nil),
|
63
|
+
?http_wire_trace: bool,
|
64
|
+
?ssl_verify_peer: bool,
|
65
|
+
?ssl_ca_bundle: String,
|
66
|
+
?ssl_ca_directory: String,
|
67
|
+
?ssl_ca_store: String,
|
68
|
+
?on_chunk_received: Proc,
|
69
|
+
?on_chunk_sent: Proc,
|
70
|
+
?raise_response_errors: bool
|
71
|
+
) -> void
|
72
|
+
| (?Hash[Symbol, untyped]) -> void
|
73
|
+
|
74
|
+
def client: () -> Client
|
75
|
+
|
76
|
+
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|