aws-sdk-mediatailor 1.74.0 → 1.75.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-mediatailor/client.rb +21 -1
- data/lib/aws-sdk-mediatailor/client_api.rb +9 -0
- data/lib/aws-sdk-mediatailor/types.rb +48 -5
- data/lib/aws-sdk-mediatailor.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: 9c2833304feb7f927ee4cbccfa65405402fce34a15fb7b9f67fdf75d21ee58b8
|
|
4
|
+
data.tar.gz: 1a7f1ba36c84c1f4bd2e35ebe09bc460787850152e9982e9d03b5e921ee26db7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8a1f2e54a0a1d38033719ea13f4f3197163ae4905886f0dc2a4c964a2c0cf3e3c84390b4c8729cc7240069837922345c686775b3d79c6898c923afd15fb904bc
|
|
7
|
+
data.tar.gz: 4a06cb9b6baa54d5fd440d93277d7e63baba435dd118e54bf77b86d126dbcc432398a3bf4971c85ded323dd08a0487a9a4b5fbf1924236c489320c4b9c2c9bc3
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.75.0
|
|
@@ -511,6 +511,10 @@ module Aws::MediaTailor
|
|
|
511
511
|
# @option params [String] :tier
|
|
512
512
|
# The tier of the channel.
|
|
513
513
|
#
|
|
514
|
+
# @option params [Types::TimeShiftConfiguration] :time_shift_configuration
|
|
515
|
+
# The time-shifted viewing configuration you want to associate to the
|
|
516
|
+
# channel.
|
|
517
|
+
#
|
|
514
518
|
# @return [Types::CreateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
515
519
|
#
|
|
516
520
|
# * {Types::CreateChannelResponse#arn #arn} => String
|
|
@@ -523,6 +527,7 @@ module Aws::MediaTailor
|
|
|
523
527
|
# * {Types::CreateChannelResponse#playback_mode #playback_mode} => String
|
|
524
528
|
# * {Types::CreateChannelResponse#tags #tags} => Hash<String,String>
|
|
525
529
|
# * {Types::CreateChannelResponse#tier #tier} => String
|
|
530
|
+
# * {Types::CreateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
|
526
531
|
#
|
|
527
532
|
# @example Request syntax with placeholder values
|
|
528
533
|
#
|
|
@@ -553,6 +558,9 @@ module Aws::MediaTailor
|
|
|
553
558
|
# "__string" => "__string",
|
|
554
559
|
# },
|
|
555
560
|
# tier: "BASIC", # accepts BASIC, STANDARD
|
|
561
|
+
# time_shift_configuration: {
|
|
562
|
+
# max_time_delay_seconds: 1, # required
|
|
563
|
+
# },
|
|
556
564
|
# })
|
|
557
565
|
#
|
|
558
566
|
# @example Response structure
|
|
@@ -579,6 +587,7 @@ module Aws::MediaTailor
|
|
|
579
587
|
# resp.tags #=> Hash
|
|
580
588
|
# resp.tags["__string"] #=> String
|
|
581
589
|
# resp.tier #=> String
|
|
590
|
+
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
|
582
591
|
#
|
|
583
592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannel AWS API Documentation
|
|
584
593
|
#
|
|
@@ -1318,6 +1327,7 @@ module Aws::MediaTailor
|
|
|
1318
1327
|
# * {Types::DescribeChannelResponse#playback_mode #playback_mode} => String
|
|
1319
1328
|
# * {Types::DescribeChannelResponse#tags #tags} => Hash<String,String>
|
|
1320
1329
|
# * {Types::DescribeChannelResponse#tier #tier} => String
|
|
1330
|
+
# * {Types::DescribeChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
|
1321
1331
|
#
|
|
1322
1332
|
# @example Request syntax with placeholder values
|
|
1323
1333
|
#
|
|
@@ -1351,6 +1361,7 @@ module Aws::MediaTailor
|
|
|
1351
1361
|
# resp.tags #=> Hash
|
|
1352
1362
|
# resp.tags["__string"] #=> String
|
|
1353
1363
|
# resp.tier #=> String
|
|
1364
|
+
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
|
1354
1365
|
#
|
|
1355
1366
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannel AWS API Documentation
|
|
1356
1367
|
#
|
|
@@ -2686,6 +2697,10 @@ module Aws::MediaTailor
|
|
|
2686
2697
|
# @option params [required, Array<Types::RequestOutputItem>] :outputs
|
|
2687
2698
|
# The channel's output properties.
|
|
2688
2699
|
#
|
|
2700
|
+
# @option params [Types::TimeShiftConfiguration] :time_shift_configuration
|
|
2701
|
+
# The time-shifted viewing configuration you want to associate to the
|
|
2702
|
+
# channel.
|
|
2703
|
+
#
|
|
2689
2704
|
# @return [Types::UpdateChannelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2690
2705
|
#
|
|
2691
2706
|
# * {Types::UpdateChannelResponse#arn #arn} => String
|
|
@@ -2698,6 +2713,7 @@ module Aws::MediaTailor
|
|
|
2698
2713
|
# * {Types::UpdateChannelResponse#playback_mode #playback_mode} => String
|
|
2699
2714
|
# * {Types::UpdateChannelResponse#tags #tags} => Hash<String,String>
|
|
2700
2715
|
# * {Types::UpdateChannelResponse#tier #tier} => String
|
|
2716
|
+
# * {Types::UpdateChannelResponse#time_shift_configuration #time_shift_configuration} => Types::TimeShiftConfiguration
|
|
2701
2717
|
#
|
|
2702
2718
|
# @example Request syntax with placeholder values
|
|
2703
2719
|
#
|
|
@@ -2723,6 +2739,9 @@ module Aws::MediaTailor
|
|
|
2723
2739
|
# source_group: "__string", # required
|
|
2724
2740
|
# },
|
|
2725
2741
|
# ],
|
|
2742
|
+
# time_shift_configuration: {
|
|
2743
|
+
# max_time_delay_seconds: 1, # required
|
|
2744
|
+
# },
|
|
2726
2745
|
# })
|
|
2727
2746
|
#
|
|
2728
2747
|
# @example Response structure
|
|
@@ -2749,6 +2768,7 @@ module Aws::MediaTailor
|
|
|
2749
2768
|
# resp.tags #=> Hash
|
|
2750
2769
|
# resp.tags["__string"] #=> String
|
|
2751
2770
|
# resp.tier #=> String
|
|
2771
|
+
# resp.time_shift_configuration.max_time_delay_seconds #=> Integer
|
|
2752
2772
|
#
|
|
2753
2773
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannel AWS API Documentation
|
|
2754
2774
|
#
|
|
@@ -3103,7 +3123,7 @@ module Aws::MediaTailor
|
|
|
3103
3123
|
params: params,
|
|
3104
3124
|
config: config)
|
|
3105
3125
|
context[:gem_name] = 'aws-sdk-mediatailor'
|
|
3106
|
-
context[:gem_version] = '1.
|
|
3126
|
+
context[:gem_version] = '1.75.0'
|
|
3107
3127
|
Seahorse::Client::Request.new(handlers, context)
|
|
3108
3128
|
end
|
|
3109
3129
|
|
|
@@ -156,6 +156,7 @@ module Aws::MediaTailor
|
|
|
156
156
|
String = Shapes::StringShape.new(name: 'String')
|
|
157
157
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
158
158
|
Tier = Shapes::StringShape.new(name: 'Tier')
|
|
159
|
+
TimeShiftConfiguration = Shapes::StructureShape.new(name: 'TimeShiftConfiguration')
|
|
159
160
|
TimeSignalMessage = Shapes::StructureShape.new(name: 'TimeSignalMessage')
|
|
160
161
|
Transition = Shapes::StructureShape.new(name: 'Transition')
|
|
161
162
|
Type = Shapes::StringShape.new(name: 'Type')
|
|
@@ -290,6 +291,7 @@ module Aws::MediaTailor
|
|
|
290
291
|
CreateChannelRequest.add_member(:playback_mode, Shapes::ShapeRef.new(shape: PlaybackMode, required: true, location_name: "PlaybackMode"))
|
|
291
292
|
CreateChannelRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
292
293
|
CreateChannelRequest.add_member(:tier, Shapes::ShapeRef.new(shape: Tier, location_name: "Tier"))
|
|
294
|
+
CreateChannelRequest.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
|
|
293
295
|
CreateChannelRequest.struct_class = Types::CreateChannelRequest
|
|
294
296
|
|
|
295
297
|
CreateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "Arn"))
|
|
@@ -302,6 +304,7 @@ module Aws::MediaTailor
|
|
|
302
304
|
CreateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
|
|
303
305
|
CreateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
304
306
|
CreateChannelResponse.add_member(:tier, Shapes::ShapeRef.new(shape: __string, location_name: "Tier"))
|
|
307
|
+
CreateChannelResponse.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
|
|
305
308
|
CreateChannelResponse.struct_class = Types::CreateChannelResponse
|
|
306
309
|
|
|
307
310
|
CreateLiveSourceRequest.add_member(:http_package_configurations, Shapes::ShapeRef.new(shape: HttpPackageConfigurations, required: true, location_name: "HttpPackageConfigurations"))
|
|
@@ -466,6 +469,7 @@ module Aws::MediaTailor
|
|
|
466
469
|
DescribeChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
|
|
467
470
|
DescribeChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
468
471
|
DescribeChannelResponse.add_member(:tier, Shapes::ShapeRef.new(shape: __string, location_name: "Tier"))
|
|
472
|
+
DescribeChannelResponse.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
|
|
469
473
|
DescribeChannelResponse.struct_class = Types::DescribeChannelResponse
|
|
470
474
|
|
|
471
475
|
DescribeLiveSourceRequest.add_member(:live_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "LiveSourceName"))
|
|
@@ -867,6 +871,9 @@ module Aws::MediaTailor
|
|
|
867
871
|
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, required: true, location_name: "tags"))
|
|
868
872
|
TagResourceRequest.struct_class = Types::TagResourceRequest
|
|
869
873
|
|
|
874
|
+
TimeShiftConfiguration.add_member(:max_time_delay_seconds, Shapes::ShapeRef.new(shape: __integer, required: true, location_name: "MaxTimeDelaySeconds"))
|
|
875
|
+
TimeShiftConfiguration.struct_class = Types::TimeShiftConfiguration
|
|
876
|
+
|
|
870
877
|
TimeSignalMessage.add_member(:segmentation_descriptors, Shapes::ShapeRef.new(shape: SegmentationDescriptorList, location_name: "SegmentationDescriptors"))
|
|
871
878
|
TimeSignalMessage.struct_class = Types::TimeSignalMessage
|
|
872
879
|
|
|
@@ -884,6 +891,7 @@ module Aws::MediaTailor
|
|
|
884
891
|
UpdateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "ChannelName"))
|
|
885
892
|
UpdateChannelRequest.add_member(:filler_slate, Shapes::ShapeRef.new(shape: SlateSource, location_name: "FillerSlate"))
|
|
886
893
|
UpdateChannelRequest.add_member(:outputs, Shapes::ShapeRef.new(shape: RequestOutputs, required: true, location_name: "Outputs"))
|
|
894
|
+
UpdateChannelRequest.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
|
|
887
895
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
|
888
896
|
|
|
889
897
|
UpdateChannelResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "Arn"))
|
|
@@ -896,6 +904,7 @@ module Aws::MediaTailor
|
|
|
896
904
|
UpdateChannelResponse.add_member(:playback_mode, Shapes::ShapeRef.new(shape: __string, location_name: "PlaybackMode"))
|
|
897
905
|
UpdateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
898
906
|
UpdateChannelResponse.add_member(:tier, Shapes::ShapeRef.new(shape: __string, location_name: "Tier"))
|
|
907
|
+
UpdateChannelResponse.add_member(:time_shift_configuration, Shapes::ShapeRef.new(shape: TimeShiftConfiguration, location_name: "TimeShiftConfiguration"))
|
|
899
908
|
UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
|
|
900
909
|
|
|
901
910
|
UpdateLiveSourceRequest.add_member(:http_package_configurations, Shapes::ShapeRef.new(shape: HttpPackageConfigurations, required: true, location_name: "HttpPackageConfigurations"))
|
|
@@ -614,6 +614,11 @@ module Aws::MediaTailor
|
|
|
614
614
|
# The tier of the channel.
|
|
615
615
|
# @return [String]
|
|
616
616
|
#
|
|
617
|
+
# @!attribute [rw] time_shift_configuration
|
|
618
|
+
# The time-shifted viewing configuration you want to associate to the
|
|
619
|
+
# channel.
|
|
620
|
+
# @return [Types::TimeShiftConfiguration]
|
|
621
|
+
#
|
|
617
622
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelRequest AWS API Documentation
|
|
618
623
|
#
|
|
619
624
|
class CreateChannelRequest < Struct.new(
|
|
@@ -622,7 +627,8 @@ module Aws::MediaTailor
|
|
|
622
627
|
:outputs,
|
|
623
628
|
:playback_mode,
|
|
624
629
|
:tags,
|
|
625
|
-
:tier
|
|
630
|
+
:tier,
|
|
631
|
+
:time_shift_configuration)
|
|
626
632
|
SENSITIVE = []
|
|
627
633
|
include Aws::Structure
|
|
628
634
|
end
|
|
@@ -675,6 +681,10 @@ module Aws::MediaTailor
|
|
|
675
681
|
# The tier of the channel.
|
|
676
682
|
# @return [String]
|
|
677
683
|
#
|
|
684
|
+
# @!attribute [rw] time_shift_configuration
|
|
685
|
+
# The time-shifted viewing configuration assigned to the channel.
|
|
686
|
+
# @return [Types::TimeShiftConfiguration]
|
|
687
|
+
#
|
|
678
688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/CreateChannelResponse AWS API Documentation
|
|
679
689
|
#
|
|
680
690
|
class CreateChannelResponse < Struct.new(
|
|
@@ -687,7 +697,8 @@ module Aws::MediaTailor
|
|
|
687
697
|
:outputs,
|
|
688
698
|
:playback_mode,
|
|
689
699
|
:tags,
|
|
690
|
-
:tier
|
|
700
|
+
:tier,
|
|
701
|
+
:time_shift_configuration)
|
|
691
702
|
SENSITIVE = []
|
|
692
703
|
include Aws::Structure
|
|
693
704
|
end
|
|
@@ -1508,6 +1519,10 @@ module Aws::MediaTailor
|
|
|
1508
1519
|
# The channel's tier.
|
|
1509
1520
|
# @return [String]
|
|
1510
1521
|
#
|
|
1522
|
+
# @!attribute [rw] time_shift_configuration
|
|
1523
|
+
# The time-shifted viewing configuration for the channel.
|
|
1524
|
+
# @return [Types::TimeShiftConfiguration]
|
|
1525
|
+
#
|
|
1511
1526
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/DescribeChannelResponse AWS API Documentation
|
|
1512
1527
|
#
|
|
1513
1528
|
class DescribeChannelResponse < Struct.new(
|
|
@@ -1521,7 +1536,8 @@ module Aws::MediaTailor
|
|
|
1521
1536
|
:outputs,
|
|
1522
1537
|
:playback_mode,
|
|
1523
1538
|
:tags,
|
|
1524
|
-
:tier
|
|
1539
|
+
:tier,
|
|
1540
|
+
:time_shift_configuration)
|
|
1525
1541
|
SENSITIVE = []
|
|
1526
1542
|
include Aws::Structure
|
|
1527
1543
|
end
|
|
@@ -3867,6 +3883,22 @@ module Aws::MediaTailor
|
|
|
3867
3883
|
include Aws::Structure
|
|
3868
3884
|
end
|
|
3869
3885
|
|
|
3886
|
+
# The configuration for time-shifted viewing.
|
|
3887
|
+
#
|
|
3888
|
+
# @!attribute [rw] max_time_delay_seconds
|
|
3889
|
+
# The maximum time delay for time-shifted viewing. The minimum allowed
|
|
3890
|
+
# maximum time delay is 0 seconds, and the maximum allowed maximum
|
|
3891
|
+
# time delay is 21600 seconds (6 hours).
|
|
3892
|
+
# @return [Integer]
|
|
3893
|
+
#
|
|
3894
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/TimeShiftConfiguration AWS API Documentation
|
|
3895
|
+
#
|
|
3896
|
+
class TimeShiftConfiguration < Struct.new(
|
|
3897
|
+
:max_time_delay_seconds)
|
|
3898
|
+
SENSITIVE = []
|
|
3899
|
+
include Aws::Structure
|
|
3900
|
+
end
|
|
3901
|
+
|
|
3870
3902
|
# The SCTE-35 `time_signal` message can be sent with one or more
|
|
3871
3903
|
# `segmentation_descriptor` messages. A `time_signal` message can be
|
|
3872
3904
|
# sent only if a single `segmentation_descriptor` message is sent.
|
|
@@ -3978,12 +4010,18 @@ module Aws::MediaTailor
|
|
|
3978
4010
|
# The channel's output properties.
|
|
3979
4011
|
# @return [Array<Types::RequestOutputItem>]
|
|
3980
4012
|
#
|
|
4013
|
+
# @!attribute [rw] time_shift_configuration
|
|
4014
|
+
# The time-shifted viewing configuration you want to associate to the
|
|
4015
|
+
# channel.
|
|
4016
|
+
# @return [Types::TimeShiftConfiguration]
|
|
4017
|
+
#
|
|
3981
4018
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelRequest AWS API Documentation
|
|
3982
4019
|
#
|
|
3983
4020
|
class UpdateChannelRequest < Struct.new(
|
|
3984
4021
|
:channel_name,
|
|
3985
4022
|
:filler_slate,
|
|
3986
|
-
:outputs
|
|
4023
|
+
:outputs,
|
|
4024
|
+
:time_shift_configuration)
|
|
3987
4025
|
SENSITIVE = []
|
|
3988
4026
|
include Aws::Structure
|
|
3989
4027
|
end
|
|
@@ -4044,6 +4082,10 @@ module Aws::MediaTailor
|
|
|
4044
4082
|
# The tier associated with this Channel.
|
|
4045
4083
|
# @return [String]
|
|
4046
4084
|
#
|
|
4085
|
+
# @!attribute [rw] time_shift_configuration
|
|
4086
|
+
# The time-shifted viewing configuration for the channel.
|
|
4087
|
+
# @return [Types::TimeShiftConfiguration]
|
|
4088
|
+
#
|
|
4047
4089
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/UpdateChannelResponse AWS API Documentation
|
|
4048
4090
|
#
|
|
4049
4091
|
class UpdateChannelResponse < Struct.new(
|
|
@@ -4056,7 +4098,8 @@ module Aws::MediaTailor
|
|
|
4056
4098
|
:outputs,
|
|
4057
4099
|
:playback_mode,
|
|
4058
4100
|
:tags,
|
|
4059
|
-
:tier
|
|
4101
|
+
:tier,
|
|
4102
|
+
:time_shift_configuration)
|
|
4060
4103
|
SENSITIVE = []
|
|
4061
4104
|
include Aws::Structure
|
|
4062
4105
|
end
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-mediatailor
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.75.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: 2023-
|
|
11
|
+
date: 2023-12-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|