aws-sdk-chimesdkidentity 1.21.0 → 1.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkidentity/client.rb +1 -1
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af9266d4617826b4c07a0577bffd1e48e2c4f066e71ff69298e18028066ab0be
|
4
|
+
data.tar.gz: 0457a14ed2042b88bf3e18826a0e30e88ba7b84eef53d08935cdea1620bab812
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40c22956ea466d610baeac4e65f92b0b651447037395dd1c21bc4c1142edcad54135903b98e37a7b983512229cee35537fe96c03f218eb714cdafb110c7ef93d
|
7
|
+
data.tar.gz: 629421cdbc5c653495b0f638628a35218d050d5c5bb490ddde055d616648c886427f7c68a3898874b174c72a073a1fe07207a907aec0d8c419c26102bc482f6d
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.22.0
|
@@ -1613,7 +1613,7 @@ module Aws::ChimeSDKIdentity
|
|
1613
1613
|
params: params,
|
1614
1614
|
config: config)
|
1615
1615
|
context[:gem_name] = 'aws-sdk-chimesdkidentity'
|
1616
|
-
context[:gem_version] = '1.
|
1616
|
+
context[:gem_version] = '1.22.0'
|
1617
1617
|
Seahorse::Client::Request.new(handlers, context)
|
1618
1618
|
end
|
1619
1619
|
|
@@ -14,6 +14,7 @@ module Aws::ChimeSDKIdentity
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::ChimeSDKIdentity::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
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
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,538 @@
|
|
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::ChimeSDKIdentity
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AppInstance
|
12
|
+
attr_accessor app_instance_arn: ::String
|
13
|
+
attr_accessor name: ::String
|
14
|
+
attr_accessor created_timestamp: ::Time
|
15
|
+
attr_accessor last_updated_timestamp: ::Time
|
16
|
+
attr_accessor metadata: ::String
|
17
|
+
SENSITIVE: [:name, :metadata]
|
18
|
+
end
|
19
|
+
|
20
|
+
class AppInstanceAdmin
|
21
|
+
attr_accessor admin: Types::Identity
|
22
|
+
attr_accessor app_instance_arn: ::String
|
23
|
+
attr_accessor created_timestamp: ::Time
|
24
|
+
SENSITIVE: []
|
25
|
+
end
|
26
|
+
|
27
|
+
class AppInstanceAdminSummary
|
28
|
+
attr_accessor admin: Types::Identity
|
29
|
+
SENSITIVE: []
|
30
|
+
end
|
31
|
+
|
32
|
+
class AppInstanceBot
|
33
|
+
attr_accessor app_instance_bot_arn: ::String
|
34
|
+
attr_accessor name: ::String
|
35
|
+
attr_accessor configuration: Types::Configuration
|
36
|
+
attr_accessor created_timestamp: ::Time
|
37
|
+
attr_accessor last_updated_timestamp: ::Time
|
38
|
+
attr_accessor metadata: ::String
|
39
|
+
SENSITIVE: [:name, :metadata]
|
40
|
+
end
|
41
|
+
|
42
|
+
class AppInstanceBotSummary
|
43
|
+
attr_accessor app_instance_bot_arn: ::String
|
44
|
+
attr_accessor name: ::String
|
45
|
+
attr_accessor metadata: ::String
|
46
|
+
SENSITIVE: [:name, :metadata]
|
47
|
+
end
|
48
|
+
|
49
|
+
class AppInstanceRetentionSettings
|
50
|
+
attr_accessor channel_retention_settings: Types::ChannelRetentionSettings
|
51
|
+
SENSITIVE: []
|
52
|
+
end
|
53
|
+
|
54
|
+
class AppInstanceSummary
|
55
|
+
attr_accessor app_instance_arn: ::String
|
56
|
+
attr_accessor name: ::String
|
57
|
+
attr_accessor metadata: ::String
|
58
|
+
SENSITIVE: [:name, :metadata]
|
59
|
+
end
|
60
|
+
|
61
|
+
class AppInstanceUser
|
62
|
+
attr_accessor app_instance_user_arn: ::String
|
63
|
+
attr_accessor name: ::String
|
64
|
+
attr_accessor metadata: ::String
|
65
|
+
attr_accessor created_timestamp: ::Time
|
66
|
+
attr_accessor last_updated_timestamp: ::Time
|
67
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
68
|
+
SENSITIVE: [:name, :metadata]
|
69
|
+
end
|
70
|
+
|
71
|
+
class AppInstanceUserEndpoint
|
72
|
+
attr_accessor app_instance_user_arn: ::String
|
73
|
+
attr_accessor endpoint_id: ::String
|
74
|
+
attr_accessor name: ::String
|
75
|
+
attr_accessor type: ("APNS" | "APNS_SANDBOX" | "GCM")
|
76
|
+
attr_accessor resource_arn: ::String
|
77
|
+
attr_accessor endpoint_attributes: Types::EndpointAttributes
|
78
|
+
attr_accessor created_timestamp: ::Time
|
79
|
+
attr_accessor last_updated_timestamp: ::Time
|
80
|
+
attr_accessor allow_messages: ("ALL" | "NONE")
|
81
|
+
attr_accessor endpoint_state: Types::EndpointState
|
82
|
+
SENSITIVE: [:name]
|
83
|
+
end
|
84
|
+
|
85
|
+
class AppInstanceUserEndpointSummary
|
86
|
+
attr_accessor app_instance_user_arn: ::String
|
87
|
+
attr_accessor endpoint_id: ::String
|
88
|
+
attr_accessor name: ::String
|
89
|
+
attr_accessor type: ("APNS" | "APNS_SANDBOX" | "GCM")
|
90
|
+
attr_accessor allow_messages: ("ALL" | "NONE")
|
91
|
+
attr_accessor endpoint_state: Types::EndpointState
|
92
|
+
SENSITIVE: [:name]
|
93
|
+
end
|
94
|
+
|
95
|
+
class AppInstanceUserSummary
|
96
|
+
attr_accessor app_instance_user_arn: ::String
|
97
|
+
attr_accessor name: ::String
|
98
|
+
attr_accessor metadata: ::String
|
99
|
+
SENSITIVE: [:name, :metadata]
|
100
|
+
end
|
101
|
+
|
102
|
+
class BadRequestException
|
103
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
104
|
+
attr_accessor message: ::String
|
105
|
+
SENSITIVE: []
|
106
|
+
end
|
107
|
+
|
108
|
+
class ChannelRetentionSettings
|
109
|
+
attr_accessor retention_days: ::Integer
|
110
|
+
SENSITIVE: []
|
111
|
+
end
|
112
|
+
|
113
|
+
class Configuration
|
114
|
+
attr_accessor lex: Types::LexConfiguration
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class ConflictException
|
119
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
120
|
+
attr_accessor message: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class CreateAppInstanceAdminRequest
|
125
|
+
attr_accessor app_instance_admin_arn: ::String
|
126
|
+
attr_accessor app_instance_arn: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class CreateAppInstanceAdminResponse
|
131
|
+
attr_accessor app_instance_admin: Types::Identity
|
132
|
+
attr_accessor app_instance_arn: ::String
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class CreateAppInstanceBotRequest
|
137
|
+
attr_accessor app_instance_arn: ::String
|
138
|
+
attr_accessor name: ::String
|
139
|
+
attr_accessor metadata: ::String
|
140
|
+
attr_accessor client_request_token: ::String
|
141
|
+
attr_accessor tags: ::Array[Types::Tag]
|
142
|
+
attr_accessor configuration: Types::Configuration
|
143
|
+
SENSITIVE: [:name, :metadata]
|
144
|
+
end
|
145
|
+
|
146
|
+
class CreateAppInstanceBotResponse
|
147
|
+
attr_accessor app_instance_bot_arn: ::String
|
148
|
+
SENSITIVE: []
|
149
|
+
end
|
150
|
+
|
151
|
+
class CreateAppInstanceRequest
|
152
|
+
attr_accessor name: ::String
|
153
|
+
attr_accessor metadata: ::String
|
154
|
+
attr_accessor client_request_token: ::String
|
155
|
+
attr_accessor tags: ::Array[Types::Tag]
|
156
|
+
SENSITIVE: [:name, :metadata]
|
157
|
+
end
|
158
|
+
|
159
|
+
class CreateAppInstanceResponse
|
160
|
+
attr_accessor app_instance_arn: ::String
|
161
|
+
SENSITIVE: []
|
162
|
+
end
|
163
|
+
|
164
|
+
class CreateAppInstanceUserRequest
|
165
|
+
attr_accessor app_instance_arn: ::String
|
166
|
+
attr_accessor app_instance_user_id: ::String
|
167
|
+
attr_accessor name: ::String
|
168
|
+
attr_accessor metadata: ::String
|
169
|
+
attr_accessor client_request_token: ::String
|
170
|
+
attr_accessor tags: ::Array[Types::Tag]
|
171
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
172
|
+
SENSITIVE: [:app_instance_user_id, :name, :metadata]
|
173
|
+
end
|
174
|
+
|
175
|
+
class CreateAppInstanceUserResponse
|
176
|
+
attr_accessor app_instance_user_arn: ::String
|
177
|
+
SENSITIVE: []
|
178
|
+
end
|
179
|
+
|
180
|
+
class DeleteAppInstanceAdminRequest
|
181
|
+
attr_accessor app_instance_admin_arn: ::String
|
182
|
+
attr_accessor app_instance_arn: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class DeleteAppInstanceBotRequest
|
187
|
+
attr_accessor app_instance_bot_arn: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class DeleteAppInstanceRequest
|
192
|
+
attr_accessor app_instance_arn: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class DeleteAppInstanceUserRequest
|
197
|
+
attr_accessor app_instance_user_arn: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class DeregisterAppInstanceUserEndpointRequest
|
202
|
+
attr_accessor app_instance_user_arn: ::String
|
203
|
+
attr_accessor endpoint_id: ::String
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class DescribeAppInstanceAdminRequest
|
208
|
+
attr_accessor app_instance_admin_arn: ::String
|
209
|
+
attr_accessor app_instance_arn: ::String
|
210
|
+
SENSITIVE: []
|
211
|
+
end
|
212
|
+
|
213
|
+
class DescribeAppInstanceAdminResponse
|
214
|
+
attr_accessor app_instance_admin: Types::AppInstanceAdmin
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class DescribeAppInstanceBotRequest
|
219
|
+
attr_accessor app_instance_bot_arn: ::String
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class DescribeAppInstanceBotResponse
|
224
|
+
attr_accessor app_instance_bot: Types::AppInstanceBot
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class DescribeAppInstanceRequest
|
229
|
+
attr_accessor app_instance_arn: ::String
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class DescribeAppInstanceResponse
|
234
|
+
attr_accessor app_instance: Types::AppInstance
|
235
|
+
SENSITIVE: []
|
236
|
+
end
|
237
|
+
|
238
|
+
class DescribeAppInstanceUserEndpointRequest
|
239
|
+
attr_accessor app_instance_user_arn: ::String
|
240
|
+
attr_accessor endpoint_id: ::String
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class DescribeAppInstanceUserEndpointResponse
|
245
|
+
attr_accessor app_instance_user_endpoint: Types::AppInstanceUserEndpoint
|
246
|
+
SENSITIVE: []
|
247
|
+
end
|
248
|
+
|
249
|
+
class DescribeAppInstanceUserRequest
|
250
|
+
attr_accessor app_instance_user_arn: ::String
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class DescribeAppInstanceUserResponse
|
255
|
+
attr_accessor app_instance_user: Types::AppInstanceUser
|
256
|
+
SENSITIVE: []
|
257
|
+
end
|
258
|
+
|
259
|
+
class EndpointAttributes
|
260
|
+
attr_accessor device_token: ::String
|
261
|
+
attr_accessor voip_device_token: ::String
|
262
|
+
SENSITIVE: [:device_token, :voip_device_token]
|
263
|
+
end
|
264
|
+
|
265
|
+
class EndpointState
|
266
|
+
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
267
|
+
attr_accessor status_reason: ("INVALID_DEVICE_TOKEN" | "INVALID_PINPOINT_ARN")
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class ExpirationSettings
|
272
|
+
attr_accessor expiration_days: ::Integer
|
273
|
+
attr_accessor expiration_criterion: ("CREATED_TIMESTAMP")
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class ForbiddenException
|
278
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
279
|
+
attr_accessor message: ::String
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class GetAppInstanceRetentionSettingsRequest
|
284
|
+
attr_accessor app_instance_arn: ::String
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class GetAppInstanceRetentionSettingsResponse
|
289
|
+
attr_accessor app_instance_retention_settings: Types::AppInstanceRetentionSettings
|
290
|
+
attr_accessor initiate_deletion_timestamp: ::Time
|
291
|
+
SENSITIVE: []
|
292
|
+
end
|
293
|
+
|
294
|
+
class Identity
|
295
|
+
attr_accessor arn: ::String
|
296
|
+
attr_accessor name: ::String
|
297
|
+
SENSITIVE: [:name]
|
298
|
+
end
|
299
|
+
|
300
|
+
class InvokedBy
|
301
|
+
attr_accessor standard_messages: ("AUTO" | "ALL" | "MENTIONS" | "NONE")
|
302
|
+
attr_accessor targeted_messages: ("ALL" | "NONE")
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class LexConfiguration
|
307
|
+
attr_accessor responds_to: ("STANDARD_MESSAGES")
|
308
|
+
attr_accessor invoked_by: Types::InvokedBy
|
309
|
+
attr_accessor lex_bot_alias_arn: ::String
|
310
|
+
attr_accessor locale_id: ::String
|
311
|
+
attr_accessor welcome_intent: ::String
|
312
|
+
SENSITIVE: []
|
313
|
+
end
|
314
|
+
|
315
|
+
class ListAppInstanceAdminsRequest
|
316
|
+
attr_accessor app_instance_arn: ::String
|
317
|
+
attr_accessor max_results: ::Integer
|
318
|
+
attr_accessor next_token: ::String
|
319
|
+
SENSITIVE: [:next_token]
|
320
|
+
end
|
321
|
+
|
322
|
+
class ListAppInstanceAdminsResponse
|
323
|
+
attr_accessor app_instance_arn: ::String
|
324
|
+
attr_accessor app_instance_admins: ::Array[Types::AppInstanceAdminSummary]
|
325
|
+
attr_accessor next_token: ::String
|
326
|
+
SENSITIVE: [:next_token]
|
327
|
+
end
|
328
|
+
|
329
|
+
class ListAppInstanceBotsRequest
|
330
|
+
attr_accessor app_instance_arn: ::String
|
331
|
+
attr_accessor max_results: ::Integer
|
332
|
+
attr_accessor next_token: ::String
|
333
|
+
SENSITIVE: [:next_token]
|
334
|
+
end
|
335
|
+
|
336
|
+
class ListAppInstanceBotsResponse
|
337
|
+
attr_accessor app_instance_arn: ::String
|
338
|
+
attr_accessor app_instance_bots: ::Array[Types::AppInstanceBotSummary]
|
339
|
+
attr_accessor next_token: ::String
|
340
|
+
SENSITIVE: [:next_token]
|
341
|
+
end
|
342
|
+
|
343
|
+
class ListAppInstanceUserEndpointsRequest
|
344
|
+
attr_accessor app_instance_user_arn: ::String
|
345
|
+
attr_accessor max_results: ::Integer
|
346
|
+
attr_accessor next_token: ::String
|
347
|
+
SENSITIVE: [:app_instance_user_arn, :next_token]
|
348
|
+
end
|
349
|
+
|
350
|
+
class ListAppInstanceUserEndpointsResponse
|
351
|
+
attr_accessor app_instance_user_endpoints: ::Array[Types::AppInstanceUserEndpointSummary]
|
352
|
+
attr_accessor next_token: ::String
|
353
|
+
SENSITIVE: [:next_token]
|
354
|
+
end
|
355
|
+
|
356
|
+
class ListAppInstanceUsersRequest
|
357
|
+
attr_accessor app_instance_arn: ::String
|
358
|
+
attr_accessor max_results: ::Integer
|
359
|
+
attr_accessor next_token: ::String
|
360
|
+
SENSITIVE: [:next_token]
|
361
|
+
end
|
362
|
+
|
363
|
+
class ListAppInstanceUsersResponse
|
364
|
+
attr_accessor app_instance_arn: ::String
|
365
|
+
attr_accessor app_instance_users: ::Array[Types::AppInstanceUserSummary]
|
366
|
+
attr_accessor next_token: ::String
|
367
|
+
SENSITIVE: [:next_token]
|
368
|
+
end
|
369
|
+
|
370
|
+
class ListAppInstancesRequest
|
371
|
+
attr_accessor max_results: ::Integer
|
372
|
+
attr_accessor next_token: ::String
|
373
|
+
SENSITIVE: [:next_token]
|
374
|
+
end
|
375
|
+
|
376
|
+
class ListAppInstancesResponse
|
377
|
+
attr_accessor app_instances: ::Array[Types::AppInstanceSummary]
|
378
|
+
attr_accessor next_token: ::String
|
379
|
+
SENSITIVE: [:next_token]
|
380
|
+
end
|
381
|
+
|
382
|
+
class ListTagsForResourceRequest
|
383
|
+
attr_accessor resource_arn: ::String
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class ListTagsForResourceResponse
|
388
|
+
attr_accessor tags: ::Array[Types::Tag]
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class NotFoundException
|
393
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
394
|
+
attr_accessor message: ::String
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class PutAppInstanceRetentionSettingsRequest
|
399
|
+
attr_accessor app_instance_arn: ::String
|
400
|
+
attr_accessor app_instance_retention_settings: Types::AppInstanceRetentionSettings
|
401
|
+
SENSITIVE: []
|
402
|
+
end
|
403
|
+
|
404
|
+
class PutAppInstanceRetentionSettingsResponse
|
405
|
+
attr_accessor app_instance_retention_settings: Types::AppInstanceRetentionSettings
|
406
|
+
attr_accessor initiate_deletion_timestamp: ::Time
|
407
|
+
SENSITIVE: []
|
408
|
+
end
|
409
|
+
|
410
|
+
class PutAppInstanceUserExpirationSettingsRequest
|
411
|
+
attr_accessor app_instance_user_arn: ::String
|
412
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
413
|
+
SENSITIVE: []
|
414
|
+
end
|
415
|
+
|
416
|
+
class PutAppInstanceUserExpirationSettingsResponse
|
417
|
+
attr_accessor app_instance_user_arn: ::String
|
418
|
+
attr_accessor expiration_settings: Types::ExpirationSettings
|
419
|
+
SENSITIVE: []
|
420
|
+
end
|
421
|
+
|
422
|
+
class RegisterAppInstanceUserEndpointRequest
|
423
|
+
attr_accessor app_instance_user_arn: ::String
|
424
|
+
attr_accessor name: ::String
|
425
|
+
attr_accessor type: ("APNS" | "APNS_SANDBOX" | "GCM")
|
426
|
+
attr_accessor resource_arn: ::String
|
427
|
+
attr_accessor endpoint_attributes: Types::EndpointAttributes
|
428
|
+
attr_accessor client_request_token: ::String
|
429
|
+
attr_accessor allow_messages: ("ALL" | "NONE")
|
430
|
+
SENSITIVE: [:app_instance_user_arn, :name]
|
431
|
+
end
|
432
|
+
|
433
|
+
class RegisterAppInstanceUserEndpointResponse
|
434
|
+
attr_accessor app_instance_user_arn: ::String
|
435
|
+
attr_accessor endpoint_id: ::String
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class ResourceLimitExceededException
|
440
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
441
|
+
attr_accessor message: ::String
|
442
|
+
SENSITIVE: []
|
443
|
+
end
|
444
|
+
|
445
|
+
class ServiceFailureException
|
446
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
447
|
+
attr_accessor message: ::String
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class ServiceUnavailableException
|
452
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
453
|
+
attr_accessor message: ::String
|
454
|
+
SENSITIVE: []
|
455
|
+
end
|
456
|
+
|
457
|
+
class Tag
|
458
|
+
attr_accessor key: ::String
|
459
|
+
attr_accessor value: ::String
|
460
|
+
SENSITIVE: [:key, :value]
|
461
|
+
end
|
462
|
+
|
463
|
+
class TagResourceRequest
|
464
|
+
attr_accessor resource_arn: ::String
|
465
|
+
attr_accessor tags: ::Array[Types::Tag]
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class ThrottledClientException
|
470
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
471
|
+
attr_accessor message: ::String
|
472
|
+
SENSITIVE: []
|
473
|
+
end
|
474
|
+
|
475
|
+
class UnauthorizedClientException
|
476
|
+
attr_accessor code: ("BadRequest" | "Conflict" | "Forbidden" | "NotFound" | "PreconditionFailed" | "ResourceLimitExceeded" | "ServiceFailure" | "AccessDenied" | "ServiceUnavailable" | "Throttled" | "Throttling" | "Unauthorized" | "Unprocessable" | "VoiceConnectorGroupAssociationsExist" | "PhoneNumberAssociationsExist")
|
477
|
+
attr_accessor message: ::String
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class UntagResourceRequest
|
482
|
+
attr_accessor resource_arn: ::String
|
483
|
+
attr_accessor tag_keys: ::Array[::String]
|
484
|
+
SENSITIVE: []
|
485
|
+
end
|
486
|
+
|
487
|
+
class UpdateAppInstanceBotRequest
|
488
|
+
attr_accessor app_instance_bot_arn: ::String
|
489
|
+
attr_accessor name: ::String
|
490
|
+
attr_accessor metadata: ::String
|
491
|
+
attr_accessor configuration: Types::Configuration
|
492
|
+
SENSITIVE: [:name, :metadata]
|
493
|
+
end
|
494
|
+
|
495
|
+
class UpdateAppInstanceBotResponse
|
496
|
+
attr_accessor app_instance_bot_arn: ::String
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class UpdateAppInstanceRequest
|
501
|
+
attr_accessor app_instance_arn: ::String
|
502
|
+
attr_accessor name: ::String
|
503
|
+
attr_accessor metadata: ::String
|
504
|
+
SENSITIVE: [:name, :metadata]
|
505
|
+
end
|
506
|
+
|
507
|
+
class UpdateAppInstanceResponse
|
508
|
+
attr_accessor app_instance_arn: ::String
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class UpdateAppInstanceUserEndpointRequest
|
513
|
+
attr_accessor app_instance_user_arn: ::String
|
514
|
+
attr_accessor endpoint_id: ::String
|
515
|
+
attr_accessor name: ::String
|
516
|
+
attr_accessor allow_messages: ("ALL" | "NONE")
|
517
|
+
SENSITIVE: [:name]
|
518
|
+
end
|
519
|
+
|
520
|
+
class UpdateAppInstanceUserEndpointResponse
|
521
|
+
attr_accessor app_instance_user_arn: ::String
|
522
|
+
attr_accessor endpoint_id: ::String
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class UpdateAppInstanceUserRequest
|
527
|
+
attr_accessor app_instance_user_arn: ::String
|
528
|
+
attr_accessor name: ::String
|
529
|
+
attr_accessor metadata: ::String
|
530
|
+
SENSITIVE: [:name, :metadata]
|
531
|
+
end
|
532
|
+
|
533
|
+
class UpdateAppInstanceUserResponse
|
534
|
+
attr_accessor app_instance_user_arn: ::String
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
end
|
538
|
+
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 ChimeSDKIdentity
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkidentity
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-01-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.191.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.191.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-chimesdkidentity/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-chimesdkidentity/resource.rb
|
68
68
|
- lib/aws-sdk-chimesdkidentity/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkidentity
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkidentity/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - Amazon Chime SDK Identity
|
94
99
|
test_files: []
|