aws-sdk-kinesisvideo 1.58.0 → 1.59.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-kinesisvideo/client.rb +1 -1
- data/lib/aws-sdk-kinesisvideo/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-kinesisvideo.rb +1 -1
- data/sig/client.rbs +507 -0
- data/sig/errors.rbs +61 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +611 -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: 51ea4acc785801e852d76aefbc78b4d762260c372653d4488faaedb5208a435b
|
4
|
+
data.tar.gz: 5885d3da5da08dddfd0c0cbcaa15d4b7d30ba0f33a5ac3f7709233f576fdfdbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92c4df8b79d4b98ff3e254fcba0aab9a5aaae6a6685b7b843d2c48e30400475ac251e881fdf52a18f1de1394d5c8082df91433c2135b94bb55946b51306c5b23
|
7
|
+
data.tar.gz: f1de23be6864088c398f5fbbfaaff9302187d35a380ae3cb656480ad69f566739f6a154baf3c0b3ae2ad82593c4f614efa19d01ed873c997335b01c8f1090f4f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.59.0
|
@@ -1938,7 +1938,7 @@ module Aws::KinesisVideo
|
|
1938
1938
|
params: params,
|
1939
1939
|
config: config)
|
1940
1940
|
context[:gem_name] = 'aws-sdk-kinesisvideo'
|
1941
|
-
context[:gem_version] = '1.
|
1941
|
+
context[:gem_version] = '1.59.0'
|
1942
1942
|
Seahorse::Client::Request.new(handlers, context)
|
1943
1943
|
end
|
1944
1944
|
|
@@ -14,6 +14,7 @@ module Aws::KinesisVideo
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::KinesisVideo::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/lib/aws-sdk-kinesisvideo.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,507 @@
|
|
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 KinesisVideo
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/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 _CreateSignalingChannelResponseSuccess
|
76
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSignalingChannelOutput]
|
77
|
+
def channel_arn: () -> ::String
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#create_signaling_channel-instance_method
|
80
|
+
def create_signaling_channel: (
|
81
|
+
channel_name: ::String,
|
82
|
+
?channel_type: ("SINGLE_MASTER" | "FULL_MESH"),
|
83
|
+
?single_master_configuration: {
|
84
|
+
message_ttl_seconds: ::Integer?
|
85
|
+
},
|
86
|
+
?tags: Array[
|
87
|
+
{
|
88
|
+
key: ::String,
|
89
|
+
value: ::String
|
90
|
+
},
|
91
|
+
]
|
92
|
+
) -> _CreateSignalingChannelResponseSuccess
|
93
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSignalingChannelResponseSuccess
|
94
|
+
|
95
|
+
interface _CreateStreamResponseSuccess
|
96
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStreamOutput]
|
97
|
+
def stream_arn: () -> ::String
|
98
|
+
end
|
99
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#create_stream-instance_method
|
100
|
+
def create_stream: (
|
101
|
+
?device_name: ::String,
|
102
|
+
stream_name: ::String,
|
103
|
+
?media_type: ::String,
|
104
|
+
?kms_key_id: ::String,
|
105
|
+
?data_retention_in_hours: ::Integer,
|
106
|
+
?tags: Hash[::String, ::String]
|
107
|
+
) -> _CreateStreamResponseSuccess
|
108
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateStreamResponseSuccess
|
109
|
+
|
110
|
+
interface _DeleteEdgeConfigurationResponseSuccess
|
111
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEdgeConfigurationOutput]
|
112
|
+
end
|
113
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#delete_edge_configuration-instance_method
|
114
|
+
def delete_edge_configuration: (
|
115
|
+
?stream_name: ::String,
|
116
|
+
?stream_arn: ::String
|
117
|
+
) -> _DeleteEdgeConfigurationResponseSuccess
|
118
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEdgeConfigurationResponseSuccess
|
119
|
+
|
120
|
+
interface _DeleteSignalingChannelResponseSuccess
|
121
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSignalingChannelOutput]
|
122
|
+
end
|
123
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#delete_signaling_channel-instance_method
|
124
|
+
def delete_signaling_channel: (
|
125
|
+
channel_arn: ::String,
|
126
|
+
?current_version: ::String
|
127
|
+
) -> _DeleteSignalingChannelResponseSuccess
|
128
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSignalingChannelResponseSuccess
|
129
|
+
|
130
|
+
interface _DeleteStreamResponseSuccess
|
131
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteStreamOutput]
|
132
|
+
end
|
133
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#delete_stream-instance_method
|
134
|
+
def delete_stream: (
|
135
|
+
stream_arn: ::String,
|
136
|
+
?current_version: ::String
|
137
|
+
) -> _DeleteStreamResponseSuccess
|
138
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteStreamResponseSuccess
|
139
|
+
|
140
|
+
interface _DescribeEdgeConfigurationResponseSuccess
|
141
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEdgeConfigurationOutput]
|
142
|
+
def stream_name: () -> ::String
|
143
|
+
def stream_arn: () -> ::String
|
144
|
+
def creation_time: () -> ::Time
|
145
|
+
def last_updated_time: () -> ::Time
|
146
|
+
def sync_status: () -> ("SYNCING" | "ACKNOWLEDGED" | "IN_SYNC" | "SYNC_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETING_ACKNOWLEDGED")
|
147
|
+
def failed_status_details: () -> ::String
|
148
|
+
def edge_config: () -> Types::EdgeConfig
|
149
|
+
def edge_agent_status: () -> Types::EdgeAgentStatus
|
150
|
+
end
|
151
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#describe_edge_configuration-instance_method
|
152
|
+
def describe_edge_configuration: (
|
153
|
+
?stream_name: ::String,
|
154
|
+
?stream_arn: ::String
|
155
|
+
) -> _DescribeEdgeConfigurationResponseSuccess
|
156
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEdgeConfigurationResponseSuccess
|
157
|
+
|
158
|
+
interface _DescribeImageGenerationConfigurationResponseSuccess
|
159
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeImageGenerationConfigurationOutput]
|
160
|
+
def image_generation_configuration: () -> Types::ImageGenerationConfiguration
|
161
|
+
end
|
162
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#describe_image_generation_configuration-instance_method
|
163
|
+
def describe_image_generation_configuration: (
|
164
|
+
?stream_name: ::String,
|
165
|
+
?stream_arn: ::String
|
166
|
+
) -> _DescribeImageGenerationConfigurationResponseSuccess
|
167
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeImageGenerationConfigurationResponseSuccess
|
168
|
+
|
169
|
+
interface _DescribeMappedResourceConfigurationResponseSuccess
|
170
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMappedResourceConfigurationOutput]
|
171
|
+
def mapped_resource_configuration_list: () -> ::Array[Types::MappedResourceConfigurationListItem]
|
172
|
+
def next_token: () -> ::String
|
173
|
+
end
|
174
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#describe_mapped_resource_configuration-instance_method
|
175
|
+
def describe_mapped_resource_configuration: (
|
176
|
+
?stream_name: ::String,
|
177
|
+
?stream_arn: ::String,
|
178
|
+
?max_results: ::Integer,
|
179
|
+
?next_token: ::String
|
180
|
+
) -> _DescribeMappedResourceConfigurationResponseSuccess
|
181
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMappedResourceConfigurationResponseSuccess
|
182
|
+
|
183
|
+
interface _DescribeMediaStorageConfigurationResponseSuccess
|
184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMediaStorageConfigurationOutput]
|
185
|
+
def media_storage_configuration: () -> Types::MediaStorageConfiguration
|
186
|
+
end
|
187
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#describe_media_storage_configuration-instance_method
|
188
|
+
def describe_media_storage_configuration: (
|
189
|
+
?channel_name: ::String,
|
190
|
+
?channel_arn: ::String
|
191
|
+
) -> _DescribeMediaStorageConfigurationResponseSuccess
|
192
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMediaStorageConfigurationResponseSuccess
|
193
|
+
|
194
|
+
interface _DescribeNotificationConfigurationResponseSuccess
|
195
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeNotificationConfigurationOutput]
|
196
|
+
def notification_configuration: () -> Types::NotificationConfiguration
|
197
|
+
end
|
198
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#describe_notification_configuration-instance_method
|
199
|
+
def describe_notification_configuration: (
|
200
|
+
?stream_name: ::String,
|
201
|
+
?stream_arn: ::String
|
202
|
+
) -> _DescribeNotificationConfigurationResponseSuccess
|
203
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeNotificationConfigurationResponseSuccess
|
204
|
+
|
205
|
+
interface _DescribeSignalingChannelResponseSuccess
|
206
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSignalingChannelOutput]
|
207
|
+
def channel_info: () -> Types::ChannelInfo
|
208
|
+
end
|
209
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#describe_signaling_channel-instance_method
|
210
|
+
def describe_signaling_channel: (
|
211
|
+
?channel_name: ::String,
|
212
|
+
?channel_arn: ::String
|
213
|
+
) -> _DescribeSignalingChannelResponseSuccess
|
214
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSignalingChannelResponseSuccess
|
215
|
+
|
216
|
+
interface _DescribeStreamResponseSuccess
|
217
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStreamOutput]
|
218
|
+
def stream_info: () -> Types::StreamInfo
|
219
|
+
end
|
220
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#describe_stream-instance_method
|
221
|
+
def describe_stream: (
|
222
|
+
?stream_name: ::String,
|
223
|
+
?stream_arn: ::String
|
224
|
+
) -> _DescribeStreamResponseSuccess
|
225
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeStreamResponseSuccess
|
226
|
+
|
227
|
+
interface _GetDataEndpointResponseSuccess
|
228
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataEndpointOutput]
|
229
|
+
def data_endpoint: () -> ::String
|
230
|
+
end
|
231
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#get_data_endpoint-instance_method
|
232
|
+
def get_data_endpoint: (
|
233
|
+
?stream_name: ::String,
|
234
|
+
?stream_arn: ::String,
|
235
|
+
api_name: ("PUT_MEDIA" | "GET_MEDIA" | "LIST_FRAGMENTS" | "GET_MEDIA_FOR_FRAGMENT_LIST" | "GET_HLS_STREAMING_SESSION_URL" | "GET_DASH_STREAMING_SESSION_URL" | "GET_CLIP" | "GET_IMAGES")
|
236
|
+
) -> _GetDataEndpointResponseSuccess
|
237
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataEndpointResponseSuccess
|
238
|
+
|
239
|
+
interface _GetSignalingChannelEndpointResponseSuccess
|
240
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetSignalingChannelEndpointOutput]
|
241
|
+
def resource_endpoint_list: () -> ::Array[Types::ResourceEndpointListItem]
|
242
|
+
end
|
243
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#get_signaling_channel_endpoint-instance_method
|
244
|
+
def get_signaling_channel_endpoint: (
|
245
|
+
channel_arn: ::String,
|
246
|
+
?single_master_channel_endpoint_configuration: {
|
247
|
+
protocols: Array[("WSS" | "HTTPS" | "WEBRTC")]?,
|
248
|
+
role: ("MASTER" | "VIEWER")?
|
249
|
+
}
|
250
|
+
) -> _GetSignalingChannelEndpointResponseSuccess
|
251
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetSignalingChannelEndpointResponseSuccess
|
252
|
+
|
253
|
+
interface _ListEdgeAgentConfigurationsResponseSuccess
|
254
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEdgeAgentConfigurationsOutput]
|
255
|
+
def edge_configs: () -> ::Array[Types::ListEdgeAgentConfigurationsEdgeConfig]
|
256
|
+
def next_token: () -> ::String
|
257
|
+
end
|
258
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#list_edge_agent_configurations-instance_method
|
259
|
+
def list_edge_agent_configurations: (
|
260
|
+
hub_device_arn: ::String,
|
261
|
+
?max_results: ::Integer,
|
262
|
+
?next_token: ::String
|
263
|
+
) -> _ListEdgeAgentConfigurationsResponseSuccess
|
264
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEdgeAgentConfigurationsResponseSuccess
|
265
|
+
|
266
|
+
interface _ListSignalingChannelsResponseSuccess
|
267
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSignalingChannelsOutput]
|
268
|
+
def channel_info_list: () -> ::Array[Types::ChannelInfo]
|
269
|
+
def next_token: () -> ::String
|
270
|
+
end
|
271
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#list_signaling_channels-instance_method
|
272
|
+
def list_signaling_channels: (
|
273
|
+
?max_results: ::Integer,
|
274
|
+
?next_token: ::String,
|
275
|
+
?channel_name_condition: {
|
276
|
+
comparison_operator: ("BEGINS_WITH")?,
|
277
|
+
comparison_value: ::String?
|
278
|
+
}
|
279
|
+
) -> _ListSignalingChannelsResponseSuccess
|
280
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSignalingChannelsResponseSuccess
|
281
|
+
|
282
|
+
interface _ListStreamsResponseSuccess
|
283
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListStreamsOutput]
|
284
|
+
def stream_info_list: () -> ::Array[Types::StreamInfo]
|
285
|
+
def next_token: () -> ::String
|
286
|
+
end
|
287
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#list_streams-instance_method
|
288
|
+
def list_streams: (
|
289
|
+
?max_results: ::Integer,
|
290
|
+
?next_token: ::String,
|
291
|
+
?stream_name_condition: {
|
292
|
+
comparison_operator: ("BEGINS_WITH")?,
|
293
|
+
comparison_value: ::String?
|
294
|
+
}
|
295
|
+
) -> _ListStreamsResponseSuccess
|
296
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListStreamsResponseSuccess
|
297
|
+
|
298
|
+
interface _ListTagsForResourceResponseSuccess
|
299
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceOutput]
|
300
|
+
def next_token: () -> ::String
|
301
|
+
def tags: () -> ::Hash[::String, ::String]
|
302
|
+
end
|
303
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#list_tags_for_resource-instance_method
|
304
|
+
def list_tags_for_resource: (
|
305
|
+
?next_token: ::String,
|
306
|
+
resource_arn: ::String
|
307
|
+
) -> _ListTagsForResourceResponseSuccess
|
308
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
309
|
+
|
310
|
+
interface _ListTagsForStreamResponseSuccess
|
311
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForStreamOutput]
|
312
|
+
def next_token: () -> ::String
|
313
|
+
def tags: () -> ::Hash[::String, ::String]
|
314
|
+
end
|
315
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#list_tags_for_stream-instance_method
|
316
|
+
def list_tags_for_stream: (
|
317
|
+
?next_token: ::String,
|
318
|
+
?stream_arn: ::String,
|
319
|
+
?stream_name: ::String
|
320
|
+
) -> _ListTagsForStreamResponseSuccess
|
321
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForStreamResponseSuccess
|
322
|
+
|
323
|
+
interface _StartEdgeConfigurationUpdateResponseSuccess
|
324
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartEdgeConfigurationUpdateOutput]
|
325
|
+
def stream_name: () -> ::String
|
326
|
+
def stream_arn: () -> ::String
|
327
|
+
def creation_time: () -> ::Time
|
328
|
+
def last_updated_time: () -> ::Time
|
329
|
+
def sync_status: () -> ("SYNCING" | "ACKNOWLEDGED" | "IN_SYNC" | "SYNC_FAILED" | "DELETING" | "DELETE_FAILED" | "DELETING_ACKNOWLEDGED")
|
330
|
+
def failed_status_details: () -> ::String
|
331
|
+
def edge_config: () -> Types::EdgeConfig
|
332
|
+
end
|
333
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#start_edge_configuration_update-instance_method
|
334
|
+
def start_edge_configuration_update: (
|
335
|
+
?stream_name: ::String,
|
336
|
+
?stream_arn: ::String,
|
337
|
+
edge_config: {
|
338
|
+
hub_device_arn: ::String,
|
339
|
+
recorder_config: {
|
340
|
+
media_source_config: {
|
341
|
+
media_uri_secret_arn: ::String,
|
342
|
+
media_uri_type: ("RTSP_URI" | "FILE_URI")
|
343
|
+
},
|
344
|
+
schedule_config: {
|
345
|
+
schedule_expression: ::String,
|
346
|
+
duration_in_seconds: ::Integer
|
347
|
+
}?
|
348
|
+
},
|
349
|
+
uploader_config: {
|
350
|
+
schedule_config: {
|
351
|
+
schedule_expression: ::String,
|
352
|
+
duration_in_seconds: ::Integer
|
353
|
+
}
|
354
|
+
}?,
|
355
|
+
deletion_config: {
|
356
|
+
edge_retention_in_hours: ::Integer?,
|
357
|
+
local_size_config: {
|
358
|
+
max_local_media_size_in_mb: ::Integer?,
|
359
|
+
strategy_on_full_size: ("DELETE_OLDEST_MEDIA" | "DENY_NEW_MEDIA")?
|
360
|
+
}?,
|
361
|
+
delete_after_upload: bool?
|
362
|
+
}?
|
363
|
+
}
|
364
|
+
) -> _StartEdgeConfigurationUpdateResponseSuccess
|
365
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartEdgeConfigurationUpdateResponseSuccess
|
366
|
+
|
367
|
+
interface _TagResourceResponseSuccess
|
368
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceOutput]
|
369
|
+
end
|
370
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#tag_resource-instance_method
|
371
|
+
def tag_resource: (
|
372
|
+
resource_arn: ::String,
|
373
|
+
tags: Array[
|
374
|
+
{
|
375
|
+
key: ::String,
|
376
|
+
value: ::String
|
377
|
+
},
|
378
|
+
]
|
379
|
+
) -> _TagResourceResponseSuccess
|
380
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
|
381
|
+
|
382
|
+
interface _TagStreamResponseSuccess
|
383
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::TagStreamOutput]
|
384
|
+
end
|
385
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#tag_stream-instance_method
|
386
|
+
def tag_stream: (
|
387
|
+
?stream_arn: ::String,
|
388
|
+
?stream_name: ::String,
|
389
|
+
tags: Hash[::String, ::String]
|
390
|
+
) -> _TagStreamResponseSuccess
|
391
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagStreamResponseSuccess
|
392
|
+
|
393
|
+
interface _UntagResourceResponseSuccess
|
394
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceOutput]
|
395
|
+
end
|
396
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#untag_resource-instance_method
|
397
|
+
def untag_resource: (
|
398
|
+
resource_arn: ::String,
|
399
|
+
tag_key_list: Array[::String]
|
400
|
+
) -> _UntagResourceResponseSuccess
|
401
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
|
402
|
+
|
403
|
+
interface _UntagStreamResponseSuccess
|
404
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UntagStreamOutput]
|
405
|
+
end
|
406
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#untag_stream-instance_method
|
407
|
+
def untag_stream: (
|
408
|
+
?stream_arn: ::String,
|
409
|
+
?stream_name: ::String,
|
410
|
+
tag_key_list: Array[::String]
|
411
|
+
) -> _UntagStreamResponseSuccess
|
412
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagStreamResponseSuccess
|
413
|
+
|
414
|
+
interface _UpdateDataRetentionResponseSuccess
|
415
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataRetentionOutput]
|
416
|
+
end
|
417
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#update_data_retention-instance_method
|
418
|
+
def update_data_retention: (
|
419
|
+
?stream_name: ::String,
|
420
|
+
?stream_arn: ::String,
|
421
|
+
current_version: ::String,
|
422
|
+
operation: ("INCREASE_DATA_RETENTION" | "DECREASE_DATA_RETENTION"),
|
423
|
+
data_retention_change_in_hours: ::Integer
|
424
|
+
) -> _UpdateDataRetentionResponseSuccess
|
425
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataRetentionResponseSuccess
|
426
|
+
|
427
|
+
interface _UpdateImageGenerationConfigurationResponseSuccess
|
428
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateImageGenerationConfigurationOutput]
|
429
|
+
end
|
430
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#update_image_generation_configuration-instance_method
|
431
|
+
def update_image_generation_configuration: (
|
432
|
+
?stream_name: ::String,
|
433
|
+
?stream_arn: ::String,
|
434
|
+
?image_generation_configuration: {
|
435
|
+
status: ("ENABLED" | "DISABLED"),
|
436
|
+
image_selector_type: ("SERVER_TIMESTAMP" | "PRODUCER_TIMESTAMP"),
|
437
|
+
destination_config: {
|
438
|
+
uri: ::String,
|
439
|
+
destination_region: ::String
|
440
|
+
},
|
441
|
+
sampling_interval: ::Integer,
|
442
|
+
format: ("JPEG" | "PNG"),
|
443
|
+
format_config: Hash[("JPEGQuality"), ::String]?,
|
444
|
+
width_pixels: ::Integer?,
|
445
|
+
height_pixels: ::Integer?
|
446
|
+
}
|
447
|
+
) -> _UpdateImageGenerationConfigurationResponseSuccess
|
448
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateImageGenerationConfigurationResponseSuccess
|
449
|
+
|
450
|
+
interface _UpdateMediaStorageConfigurationResponseSuccess
|
451
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateMediaStorageConfigurationOutput]
|
452
|
+
end
|
453
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#update_media_storage_configuration-instance_method
|
454
|
+
def update_media_storage_configuration: (
|
455
|
+
channel_arn: ::String,
|
456
|
+
media_storage_configuration: {
|
457
|
+
stream_arn: ::String?,
|
458
|
+
status: ("ENABLED" | "DISABLED")
|
459
|
+
}
|
460
|
+
) -> _UpdateMediaStorageConfigurationResponseSuccess
|
461
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateMediaStorageConfigurationResponseSuccess
|
462
|
+
|
463
|
+
interface _UpdateNotificationConfigurationResponseSuccess
|
464
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateNotificationConfigurationOutput]
|
465
|
+
end
|
466
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#update_notification_configuration-instance_method
|
467
|
+
def update_notification_configuration: (
|
468
|
+
?stream_name: ::String,
|
469
|
+
?stream_arn: ::String,
|
470
|
+
?notification_configuration: {
|
471
|
+
status: ("ENABLED" | "DISABLED"),
|
472
|
+
destination_config: {
|
473
|
+
uri: ::String
|
474
|
+
}
|
475
|
+
}
|
476
|
+
) -> _UpdateNotificationConfigurationResponseSuccess
|
477
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNotificationConfigurationResponseSuccess
|
478
|
+
|
479
|
+
interface _UpdateSignalingChannelResponseSuccess
|
480
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSignalingChannelOutput]
|
481
|
+
end
|
482
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#update_signaling_channel-instance_method
|
483
|
+
def update_signaling_channel: (
|
484
|
+
channel_arn: ::String,
|
485
|
+
current_version: ::String,
|
486
|
+
?single_master_configuration: {
|
487
|
+
message_ttl_seconds: ::Integer?
|
488
|
+
}
|
489
|
+
) -> _UpdateSignalingChannelResponseSuccess
|
490
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSignalingChannelResponseSuccess
|
491
|
+
|
492
|
+
interface _UpdateStreamResponseSuccess
|
493
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStreamOutput]
|
494
|
+
end
|
495
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KinesisVideo/Client.html#update_stream-instance_method
|
496
|
+
def update_stream: (
|
497
|
+
?stream_name: ::String,
|
498
|
+
?stream_arn: ::String,
|
499
|
+
current_version: ::String,
|
500
|
+
?device_name: ::String,
|
501
|
+
?media_type: ::String
|
502
|
+
) -> _UpdateStreamResponseSuccess
|
503
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateStreamResponseSuccess
|
504
|
+
end
|
505
|
+
end
|
506
|
+
end
|
507
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,61 @@
|
|
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 KinesisVideo
|
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 AccountChannelLimitExceededException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class AccountStreamLimitExceededException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ClientLimitExceededException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class DeviceStreamLimitExceededException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class InvalidArgumentException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class InvalidDeviceException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class InvalidResourceFormatException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class NoDataRetentionException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class NotAuthorizedException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
class ResourceInUseException < ::Aws::Errors::ServiceError
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
48
|
+
def message: () -> ::String
|
49
|
+
end
|
50
|
+
class StreamEdgeConfigurationNotFoundException < ::Aws::Errors::ServiceError
|
51
|
+
def message: () -> ::String
|
52
|
+
end
|
53
|
+
class TagsPerResourceExceededLimitException < ::Aws::Errors::ServiceError
|
54
|
+
def message: () -> ::String
|
55
|
+
end
|
56
|
+
class VersionMismatchException < ::Aws::Errors::ServiceError
|
57
|
+
def message: () -> ::String
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|