aws-sdk-ivs 1.22.0 → 1.23.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivs/client.rb +10 -1
- data/lib/aws-sdk-ivs/client_api.rb +3 -0
- data/lib/aws-sdk-ivs/types.rb +15 -0
- data/lib/aws-sdk-ivs.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25ece648b0f3be5adff398ad333bdf14c157d79fe53fe586fd7e717620291c77
|
4
|
+
data.tar.gz: 45b695c53a64205431d81690c04c2bef574f56f09d41f94f46f5bb1a7255145e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9e7aaf3e70752a4bda39fed0ab8489add308993aadcb65a5224d0ad69fd22353b5e06297c64f213d467b942b438a4b1f0deaf9ef4b499b47cec9a20c0b7a94f
|
7
|
+
data.tar.gz: 1c4b5496efe7ff333c71b7323ff7076c5a0db5f697dab8c00e362ae2dd6f7903fdaaf1ba4ee226ae97bca261814c332ff0bcbc625c4e6ef0526ec1096209cb33
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.23.0 (2022-08-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - IVS Merge Fragmented Streams. This release adds support for recordingReconnectWindow field in IVS recordingConfigurations. For more information see https://docs.aws.amazon.com/ivs/latest/APIReference/Welcome.html
|
8
|
+
|
4
9
|
1.22.0 (2022-08-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.23.0
|
data/lib/aws-sdk-ivs/client.rb
CHANGED
@@ -550,6 +550,11 @@ module Aws::IVS
|
|
550
550
|
# @option params [String] :name
|
551
551
|
# Recording-configuration name. The value does not need to be unique.
|
552
552
|
#
|
553
|
+
# @option params [Integer] :recording_reconnect_window_seconds
|
554
|
+
# If a broadcast disconnects and then reconnects within the specified
|
555
|
+
# interval, the multiple streams will be considered a single broadcast
|
556
|
+
# and merged together. Default: 0.
|
557
|
+
#
|
553
558
|
# @option params [Hash<String,String>] :tags
|
554
559
|
# Array of 1-50 maps, each of the form `string:string (key:value)`. See
|
555
560
|
# [Tagging Amazon Web Services Resources][1] for more information,
|
@@ -579,6 +584,7 @@ module Aws::IVS
|
|
579
584
|
# },
|
580
585
|
# },
|
581
586
|
# name: "RecordingConfigurationName",
|
587
|
+
# recording_reconnect_window_seconds: 1,
|
582
588
|
# tags: {
|
583
589
|
# "TagKey" => "TagValue",
|
584
590
|
# },
|
@@ -593,6 +599,7 @@ module Aws::IVS
|
|
593
599
|
# resp.recording_configuration.arn #=> String
|
594
600
|
# resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
|
595
601
|
# resp.recording_configuration.name #=> String
|
602
|
+
# resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
|
596
603
|
# resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
|
597
604
|
# resp.recording_configuration.tags #=> Hash
|
598
605
|
# resp.recording_configuration.tags["TagKey"] #=> String
|
@@ -871,6 +878,7 @@ module Aws::IVS
|
|
871
878
|
# resp.recording_configuration.arn #=> String
|
872
879
|
# resp.recording_configuration.destination_configuration.s3.bucket_name #=> String
|
873
880
|
# resp.recording_configuration.name #=> String
|
881
|
+
# resp.recording_configuration.recording_reconnect_window_seconds #=> Integer
|
874
882
|
# resp.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
|
875
883
|
# resp.recording_configuration.tags #=> Hash
|
876
884
|
# resp.recording_configuration.tags["TagKey"] #=> String
|
@@ -1002,6 +1010,7 @@ module Aws::IVS
|
|
1002
1010
|
# resp.stream_session.recording_configuration.arn #=> String
|
1003
1011
|
# resp.stream_session.recording_configuration.destination_configuration.s3.bucket_name #=> String
|
1004
1012
|
# resp.stream_session.recording_configuration.name #=> String
|
1013
|
+
# resp.stream_session.recording_configuration.recording_reconnect_window_seconds #=> Integer
|
1005
1014
|
# resp.stream_session.recording_configuration.state #=> String, one of "CREATING", "CREATE_FAILED", "ACTIVE"
|
1006
1015
|
# resp.stream_session.recording_configuration.tags #=> Hash
|
1007
1016
|
# resp.stream_session.recording_configuration.tags["TagKey"] #=> String
|
@@ -1633,7 +1642,7 @@ module Aws::IVS
|
|
1633
1642
|
params: params,
|
1634
1643
|
config: config)
|
1635
1644
|
context[:gem_name] = 'aws-sdk-ivs'
|
1636
|
-
context[:gem_version] = '1.
|
1645
|
+
context[:gem_version] = '1.23.0'
|
1637
1646
|
Seahorse::Client::Request.new(handlers, context)
|
1638
1647
|
end
|
1639
1648
|
|
@@ -102,6 +102,7 @@ module Aws::IVS
|
|
102
102
|
RecordingConfigurationState = Shapes::StringShape.new(name: 'RecordingConfigurationState')
|
103
103
|
RecordingConfigurationSummary = Shapes::StructureShape.new(name: 'RecordingConfigurationSummary')
|
104
104
|
RecordingMode = Shapes::StringShape.new(name: 'RecordingMode')
|
105
|
+
RecordingReconnectWindowSeconds = Shapes::IntegerShape.new(name: 'RecordingReconnectWindowSeconds')
|
105
106
|
ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
|
106
107
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
107
108
|
S3DestinationBucketName = Shapes::StringShape.new(name: 'S3DestinationBucketName')
|
@@ -227,6 +228,7 @@ module Aws::IVS
|
|
227
228
|
|
228
229
|
CreateRecordingConfigurationRequest.add_member(:destination_configuration, Shapes::ShapeRef.new(shape: DestinationConfiguration, required: true, location_name: "destinationConfiguration"))
|
229
230
|
CreateRecordingConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
|
231
|
+
CreateRecordingConfigurationRequest.add_member(:recording_reconnect_window_seconds, Shapes::ShapeRef.new(shape: RecordingReconnectWindowSeconds, location_name: "recordingReconnectWindowSeconds"))
|
230
232
|
CreateRecordingConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
231
233
|
CreateRecordingConfigurationRequest.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
|
232
234
|
CreateRecordingConfigurationRequest.struct_class = Types::CreateRecordingConfigurationRequest
|
@@ -392,6 +394,7 @@ module Aws::IVS
|
|
392
394
|
RecordingConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: RecordingConfigurationArn, required: true, location_name: "arn"))
|
393
395
|
RecordingConfiguration.add_member(:destination_configuration, Shapes::ShapeRef.new(shape: DestinationConfiguration, required: true, location_name: "destinationConfiguration"))
|
394
396
|
RecordingConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: RecordingConfigurationName, location_name: "name"))
|
397
|
+
RecordingConfiguration.add_member(:recording_reconnect_window_seconds, Shapes::ShapeRef.new(shape: RecordingReconnectWindowSeconds, location_name: "recordingReconnectWindowSeconds"))
|
395
398
|
RecordingConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: RecordingConfigurationState, required: true, location_name: "state"))
|
396
399
|
RecordingConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
397
400
|
RecordingConfiguration.add_member(:thumbnail_configuration, Shapes::ShapeRef.new(shape: ThumbnailConfiguration, location_name: "thumbnailConfiguration"))
|
data/lib/aws-sdk-ivs/types.rb
CHANGED
@@ -416,6 +416,7 @@ module Aws::IVS
|
|
416
416
|
# },
|
417
417
|
# },
|
418
418
|
# name: "RecordingConfigurationName",
|
419
|
+
# recording_reconnect_window_seconds: 1,
|
419
420
|
# tags: {
|
420
421
|
# "TagKey" => "TagValue",
|
421
422
|
# },
|
@@ -434,6 +435,12 @@ module Aws::IVS
|
|
434
435
|
# Recording-configuration name. The value does not need to be unique.
|
435
436
|
# @return [String]
|
436
437
|
#
|
438
|
+
# @!attribute [rw] recording_reconnect_window_seconds
|
439
|
+
# If a broadcast disconnects and then reconnects within the specified
|
440
|
+
# interval, the multiple streams will be considered a single broadcast
|
441
|
+
# and merged together. Default: 0.
|
442
|
+
# @return [Integer]
|
443
|
+
#
|
437
444
|
# @!attribute [rw] tags
|
438
445
|
# Array of 1-50 maps, each of the form `string:string (key:value)`.
|
439
446
|
# See [Tagging Amazon Web Services Resources][1] for more information,
|
@@ -457,6 +464,7 @@ module Aws::IVS
|
|
457
464
|
class CreateRecordingConfigurationRequest < Struct.new(
|
458
465
|
:destination_configuration,
|
459
466
|
:name,
|
467
|
+
:recording_reconnect_window_seconds,
|
460
468
|
:tags,
|
461
469
|
:thumbnail_configuration)
|
462
470
|
SENSITIVE = []
|
@@ -1365,6 +1373,12 @@ module Aws::IVS
|
|
1365
1373
|
# Recording-configuration name. The value does not need to be unique.
|
1366
1374
|
# @return [String]
|
1367
1375
|
#
|
1376
|
+
# @!attribute [rw] recording_reconnect_window_seconds
|
1377
|
+
# If a broadcast disconnects and then reconnects within the specified
|
1378
|
+
# interval, the multiple streams will be considered a single broadcast
|
1379
|
+
# and merged together. Default: 0.
|
1380
|
+
# @return [Integer]
|
1381
|
+
#
|
1368
1382
|
# @!attribute [rw] state
|
1369
1383
|
# Indicates the current state of the recording configuration. When the
|
1370
1384
|
# state is `ACTIVE`, the configuration is ready for recording a
|
@@ -1395,6 +1409,7 @@ module Aws::IVS
|
|
1395
1409
|
:arn,
|
1396
1410
|
:destination_configuration,
|
1397
1411
|
:name,
|
1412
|
+
:recording_reconnect_window_seconds,
|
1398
1413
|
:state,
|
1399
1414
|
:tags,
|
1400
1415
|
:thumbnail_configuration)
|
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.23.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-08-
|
11
|
+
date: 2022-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|