aws-sdk-mediatailor 1.92.0 → 1.93.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +246 -233
- data/lib/aws-sdk-mediatailor/client_api.rb +50 -40
- data/lib/aws-sdk-mediatailor/types.rb +295 -241
- data/lib/aws-sdk-mediatailor.rb +1 -1
- data/sig/client.rbs +127 -122
- data/sig/types.rbs +48 -39
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -15,12 +15,12 @@ module Aws::MediaTailor
|
|
15
15
|
end
|
16
16
|
|
17
17
|
class AdBreak
|
18
|
-
attr_accessor ad_break_metadata: ::Array[Types::KeyValuePair]
|
19
18
|
attr_accessor message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")
|
20
19
|
attr_accessor offset_millis: ::Integer
|
21
20
|
attr_accessor slate: Types::SlateSource
|
22
21
|
attr_accessor splice_insert_message: Types::SpliceInsertMessage
|
23
22
|
attr_accessor time_signal_message: Types::TimeSignalMessage
|
23
|
+
attr_accessor ad_break_metadata: ::Array[Types::KeyValuePair]
|
24
24
|
SENSITIVE: []
|
25
25
|
end
|
26
26
|
|
@@ -29,6 +29,11 @@ module Aws::MediaTailor
|
|
29
29
|
SENSITIVE: []
|
30
30
|
end
|
31
31
|
|
32
|
+
class AdConditioningConfiguration
|
33
|
+
attr_accessor streaming_media_file_conditioning: ("TRANSCODE" | "NONE")
|
34
|
+
SENSITIVE: []
|
35
|
+
end
|
36
|
+
|
32
37
|
class AdMarkerPassthrough
|
33
38
|
attr_accessor enabled: bool
|
34
39
|
SENSITIVE: []
|
@@ -37,27 +42,27 @@ module Aws::MediaTailor
|
|
37
42
|
class Alert
|
38
43
|
attr_accessor alert_code: ::String
|
39
44
|
attr_accessor alert_message: ::String
|
40
|
-
attr_accessor category: ("SCHEDULING_ERROR" | "PLAYBACK_WARNING" | "INFO")
|
41
45
|
attr_accessor last_modified_time: ::Time
|
42
46
|
attr_accessor related_resource_arns: ::Array[::String]
|
43
47
|
attr_accessor resource_arn: ::String
|
48
|
+
attr_accessor category: ("SCHEDULING_ERROR" | "PLAYBACK_WARNING" | "INFO")
|
44
49
|
SENSITIVE: []
|
45
50
|
end
|
46
51
|
|
47
52
|
class AlternateMedia
|
48
|
-
attr_accessor ad_breaks: ::Array[Types::AdBreak]
|
49
|
-
attr_accessor clip_range: Types::ClipRange
|
50
|
-
attr_accessor duration_millis: ::Integer
|
51
|
-
attr_accessor live_source_name: ::String
|
52
|
-
attr_accessor scheduled_start_time_millis: ::Integer
|
53
53
|
attr_accessor source_location_name: ::String
|
54
|
+
attr_accessor live_source_name: ::String
|
54
55
|
attr_accessor vod_source_name: ::String
|
56
|
+
attr_accessor clip_range: Types::ClipRange
|
57
|
+
attr_accessor scheduled_start_time_millis: ::Integer
|
58
|
+
attr_accessor ad_breaks: ::Array[Types::AdBreak]
|
59
|
+
attr_accessor duration_millis: ::Integer
|
55
60
|
SENSITIVE: []
|
56
61
|
end
|
57
62
|
|
58
63
|
class AudienceMedia
|
59
|
-
attr_accessor alternate_media: ::Array[Types::AlternateMedia]
|
60
64
|
attr_accessor audience: ::String
|
65
|
+
attr_accessor alternate_media: ::Array[Types::AlternateMedia]
|
61
66
|
SENSITIVE: []
|
62
67
|
end
|
63
68
|
|
@@ -68,9 +73,9 @@ module Aws::MediaTailor
|
|
68
73
|
end
|
69
74
|
|
70
75
|
class AvailSuppression
|
71
|
-
attr_accessor fill_policy: ("FULL_AVAIL_ONLY" | "PARTIAL_AVAIL")
|
72
76
|
attr_accessor mode: ("OFF" | "BEHIND_LIVE_EDGE" | "AFTER_LIVE_EDGE")
|
73
77
|
attr_accessor value: ::String
|
78
|
+
attr_accessor fill_policy: ("FULL_AVAIL_ONLY" | "PARTIAL_AVAIL")
|
74
79
|
SENSITIVE: []
|
75
80
|
end
|
76
81
|
|
@@ -93,17 +98,17 @@ module Aws::MediaTailor
|
|
93
98
|
|
94
99
|
class Channel
|
95
100
|
attr_accessor arn: ::String
|
96
|
-
attr_accessor audiences: ::Array[::String]
|
97
101
|
attr_accessor channel_name: ::String
|
98
102
|
attr_accessor channel_state: ::String
|
99
103
|
attr_accessor creation_time: ::Time
|
100
104
|
attr_accessor filler_slate: Types::SlateSource
|
101
105
|
attr_accessor last_modified_time: ::Time
|
102
|
-
attr_accessor log_configuration: Types::LogConfigurationForChannel
|
103
106
|
attr_accessor outputs: ::Array[Types::ResponseOutputItem]
|
104
107
|
attr_accessor playback_mode: ::String
|
105
108
|
attr_accessor tags: ::Hash[::String, ::String]
|
106
109
|
attr_accessor tier: ::String
|
110
|
+
attr_accessor log_configuration: Types::LogConfigurationForChannel
|
111
|
+
attr_accessor audiences: ::Array[::String]
|
107
112
|
SENSITIVE: []
|
108
113
|
end
|
109
114
|
|
@@ -138,7 +143,6 @@ module Aws::MediaTailor
|
|
138
143
|
end
|
139
144
|
|
140
145
|
class CreateChannelRequest
|
141
|
-
attr_accessor audiences: ::Array[::String]
|
142
146
|
attr_accessor channel_name: ::String
|
143
147
|
attr_accessor filler_slate: Types::SlateSource
|
144
148
|
attr_accessor outputs: ::Array[Types::RequestOutputItem]
|
@@ -146,12 +150,12 @@ module Aws::MediaTailor
|
|
146
150
|
attr_accessor tags: ::Hash[::String, ::String]
|
147
151
|
attr_accessor tier: ("BASIC" | "STANDARD")
|
148
152
|
attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
|
153
|
+
attr_accessor audiences: ::Array[::String]
|
149
154
|
SENSITIVE: []
|
150
155
|
end
|
151
156
|
|
152
157
|
class CreateChannelResponse
|
153
158
|
attr_accessor arn: ::String
|
154
|
-
attr_accessor audiences: ::Array[::String]
|
155
159
|
attr_accessor channel_name: ::String
|
156
160
|
attr_accessor channel_state: ("RUNNING" | "STOPPED")
|
157
161
|
attr_accessor creation_time: ::Time
|
@@ -162,6 +166,7 @@ module Aws::MediaTailor
|
|
162
166
|
attr_accessor tags: ::Hash[::String, ::String]
|
163
167
|
attr_accessor tier: ::String
|
164
168
|
attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
|
169
|
+
attr_accessor audiences: ::Array[::String]
|
165
170
|
SENSITIVE: []
|
166
171
|
end
|
167
172
|
|
@@ -205,29 +210,29 @@ module Aws::MediaTailor
|
|
205
210
|
|
206
211
|
class CreateProgramRequest
|
207
212
|
attr_accessor ad_breaks: ::Array[Types::AdBreak]
|
208
|
-
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
209
213
|
attr_accessor channel_name: ::String
|
210
214
|
attr_accessor live_source_name: ::String
|
211
215
|
attr_accessor program_name: ::String
|
212
216
|
attr_accessor schedule_configuration: Types::ScheduleConfiguration
|
213
217
|
attr_accessor source_location_name: ::String
|
214
218
|
attr_accessor vod_source_name: ::String
|
219
|
+
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
215
220
|
SENSITIVE: []
|
216
221
|
end
|
217
222
|
|
218
223
|
class CreateProgramResponse
|
219
224
|
attr_accessor ad_breaks: ::Array[Types::AdBreak]
|
220
225
|
attr_accessor arn: ::String
|
221
|
-
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
222
226
|
attr_accessor channel_name: ::String
|
223
|
-
attr_accessor clip_range: Types::ClipRange
|
224
227
|
attr_accessor creation_time: ::Time
|
225
|
-
attr_accessor duration_millis: ::Integer
|
226
228
|
attr_accessor live_source_name: ::String
|
227
229
|
attr_accessor program_name: ::String
|
228
230
|
attr_accessor scheduled_start_time: ::Time
|
229
231
|
attr_accessor source_location_name: ::String
|
230
232
|
attr_accessor vod_source_name: ::String
|
233
|
+
attr_accessor clip_range: Types::ClipRange
|
234
|
+
attr_accessor duration_millis: ::Integer
|
235
|
+
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
231
236
|
SENSITIVE: []
|
232
237
|
end
|
233
238
|
|
@@ -374,18 +379,18 @@ module Aws::MediaTailor
|
|
374
379
|
|
375
380
|
class DescribeChannelResponse
|
376
381
|
attr_accessor arn: ::String
|
377
|
-
attr_accessor audiences: ::Array[::String]
|
378
382
|
attr_accessor channel_name: ::String
|
379
383
|
attr_accessor channel_state: ("RUNNING" | "STOPPED")
|
380
384
|
attr_accessor creation_time: ::Time
|
381
385
|
attr_accessor filler_slate: Types::SlateSource
|
382
386
|
attr_accessor last_modified_time: ::Time
|
383
|
-
attr_accessor log_configuration: Types::LogConfigurationForChannel
|
384
387
|
attr_accessor outputs: ::Array[Types::ResponseOutputItem]
|
385
388
|
attr_accessor playback_mode: ::String
|
386
389
|
attr_accessor tags: ::Hash[::String, ::String]
|
387
390
|
attr_accessor tier: ::String
|
391
|
+
attr_accessor log_configuration: Types::LogConfigurationForChannel
|
388
392
|
attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
|
393
|
+
attr_accessor audiences: ::Array[::String]
|
389
394
|
SENSITIVE: []
|
390
395
|
end
|
391
396
|
|
@@ -415,16 +420,16 @@ module Aws::MediaTailor
|
|
415
420
|
class DescribeProgramResponse
|
416
421
|
attr_accessor ad_breaks: ::Array[Types::AdBreak]
|
417
422
|
attr_accessor arn: ::String
|
418
|
-
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
419
423
|
attr_accessor channel_name: ::String
|
420
|
-
attr_accessor clip_range: Types::ClipRange
|
421
424
|
attr_accessor creation_time: ::Time
|
422
|
-
attr_accessor duration_millis: ::Integer
|
423
425
|
attr_accessor live_source_name: ::String
|
424
426
|
attr_accessor program_name: ::String
|
425
427
|
attr_accessor scheduled_start_time: ::Time
|
426
428
|
attr_accessor source_location_name: ::String
|
427
429
|
attr_accessor vod_source_name: ::String
|
430
|
+
attr_accessor clip_range: Types::ClipRange
|
431
|
+
attr_accessor duration_millis: ::Integer
|
432
|
+
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
428
433
|
SENSITIVE: []
|
429
434
|
end
|
430
435
|
|
@@ -475,11 +480,11 @@ module Aws::MediaTailor
|
|
475
480
|
end
|
476
481
|
|
477
482
|
class GetChannelScheduleRequest
|
478
|
-
attr_accessor audience: ::String
|
479
483
|
attr_accessor channel_name: ::String
|
480
484
|
attr_accessor duration_minutes: ::String
|
481
485
|
attr_accessor max_results: ::Integer
|
482
486
|
attr_accessor next_token: ::String
|
487
|
+
attr_accessor audience: ::String
|
483
488
|
SENSITIVE: []
|
484
489
|
end
|
485
490
|
|
@@ -515,6 +520,7 @@ module Aws::MediaTailor
|
|
515
520
|
attr_accessor tags: ::Hash[::String, ::String]
|
516
521
|
attr_accessor transcode_profile_name: ::String
|
517
522
|
attr_accessor video_content_source_url: ::String
|
523
|
+
attr_accessor ad_conditioning_configuration: Types::AdConditioningConfiguration
|
518
524
|
SENSITIVE: []
|
519
525
|
end
|
520
526
|
|
@@ -540,8 +546,8 @@ module Aws::MediaTailor
|
|
540
546
|
end
|
541
547
|
|
542
548
|
class HlsPlaylistSettings
|
543
|
-
attr_accessor ad_markup_type: ::Array[("DATERANGE" | "SCTE35_ENHANCED")]
|
544
549
|
attr_accessor manifest_window_seconds: ::Integer
|
550
|
+
attr_accessor ad_markup_type: ::Array[("DATERANGE" | "SCTE35_ENHANCED")]
|
545
551
|
SENSITIVE: []
|
546
552
|
end
|
547
553
|
|
@@ -715,6 +721,7 @@ module Aws::MediaTailor
|
|
715
721
|
attr_accessor tags: ::Hash[::String, ::String]
|
716
722
|
attr_accessor transcode_profile_name: ::String
|
717
723
|
attr_accessor video_content_source_url: ::String
|
724
|
+
attr_accessor ad_conditioning_configuration: Types::AdConditioningConfiguration
|
718
725
|
SENSITIVE: []
|
719
726
|
end
|
720
727
|
|
@@ -767,6 +774,7 @@ module Aws::MediaTailor
|
|
767
774
|
attr_accessor tags: ::Hash[::String, ::String]
|
768
775
|
attr_accessor transcode_profile_name: ::String
|
769
776
|
attr_accessor video_content_source_url: ::String
|
777
|
+
attr_accessor ad_conditioning_configuration: Types::AdConditioningConfiguration
|
770
778
|
SENSITIVE: []
|
771
779
|
end
|
772
780
|
|
@@ -791,6 +799,7 @@ module Aws::MediaTailor
|
|
791
799
|
attr_accessor tags: ::Hash[::String, ::String]
|
792
800
|
attr_accessor transcode_profile_name: ::String
|
793
801
|
attr_accessor video_content_source_url: ::String
|
802
|
+
attr_accessor ad_conditioning_configuration: Types::AdConditioningConfiguration
|
794
803
|
SENSITIVE: []
|
795
804
|
end
|
796
805
|
|
@@ -820,8 +829,8 @@ module Aws::MediaTailor
|
|
820
829
|
end
|
821
830
|
|
822
831
|
class ScheduleConfiguration
|
823
|
-
attr_accessor clip_range: Types::ClipRange
|
824
832
|
attr_accessor transition: Types::Transition
|
833
|
+
attr_accessor clip_range: Types::ClipRange
|
825
834
|
SENSITIVE: []
|
826
835
|
end
|
827
836
|
|
@@ -829,7 +838,6 @@ module Aws::MediaTailor
|
|
829
838
|
attr_accessor approximate_duration_seconds: ::Integer
|
830
839
|
attr_accessor approximate_start_time: ::Time
|
831
840
|
attr_accessor arn: ::String
|
832
|
-
attr_accessor audiences: ::Array[::String]
|
833
841
|
attr_accessor channel_name: ::String
|
834
842
|
attr_accessor live_source_name: ::String
|
835
843
|
attr_accessor program_name: ::String
|
@@ -837,6 +845,7 @@ module Aws::MediaTailor
|
|
837
845
|
attr_accessor schedule_entry_type: ("PROGRAM" | "FILLER_SLATE" | "ALTERNATE_MEDIA")
|
838
846
|
attr_accessor source_location_name: ::String
|
839
847
|
attr_accessor vod_source_name: ::String
|
848
|
+
attr_accessor audiences: ::Array[::String]
|
840
849
|
SENSITIVE: []
|
841
850
|
end
|
842
851
|
|
@@ -854,11 +863,11 @@ module Aws::MediaTailor
|
|
854
863
|
end
|
855
864
|
|
856
865
|
class SegmentationDescriptor
|
857
|
-
attr_accessor segment_num: ::Integer
|
858
866
|
attr_accessor segmentation_event_id: ::Integer
|
859
|
-
attr_accessor segmentation_type_id: ::Integer
|
860
|
-
attr_accessor segmentation_upid: ::String
|
861
867
|
attr_accessor segmentation_upid_type: ::Integer
|
868
|
+
attr_accessor segmentation_upid: ::String
|
869
|
+
attr_accessor segmentation_type_id: ::Integer
|
870
|
+
attr_accessor segment_num: ::Integer
|
862
871
|
attr_accessor segments_expected: ::Integer
|
863
872
|
attr_accessor sub_segment_num: ::Integer
|
864
873
|
attr_accessor sub_segments_expected: ::Integer
|
@@ -940,17 +949,16 @@ module Aws::MediaTailor
|
|
940
949
|
end
|
941
950
|
|
942
951
|
class UpdateChannelRequest
|
943
|
-
attr_accessor audiences: ::Array[::String]
|
944
952
|
attr_accessor channel_name: ::String
|
945
953
|
attr_accessor filler_slate: Types::SlateSource
|
946
954
|
attr_accessor outputs: ::Array[Types::RequestOutputItem]
|
947
955
|
attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
|
956
|
+
attr_accessor audiences: ::Array[::String]
|
948
957
|
SENSITIVE: []
|
949
958
|
end
|
950
959
|
|
951
960
|
class UpdateChannelResponse
|
952
961
|
attr_accessor arn: ::String
|
953
|
-
attr_accessor audiences: ::Array[::String]
|
954
962
|
attr_accessor channel_name: ::String
|
955
963
|
attr_accessor channel_state: ("RUNNING" | "STOPPED")
|
956
964
|
attr_accessor creation_time: ::Time
|
@@ -961,6 +969,7 @@ module Aws::MediaTailor
|
|
961
969
|
attr_accessor tags: ::Hash[::String, ::String]
|
962
970
|
attr_accessor tier: ::String
|
963
971
|
attr_accessor time_shift_configuration: Types::TimeShiftConfiguration
|
972
|
+
attr_accessor audiences: ::Array[::String]
|
964
973
|
SENSITIVE: []
|
965
974
|
end
|
966
975
|
|
@@ -984,38 +993,38 @@ module Aws::MediaTailor
|
|
984
993
|
|
985
994
|
class UpdateProgramRequest
|
986
995
|
attr_accessor ad_breaks: ::Array[Types::AdBreak]
|
987
|
-
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
988
996
|
attr_accessor channel_name: ::String
|
989
997
|
attr_accessor program_name: ::String
|
990
998
|
attr_accessor schedule_configuration: Types::UpdateProgramScheduleConfiguration
|
999
|
+
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
991
1000
|
SENSITIVE: []
|
992
1001
|
end
|
993
1002
|
|
994
1003
|
class UpdateProgramResponse
|
995
1004
|
attr_accessor ad_breaks: ::Array[Types::AdBreak]
|
996
1005
|
attr_accessor arn: ::String
|
997
|
-
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
998
1006
|
attr_accessor channel_name: ::String
|
999
|
-
attr_accessor clip_range: Types::ClipRange
|
1000
1007
|
attr_accessor creation_time: ::Time
|
1001
|
-
attr_accessor duration_millis: ::Integer
|
1002
|
-
attr_accessor live_source_name: ::String
|
1003
1008
|
attr_accessor program_name: ::String
|
1004
|
-
attr_accessor scheduled_start_time: ::Time
|
1005
1009
|
attr_accessor source_location_name: ::String
|
1006
1010
|
attr_accessor vod_source_name: ::String
|
1011
|
+
attr_accessor live_source_name: ::String
|
1012
|
+
attr_accessor clip_range: Types::ClipRange
|
1013
|
+
attr_accessor duration_millis: ::Integer
|
1014
|
+
attr_accessor scheduled_start_time: ::Time
|
1015
|
+
attr_accessor audience_media: ::Array[Types::AudienceMedia]
|
1007
1016
|
SENSITIVE: []
|
1008
1017
|
end
|
1009
1018
|
|
1010
1019
|
class UpdateProgramScheduleConfiguration
|
1011
|
-
attr_accessor clip_range: Types::ClipRange
|
1012
1020
|
attr_accessor transition: Types::UpdateProgramTransition
|
1021
|
+
attr_accessor clip_range: Types::ClipRange
|
1013
1022
|
SENSITIVE: []
|
1014
1023
|
end
|
1015
1024
|
|
1016
1025
|
class UpdateProgramTransition
|
1017
|
-
attr_accessor duration_millis: ::Integer
|
1018
1026
|
attr_accessor scheduled_start_time_millis: ::Integer
|
1027
|
+
attr_accessor duration_millis: ::Integer
|
1019
1028
|
SENSITIVE: []
|
1020
1029
|
end
|
1021
1030
|
|
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.93.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: 2025-01-
|
11
|
+
date: 2025-01-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for AWS MediaTailor (MediaTailor). This gem is
|
48
48
|
part of the AWS SDK for Ruby.
|
49
49
|
email:
|