aws-sdk-kinesisvideo 1.22.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/aws-sdk-kinesisvideo.rb +3 -1
- data/lib/aws-sdk-kinesisvideo/client.rb +59 -43
- data/lib/aws-sdk-kinesisvideo/client_api.rb +4 -0
- data/lib/aws-sdk-kinesisvideo/errors.rb +2 -0
- data/lib/aws-sdk-kinesisvideo/resource.rb +3 -7
- data/lib/aws-sdk-kinesisvideo/types.rb +78 -19
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: cdcc7e7dfc42f04c3c4e1546159533060fec886366db66fb8efbe1c4a71b0365
|
4
|
+
data.tar.gz: 14eae9f27b100f2604ec2a2c0ff9d06250a7c79dfc1b2a32e7b4bd2a19b92375
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4edcaca60c7a215746e158788dcac0c4577f5a5a31e6370fd8e32477b69eebd7150678a4e1e87cf942bf5aa5750c058ca6df3e4ddac76dcdda12c66a08aff30c
|
7
|
+
data.tar.gz: b22241092f653cae8666bc262c76fe81c6217b27738999b7d756bac787a564c29e8c51aacb86ae2a9592ad077fb29230d23c6d90b1aa2d57e59c8b5d635c3f1e
|
data/lib/aws-sdk-kinesisvideo.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-kinesisvideo/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::KinesisVideo
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.27.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:kinesisvideo)
|
|
32
35
|
module Aws::KinesisVideo
|
33
36
|
# An API client for KinesisVideo. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
37
|
#
|
35
|
-
#
|
36
|
-
#
|
37
|
-
#
|
38
|
-
#
|
39
|
-
#
|
38
|
+
# client = Aws::KinesisVideo::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
40
43
|
#
|
41
44
|
# For details on configuring region and credentials see
|
42
45
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
@@ -69,6 +72,7 @@ module Aws::KinesisVideo
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -105,7 +109,7 @@ module Aws::KinesisVideo
|
|
105
109
|
# @option options [required, String] :region
|
106
110
|
# The AWS region to connect to. The configured `:region` is
|
107
111
|
# used to determine the service `:endpoint`. When not passed,
|
108
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
109
113
|
#
|
110
114
|
# * `Aws.config[:region]`
|
111
115
|
# * `ENV['AWS_REGION']`
|
@@ -161,7 +165,7 @@ module Aws::KinesisVideo
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::KinesisVideo
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -229,15 +233,19 @@ module Aws::KinesisVideo
|
|
229
233
|
#
|
230
234
|
# @option options [String] :retry_mode ("legacy")
|
231
235
|
# Specifies which retry algorithm to use. Values are:
|
232
|
-
#
|
233
|
-
#
|
234
|
-
#
|
235
|
-
#
|
236
|
-
#
|
237
|
-
#
|
238
|
-
#
|
239
|
-
#
|
240
|
-
#
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
241
249
|
#
|
242
250
|
# @option options [String] :secret_access_key
|
243
251
|
#
|
@@ -265,8 +273,7 @@ module Aws::KinesisVideo
|
|
265
273
|
#
|
266
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
267
275
|
# number of seconds to wait for response data. This value can
|
268
|
-
# safely be set
|
269
|
-
# per-request on the session yielded by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
270
277
|
#
|
271
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
272
279
|
# seconds a connection is allowed to sit idle before it is
|
@@ -278,7 +285,7 @@ module Aws::KinesisVideo
|
|
278
285
|
# request body. This option has no effect unless the request has
|
279
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
280
287
|
# disables this behaviour. This value can safely be set per
|
281
|
-
# request on the session
|
288
|
+
# request on the session.
|
282
289
|
#
|
283
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
284
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -311,7 +318,7 @@ module Aws::KinesisVideo
|
|
311
318
|
#
|
312
319
|
# @option params [required, String] :channel_name
|
313
320
|
# A name for the signaling channel that you are creating. It must be
|
314
|
-
# unique for each account and
|
321
|
+
# unique for each AWS account and AWS Region.
|
315
322
|
#
|
316
323
|
# @option params [String] :channel_type
|
317
324
|
# A type of the signaling channel that you are creating. Currently,
|
@@ -322,7 +329,7 @@ module Aws::KinesisVideo
|
|
322
329
|
# channel type.
|
323
330
|
#
|
324
331
|
# @option params [Array<Types::Tag>] :tags
|
325
|
-
# A set of tags (key
|
332
|
+
# A set of tags (key-value pairs) that you want to associate with this
|
326
333
|
# channel.
|
327
334
|
#
|
328
335
|
# @return [Types::CreateSignalingChannelOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -471,12 +478,13 @@ module Aws::KinesisVideo
|
|
471
478
|
# version, the most recent version is deleted.
|
472
479
|
#
|
473
480
|
# @option params [required, String] :channel_arn
|
474
|
-
# The ARN of the signaling channel that you want
|
481
|
+
# The Amazon Resource Name (ARN) of the signaling channel that you want
|
482
|
+
# to delete.
|
475
483
|
#
|
476
484
|
# @option params [String] :current_version
|
477
485
|
# The current version of the signaling channel that you want to delete.
|
478
486
|
# You can obtain the current version by invoking the
|
479
|
-
# `DescribeSignalingChannel` or `ListSignalingChannels`
|
487
|
+
# `DescribeSignalingChannel` or `ListSignalingChannels` API operations.
|
480
488
|
#
|
481
489
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
482
490
|
#
|
@@ -544,8 +552,8 @@ module Aws::KinesisVideo
|
|
544
552
|
end
|
545
553
|
|
546
554
|
# Returns the most current information about the signaling channel. You
|
547
|
-
# must specify either the name or the ARN of the
|
548
|
-
# to describe.
|
555
|
+
# must specify either the name or the Amazon Resource Name (ARN) of the
|
556
|
+
# channel that you want to describe.
|
549
557
|
#
|
550
558
|
# @option params [String] :channel_name
|
551
559
|
# The name of the signaling channel that you want to describe.
|
@@ -658,7 +666,7 @@ module Aws::KinesisVideo
|
|
658
666
|
# resp = client.get_data_endpoint({
|
659
667
|
# stream_name: "StreamName",
|
660
668
|
# stream_arn: "ResourceARN",
|
661
|
-
# api_name: "PUT_MEDIA", # required, accepts PUT_MEDIA, GET_MEDIA, LIST_FRAGMENTS, GET_MEDIA_FOR_FRAGMENT_LIST, GET_HLS_STREAMING_SESSION_URL, GET_DASH_STREAMING_SESSION_URL
|
669
|
+
# api_name: "PUT_MEDIA", # required, accepts PUT_MEDIA, GET_MEDIA, LIST_FRAGMENTS, GET_MEDIA_FOR_FRAGMENT_LIST, GET_HLS_STREAMING_SESSION_URL, GET_DASH_STREAMING_SESSION_URL, GET_CLIP
|
662
670
|
# })
|
663
671
|
#
|
664
672
|
# @example Response structure
|
@@ -680,9 +688,9 @@ module Aws::KinesisVideo
|
|
680
688
|
# consists of the `Protocols` and `Role` properties.
|
681
689
|
#
|
682
690
|
# `Protocols` is used to determine the communication mechanism. For
|
683
|
-
# example,
|
684
|
-
#
|
685
|
-
#
|
691
|
+
# example, if you specify `WSS` as the protocol, this API produces a
|
692
|
+
# secure websocket endpoint. If you specify `HTTPS` as the protocol,
|
693
|
+
# this API generates an HTTPS endpoint.
|
686
694
|
#
|
687
695
|
# `Role` determines the messaging permissions. A `MASTER` role results
|
688
696
|
# in this API generating an endpoint that a client can use to
|
@@ -691,8 +699,8 @@ module Aws::KinesisVideo
|
|
691
699
|
# communicate only with a `MASTER`.
|
692
700
|
#
|
693
701
|
# @option params [required, String] :channel_arn
|
694
|
-
# The ARN of the signalling channel for which you
|
695
|
-
# endpoint.
|
702
|
+
# The Amazon Resource Name (ARN) of the signalling channel for which you
|
703
|
+
# want to get an endpoint.
|
696
704
|
#
|
697
705
|
# @option params [Types::SingleMasterChannelEndpointConfiguration] :single_master_channel_endpoint_configuration
|
698
706
|
# A structure containing the endpoint configuration for the
|
@@ -749,6 +757,8 @@ module Aws::KinesisVideo
|
|
749
757
|
# * {Types::ListSignalingChannelsOutput#channel_info_list #channel_info_list} => Array<Types::ChannelInfo>
|
750
758
|
# * {Types::ListSignalingChannelsOutput#next_token #next_token} => String
|
751
759
|
#
|
760
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
761
|
+
#
|
752
762
|
# @example Request syntax with placeholder values
|
753
763
|
#
|
754
764
|
# resp = client.list_signaling_channels({
|
@@ -805,6 +815,8 @@ module Aws::KinesisVideo
|
|
805
815
|
# * {Types::ListStreamsOutput#stream_info_list #stream_info_list} => Array<Types::StreamInfo>
|
806
816
|
# * {Types::ListStreamsOutput#next_token #next_token} => String
|
807
817
|
#
|
818
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
819
|
+
#
|
808
820
|
# @example Request syntax with placeholder values
|
809
821
|
#
|
810
822
|
# resp = client.list_streams({
|
@@ -843,12 +855,13 @@ module Aws::KinesisVideo
|
|
843
855
|
# channel.
|
844
856
|
#
|
845
857
|
# @option params [String] :next_token
|
846
|
-
# If you specify this parameter and the result of a
|
847
|
-
# call is truncated, the response includes a token
|
848
|
-
# the next request to fetch the next batch of tags.
|
858
|
+
# If you specify this parameter and the result of a
|
859
|
+
# `ListTagsForResource` call is truncated, the response includes a token
|
860
|
+
# that you can use in the next request to fetch the next batch of tags.
|
849
861
|
#
|
850
862
|
# @option params [required, String] :resource_arn
|
851
|
-
# The ARN of the signaling channel for which you
|
863
|
+
# The Amazon Resource Name (ARN) of the signaling channel for which you
|
864
|
+
# want to list tags.
|
852
865
|
#
|
853
866
|
# @return [Types::ListTagsForResourceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
854
867
|
#
|
@@ -934,7 +947,8 @@ module Aws::KinesisVideo
|
|
934
947
|
# [1]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html
|
935
948
|
#
|
936
949
|
# @option params [required, String] :resource_arn
|
937
|
-
# The ARN of the signaling channel to which you
|
950
|
+
# The Amazon Resource Name (ARN) of the signaling channel to which you
|
951
|
+
# want to add tags.
|
938
952
|
#
|
939
953
|
# @option params [required, Array<Types::Tag>] :tags
|
940
954
|
# A list of tags to associate with the specified signaling channel. Each
|
@@ -1018,7 +1032,8 @@ module Aws::KinesisVideo
|
|
1018
1032
|
# specify a tag key that does not exist, it's ignored.
|
1019
1033
|
#
|
1020
1034
|
# @option params [required, String] :resource_arn
|
1021
|
-
# The ARN of the signaling channel from which you
|
1035
|
+
# The Amazon Resource Name (ARN) of the signaling channel from which you
|
1036
|
+
# want to remove tags.
|
1022
1037
|
#
|
1023
1038
|
# @option params [required, Array<String>] :tag_key_list
|
1024
1039
|
# A list of the keys of the tags that you want to remove.
|
@@ -1149,12 +1164,13 @@ module Aws::KinesisVideo
|
|
1149
1164
|
# operation and takes time to complete.
|
1150
1165
|
#
|
1151
1166
|
# If the `MessageTtlSeconds` value is updated (either increased or
|
1152
|
-
# reduced),
|
1153
|
-
#
|
1154
|
-
#
|
1167
|
+
# reduced), it only applies to new messages sent via this channel after
|
1168
|
+
# it's been updated. Existing messages are still expired as per the
|
1169
|
+
# previous `MessageTtlSeconds` value.
|
1155
1170
|
#
|
1156
1171
|
# @option params [required, String] :channel_arn
|
1157
|
-
# The ARN of the signaling channel that you want
|
1172
|
+
# The Amazon Resource Name (ARN) of the signaling channel that you want
|
1173
|
+
# to update.
|
1158
1174
|
#
|
1159
1175
|
# @option params [required, String] :current_version
|
1160
1176
|
# The current version of the signaling channel that you want to update.
|
@@ -1267,7 +1283,7 @@ module Aws::KinesisVideo
|
|
1267
1283
|
params: params,
|
1268
1284
|
config: config)
|
1269
1285
|
context[:gem_name] = 'aws-sdk-kinesisvideo'
|
1270
|
-
context[:gem_version] = '1.
|
1286
|
+
context[:gem_version] = '1.27.0'
|
1271
1287
|
Seahorse::Client::Request.new(handlers, context)
|
1272
1288
|
end
|
1273
1289
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -407,6 +409,7 @@ module Aws::KinesisVideo
|
|
407
409
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
408
410
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
409
411
|
o.errors << Shapes::ShapeRef.new(shape: VersionMismatchException)
|
412
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
410
413
|
end)
|
411
414
|
|
412
415
|
api.add_operation(:delete_stream, Seahorse::Model::Operation.new.tap do |o|
|
@@ -420,6 +423,7 @@ module Aws::KinesisVideo
|
|
420
423
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
421
424
|
o.errors << Shapes::ShapeRef.new(shape: NotAuthorizedException)
|
422
425
|
o.errors << Shapes::ShapeRef.new(shape: VersionMismatchException)
|
426
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
423
427
|
end)
|
424
428
|
|
425
429
|
api.add_operation(:describe_signaling_channel, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,13 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::KinesisVideo
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::KinesisVideo::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::KinesisVideo::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::KinesisVideo::Resource.new(client: client)
|
11
|
+
|
16
12
|
class Resource
|
17
13
|
|
18
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::KinesisVideo
|
|
17
19
|
#
|
18
20
|
class AccessDeniedException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -30,6 +33,7 @@ module Aws::KinesisVideo
|
|
30
33
|
#
|
31
34
|
class AccountChannelLimitExceededException < Struct.new(
|
32
35
|
:message)
|
36
|
+
SENSITIVE = []
|
33
37
|
include Aws::Structure
|
34
38
|
end
|
35
39
|
|
@@ -42,6 +46,7 @@ module Aws::KinesisVideo
|
|
42
46
|
#
|
43
47
|
class AccountStreamLimitExceededException < Struct.new(
|
44
48
|
:message)
|
49
|
+
SENSITIVE = []
|
45
50
|
include Aws::Structure
|
46
51
|
end
|
47
52
|
|
@@ -53,7 +58,7 @@ module Aws::KinesisVideo
|
|
53
58
|
# @return [String]
|
54
59
|
#
|
55
60
|
# @!attribute [rw] channel_arn
|
56
|
-
# The ARN of the signaling channel.
|
61
|
+
# The Amazon Resource Name (ARN) of the signaling channel.
|
57
62
|
# @return [String]
|
58
63
|
#
|
59
64
|
# @!attribute [rw] channel_type
|
@@ -87,6 +92,7 @@ module Aws::KinesisVideo
|
|
87
92
|
:creation_time,
|
88
93
|
:single_master_configuration,
|
89
94
|
:version)
|
95
|
+
SENSITIVE = []
|
90
96
|
include Aws::Structure
|
91
97
|
end
|
92
98
|
|
@@ -118,6 +124,7 @@ module Aws::KinesisVideo
|
|
118
124
|
class ChannelNameCondition < Struct.new(
|
119
125
|
:comparison_operator,
|
120
126
|
:comparison_value)
|
127
|
+
SENSITIVE = []
|
121
128
|
include Aws::Structure
|
122
129
|
end
|
123
130
|
|
@@ -131,6 +138,7 @@ module Aws::KinesisVideo
|
|
131
138
|
#
|
132
139
|
class ClientLimitExceededException < Struct.new(
|
133
140
|
:message)
|
141
|
+
SENSITIVE = []
|
134
142
|
include Aws::Structure
|
135
143
|
end
|
136
144
|
|
@@ -153,7 +161,7 @@ module Aws::KinesisVideo
|
|
153
161
|
#
|
154
162
|
# @!attribute [rw] channel_name
|
155
163
|
# A name for the signaling channel that you are creating. It must be
|
156
|
-
# unique for each account and
|
164
|
+
# unique for each AWS account and AWS Region.
|
157
165
|
# @return [String]
|
158
166
|
#
|
159
167
|
# @!attribute [rw] channel_type
|
@@ -167,7 +175,7 @@ module Aws::KinesisVideo
|
|
167
175
|
# @return [Types::SingleMasterConfiguration]
|
168
176
|
#
|
169
177
|
# @!attribute [rw] tags
|
170
|
-
# A set of tags (key
|
178
|
+
# A set of tags (key-value pairs) that you want to associate with this
|
171
179
|
# channel.
|
172
180
|
# @return [Array<Types::Tag>]
|
173
181
|
#
|
@@ -178,17 +186,19 @@ module Aws::KinesisVideo
|
|
178
186
|
:channel_type,
|
179
187
|
:single_master_configuration,
|
180
188
|
:tags)
|
189
|
+
SENSITIVE = []
|
181
190
|
include Aws::Structure
|
182
191
|
end
|
183
192
|
|
184
193
|
# @!attribute [rw] channel_arn
|
185
|
-
# The ARN of the created channel.
|
194
|
+
# The Amazon Resource Name (ARN) of the created channel.
|
186
195
|
# @return [String]
|
187
196
|
#
|
188
197
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/CreateSignalingChannelOutput AWS API Documentation
|
189
198
|
#
|
190
199
|
class CreateSignalingChannelOutput < Struct.new(
|
191
200
|
:channel_arn)
|
201
|
+
SENSITIVE = []
|
192
202
|
include Aws::Structure
|
193
203
|
end
|
194
204
|
|
@@ -283,6 +293,7 @@ module Aws::KinesisVideo
|
|
283
293
|
:kms_key_id,
|
284
294
|
:data_retention_in_hours,
|
285
295
|
:tags)
|
296
|
+
SENSITIVE = []
|
286
297
|
include Aws::Structure
|
287
298
|
end
|
288
299
|
|
@@ -294,6 +305,7 @@ module Aws::KinesisVideo
|
|
294
305
|
#
|
295
306
|
class CreateStreamOutput < Struct.new(
|
296
307
|
:stream_arn)
|
308
|
+
SENSITIVE = []
|
297
309
|
include Aws::Structure
|
298
310
|
end
|
299
311
|
|
@@ -306,13 +318,15 @@ module Aws::KinesisVideo
|
|
306
318
|
# }
|
307
319
|
#
|
308
320
|
# @!attribute [rw] channel_arn
|
309
|
-
# The ARN of the signaling channel that you
|
321
|
+
# The Amazon Resource Name (ARN) of the signaling channel that you
|
322
|
+
# want to delete.
|
310
323
|
# @return [String]
|
311
324
|
#
|
312
325
|
# @!attribute [rw] current_version
|
313
326
|
# The current version of the signaling channel that you want to
|
314
327
|
# delete. You can obtain the current version by invoking the
|
315
|
-
# `DescribeSignalingChannel` or `ListSignalingChannels`
|
328
|
+
# `DescribeSignalingChannel` or `ListSignalingChannels` API
|
329
|
+
# operations.
|
316
330
|
# @return [String]
|
317
331
|
#
|
318
332
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/DeleteSignalingChannelInput AWS API Documentation
|
@@ -320,6 +334,7 @@ module Aws::KinesisVideo
|
|
320
334
|
class DeleteSignalingChannelInput < Struct.new(
|
321
335
|
:channel_arn,
|
322
336
|
:current_version)
|
337
|
+
SENSITIVE = []
|
323
338
|
include Aws::Structure
|
324
339
|
end
|
325
340
|
|
@@ -356,6 +371,7 @@ module Aws::KinesisVideo
|
|
356
371
|
class DeleteStreamInput < Struct.new(
|
357
372
|
:stream_arn,
|
358
373
|
:current_version)
|
374
|
+
SENSITIVE = []
|
359
375
|
include Aws::Structure
|
360
376
|
end
|
361
377
|
|
@@ -384,6 +400,7 @@ module Aws::KinesisVideo
|
|
384
400
|
class DescribeSignalingChannelInput < Struct.new(
|
385
401
|
:channel_name,
|
386
402
|
:channel_arn)
|
403
|
+
SENSITIVE = []
|
387
404
|
include Aws::Structure
|
388
405
|
end
|
389
406
|
|
@@ -396,6 +413,7 @@ module Aws::KinesisVideo
|
|
396
413
|
#
|
397
414
|
class DescribeSignalingChannelOutput < Struct.new(
|
398
415
|
:channel_info)
|
416
|
+
SENSITIVE = []
|
399
417
|
include Aws::Structure
|
400
418
|
end
|
401
419
|
|
@@ -420,6 +438,7 @@ module Aws::KinesisVideo
|
|
420
438
|
class DescribeStreamInput < Struct.new(
|
421
439
|
:stream_name,
|
422
440
|
:stream_arn)
|
441
|
+
SENSITIVE = []
|
423
442
|
include Aws::Structure
|
424
443
|
end
|
425
444
|
|
@@ -431,6 +450,7 @@ module Aws::KinesisVideo
|
|
431
450
|
#
|
432
451
|
class DescribeStreamOutput < Struct.new(
|
433
452
|
:stream_info)
|
453
|
+
SENSITIVE = []
|
434
454
|
include Aws::Structure
|
435
455
|
end
|
436
456
|
|
@@ -443,6 +463,7 @@ module Aws::KinesisVideo
|
|
443
463
|
#
|
444
464
|
class DeviceStreamLimitExceededException < Struct.new(
|
445
465
|
:message)
|
466
|
+
SENSITIVE = []
|
446
467
|
include Aws::Structure
|
447
468
|
end
|
448
469
|
|
@@ -452,7 +473,7 @@ module Aws::KinesisVideo
|
|
452
473
|
# {
|
453
474
|
# stream_name: "StreamName",
|
454
475
|
# stream_arn: "ResourceARN",
|
455
|
-
# api_name: "PUT_MEDIA", # required, accepts PUT_MEDIA, GET_MEDIA, LIST_FRAGMENTS, GET_MEDIA_FOR_FRAGMENT_LIST, GET_HLS_STREAMING_SESSION_URL, GET_DASH_STREAMING_SESSION_URL
|
476
|
+
# api_name: "PUT_MEDIA", # required, accepts PUT_MEDIA, GET_MEDIA, LIST_FRAGMENTS, GET_MEDIA_FOR_FRAGMENT_LIST, GET_HLS_STREAMING_SESSION_URL, GET_DASH_STREAMING_SESSION_URL, GET_CLIP
|
456
477
|
# }
|
457
478
|
#
|
458
479
|
# @!attribute [rw] stream_name
|
@@ -476,6 +497,7 @@ module Aws::KinesisVideo
|
|
476
497
|
:stream_name,
|
477
498
|
:stream_arn,
|
478
499
|
:api_name)
|
500
|
+
SENSITIVE = []
|
479
501
|
include Aws::Structure
|
480
502
|
end
|
481
503
|
|
@@ -488,6 +510,7 @@ module Aws::KinesisVideo
|
|
488
510
|
#
|
489
511
|
class GetDataEndpointOutput < Struct.new(
|
490
512
|
:data_endpoint)
|
513
|
+
SENSITIVE = []
|
491
514
|
include Aws::Structure
|
492
515
|
end
|
493
516
|
|
@@ -503,8 +526,8 @@ module Aws::KinesisVideo
|
|
503
526
|
# }
|
504
527
|
#
|
505
528
|
# @!attribute [rw] channel_arn
|
506
|
-
# The ARN of the signalling channel for which
|
507
|
-
# endpoint.
|
529
|
+
# The Amazon Resource Name (ARN) of the signalling channel for which
|
530
|
+
# you want to get an endpoint.
|
508
531
|
# @return [String]
|
509
532
|
#
|
510
533
|
# @!attribute [rw] single_master_channel_endpoint_configuration
|
@@ -517,6 +540,7 @@ module Aws::KinesisVideo
|
|
517
540
|
class GetSignalingChannelEndpointInput < Struct.new(
|
518
541
|
:channel_arn,
|
519
542
|
:single_master_channel_endpoint_configuration)
|
543
|
+
SENSITIVE = []
|
520
544
|
include Aws::Structure
|
521
545
|
end
|
522
546
|
|
@@ -528,6 +552,7 @@ module Aws::KinesisVideo
|
|
528
552
|
#
|
529
553
|
class GetSignalingChannelEndpointOutput < Struct.new(
|
530
554
|
:resource_endpoint_list)
|
555
|
+
SENSITIVE = []
|
531
556
|
include Aws::Structure
|
532
557
|
end
|
533
558
|
|
@@ -540,6 +565,7 @@ module Aws::KinesisVideo
|
|
540
565
|
#
|
541
566
|
class InvalidArgumentException < Struct.new(
|
542
567
|
:message)
|
568
|
+
SENSITIVE = []
|
543
569
|
include Aws::Structure
|
544
570
|
end
|
545
571
|
|
@@ -552,6 +578,7 @@ module Aws::KinesisVideo
|
|
552
578
|
#
|
553
579
|
class InvalidDeviceException < Struct.new(
|
554
580
|
:message)
|
581
|
+
SENSITIVE = []
|
555
582
|
include Aws::Structure
|
556
583
|
end
|
557
584
|
|
@@ -564,6 +591,7 @@ module Aws::KinesisVideo
|
|
564
591
|
#
|
565
592
|
class InvalidResourceFormatException < Struct.new(
|
566
593
|
:message)
|
594
|
+
SENSITIVE = []
|
567
595
|
include Aws::Structure
|
568
596
|
end
|
569
597
|
|
@@ -602,6 +630,7 @@ module Aws::KinesisVideo
|
|
602
630
|
:max_results,
|
603
631
|
:next_token,
|
604
632
|
:channel_name_condition)
|
633
|
+
SENSITIVE = []
|
605
634
|
include Aws::Structure
|
606
635
|
end
|
607
636
|
|
@@ -620,6 +649,7 @@ module Aws::KinesisVideo
|
|
620
649
|
class ListSignalingChannelsOutput < Struct.new(
|
621
650
|
:channel_info_list,
|
622
651
|
:next_token)
|
652
|
+
SENSITIVE = []
|
623
653
|
include Aws::Structure
|
624
654
|
end
|
625
655
|
|
@@ -659,6 +689,7 @@ module Aws::KinesisVideo
|
|
659
689
|
:max_results,
|
660
690
|
:next_token,
|
661
691
|
:stream_name_condition)
|
692
|
+
SENSITIVE = []
|
662
693
|
include Aws::Structure
|
663
694
|
end
|
664
695
|
|
@@ -677,6 +708,7 @@ module Aws::KinesisVideo
|
|
677
708
|
class ListStreamsOutput < Struct.new(
|
678
709
|
:stream_info_list,
|
679
710
|
:next_token)
|
711
|
+
SENSITIVE = []
|
680
712
|
include Aws::Structure
|
681
713
|
end
|
682
714
|
|
@@ -690,13 +722,14 @@ module Aws::KinesisVideo
|
|
690
722
|
#
|
691
723
|
# @!attribute [rw] next_token
|
692
724
|
# If you specify this parameter and the result of a
|
693
|
-
# ListTagsForResource call is truncated, the response includes a
|
694
|
-
# that you can use in the next request to fetch the next batch
|
695
|
-
# tags.
|
725
|
+
# `ListTagsForResource` call is truncated, the response includes a
|
726
|
+
# token that you can use in the next request to fetch the next batch
|
727
|
+
# of tags.
|
696
728
|
# @return [String]
|
697
729
|
#
|
698
730
|
# @!attribute [rw] resource_arn
|
699
|
-
# The ARN of the signaling channel for which
|
731
|
+
# The Amazon Resource Name (ARN) of the signaling channel for which
|
732
|
+
# you want to list tags.
|
700
733
|
# @return [String]
|
701
734
|
#
|
702
735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/ListTagsForResourceInput AWS API Documentation
|
@@ -704,13 +737,15 @@ module Aws::KinesisVideo
|
|
704
737
|
class ListTagsForResourceInput < Struct.new(
|
705
738
|
:next_token,
|
706
739
|
:resource_arn)
|
740
|
+
SENSITIVE = []
|
707
741
|
include Aws::Structure
|
708
742
|
end
|
709
743
|
|
710
744
|
# @!attribute [rw] next_token
|
711
745
|
# If you specify this parameter and the result of a
|
712
|
-
# ListTagsForResource call is truncated, the response includes a
|
713
|
-
# that you can use in the next request to fetch the next set of
|
746
|
+
# `ListTagsForResource` call is truncated, the response includes a
|
747
|
+
# token that you can use in the next request to fetch the next set of
|
748
|
+
# tags.
|
714
749
|
# @return [String]
|
715
750
|
#
|
716
751
|
# @!attribute [rw] tags
|
@@ -723,6 +758,7 @@ module Aws::KinesisVideo
|
|
723
758
|
class ListTagsForResourceOutput < Struct.new(
|
724
759
|
:next_token,
|
725
760
|
:tags)
|
761
|
+
SENSITIVE = []
|
726
762
|
include Aws::Structure
|
727
763
|
end
|
728
764
|
|
@@ -757,6 +793,7 @@ module Aws::KinesisVideo
|
|
757
793
|
:next_token,
|
758
794
|
:stream_arn,
|
759
795
|
:stream_name)
|
796
|
+
SENSITIVE = []
|
760
797
|
include Aws::Structure
|
761
798
|
end
|
762
799
|
|
@@ -775,6 +812,7 @@ module Aws::KinesisVideo
|
|
775
812
|
class ListTagsForStreamOutput < Struct.new(
|
776
813
|
:next_token,
|
777
814
|
:tags)
|
815
|
+
SENSITIVE = []
|
778
816
|
include Aws::Structure
|
779
817
|
end
|
780
818
|
|
@@ -787,6 +825,7 @@ module Aws::KinesisVideo
|
|
787
825
|
#
|
788
826
|
class NotAuthorizedException < Struct.new(
|
789
827
|
:message)
|
828
|
+
SENSITIVE = []
|
790
829
|
include Aws::Structure
|
791
830
|
end
|
792
831
|
|
@@ -808,10 +847,11 @@ module Aws::KinesisVideo
|
|
808
847
|
class ResourceEndpointListItem < Struct.new(
|
809
848
|
:protocol,
|
810
849
|
:resource_endpoint)
|
850
|
+
SENSITIVE = []
|
811
851
|
include Aws::Structure
|
812
852
|
end
|
813
853
|
|
814
|
-
# The
|
854
|
+
# The signaling channel is currently not available for this operation.
|
815
855
|
#
|
816
856
|
# @!attribute [rw] message
|
817
857
|
# @return [String]
|
@@ -820,6 +860,7 @@ module Aws::KinesisVideo
|
|
820
860
|
#
|
821
861
|
class ResourceInUseException < Struct.new(
|
822
862
|
:message)
|
863
|
+
SENSITIVE = []
|
823
864
|
include Aws::Structure
|
824
865
|
end
|
825
866
|
|
@@ -833,6 +874,7 @@ module Aws::KinesisVideo
|
|
833
874
|
#
|
834
875
|
class ResourceNotFoundException < Struct.new(
|
835
876
|
:message)
|
877
|
+
SENSITIVE = []
|
836
878
|
include Aws::Structure
|
837
879
|
end
|
838
880
|
|
@@ -869,6 +911,7 @@ module Aws::KinesisVideo
|
|
869
911
|
class SingleMasterChannelEndpointConfiguration < Struct.new(
|
870
912
|
:protocols,
|
871
913
|
:role)
|
914
|
+
SENSITIVE = []
|
872
915
|
include Aws::Structure
|
873
916
|
end
|
874
917
|
|
@@ -891,6 +934,7 @@ module Aws::KinesisVideo
|
|
891
934
|
#
|
892
935
|
class SingleMasterConfiguration < Struct.new(
|
893
936
|
:message_ttl_seconds)
|
937
|
+
SENSITIVE = []
|
894
938
|
include Aws::Structure
|
895
939
|
end
|
896
940
|
|
@@ -945,6 +989,7 @@ module Aws::KinesisVideo
|
|
945
989
|
:status,
|
946
990
|
:creation_time,
|
947
991
|
:data_retention_in_hours)
|
992
|
+
SENSITIVE = []
|
948
993
|
include Aws::Structure
|
949
994
|
end
|
950
995
|
|
@@ -977,6 +1022,7 @@ module Aws::KinesisVideo
|
|
977
1022
|
class StreamNameCondition < Struct.new(
|
978
1023
|
:comparison_operator,
|
979
1024
|
:comparison_value)
|
1025
|
+
SENSITIVE = []
|
980
1026
|
include Aws::Structure
|
981
1027
|
end
|
982
1028
|
|
@@ -1006,6 +1052,7 @@ module Aws::KinesisVideo
|
|
1006
1052
|
class Tag < Struct.new(
|
1007
1053
|
:key,
|
1008
1054
|
:value)
|
1055
|
+
SENSITIVE = []
|
1009
1056
|
include Aws::Structure
|
1010
1057
|
end
|
1011
1058
|
|
@@ -1023,7 +1070,8 @@ module Aws::KinesisVideo
|
|
1023
1070
|
# }
|
1024
1071
|
#
|
1025
1072
|
# @!attribute [rw] resource_arn
|
1026
|
-
# The ARN of the signaling channel to which you
|
1073
|
+
# The Amazon Resource Name (ARN) of the signaling channel to which you
|
1074
|
+
# want to add tags.
|
1027
1075
|
# @return [String]
|
1028
1076
|
#
|
1029
1077
|
# @!attribute [rw] tags
|
@@ -1036,6 +1084,7 @@ module Aws::KinesisVideo
|
|
1036
1084
|
class TagResourceInput < Struct.new(
|
1037
1085
|
:resource_arn,
|
1038
1086
|
:tags)
|
1087
|
+
SENSITIVE = []
|
1039
1088
|
include Aws::Structure
|
1040
1089
|
end
|
1041
1090
|
|
@@ -1074,6 +1123,7 @@ module Aws::KinesisVideo
|
|
1074
1123
|
:stream_arn,
|
1075
1124
|
:stream_name,
|
1076
1125
|
:tags)
|
1126
|
+
SENSITIVE = []
|
1077
1127
|
include Aws::Structure
|
1078
1128
|
end
|
1079
1129
|
|
@@ -1091,6 +1141,7 @@ module Aws::KinesisVideo
|
|
1091
1141
|
#
|
1092
1142
|
class TagsPerResourceExceededLimitException < Struct.new(
|
1093
1143
|
:message)
|
1144
|
+
SENSITIVE = []
|
1094
1145
|
include Aws::Structure
|
1095
1146
|
end
|
1096
1147
|
|
@@ -1103,7 +1154,8 @@ module Aws::KinesisVideo
|
|
1103
1154
|
# }
|
1104
1155
|
#
|
1105
1156
|
# @!attribute [rw] resource_arn
|
1106
|
-
# The ARN of the signaling channel from which
|
1157
|
+
# The Amazon Resource Name (ARN) of the signaling channel from which
|
1158
|
+
# you want to remove tags.
|
1107
1159
|
# @return [String]
|
1108
1160
|
#
|
1109
1161
|
# @!attribute [rw] tag_key_list
|
@@ -1115,6 +1167,7 @@ module Aws::KinesisVideo
|
|
1115
1167
|
class UntagResourceInput < Struct.new(
|
1116
1168
|
:resource_arn,
|
1117
1169
|
:tag_key_list)
|
1170
|
+
SENSITIVE = []
|
1118
1171
|
include Aws::Structure
|
1119
1172
|
end
|
1120
1173
|
|
@@ -1150,6 +1203,7 @@ module Aws::KinesisVideo
|
|
1150
1203
|
:stream_arn,
|
1151
1204
|
:stream_name,
|
1152
1205
|
:tag_key_list)
|
1206
|
+
SENSITIVE = []
|
1153
1207
|
include Aws::Structure
|
1154
1208
|
end
|
1155
1209
|
|
@@ -1202,6 +1256,7 @@ module Aws::KinesisVideo
|
|
1202
1256
|
:current_version,
|
1203
1257
|
:operation,
|
1204
1258
|
:data_retention_change_in_hours)
|
1259
|
+
SENSITIVE = []
|
1205
1260
|
include Aws::Structure
|
1206
1261
|
end
|
1207
1262
|
|
@@ -1221,7 +1276,8 @@ module Aws::KinesisVideo
|
|
1221
1276
|
# }
|
1222
1277
|
#
|
1223
1278
|
# @!attribute [rw] channel_arn
|
1224
|
-
# The ARN of the signaling channel that you
|
1279
|
+
# The Amazon Resource Name (ARN) of the signaling channel that you
|
1280
|
+
# want to update.
|
1225
1281
|
# @return [String]
|
1226
1282
|
#
|
1227
1283
|
# @!attribute [rw] current_version
|
@@ -1240,6 +1296,7 @@ module Aws::KinesisVideo
|
|
1240
1296
|
:channel_arn,
|
1241
1297
|
:current_version,
|
1242
1298
|
:single_master_configuration)
|
1299
|
+
SENSITIVE = []
|
1243
1300
|
include Aws::Structure
|
1244
1301
|
end
|
1245
1302
|
|
@@ -1306,6 +1363,7 @@ module Aws::KinesisVideo
|
|
1306
1363
|
:current_version,
|
1307
1364
|
:device_name,
|
1308
1365
|
:media_type)
|
1366
|
+
SENSITIVE = []
|
1309
1367
|
include Aws::Structure
|
1310
1368
|
end
|
1311
1369
|
|
@@ -1327,6 +1385,7 @@ module Aws::KinesisVideo
|
|
1327
1385
|
#
|
1328
1386
|
class VersionMismatchException < Struct.new(
|
1329
1387
|
:message)
|
1388
|
+
SENSITIVE = []
|
1330
1389
|
include Aws::Structure
|
1331
1390
|
end
|
1332
1391
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesisvideo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-23 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Kinesis Video
|