aws-sdk-ivs 1.18.0 → 1.21.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +71 -18
- data/lib/aws-sdk-ivs/types.rb +151 -27
- data/lib/aws-sdk-ivs.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5d4273ad72e4924139c28ed6469af21469c542b4ca4087d18a75d69fce63dcec
|
4
|
+
data.tar.gz: bacdb1e629a720de395e14cf39df333f2186db539d1b924b6e13a1b8edb793a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b83b33a5edef757c9e473aa8673963049b34e3d9d3670c9c52c323a278a48ab656cbf70315eef60f1f8d9f5c9bd3c51dc3b3eb573abda9a4f49f30c35e628e79
|
7
|
+
data.tar.gz: 98e16946a5340287072496bc2a583df2b1283516fa70ba010759a6c348781bdc08773b19d93e1a448d4cb52d29b78743e82fe10e2f821941a1c7b60b4813b41c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.21.0 (2022-08-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates various list api MaxResults ranges
|
8
|
+
|
9
|
+
1.20.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.19.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.18.0 (2022-01-18)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.21.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::IVS
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -448,7 +452,15 @@ module Aws::IVS
|
|
448
452
|
# disabled).
|
449
453
|
#
|
450
454
|
# @option params [Hash<String,String>] :tags
|
451
|
-
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
455
|
+
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
456
|
+
# [Tagging Amazon Web Services Resources][1] for more information,
|
457
|
+
# including restrictions that apply to tags and "Tag naming limits and
|
458
|
+
# requirements"; Amazon IVS has no service-specific constraints beyond
|
459
|
+
# what is documented there.
|
460
|
+
#
|
461
|
+
#
|
462
|
+
#
|
463
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
452
464
|
#
|
453
465
|
# @option params [String] :type
|
454
466
|
# Channel type, which determines the allowable resolution and bitrate.
|
@@ -535,7 +547,15 @@ module Aws::IVS
|
|
535
547
|
# Recording-configuration name. The value does not need to be unique.
|
536
548
|
#
|
537
549
|
# @option params [Hash<String,String>] :tags
|
538
|
-
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
550
|
+
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
551
|
+
# [Tagging Amazon Web Services Resources][1] for more information,
|
552
|
+
# including restrictions that apply to tags and "Tag naming limits and
|
553
|
+
# requirements"; Amazon IVS has no service-specific constraints beyond
|
554
|
+
# what is documented there.
|
555
|
+
#
|
556
|
+
#
|
557
|
+
#
|
558
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
539
559
|
#
|
540
560
|
# @option params [Types::ThumbnailConfiguration] :thumbnail_configuration
|
541
561
|
# A complex type that allows you to enable/disable the recording of
|
@@ -597,7 +617,15 @@ module Aws::IVS
|
|
597
617
|
# ARN of the channel for which to create the stream key.
|
598
618
|
#
|
599
619
|
# @option params [Hash<String,String>] :tags
|
600
|
-
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
620
|
+
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
621
|
+
# [Tagging Amazon Web Services Resources][1] for more information,
|
622
|
+
# including restrictions that apply to tags and "Tag naming limits and
|
623
|
+
# requirements"; Amazon IVS has no service-specific constraints beyond
|
624
|
+
# what is documented there.
|
625
|
+
#
|
626
|
+
#
|
627
|
+
#
|
628
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
601
629
|
#
|
602
630
|
# @return [Types::CreateStreamKeyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
603
631
|
#
|
@@ -1009,7 +1037,14 @@ module Aws::IVS
|
|
1009
1037
|
#
|
1010
1038
|
# @option params [Hash<String,String>] :tags
|
1011
1039
|
# Any tags provided with the request are added to the playback key pair
|
1012
|
-
# tags.
|
1040
|
+
# tags. See [Tagging Amazon Web Services Resources][1] for more
|
1041
|
+
# information, including restrictions that apply to tags and "Tag
|
1042
|
+
# naming limits and requirements"; Amazon IVS has no service-specific
|
1043
|
+
# constraints beyond what is documented there.
|
1044
|
+
#
|
1045
|
+
#
|
1046
|
+
#
|
1047
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1013
1048
|
#
|
1014
1049
|
# @return [Types::ImportPlaybackKeyPairResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1015
1050
|
#
|
@@ -1057,7 +1092,7 @@ module Aws::IVS
|
|
1057
1092
|
# recording-configuration ARN.
|
1058
1093
|
#
|
1059
1094
|
# @option params [Integer] :max_results
|
1060
|
-
# Maximum number of channels to return. Default:
|
1095
|
+
# Maximum number of channels to return. Default: 100.
|
1061
1096
|
#
|
1062
1097
|
# @option params [String] :next_token
|
1063
1098
|
# The first channel to retrieve. This is used for pagination; see the
|
@@ -1109,11 +1144,12 @@ module Aws::IVS
|
|
1109
1144
|
# [1]: https://docs.aws.amazon.com/ivs/latest/userguide/private-channels.html
|
1110
1145
|
#
|
1111
1146
|
# @option params [Integer] :max_results
|
1112
|
-
#
|
1113
|
-
#
|
1147
|
+
# Maximum number of key pairs to return. Default: your service quota or
|
1148
|
+
# 100, whichever is smaller.
|
1114
1149
|
#
|
1115
1150
|
# @option params [String] :next_token
|
1116
|
-
#
|
1151
|
+
# The first key pair to retrieve. This is used for pagination; see the
|
1152
|
+
# `nextToken` response field.
|
1117
1153
|
#
|
1118
1154
|
# @return [Types::ListPlaybackKeyPairsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1119
1155
|
#
|
@@ -1152,7 +1188,8 @@ module Aws::IVS
|
|
1152
1188
|
# processed.
|
1153
1189
|
#
|
1154
1190
|
# @option params [Integer] :max_results
|
1155
|
-
# Maximum number of recording configurations to return. Default:
|
1191
|
+
# Maximum number of recording configurations to return. Default: your
|
1192
|
+
# service quota or 100, whichever is smaller.
|
1156
1193
|
#
|
1157
1194
|
# @option params [String] :next_token
|
1158
1195
|
# The first recording configuration to retrieve. This is used for
|
@@ -1198,7 +1235,7 @@ module Aws::IVS
|
|
1198
1235
|
# Channel ARN used to filter the list.
|
1199
1236
|
#
|
1200
1237
|
# @option params [Integer] :max_results
|
1201
|
-
# Maximum number of streamKeys to return. Default:
|
1238
|
+
# Maximum number of streamKeys to return. Default: 1.
|
1202
1239
|
#
|
1203
1240
|
# @option params [String] :next_token
|
1204
1241
|
# The first stream key to retrieve. This is used for pagination; see the
|
@@ -1244,7 +1281,7 @@ module Aws::IVS
|
|
1244
1281
|
# Channel ARN used to filter the list.
|
1245
1282
|
#
|
1246
1283
|
# @option params [Integer] :max_results
|
1247
|
-
# Maximum number of streams to return. Default:
|
1284
|
+
# Maximum number of streams to return. Default: 100.
|
1248
1285
|
#
|
1249
1286
|
# @option params [String] :next_token
|
1250
1287
|
# The first stream to retrieve. This is used for pagination; see the
|
@@ -1290,7 +1327,7 @@ module Aws::IVS
|
|
1290
1327
|
# Filters the stream list to match the specified criterion.
|
1291
1328
|
#
|
1292
1329
|
# @option params [Integer] :max_results
|
1293
|
-
# Maximum number of streams to return. Default:
|
1330
|
+
# Maximum number of streams to return. Default: 100.
|
1294
1331
|
#
|
1295
1332
|
# @option params [String] :next_token
|
1296
1333
|
# The first stream to retrieve. This is used for pagination; see the
|
@@ -1336,7 +1373,7 @@ module Aws::IVS
|
|
1336
1373
|
# Gets information about Amazon Web Services tags for the specified ARN.
|
1337
1374
|
#
|
1338
1375
|
# @option params [required, String] :resource_arn
|
1339
|
-
# The ARN of the resource to be retrieved.
|
1376
|
+
# The ARN of the resource to be retrieved. The ARN must be URL-encoded.
|
1340
1377
|
#
|
1341
1378
|
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1342
1379
|
#
|
@@ -1432,10 +1469,18 @@ module Aws::IVS
|
|
1432
1469
|
# specified ARN.
|
1433
1470
|
#
|
1434
1471
|
# @option params [required, String] :resource_arn
|
1435
|
-
# ARN of the resource for which tags are to be added or updated.
|
1472
|
+
# ARN of the resource for which tags are to be added or updated. The ARN
|
1473
|
+
# must be URL-encoded.
|
1436
1474
|
#
|
1437
1475
|
# @option params [required, Hash<String,String>] :tags
|
1438
|
-
# Array of tags to be added or updated.
|
1476
|
+
# Array of tags to be added or updated. See [Tagging Amazon Web Services
|
1477
|
+
# Resources][1] for more information, including restrictions that apply
|
1478
|
+
# to tags and "Tag naming limits and requirements"; Amazon IVS has no
|
1479
|
+
# service-specific constraints beyond what is documented there.
|
1480
|
+
#
|
1481
|
+
#
|
1482
|
+
#
|
1483
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1439
1484
|
#
|
1440
1485
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1441
1486
|
#
|
@@ -1460,10 +1505,18 @@ module Aws::IVS
|
|
1460
1505
|
# Removes tags from the resource with the specified ARN.
|
1461
1506
|
#
|
1462
1507
|
# @option params [required, String] :resource_arn
|
1463
|
-
# ARN of the resource for which tags are to be removed.
|
1508
|
+
# ARN of the resource for which tags are to be removed. The ARN must be
|
1509
|
+
# URL-encoded.
|
1464
1510
|
#
|
1465
1511
|
# @option params [required, Array<String>] :tag_keys
|
1466
|
-
# Array of tags to be removed.
|
1512
|
+
# Array of tags to be removed. See [Tagging Amazon Web Services
|
1513
|
+
# Resources][1] for more information, including restrictions that apply
|
1514
|
+
# to tags and "Tag naming limits and requirements"; Amazon IVS has no
|
1515
|
+
# service-specific constraints beyond what is documented there.
|
1516
|
+
#
|
1517
|
+
#
|
1518
|
+
#
|
1519
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1467
1520
|
#
|
1468
1521
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1469
1522
|
#
|
@@ -1572,7 +1625,7 @@ module Aws::IVS
|
|
1572
1625
|
params: params,
|
1573
1626
|
config: config)
|
1574
1627
|
context[:gem_name] = 'aws-sdk-ivs'
|
1575
|
-
context[:gem_version] = '1.
|
1628
|
+
context[:gem_version] = '1.21.0'
|
1576
1629
|
Seahorse::Client::Request.new(handlers, context)
|
1577
1630
|
end
|
1578
1631
|
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -22,7 +22,9 @@ module Aws::IVS
|
|
22
22
|
include Aws::Structure
|
23
23
|
end
|
24
24
|
|
25
|
-
# Object specifying a stream’s audio configuration
|
25
|
+
# Object specifying a stream’s audio configuration, as set up by the
|
26
|
+
# broadcaster (usually in an encoder). This is part of the
|
27
|
+
# IngestConfiguration object and used for monitoring stream health.
|
26
28
|
#
|
27
29
|
# @!attribute [rw] channels
|
28
30
|
# Number of audio channels.
|
@@ -184,6 +186,14 @@ module Aws::IVS
|
|
184
186
|
#
|
185
187
|
# @!attribute [rw] tags
|
186
188
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
189
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
190
|
+
# including restrictions that apply to tags and "Tag naming limits
|
191
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
192
|
+
# beyond what is documented there.
|
193
|
+
#
|
194
|
+
#
|
195
|
+
#
|
196
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
187
197
|
# @return [Hash<String,String>]
|
188
198
|
#
|
189
199
|
# @!attribute [rw] type
|
@@ -261,6 +271,14 @@ module Aws::IVS
|
|
261
271
|
#
|
262
272
|
# @!attribute [rw] tags
|
263
273
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
274
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
275
|
+
# including restrictions that apply to tags and "Tag naming limits
|
276
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
277
|
+
# beyond what is documented there.
|
278
|
+
#
|
279
|
+
#
|
280
|
+
#
|
281
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
264
282
|
# @return [Hash<String,String>]
|
265
283
|
#
|
266
284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ChannelSummary AWS API Documentation
|
@@ -325,6 +343,14 @@ module Aws::IVS
|
|
325
343
|
#
|
326
344
|
# @!attribute [rw] tags
|
327
345
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
346
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
347
|
+
# including restrictions that apply to tags and "Tag naming limits
|
348
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
349
|
+
# beyond what is documented there.
|
350
|
+
#
|
351
|
+
#
|
352
|
+
#
|
353
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
328
354
|
# @return [Hash<String,String>]
|
329
355
|
#
|
330
356
|
# @!attribute [rw] type
|
@@ -402,6 +428,14 @@ module Aws::IVS
|
|
402
428
|
#
|
403
429
|
# @!attribute [rw] tags
|
404
430
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
431
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
432
|
+
# including restrictions that apply to tags and "Tag naming limits
|
433
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
434
|
+
# beyond what is documented there.
|
435
|
+
#
|
436
|
+
#
|
437
|
+
#
|
438
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
405
439
|
# @return [Hash<String,String>]
|
406
440
|
#
|
407
441
|
# @!attribute [rw] thumbnail_configuration
|
@@ -451,6 +485,14 @@ module Aws::IVS
|
|
451
485
|
#
|
452
486
|
# @!attribute [rw] tags
|
453
487
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
488
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
489
|
+
# including restrictions that apply to tags and "Tag naming limits
|
490
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
491
|
+
# beyond what is documented there.
|
492
|
+
#
|
493
|
+
#
|
494
|
+
#
|
495
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
454
496
|
# @return [Hash<String,String>]
|
455
497
|
#
|
456
498
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/CreateStreamKeyRequest AWS API Documentation
|
@@ -800,7 +842,14 @@ module Aws::IVS
|
|
800
842
|
#
|
801
843
|
# @!attribute [rw] tags
|
802
844
|
# Any tags provided with the request are added to the playback key
|
803
|
-
# pair tags.
|
845
|
+
# pair tags. See [Tagging Amazon Web Services Resources][1] for more
|
846
|
+
# information, including restrictions that apply to tags and "Tag
|
847
|
+
# naming limits and requirements"; Amazon IVS has no service-specific
|
848
|
+
# constraints beyond what is documented there.
|
849
|
+
#
|
850
|
+
#
|
851
|
+
#
|
852
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
804
853
|
# @return [Hash<String,String>]
|
805
854
|
#
|
806
855
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ImportPlaybackKeyPairRequest AWS API Documentation
|
@@ -876,7 +925,7 @@ module Aws::IVS
|
|
876
925
|
# @return [String]
|
877
926
|
#
|
878
927
|
# @!attribute [rw] max_results
|
879
|
-
# Maximum number of channels to return. Default:
|
928
|
+
# Maximum number of channels to return. Default: 100.
|
880
929
|
# @return [Integer]
|
881
930
|
#
|
882
931
|
# @!attribute [rw] next_token
|
@@ -922,12 +971,13 @@ module Aws::IVS
|
|
922
971
|
# }
|
923
972
|
#
|
924
973
|
# @!attribute [rw] max_results
|
925
|
-
#
|
926
|
-
#
|
974
|
+
# Maximum number of key pairs to return. Default: your service quota
|
975
|
+
# or 100, whichever is smaller.
|
927
976
|
# @return [Integer]
|
928
977
|
#
|
929
978
|
# @!attribute [rw] next_token
|
930
|
-
#
|
979
|
+
# The first key pair to retrieve. This is used for pagination; see the
|
980
|
+
# `nextToken` response field.
|
931
981
|
# @return [String]
|
932
982
|
#
|
933
983
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ListPlaybackKeyPairsRequest AWS API Documentation
|
@@ -966,7 +1016,8 @@ module Aws::IVS
|
|
966
1016
|
# }
|
967
1017
|
#
|
968
1018
|
# @!attribute [rw] max_results
|
969
|
-
# Maximum number of recording configurations to return. Default:
|
1019
|
+
# Maximum number of recording configurations to return. Default: your
|
1020
|
+
# service quota or 100, whichever is smaller.
|
970
1021
|
# @return [Integer]
|
971
1022
|
#
|
972
1023
|
# @!attribute [rw] next_token
|
@@ -1015,7 +1066,7 @@ module Aws::IVS
|
|
1015
1066
|
# @return [String]
|
1016
1067
|
#
|
1017
1068
|
# @!attribute [rw] max_results
|
1018
|
-
# Maximum number of streamKeys to return. Default:
|
1069
|
+
# Maximum number of streamKeys to return. Default: 1.
|
1019
1070
|
# @return [Integer]
|
1020
1071
|
#
|
1021
1072
|
# @!attribute [rw] next_token
|
@@ -1065,7 +1116,7 @@ module Aws::IVS
|
|
1065
1116
|
# @return [String]
|
1066
1117
|
#
|
1067
1118
|
# @!attribute [rw] max_results
|
1068
|
-
# Maximum number of streams to return. Default:
|
1119
|
+
# Maximum number of streams to return. Default: 100.
|
1069
1120
|
# @return [Integer]
|
1070
1121
|
#
|
1071
1122
|
# @!attribute [rw] next_token
|
@@ -1117,7 +1168,7 @@ module Aws::IVS
|
|
1117
1168
|
# @return [Types::StreamFilters]
|
1118
1169
|
#
|
1119
1170
|
# @!attribute [rw] max_results
|
1120
|
-
# Maximum number of streams to return. Default:
|
1171
|
+
# Maximum number of streams to return. Default: 100.
|
1121
1172
|
# @return [Integer]
|
1122
1173
|
#
|
1123
1174
|
# @!attribute [rw] next_token
|
@@ -1161,7 +1212,8 @@ module Aws::IVS
|
|
1161
1212
|
# }
|
1162
1213
|
#
|
1163
1214
|
# @!attribute [rw] resource_arn
|
1164
|
-
# The ARN of the resource to be retrieved.
|
1215
|
+
# The ARN of the resource to be retrieved. The ARN must be
|
1216
|
+
# URL-encoded.
|
1165
1217
|
# @return [String]
|
1166
1218
|
#
|
1167
1219
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/ListTagsForResourceRequest AWS API Documentation
|
@@ -1211,6 +1263,14 @@ module Aws::IVS
|
|
1211
1263
|
#
|
1212
1264
|
# @!attribute [rw] tags
|
1213
1265
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
1266
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
1267
|
+
# including restrictions that apply to tags and "Tag naming limits
|
1268
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
1269
|
+
# beyond what is documented there.
|
1270
|
+
#
|
1271
|
+
#
|
1272
|
+
#
|
1273
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1214
1274
|
# @return [Hash<String,String>]
|
1215
1275
|
#
|
1216
1276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackKeyPair AWS API Documentation
|
@@ -1236,6 +1296,14 @@ module Aws::IVS
|
|
1236
1296
|
#
|
1237
1297
|
# @!attribute [rw] tags
|
1238
1298
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
1299
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
1300
|
+
# including restrictions that apply to tags and "Tag naming limits
|
1301
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
1302
|
+
# beyond what is documented there.
|
1303
|
+
#
|
1304
|
+
#
|
1305
|
+
#
|
1306
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1239
1307
|
# @return [Hash<String,String>]
|
1240
1308
|
#
|
1241
1309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/PlaybackKeyPairSummary AWS API Documentation
|
@@ -1297,6 +1365,14 @@ module Aws::IVS
|
|
1297
1365
|
#
|
1298
1366
|
# @!attribute [rw] tags
|
1299
1367
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
1368
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
1369
|
+
# including restrictions that apply to tags and "Tag naming limits
|
1370
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
1371
|
+
# beyond what is documented there.
|
1372
|
+
#
|
1373
|
+
#
|
1374
|
+
#
|
1375
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1300
1376
|
# @return [Hash<String,String>]
|
1301
1377
|
#
|
1302
1378
|
# @!attribute [rw] thumbnail_configuration
|
@@ -1341,6 +1417,14 @@ module Aws::IVS
|
|
1341
1417
|
#
|
1342
1418
|
# @!attribute [rw] tags
|
1343
1419
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
1420
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
1421
|
+
# including restrictions that apply to tags and "Tag naming limits
|
1422
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
1423
|
+
# beyond what is documented there.
|
1424
|
+
#
|
1425
|
+
#
|
1426
|
+
#
|
1427
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1344
1428
|
# @return [Hash<String,String>]
|
1345
1429
|
#
|
1346
1430
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/RecordingConfigurationSummary AWS API Documentation
|
@@ -1440,8 +1524,8 @@ module Aws::IVS
|
|
1440
1524
|
# @return [String]
|
1441
1525
|
#
|
1442
1526
|
# @!attribute [rw] start_time
|
1443
|
-
# Time of the stream’s start. This is an ISO 8601 timestamp
|
1444
|
-
# as a string
|
1527
|
+
# Time of the stream’s start. This is an ISO 8601 timestamp; *note
|
1528
|
+
# that this is returned as a string*.
|
1445
1529
|
# @return [Time]
|
1446
1530
|
#
|
1447
1531
|
# @!attribute [rw] state
|
@@ -1483,7 +1567,8 @@ module Aws::IVS
|
|
1483
1567
|
# [1]: https://docs.aws.amazon.com/ivs/latest/userguide/eventbridge.html
|
1484
1568
|
#
|
1485
1569
|
# @!attribute [rw] event_time
|
1486
|
-
#
|
1570
|
+
# Time when the event occurred. This is an ISO 8601 timestamp; *note
|
1571
|
+
# that this is returned as a string*.
|
1487
1572
|
# @return [Time]
|
1488
1573
|
#
|
1489
1574
|
# @!attribute [rw] name
|
@@ -1537,6 +1622,14 @@ module Aws::IVS
|
|
1537
1622
|
#
|
1538
1623
|
# @!attribute [rw] tags
|
1539
1624
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
1625
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
1626
|
+
# including restrictions that apply to tags and "Tag naming limits
|
1627
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
1628
|
+
# beyond what is documented there.
|
1629
|
+
#
|
1630
|
+
#
|
1631
|
+
#
|
1632
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1540
1633
|
# @return [Hash<String,String>]
|
1541
1634
|
#
|
1542
1635
|
# @!attribute [rw] value
|
@@ -1566,6 +1659,14 @@ module Aws::IVS
|
|
1566
1659
|
#
|
1567
1660
|
# @!attribute [rw] tags
|
1568
1661
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
1662
|
+
# See [Tagging Amazon Web Services Resources][1] for more information,
|
1663
|
+
# including restrictions that apply to tags and "Tag naming limits
|
1664
|
+
# and requirements"; Amazon IVS has no service-specific constraints
|
1665
|
+
# beyond what is documented there.
|
1666
|
+
#
|
1667
|
+
#
|
1668
|
+
#
|
1669
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1569
1670
|
# @return [Hash<String,String>]
|
1570
1671
|
#
|
1571
1672
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/StreamKeySummary AWS API Documentation
|
@@ -1587,8 +1688,9 @@ module Aws::IVS
|
|
1587
1688
|
# @return [Types::Channel]
|
1588
1689
|
#
|
1589
1690
|
# @!attribute [rw] end_time
|
1590
|
-
#
|
1591
|
-
# For live streams, this is
|
1691
|
+
# Time when the channel went offline. This is an ISO 8601 timestamp;
|
1692
|
+
# *note that this is returned as a string*. For live streams, this is
|
1693
|
+
# `NULL`.
|
1592
1694
|
# @return [Time]
|
1593
1695
|
#
|
1594
1696
|
# @!attribute [rw] ingest_configuration
|
@@ -1600,7 +1702,8 @@ module Aws::IVS
|
|
1600
1702
|
# @return [Types::RecordingConfiguration]
|
1601
1703
|
#
|
1602
1704
|
# @!attribute [rw] start_time
|
1603
|
-
#
|
1705
|
+
# Time when the channel went live. This is an ISO 8601 timestamp;
|
1706
|
+
# *note that this is returned as a string*.
|
1604
1707
|
# @return [Time]
|
1605
1708
|
#
|
1606
1709
|
# @!attribute [rw] stream_id
|
@@ -1636,8 +1739,9 @@ module Aws::IVS
|
|
1636
1739
|
# Summary information about a stream session.
|
1637
1740
|
#
|
1638
1741
|
# @!attribute [rw] end_time
|
1639
|
-
#
|
1640
|
-
# For live streams, this is
|
1742
|
+
# Time when the channel went offline. This is an ISO 8601 timestamp;
|
1743
|
+
# *note that this is returned as a string*. For live streams, this is
|
1744
|
+
# `NULL`.
|
1641
1745
|
# @return [Time]
|
1642
1746
|
#
|
1643
1747
|
# @!attribute [rw] has_error_event
|
@@ -1645,7 +1749,8 @@ module Aws::IVS
|
|
1645
1749
|
# @return [Boolean]
|
1646
1750
|
#
|
1647
1751
|
# @!attribute [rw] start_time
|
1648
|
-
#
|
1752
|
+
# Time when the channel went live. This is an ISO 8601 timestamp;
|
1753
|
+
# *note that this is returned as a string*.
|
1649
1754
|
# @return [Time]
|
1650
1755
|
#
|
1651
1756
|
# @!attribute [rw] stream_id
|
@@ -1675,8 +1780,8 @@ module Aws::IVS
|
|
1675
1780
|
# @return [String]
|
1676
1781
|
#
|
1677
1782
|
# @!attribute [rw] start_time
|
1678
|
-
# Time of the stream’s start. This is an ISO 8601 timestamp
|
1679
|
-
# as a string
|
1783
|
+
# Time of the stream’s start. This is an ISO 8601 timestamp; *note
|
1784
|
+
# that this is returned as a string*.
|
1680
1785
|
# @return [Time]
|
1681
1786
|
#
|
1682
1787
|
# @!attribute [rw] state
|
@@ -1732,11 +1837,20 @@ module Aws::IVS
|
|
1732
1837
|
# }
|
1733
1838
|
#
|
1734
1839
|
# @!attribute [rw] resource_arn
|
1735
|
-
# ARN of the resource for which tags are to be added or updated.
|
1840
|
+
# ARN of the resource for which tags are to be added or updated. The
|
1841
|
+
# ARN must be URL-encoded.
|
1736
1842
|
# @return [String]
|
1737
1843
|
#
|
1738
1844
|
# @!attribute [rw] tags
|
1739
|
-
# Array of tags to be added or updated.
|
1845
|
+
# Array of tags to be added or updated. See [Tagging Amazon Web
|
1846
|
+
# Services Resources][1] for more information, including restrictions
|
1847
|
+
# that apply to tags and "Tag naming limits and requirements";
|
1848
|
+
# Amazon IVS has no service-specific constraints beyond what is
|
1849
|
+
# documented there.
|
1850
|
+
#
|
1851
|
+
#
|
1852
|
+
#
|
1853
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1740
1854
|
# @return [Hash<String,String>]
|
1741
1855
|
#
|
1742
1856
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/TagResourceRequest AWS API Documentation
|
@@ -1815,11 +1929,19 @@ module Aws::IVS
|
|
1815
1929
|
# }
|
1816
1930
|
#
|
1817
1931
|
# @!attribute [rw] resource_arn
|
1818
|
-
# ARN of the resource for which tags are to be removed.
|
1932
|
+
# ARN of the resource for which tags are to be removed. The ARN must
|
1933
|
+
# be URL-encoded.
|
1819
1934
|
# @return [String]
|
1820
1935
|
#
|
1821
1936
|
# @!attribute [rw] tag_keys
|
1822
|
-
# Array of tags to be removed.
|
1937
|
+
# Array of tags to be removed. See [Tagging Amazon Web Services
|
1938
|
+
# Resources][1] for more information, including restrictions that
|
1939
|
+
# apply to tags and "Tag naming limits and requirements"; Amazon IVS
|
1940
|
+
# has no service-specific constraints beyond what is documented there.
|
1941
|
+
#
|
1942
|
+
#
|
1943
|
+
#
|
1944
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html
|
1823
1945
|
# @return [Array<String>]
|
1824
1946
|
#
|
1825
1947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ivs-2020-07-14/UntagResourceRequest AWS API Documentation
|
@@ -1926,7 +2048,9 @@ module Aws::IVS
|
|
1926
2048
|
include Aws::Structure
|
1927
2049
|
end
|
1928
2050
|
|
1929
|
-
# Object specifying a stream’s video configuration
|
2051
|
+
# Object specifying a stream’s video configuration, as set up by the
|
2052
|
+
# broadcaster (usually in an encoder). This is part of the
|
2053
|
+
# IngestConfiguration object and used for monitoring stream health.
|
1930
2054
|
#
|
1931
2055
|
# @!attribute [rw] avc_level
|
1932
2056
|
# Indicates the degree of required decoder performance for a profile.
|
data/lib/aws-sdk-ivs.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-ivs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.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: 2022-
|
11
|
+
date: 2022-08-12 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.127.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.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|