aws-sdk-ivschat 1.19.0 → 1.20.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b988442e0de260b9571c46b57964943cf621290d4fdb8c6d11a88166a91e302
4
- data.tar.gz: 698f596f14bfbfc473bf51ab649f4fa03337c5fa8a98f367e102bef57fdf4220
3
+ metadata.gz: cfdb6f4b65485e1e9c049cd2fe9d2812caebac9383341b7492caacfb5e7dab7b
4
+ data.tar.gz: e4fdef7f77244acb3e0d7637b13be6add29625cbef0f2ba65a9b27b0a1974db5
5
5
  SHA512:
6
- metadata.gz: fdb1a71d9c67943d1be03df1c042e964c2061f04f4eabda8a5197d4a2bc4f0ee58d22ea22fb7acb049e77ab9e824f90834ea64097a3a830000bfb97076ed6326
7
- data.tar.gz: 8d9665d4e77109f75168269999f0fe5559c080e2fcd3de4b3ea00cdfe9c8439cc9312ff87a99b9f9a2a43ce92851e416cc37a377b7293a1873d9d005ab9c032f
6
+ metadata.gz: 46d03af2155a2b61639697ae01180e385fad617d096db7acbcb496b0366194055bf64c7e200b9e2705cd00cf0e0aeacb8e1ba95b2c083d25fba194a7027ea30d
7
+ data.tar.gz: 3a61025fcfcd1c819b55b3b8d9371b1e1f6ba7e400b055bd0f7b8ceffc2286b117308dd08346214fad0655f80b153c82b09e1242aee9a59e84eaabc73ed34fdf
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.20.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.19.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.20.0
@@ -1258,7 +1258,7 @@ module Aws::Ivschat
1258
1258
  params: params,
1259
1259
  config: config)
1260
1260
  context[:gem_name] = 'aws-sdk-ivschat'
1261
- context[:gem_version] = '1.19.0'
1261
+ context[:gem_version] = '1.20.0'
1262
1262
  Seahorse::Client::Request.new(handlers, context)
1263
1263
  end
1264
1264
 
@@ -14,6 +14,7 @@ module Aws::Ivschat
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::Ivschat::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 '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivschat/customizations'
52
52
  # @!group service
53
53
  module Aws::Ivschat
54
54
 
55
- GEM_VERSION = '1.19.0'
55
+ GEM_VERSION = '1.20.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,345 @@
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 Ivschat
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/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 _CreateChatTokenResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateChatTokenResponse]
77
+ def session_expiration_time: () -> ::Time
78
+ def token: () -> ::String
79
+ def token_expiration_time: () -> ::Time
80
+ end
81
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_chat_token-instance_method
82
+ def create_chat_token: (
83
+ ?attributes: Hash[::String, ::String],
84
+ ?capabilities: Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")],
85
+ room_identifier: ::String,
86
+ ?session_duration_in_minutes: ::Integer,
87
+ user_id: ::String
88
+ ) -> _CreateChatTokenResponseSuccess
89
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChatTokenResponseSuccess
90
+
91
+ interface _CreateLoggingConfigurationResponseSuccess
92
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateLoggingConfigurationResponse]
93
+ def arn: () -> ::String
94
+ def create_time: () -> ::Time
95
+ def destination_configuration: () -> Types::DestinationConfiguration
96
+ def id: () -> ::String
97
+ def name: () -> ::String
98
+ def state: () -> ("ACTIVE")
99
+ def tags: () -> ::Hash[::String, ::String]
100
+ def update_time: () -> ::Time
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_logging_configuration-instance_method
103
+ def create_logging_configuration: (
104
+ destination_configuration: {
105
+ cloud_watch_logs: {
106
+ log_group_name: ::String
107
+ }?,
108
+ firehose: {
109
+ delivery_stream_name: ::String
110
+ }?,
111
+ s3: {
112
+ bucket_name: ::String
113
+ }?
114
+ },
115
+ ?name: ::String,
116
+ ?tags: Hash[::String, ::String]
117
+ ) -> _CreateLoggingConfigurationResponseSuccess
118
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoggingConfigurationResponseSuccess
119
+
120
+ interface _CreateRoomResponseSuccess
121
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateRoomResponse]
122
+ def arn: () -> ::String
123
+ def create_time: () -> ::Time
124
+ def id: () -> ::String
125
+ def logging_configuration_identifiers: () -> ::Array[::String]
126
+ def maximum_message_length: () -> ::Integer
127
+ def maximum_message_rate_per_second: () -> ::Integer
128
+ def message_review_handler: () -> Types::MessageReviewHandler
129
+ def name: () -> ::String
130
+ def tags: () -> ::Hash[::String, ::String]
131
+ def update_time: () -> ::Time
132
+ end
133
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_room-instance_method
134
+ def create_room: (
135
+ ?logging_configuration_identifiers: Array[::String],
136
+ ?maximum_message_length: ::Integer,
137
+ ?maximum_message_rate_per_second: ::Integer,
138
+ ?message_review_handler: {
139
+ fallback_result: ("ALLOW" | "DENY")?,
140
+ uri: ::String?
141
+ },
142
+ ?name: ::String,
143
+ ?tags: Hash[::String, ::String]
144
+ ) -> _CreateRoomResponseSuccess
145
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoomResponseSuccess
146
+
147
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#delete_logging_configuration-instance_method
148
+ def delete_logging_configuration: (
149
+ identifier: ::String
150
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
151
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
152
+
153
+ interface _DeleteMessageResponseSuccess
154
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteMessageResponse]
155
+ def id: () -> ::String
156
+ end
157
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#delete_message-instance_method
158
+ def delete_message: (
159
+ id: ::String,
160
+ ?reason: ::String,
161
+ room_identifier: ::String
162
+ ) -> _DeleteMessageResponseSuccess
163
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMessageResponseSuccess
164
+
165
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#delete_room-instance_method
166
+ def delete_room: (
167
+ identifier: ::String
168
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
169
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
170
+
171
+ interface _DisconnectUserResponseSuccess
172
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisconnectUserResponse]
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#disconnect_user-instance_method
175
+ def disconnect_user: (
176
+ ?reason: ::String,
177
+ room_identifier: ::String,
178
+ user_id: ::String
179
+ ) -> _DisconnectUserResponseSuccess
180
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisconnectUserResponseSuccess
181
+
182
+ interface _GetLoggingConfigurationResponseSuccess
183
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetLoggingConfigurationResponse]
184
+ def arn: () -> ::String
185
+ def create_time: () -> ::Time
186
+ def destination_configuration: () -> Types::DestinationConfiguration
187
+ def id: () -> ::String
188
+ def name: () -> ::String
189
+ def state: () -> ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "ACTIVE")
190
+ def tags: () -> ::Hash[::String, ::String]
191
+ def update_time: () -> ::Time
192
+ end
193
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#get_logging_configuration-instance_method
194
+ def get_logging_configuration: (
195
+ identifier: ::String
196
+ ) -> _GetLoggingConfigurationResponseSuccess
197
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLoggingConfigurationResponseSuccess
198
+
199
+ interface _GetRoomResponseSuccess
200
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRoomResponse]
201
+ def arn: () -> ::String
202
+ def create_time: () -> ::Time
203
+ def id: () -> ::String
204
+ def logging_configuration_identifiers: () -> ::Array[::String]
205
+ def maximum_message_length: () -> ::Integer
206
+ def maximum_message_rate_per_second: () -> ::Integer
207
+ def message_review_handler: () -> Types::MessageReviewHandler
208
+ def name: () -> ::String
209
+ def tags: () -> ::Hash[::String, ::String]
210
+ def update_time: () -> ::Time
211
+ end
212
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#get_room-instance_method
213
+ def get_room: (
214
+ identifier: ::String
215
+ ) -> _GetRoomResponseSuccess
216
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRoomResponseSuccess
217
+
218
+ interface _ListLoggingConfigurationsResponseSuccess
219
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListLoggingConfigurationsResponse]
220
+ def logging_configurations: () -> ::Array[Types::LoggingConfigurationSummary]
221
+ def next_token: () -> ::String
222
+ end
223
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#list_logging_configurations-instance_method
224
+ def list_logging_configurations: (
225
+ ?max_results: ::Integer,
226
+ ?next_token: ::String
227
+ ) -> _ListLoggingConfigurationsResponseSuccess
228
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLoggingConfigurationsResponseSuccess
229
+
230
+ interface _ListRoomsResponseSuccess
231
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRoomsResponse]
232
+ def next_token: () -> ::String
233
+ def rooms: () -> ::Array[Types::RoomSummary]
234
+ end
235
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#list_rooms-instance_method
236
+ def list_rooms: (
237
+ ?logging_configuration_identifier: ::String,
238
+ ?max_results: ::Integer,
239
+ ?message_review_handler_uri: ::String,
240
+ ?name: ::String,
241
+ ?next_token: ::String
242
+ ) -> _ListRoomsResponseSuccess
243
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoomsResponseSuccess
244
+
245
+ interface _ListTagsForResourceResponseSuccess
246
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
247
+ def tags: () -> ::Hash[::String, ::String]
248
+ end
249
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#list_tags_for_resource-instance_method
250
+ def list_tags_for_resource: (
251
+ resource_arn: ::String
252
+ ) -> _ListTagsForResourceResponseSuccess
253
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
254
+
255
+ interface _SendEventResponseSuccess
256
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendEventResponse]
257
+ def id: () -> ::String
258
+ end
259
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#send_event-instance_method
260
+ def send_event: (
261
+ ?attributes: Hash[::String, ::String],
262
+ event_name: ::String,
263
+ room_identifier: ::String
264
+ ) -> _SendEventResponseSuccess
265
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendEventResponseSuccess
266
+
267
+ interface _TagResourceResponseSuccess
268
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
269
+ end
270
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#tag_resource-instance_method
271
+ def tag_resource: (
272
+ resource_arn: ::String,
273
+ tags: Hash[::String, ::String]
274
+ ) -> _TagResourceResponseSuccess
275
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
276
+
277
+ interface _UntagResourceResponseSuccess
278
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
279
+ end
280
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#untag_resource-instance_method
281
+ def untag_resource: (
282
+ resource_arn: ::String,
283
+ tag_keys: Array[::String]
284
+ ) -> _UntagResourceResponseSuccess
285
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
286
+
287
+ interface _UpdateLoggingConfigurationResponseSuccess
288
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLoggingConfigurationResponse]
289
+ def arn: () -> ::String
290
+ def create_time: () -> ::Time
291
+ def destination_configuration: () -> Types::DestinationConfiguration
292
+ def id: () -> ::String
293
+ def name: () -> ::String
294
+ def state: () -> ("ACTIVE")
295
+ def tags: () -> ::Hash[::String, ::String]
296
+ def update_time: () -> ::Time
297
+ end
298
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#update_logging_configuration-instance_method
299
+ def update_logging_configuration: (
300
+ ?destination_configuration: {
301
+ cloud_watch_logs: {
302
+ log_group_name: ::String
303
+ }?,
304
+ firehose: {
305
+ delivery_stream_name: ::String
306
+ }?,
307
+ s3: {
308
+ bucket_name: ::String
309
+ }?
310
+ },
311
+ identifier: ::String,
312
+ ?name: ::String
313
+ ) -> _UpdateLoggingConfigurationResponseSuccess
314
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLoggingConfigurationResponseSuccess
315
+
316
+ interface _UpdateRoomResponseSuccess
317
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRoomResponse]
318
+ def arn: () -> ::String
319
+ def create_time: () -> ::Time
320
+ def id: () -> ::String
321
+ def logging_configuration_identifiers: () -> ::Array[::String]
322
+ def maximum_message_length: () -> ::Integer
323
+ def maximum_message_rate_per_second: () -> ::Integer
324
+ def message_review_handler: () -> Types::MessageReviewHandler
325
+ def name: () -> ::String
326
+ def tags: () -> ::Hash[::String, ::String]
327
+ def update_time: () -> ::Time
328
+ end
329
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#update_room-instance_method
330
+ def update_room: (
331
+ identifier: ::String,
332
+ ?logging_configuration_identifiers: Array[::String],
333
+ ?maximum_message_length: ::Integer,
334
+ ?maximum_message_rate_per_second: ::Integer,
335
+ ?message_review_handler: {
336
+ fallback_result: ("ALLOW" | "DENY")?,
337
+ uri: ::String?
338
+ },
339
+ ?name: ::String
340
+ ) -> _UpdateRoomResponseSuccess
341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRoomResponseSuccess
342
+ end
343
+ end
344
+ end
345
+
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 Ivschat
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ def resource_id: () -> ::String
20
+ def resource_type: () -> ::String
21
+ end
22
+ class InternalServerException < ::Aws::Errors::ServiceError
23
+ def message: () -> ::String
24
+ end
25
+ class PendingVerification < ::Aws::Errors::ServiceError
26
+ def message: () -> ::String
27
+ end
28
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
29
+ def message: () -> ::String
30
+ def resource_id: () -> ::String
31
+ def resource_type: () -> ::String
32
+ end
33
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
34
+ def limit: () -> ::String
35
+ def message: () -> ::String
36
+ def resource_id: () -> ::String
37
+ def resource_type: () -> ::String
38
+ end
39
+ class ThrottlingException < ::Aws::Errors::ServiceError
40
+ def limit: () -> ::String
41
+ def message: () -> ::String
42
+ def resource_id: () -> ::String
43
+ def resource_type: () -> ::String
44
+ end
45
+ class ValidationException < ::Aws::Errors::ServiceError
46
+ def field_list: () -> ::String
47
+ def message: () -> ::String
48
+ def reason: () -> ::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 Ivschat
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/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,368 @@
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::Ivschat
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class CloudWatchLogsDestinationConfiguration
17
+ attr_accessor log_group_name: ::String
18
+ SENSITIVE: []
19
+ end
20
+
21
+ class ConflictException
22
+ attr_accessor message: ::String
23
+ attr_accessor resource_id: ::String
24
+ attr_accessor resource_type: ("ROOM")
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class CreateChatTokenRequest
29
+ attr_accessor attributes: ::Hash[::String, ::String]
30
+ attr_accessor capabilities: ::Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")]
31
+ attr_accessor room_identifier: ::String
32
+ attr_accessor session_duration_in_minutes: ::Integer
33
+ attr_accessor user_id: ::String
34
+ SENSITIVE: [:attributes, :user_id]
35
+ end
36
+
37
+ class CreateChatTokenResponse
38
+ attr_accessor session_expiration_time: ::Time
39
+ attr_accessor token: ::String
40
+ attr_accessor token_expiration_time: ::Time
41
+ SENSITIVE: [:token]
42
+ end
43
+
44
+ class CreateLoggingConfigurationRequest
45
+ attr_accessor destination_configuration: Types::DestinationConfiguration
46
+ attr_accessor name: ::String
47
+ attr_accessor tags: ::Hash[::String, ::String]
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateLoggingConfigurationResponse
52
+ attr_accessor arn: ::String
53
+ attr_accessor create_time: ::Time
54
+ attr_accessor destination_configuration: Types::DestinationConfiguration
55
+ attr_accessor id: ::String
56
+ attr_accessor name: ::String
57
+ attr_accessor state: ("ACTIVE")
58
+ attr_accessor tags: ::Hash[::String, ::String]
59
+ attr_accessor update_time: ::Time
60
+ SENSITIVE: []
61
+ end
62
+
63
+ class CreateRoomRequest
64
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
65
+ attr_accessor maximum_message_length: ::Integer
66
+ attr_accessor maximum_message_rate_per_second: ::Integer
67
+ attr_accessor message_review_handler: Types::MessageReviewHandler
68
+ attr_accessor name: ::String
69
+ attr_accessor tags: ::Hash[::String, ::String]
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class CreateRoomResponse
74
+ attr_accessor arn: ::String
75
+ attr_accessor create_time: ::Time
76
+ attr_accessor id: ::String
77
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
78
+ attr_accessor maximum_message_length: ::Integer
79
+ attr_accessor maximum_message_rate_per_second: ::Integer
80
+ attr_accessor message_review_handler: Types::MessageReviewHandler
81
+ attr_accessor name: ::String
82
+ attr_accessor tags: ::Hash[::String, ::String]
83
+ attr_accessor update_time: ::Time
84
+ SENSITIVE: []
85
+ end
86
+
87
+ class DeleteLoggingConfigurationRequest
88
+ attr_accessor identifier: ::String
89
+ SENSITIVE: []
90
+ end
91
+
92
+ class DeleteMessageRequest
93
+ attr_accessor id: ::String
94
+ attr_accessor reason: ::String
95
+ attr_accessor room_identifier: ::String
96
+ SENSITIVE: []
97
+ end
98
+
99
+ class DeleteMessageResponse
100
+ attr_accessor id: ::String
101
+ SENSITIVE: []
102
+ end
103
+
104
+ class DeleteRoomRequest
105
+ attr_accessor identifier: ::String
106
+ SENSITIVE: []
107
+ end
108
+
109
+ class DestinationConfiguration
110
+ attr_accessor cloud_watch_logs: Types::CloudWatchLogsDestinationConfiguration
111
+ attr_accessor firehose: Types::FirehoseDestinationConfiguration
112
+ attr_accessor s3: Types::S3DestinationConfiguration
113
+ attr_accessor unknown: untyped
114
+ SENSITIVE: []
115
+
116
+ class CloudWatchLogs < DestinationConfiguration
117
+ end
118
+ class Firehose < DestinationConfiguration
119
+ end
120
+ class S3 < DestinationConfiguration
121
+ end
122
+ class Unknown < DestinationConfiguration
123
+ end
124
+ end
125
+
126
+ class DisconnectUserRequest
127
+ attr_accessor reason: ::String
128
+ attr_accessor room_identifier: ::String
129
+ attr_accessor user_id: ::String
130
+ SENSITIVE: [:user_id]
131
+ end
132
+
133
+ class DisconnectUserResponse < Aws::EmptyStructure
134
+ end
135
+
136
+ class FirehoseDestinationConfiguration
137
+ attr_accessor delivery_stream_name: ::String
138
+ SENSITIVE: []
139
+ end
140
+
141
+ class GetLoggingConfigurationRequest
142
+ attr_accessor identifier: ::String
143
+ SENSITIVE: []
144
+ end
145
+
146
+ class GetLoggingConfigurationResponse
147
+ attr_accessor arn: ::String
148
+ attr_accessor create_time: ::Time
149
+ attr_accessor destination_configuration: Types::DestinationConfiguration
150
+ attr_accessor id: ::String
151
+ attr_accessor name: ::String
152
+ attr_accessor state: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "ACTIVE")
153
+ attr_accessor tags: ::Hash[::String, ::String]
154
+ attr_accessor update_time: ::Time
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class GetRoomRequest
159
+ attr_accessor identifier: ::String
160
+ SENSITIVE: []
161
+ end
162
+
163
+ class GetRoomResponse
164
+ attr_accessor arn: ::String
165
+ attr_accessor create_time: ::Time
166
+ attr_accessor id: ::String
167
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
168
+ attr_accessor maximum_message_length: ::Integer
169
+ attr_accessor maximum_message_rate_per_second: ::Integer
170
+ attr_accessor message_review_handler: Types::MessageReviewHandler
171
+ attr_accessor name: ::String
172
+ attr_accessor tags: ::Hash[::String, ::String]
173
+ attr_accessor update_time: ::Time
174
+ SENSITIVE: []
175
+ end
176
+
177
+ class InternalServerException
178
+ attr_accessor message: ::String
179
+ SENSITIVE: []
180
+ end
181
+
182
+ class ListLoggingConfigurationsRequest
183
+ attr_accessor max_results: ::Integer
184
+ attr_accessor next_token: ::String
185
+ SENSITIVE: []
186
+ end
187
+
188
+ class ListLoggingConfigurationsResponse
189
+ attr_accessor logging_configurations: ::Array[Types::LoggingConfigurationSummary]
190
+ attr_accessor next_token: ::String
191
+ SENSITIVE: []
192
+ end
193
+
194
+ class ListRoomsRequest
195
+ attr_accessor logging_configuration_identifier: ::String
196
+ attr_accessor max_results: ::Integer
197
+ attr_accessor message_review_handler_uri: ::String
198
+ attr_accessor name: ::String
199
+ attr_accessor next_token: ::String
200
+ SENSITIVE: []
201
+ end
202
+
203
+ class ListRoomsResponse
204
+ attr_accessor next_token: ::String
205
+ attr_accessor rooms: ::Array[Types::RoomSummary]
206
+ SENSITIVE: []
207
+ end
208
+
209
+ class ListTagsForResourceRequest
210
+ attr_accessor resource_arn: ::String
211
+ SENSITIVE: []
212
+ end
213
+
214
+ class ListTagsForResourceResponse
215
+ attr_accessor tags: ::Hash[::String, ::String]
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class LoggingConfigurationSummary
220
+ attr_accessor arn: ::String
221
+ attr_accessor create_time: ::Time
222
+ attr_accessor destination_configuration: Types::DestinationConfiguration
223
+ attr_accessor id: ::String
224
+ attr_accessor name: ::String
225
+ attr_accessor state: ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "ACTIVE")
226
+ attr_accessor tags: ::Hash[::String, ::String]
227
+ attr_accessor update_time: ::Time
228
+ SENSITIVE: []
229
+ end
230
+
231
+ class MessageReviewHandler
232
+ attr_accessor fallback_result: ("ALLOW" | "DENY")
233
+ attr_accessor uri: ::String
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class PendingVerification
238
+ attr_accessor message: ::String
239
+ SENSITIVE: []
240
+ end
241
+
242
+ class ResourceNotFoundException
243
+ attr_accessor message: ::String
244
+ attr_accessor resource_id: ::String
245
+ attr_accessor resource_type: ("ROOM")
246
+ SENSITIVE: []
247
+ end
248
+
249
+ class RoomSummary
250
+ attr_accessor arn: ::String
251
+ attr_accessor create_time: ::Time
252
+ attr_accessor id: ::String
253
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
254
+ attr_accessor message_review_handler: Types::MessageReviewHandler
255
+ attr_accessor name: ::String
256
+ attr_accessor tags: ::Hash[::String, ::String]
257
+ attr_accessor update_time: ::Time
258
+ SENSITIVE: []
259
+ end
260
+
261
+ class S3DestinationConfiguration
262
+ attr_accessor bucket_name: ::String
263
+ SENSITIVE: []
264
+ end
265
+
266
+ class SendEventRequest
267
+ attr_accessor attributes: ::Hash[::String, ::String]
268
+ attr_accessor event_name: ::String
269
+ attr_accessor room_identifier: ::String
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class SendEventResponse
274
+ attr_accessor id: ::String
275
+ SENSITIVE: []
276
+ end
277
+
278
+ class ServiceQuotaExceededException
279
+ attr_accessor limit: ::Integer
280
+ attr_accessor message: ::String
281
+ attr_accessor resource_id: ::String
282
+ attr_accessor resource_type: ("ROOM")
283
+ SENSITIVE: []
284
+ end
285
+
286
+ class TagResourceRequest
287
+ attr_accessor resource_arn: ::String
288
+ attr_accessor tags: ::Hash[::String, ::String]
289
+ SENSITIVE: []
290
+ end
291
+
292
+ class TagResourceResponse < Aws::EmptyStructure
293
+ end
294
+
295
+ class ThrottlingException
296
+ attr_accessor limit: ::Integer
297
+ attr_accessor message: ::String
298
+ attr_accessor resource_id: ::String
299
+ attr_accessor resource_type: ("ROOM")
300
+ SENSITIVE: []
301
+ end
302
+
303
+ class UntagResourceRequest
304
+ attr_accessor resource_arn: ::String
305
+ attr_accessor tag_keys: ::Array[::String]
306
+ SENSITIVE: []
307
+ end
308
+
309
+ class UntagResourceResponse < Aws::EmptyStructure
310
+ end
311
+
312
+ class UpdateLoggingConfigurationRequest
313
+ attr_accessor destination_configuration: Types::DestinationConfiguration
314
+ attr_accessor identifier: ::String
315
+ attr_accessor name: ::String
316
+ SENSITIVE: []
317
+ end
318
+
319
+ class UpdateLoggingConfigurationResponse
320
+ attr_accessor arn: ::String
321
+ attr_accessor create_time: ::Time
322
+ attr_accessor destination_configuration: Types::DestinationConfiguration
323
+ attr_accessor id: ::String
324
+ attr_accessor name: ::String
325
+ attr_accessor state: ("ACTIVE")
326
+ attr_accessor tags: ::Hash[::String, ::String]
327
+ attr_accessor update_time: ::Time
328
+ SENSITIVE: []
329
+ end
330
+
331
+ class UpdateRoomRequest
332
+ attr_accessor identifier: ::String
333
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
334
+ attr_accessor maximum_message_length: ::Integer
335
+ attr_accessor maximum_message_rate_per_second: ::Integer
336
+ attr_accessor message_review_handler: Types::MessageReviewHandler
337
+ attr_accessor name: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class UpdateRoomResponse
342
+ attr_accessor arn: ::String
343
+ attr_accessor create_time: ::Time
344
+ attr_accessor id: ::String
345
+ attr_accessor logging_configuration_identifiers: ::Array[::String]
346
+ attr_accessor maximum_message_length: ::Integer
347
+ attr_accessor maximum_message_rate_per_second: ::Integer
348
+ attr_accessor message_review_handler: Types::MessageReviewHandler
349
+ attr_accessor name: ::String
350
+ attr_accessor tags: ::Hash[::String, ::String]
351
+ attr_accessor update_time: ::Time
352
+ SENSITIVE: []
353
+ end
354
+
355
+ class ValidationException
356
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
357
+ attr_accessor message: ::String
358
+ attr_accessor reason: ("UNKNOWN_OPERATION" | "FIELD_VALIDATION_FAILED" | "OTHER")
359
+ SENSITIVE: []
360
+ end
361
+
362
+ class ValidationExceptionField
363
+ attr_accessor message: ::String
364
+ attr_accessor name: ::String
365
+ SENSITIVE: []
366
+ end
367
+ end
368
+ 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 Ivschat
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-ivschat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.20.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: 2023-11-28 00:00:00.000000000 Z
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.188.0
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.188.0
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-ivschat/plugins/endpoints.rb
67
67
  - lib/aws-sdk-ivschat/resource.rb
68
68
  - lib/aws-sdk-ivschat/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-ivschat
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ivschat/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.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - ivschat
94
99
  test_files: []