aws-sdk-ivschat 1.26.0 → 1.28.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-ivschat/client.rb +171 -162
- data/lib/aws-sdk-ivschat/client_api.rb +61 -60
- data/lib/aws-sdk-ivschat/errors.rb +15 -15
- data/lib/aws-sdk-ivschat/types.rb +323 -323
- data/lib/aws-sdk-ivschat/waiters.rb +15 -0
- data/lib/aws-sdk-ivschat.rb +2 -1
- data/sig/client.rbs +62 -61
- data/sig/errors.rbs +3 -3
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +61 -61
- metadata +7 -6
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
require 'aws-sdk-core/waiters'
|
11
|
+
|
12
|
+
module Aws::Ivschat
|
13
|
+
module Waiters
|
14
|
+
end
|
15
|
+
end
|
data/lib/aws-sdk-ivschat.rb
CHANGED
@@ -16,6 +16,7 @@ require_relative 'aws-sdk-ivschat/client_api'
|
|
16
16
|
require_relative 'aws-sdk-ivschat/plugins/endpoints.rb'
|
17
17
|
require_relative 'aws-sdk-ivschat/client'
|
18
18
|
require_relative 'aws-sdk-ivschat/errors'
|
19
|
+
require_relative 'aws-sdk-ivschat/waiters'
|
19
20
|
require_relative 'aws-sdk-ivschat/resource'
|
20
21
|
require_relative 'aws-sdk-ivschat/endpoint_parameters'
|
21
22
|
require_relative 'aws-sdk-ivschat/endpoint_provider'
|
@@ -52,6 +53,6 @@ require_relative 'aws-sdk-ivschat/customizations'
|
|
52
53
|
# @!group service
|
53
54
|
module Aws::Ivschat
|
54
55
|
|
55
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.28.0'
|
56
57
|
|
57
58
|
end
|
data/sig/client.rbs
CHANGED
@@ -48,6 +48,7 @@ module Aws
|
|
48
48
|
?sdk_ua_app_id: String,
|
49
49
|
?secret_access_key: String,
|
50
50
|
?session_token: String,
|
51
|
+
?sigv4a_signing_region_set: Array[String],
|
51
52
|
?stub_responses: untyped,
|
52
53
|
?token_provider: untyped,
|
53
54
|
?use_dualstack_endpoint: bool,
|
@@ -74,45 +75,45 @@ module Aws
|
|
74
75
|
|
75
76
|
interface _CreateChatTokenResponseSuccess
|
76
77
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateChatTokenResponse]
|
77
|
-
def session_expiration_time: () -> ::Time
|
78
78
|
def token: () -> ::String
|
79
79
|
def token_expiration_time: () -> ::Time
|
80
|
+
def session_expiration_time: () -> ::Time
|
80
81
|
end
|
81
82
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_chat_token-instance_method
|
82
83
|
def create_chat_token: (
|
83
|
-
?attributes: Hash[::String, ::String],
|
84
|
-
?capabilities: Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")],
|
85
84
|
room_identifier: ::String,
|
85
|
+
user_id: ::String,
|
86
|
+
?capabilities: Array[("SEND_MESSAGE" | "DISCONNECT_USER" | "DELETE_MESSAGE")],
|
86
87
|
?session_duration_in_minutes: ::Integer,
|
87
|
-
|
88
|
+
?attributes: Hash[::String, ::String]
|
88
89
|
) -> _CreateChatTokenResponseSuccess
|
89
90
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChatTokenResponseSuccess
|
90
91
|
|
91
92
|
interface _CreateLoggingConfigurationResponseSuccess
|
92
93
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateLoggingConfigurationResponse]
|
93
94
|
def arn: () -> ::String
|
94
|
-
def create_time: () -> ::Time
|
95
|
-
def destination_configuration: () -> Types::DestinationConfiguration
|
96
95
|
def id: () -> ::String
|
96
|
+
def create_time: () -> ::Time
|
97
|
+
def update_time: () -> ::Time
|
97
98
|
def name: () -> ::String
|
99
|
+
def destination_configuration: () -> Types::DestinationConfiguration
|
98
100
|
def state: () -> ("ACTIVE")
|
99
101
|
def tags: () -> ::Hash[::String, ::String]
|
100
|
-
def update_time: () -> ::Time
|
101
102
|
end
|
102
103
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_logging_configuration-instance_method
|
103
104
|
def create_logging_configuration: (
|
105
|
+
?name: ::String,
|
104
106
|
destination_configuration: {
|
107
|
+
s3: {
|
108
|
+
bucket_name: ::String
|
109
|
+
}?,
|
105
110
|
cloud_watch_logs: {
|
106
111
|
log_group_name: ::String
|
107
112
|
}?,
|
108
113
|
firehose: {
|
109
114
|
delivery_stream_name: ::String
|
110
|
-
}?,
|
111
|
-
s3: {
|
112
|
-
bucket_name: ::String
|
113
115
|
}?
|
114
116
|
},
|
115
|
-
?name: ::String,
|
116
117
|
?tags: Hash[::String, ::String]
|
117
118
|
) -> _CreateLoggingConfigurationResponseSuccess
|
118
119
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLoggingConfigurationResponseSuccess
|
@@ -120,27 +121,27 @@ module Aws
|
|
120
121
|
interface _CreateRoomResponseSuccess
|
121
122
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateRoomResponse]
|
122
123
|
def arn: () -> ::String
|
123
|
-
def create_time: () -> ::Time
|
124
124
|
def id: () -> ::String
|
125
|
-
def
|
126
|
-
def
|
125
|
+
def name: () -> ::String
|
126
|
+
def create_time: () -> ::Time
|
127
|
+
def update_time: () -> ::Time
|
127
128
|
def maximum_message_rate_per_second: () -> ::Integer
|
129
|
+
def maximum_message_length: () -> ::Integer
|
128
130
|
def message_review_handler: () -> Types::MessageReviewHandler
|
129
|
-
def name: () -> ::String
|
130
131
|
def tags: () -> ::Hash[::String, ::String]
|
131
|
-
def
|
132
|
+
def logging_configuration_identifiers: () -> ::Array[::String]
|
132
133
|
end
|
133
134
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#create_room-instance_method
|
134
135
|
def create_room: (
|
135
|
-
?
|
136
|
-
?maximum_message_length: ::Integer,
|
136
|
+
?name: ::String,
|
137
137
|
?maximum_message_rate_per_second: ::Integer,
|
138
|
+
?maximum_message_length: ::Integer,
|
138
139
|
?message_review_handler: {
|
139
|
-
|
140
|
-
|
140
|
+
uri: ::String?,
|
141
|
+
fallback_result: ("ALLOW" | "DENY")?
|
141
142
|
},
|
142
|
-
?
|
143
|
-
?
|
143
|
+
?tags: Hash[::String, ::String],
|
144
|
+
?logging_configuration_identifiers: Array[::String]
|
144
145
|
) -> _CreateRoomResponseSuccess
|
145
146
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateRoomResponseSuccess
|
146
147
|
|
@@ -156,9 +157,9 @@ module Aws
|
|
156
157
|
end
|
157
158
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#delete_message-instance_method
|
158
159
|
def delete_message: (
|
160
|
+
room_identifier: ::String,
|
159
161
|
id: ::String,
|
160
|
-
?reason: ::String
|
161
|
-
room_identifier: ::String
|
162
|
+
?reason: ::String
|
162
163
|
) -> _DeleteMessageResponseSuccess
|
163
164
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteMessageResponseSuccess
|
164
165
|
|
@@ -173,22 +174,22 @@ module Aws
|
|
173
174
|
end
|
174
175
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#disconnect_user-instance_method
|
175
176
|
def disconnect_user: (
|
176
|
-
?reason: ::String,
|
177
177
|
room_identifier: ::String,
|
178
|
-
user_id: ::String
|
178
|
+
user_id: ::String,
|
179
|
+
?reason: ::String
|
179
180
|
) -> _DisconnectUserResponseSuccess
|
180
181
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisconnectUserResponseSuccess
|
181
182
|
|
182
183
|
interface _GetLoggingConfigurationResponseSuccess
|
183
184
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetLoggingConfigurationResponse]
|
184
185
|
def arn: () -> ::String
|
185
|
-
def create_time: () -> ::Time
|
186
|
-
def destination_configuration: () -> Types::DestinationConfiguration
|
187
186
|
def id: () -> ::String
|
187
|
+
def create_time: () -> ::Time
|
188
|
+
def update_time: () -> ::Time
|
188
189
|
def name: () -> ::String
|
190
|
+
def destination_configuration: () -> Types::DestinationConfiguration
|
189
191
|
def state: () -> ("CREATING" | "CREATE_FAILED" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED" | "ACTIVE")
|
190
192
|
def tags: () -> ::Hash[::String, ::String]
|
191
|
-
def update_time: () -> ::Time
|
192
193
|
end
|
193
194
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#get_logging_configuration-instance_method
|
194
195
|
def get_logging_configuration: (
|
@@ -199,15 +200,15 @@ module Aws
|
|
199
200
|
interface _GetRoomResponseSuccess
|
200
201
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRoomResponse]
|
201
202
|
def arn: () -> ::String
|
202
|
-
def create_time: () -> ::Time
|
203
203
|
def id: () -> ::String
|
204
|
-
def
|
205
|
-
def
|
204
|
+
def name: () -> ::String
|
205
|
+
def create_time: () -> ::Time
|
206
|
+
def update_time: () -> ::Time
|
206
207
|
def maximum_message_rate_per_second: () -> ::Integer
|
208
|
+
def maximum_message_length: () -> ::Integer
|
207
209
|
def message_review_handler: () -> Types::MessageReviewHandler
|
208
|
-
def name: () -> ::String
|
209
210
|
def tags: () -> ::Hash[::String, ::String]
|
210
|
-
def
|
211
|
+
def logging_configuration_identifiers: () -> ::Array[::String]
|
211
212
|
end
|
212
213
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#get_room-instance_method
|
213
214
|
def get_room: (
|
@@ -222,23 +223,23 @@ module Aws
|
|
222
223
|
end
|
223
224
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#list_logging_configurations-instance_method
|
224
225
|
def list_logging_configurations: (
|
225
|
-
?
|
226
|
-
?
|
226
|
+
?next_token: ::String,
|
227
|
+
?max_results: ::Integer
|
227
228
|
) -> _ListLoggingConfigurationsResponseSuccess
|
228
229
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListLoggingConfigurationsResponseSuccess
|
229
230
|
|
230
231
|
interface _ListRoomsResponseSuccess
|
231
232
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListRoomsResponse]
|
232
|
-
def next_token: () -> ::String
|
233
233
|
def rooms: () -> ::Array[Types::RoomSummary]
|
234
|
+
def next_token: () -> ::String
|
234
235
|
end
|
235
236
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#list_rooms-instance_method
|
236
237
|
def list_rooms: (
|
237
|
-
?
|
238
|
+
?name: ::String,
|
239
|
+
?next_token: ::String,
|
238
240
|
?max_results: ::Integer,
|
239
241
|
?message_review_handler_uri: ::String,
|
240
|
-
?
|
241
|
-
?next_token: ::String
|
242
|
+
?logging_configuration_identifier: ::String
|
242
243
|
) -> _ListRoomsResponseSuccess
|
243
244
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRoomsResponseSuccess
|
244
245
|
|
@@ -258,9 +259,9 @@ module Aws
|
|
258
259
|
end
|
259
260
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#send_event-instance_method
|
260
261
|
def send_event: (
|
261
|
-
|
262
|
+
room_identifier: ::String,
|
262
263
|
event_name: ::String,
|
263
|
-
|
264
|
+
?attributes: Hash[::String, ::String]
|
264
265
|
) -> _SendEventResponseSuccess
|
265
266
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendEventResponseSuccess
|
266
267
|
|
@@ -287,56 +288,56 @@ module Aws
|
|
287
288
|
interface _UpdateLoggingConfigurationResponseSuccess
|
288
289
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateLoggingConfigurationResponse]
|
289
290
|
def arn: () -> ::String
|
290
|
-
def create_time: () -> ::Time
|
291
|
-
def destination_configuration: () -> Types::DestinationConfiguration
|
292
291
|
def id: () -> ::String
|
292
|
+
def create_time: () -> ::Time
|
293
|
+
def update_time: () -> ::Time
|
293
294
|
def name: () -> ::String
|
295
|
+
def destination_configuration: () -> Types::DestinationConfiguration
|
294
296
|
def state: () -> ("ACTIVE")
|
295
297
|
def tags: () -> ::Hash[::String, ::String]
|
296
|
-
def update_time: () -> ::Time
|
297
298
|
end
|
298
299
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#update_logging_configuration-instance_method
|
299
300
|
def update_logging_configuration: (
|
301
|
+
identifier: ::String,
|
302
|
+
?name: ::String,
|
300
303
|
?destination_configuration: {
|
304
|
+
s3: {
|
305
|
+
bucket_name: ::String
|
306
|
+
}?,
|
301
307
|
cloud_watch_logs: {
|
302
308
|
log_group_name: ::String
|
303
309
|
}?,
|
304
310
|
firehose: {
|
305
311
|
delivery_stream_name: ::String
|
306
|
-
}?,
|
307
|
-
s3: {
|
308
|
-
bucket_name: ::String
|
309
312
|
}?
|
310
|
-
}
|
311
|
-
identifier: ::String,
|
312
|
-
?name: ::String
|
313
|
+
}
|
313
314
|
) -> _UpdateLoggingConfigurationResponseSuccess
|
314
315
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLoggingConfigurationResponseSuccess
|
315
316
|
|
316
317
|
interface _UpdateRoomResponseSuccess
|
317
318
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRoomResponse]
|
318
319
|
def arn: () -> ::String
|
319
|
-
def create_time: () -> ::Time
|
320
320
|
def id: () -> ::String
|
321
|
-
def
|
322
|
-
def
|
321
|
+
def name: () -> ::String
|
322
|
+
def create_time: () -> ::Time
|
323
|
+
def update_time: () -> ::Time
|
323
324
|
def maximum_message_rate_per_second: () -> ::Integer
|
325
|
+
def maximum_message_length: () -> ::Integer
|
324
326
|
def message_review_handler: () -> Types::MessageReviewHandler
|
325
|
-
def name: () -> ::String
|
326
327
|
def tags: () -> ::Hash[::String, ::String]
|
327
|
-
def
|
328
|
+
def logging_configuration_identifiers: () -> ::Array[::String]
|
328
329
|
end
|
329
330
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Ivschat/Client.html#update_room-instance_method
|
330
331
|
def update_room: (
|
331
332
|
identifier: ::String,
|
332
|
-
?
|
333
|
-
?maximum_message_length: ::Integer,
|
333
|
+
?name: ::String,
|
334
334
|
?maximum_message_rate_per_second: ::Integer,
|
335
|
+
?maximum_message_length: ::Integer,
|
335
336
|
?message_review_handler: {
|
336
|
-
|
337
|
-
|
337
|
+
uri: ::String?,
|
338
|
+
fallback_result: ("ALLOW" | "DENY")?
|
338
339
|
},
|
339
|
-
?
|
340
|
+
?logging_configuration_identifiers: Array[::String]
|
340
341
|
) -> _UpdateRoomResponseSuccess
|
341
342
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRoomResponseSuccess
|
342
343
|
end
|
data/sig/errors.rbs
CHANGED
@@ -31,21 +31,21 @@ module Aws
|
|
31
31
|
def resource_type: () -> ::String
|
32
32
|
end
|
33
33
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
34
|
-
def limit: () -> ::String
|
35
34
|
def message: () -> ::String
|
36
35
|
def resource_id: () -> ::String
|
37
36
|
def resource_type: () -> ::String
|
37
|
+
def limit: () -> ::String
|
38
38
|
end
|
39
39
|
class ThrottlingException < ::Aws::Errors::ServiceError
|
40
|
-
def limit: () -> ::String
|
41
40
|
def message: () -> ::String
|
42
41
|
def resource_id: () -> ::String
|
43
42
|
def resource_type: () -> ::String
|
43
|
+
def limit: () -> ::String
|
44
44
|
end
|
45
45
|
class ValidationException < ::Aws::Errors::ServiceError
|
46
|
-
def field_list: () -> ::String
|
47
46
|
def message: () -> ::String
|
48
47
|
def reason: () -> ::String
|
48
|
+
def field_list: () -> ::String
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
data/sig/resource.rbs
CHANGED