aws-sdk-mediatailor 1.76.0 → 1.77.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.
data/sig/client.rbs CHANGED
@@ -99,6 +99,7 @@ module Aws
99
99
  interface _CreateChannelResponseSuccess
100
100
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateChannelResponse]
101
101
  def arn: () -> ::String
102
+ def audiences: () -> ::Array[::String]
102
103
  def channel_name: () -> ::String
103
104
  def channel_state: () -> ("RUNNING" | "STOPPED")
104
105
  def creation_time: () -> ::Time
@@ -112,6 +113,7 @@ module Aws
112
113
  end
113
114
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#create_channel-instance_method
114
115
  def create_channel: (
116
+ ?audiences: Array[::String],
115
117
  channel_name: ::String,
116
118
  ?filler_slate: {
117
119
  source_location_name: ::String?,
@@ -203,6 +205,7 @@ module Aws
203
205
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateProgramResponse]
204
206
  def ad_breaks: () -> ::Array[Types::AdBreak]
205
207
  def arn: () -> ::String
208
+ def audience_media: () -> ::Array[Types::AudienceMedia]
206
209
  def channel_name: () -> ::String
207
210
  def clip_range: () -> Types::ClipRange
208
211
  def creation_time: () -> ::Time
@@ -224,7 +227,7 @@ module Aws
224
227
  },
225
228
  ]?,
226
229
  message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
227
- offset_millis: ::Integer?,
230
+ offset_millis: ::Integer,
228
231
  slate: {
229
232
  source_location_name: ::String?,
230
233
  vod_source_name: ::String?
@@ -251,12 +254,67 @@ module Aws
251
254
  }?
252
255
  },
253
256
  ],
257
+ ?audience_media: Array[
258
+ {
259
+ alternate_media: Array[
260
+ {
261
+ ad_breaks: Array[
262
+ {
263
+ ad_break_metadata: Array[
264
+ {
265
+ key: ::String,
266
+ value: ::String
267
+ },
268
+ ]?,
269
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
270
+ offset_millis: ::Integer,
271
+ slate: {
272
+ source_location_name: ::String?,
273
+ vod_source_name: ::String?
274
+ }?,
275
+ splice_insert_message: {
276
+ avail_num: ::Integer?,
277
+ avails_expected: ::Integer?,
278
+ splice_event_id: ::Integer?,
279
+ unique_program_id: ::Integer?
280
+ }?,
281
+ time_signal_message: {
282
+ segmentation_descriptors: Array[
283
+ {
284
+ segment_num: ::Integer?,
285
+ segmentation_event_id: ::Integer?,
286
+ segmentation_type_id: ::Integer?,
287
+ segmentation_upid: ::String?,
288
+ segmentation_upid_type: ::Integer?,
289
+ segments_expected: ::Integer?,
290
+ sub_segment_num: ::Integer?,
291
+ sub_segments_expected: ::Integer?
292
+ },
293
+ ]?
294
+ }?
295
+ },
296
+ ]?,
297
+ clip_range: {
298
+ end_offset_millis: ::Integer?,
299
+ start_offset_millis: ::Integer?
300
+ }?,
301
+ duration_millis: ::Integer?,
302
+ live_source_name: ::String?,
303
+ scheduled_start_time_millis: ::Integer?,
304
+ source_location_name: ::String?,
305
+ vod_source_name: ::String?
306
+ },
307
+ ]?,
308
+ audience: ::String?
309
+ },
310
+ ],
254
311
  channel_name: ::String,
255
312
  ?live_source_name: ::String,
256
313
  program_name: ::String,
257
314
  schedule_configuration: {
258
315
  clip_range: {
259
- end_offset_millis: ::Integer
316
+ end_offset_millis: ::Integer?,
317
+ start_offset_millis: ::Integer?
260
318
  }?,
261
319
  transition: {
262
320
  duration_millis: ::Integer?,
@@ -414,6 +472,7 @@ module Aws
414
472
  interface _DescribeChannelResponseSuccess
415
473
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeChannelResponse]
416
474
  def arn: () -> ::String
475
+ def audiences: () -> ::Array[::String]
417
476
  def channel_name: () -> ::String
418
477
  def channel_state: () -> ("RUNNING" | "STOPPED")
419
478
  def creation_time: () -> ::Time
@@ -453,6 +512,7 @@ module Aws
453
512
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeProgramResponse]
454
513
  def ad_breaks: () -> ::Array[Types::AdBreak]
455
514
  def arn: () -> ::String
515
+ def audience_media: () -> ::Array[Types::AudienceMedia]
456
516
  def channel_name: () -> ::String
457
517
  def clip_range: () -> Types::ClipRange
458
518
  def creation_time: () -> ::Time
@@ -523,6 +583,7 @@ module Aws
523
583
  end
524
584
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#get_channel_schedule-instance_method
525
585
  def get_channel_schedule: (
586
+ ?audience: ::String,
526
587
  channel_name: ::String,
527
588
  ?duration_minutes: ::String,
528
589
  ?max_results: ::Integer,
@@ -779,6 +840,7 @@ module Aws
779
840
  interface _UpdateChannelResponseSuccess
780
841
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateChannelResponse]
781
842
  def arn: () -> ::String
843
+ def audiences: () -> ::Array[::String]
782
844
  def channel_name: () -> ::String
783
845
  def channel_state: () -> ("RUNNING" | "STOPPED")
784
846
  def creation_time: () -> ::Time
@@ -792,6 +854,7 @@ module Aws
792
854
  end
793
855
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaTailor/Client.html#update_channel-instance_method
794
856
  def update_channel: (
857
+ ?audiences: Array[::String],
795
858
  channel_name: ::String,
796
859
  ?filler_slate: {
797
860
  source_location_name: ::String?,
@@ -847,6 +910,7 @@ module Aws
847
910
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateProgramResponse]
848
911
  def ad_breaks: () -> ::Array[Types::AdBreak]
849
912
  def arn: () -> ::String
913
+ def audience_media: () -> ::Array[Types::AudienceMedia]
850
914
  def channel_name: () -> ::String
851
915
  def clip_range: () -> Types::ClipRange
852
916
  def creation_time: () -> ::Time
@@ -868,7 +932,7 @@ module Aws
868
932
  },
869
933
  ]?,
870
934
  message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
871
- offset_millis: ::Integer?,
935
+ offset_millis: ::Integer,
872
936
  slate: {
873
937
  source_location_name: ::String?,
874
938
  vod_source_name: ::String?
@@ -895,11 +959,66 @@ module Aws
895
959
  }?
896
960
  },
897
961
  ],
962
+ ?audience_media: Array[
963
+ {
964
+ alternate_media: Array[
965
+ {
966
+ ad_breaks: Array[
967
+ {
968
+ ad_break_metadata: Array[
969
+ {
970
+ key: ::String,
971
+ value: ::String
972
+ },
973
+ ]?,
974
+ message_type: ("SPLICE_INSERT" | "TIME_SIGNAL")?,
975
+ offset_millis: ::Integer,
976
+ slate: {
977
+ source_location_name: ::String?,
978
+ vod_source_name: ::String?
979
+ }?,
980
+ splice_insert_message: {
981
+ avail_num: ::Integer?,
982
+ avails_expected: ::Integer?,
983
+ splice_event_id: ::Integer?,
984
+ unique_program_id: ::Integer?
985
+ }?,
986
+ time_signal_message: {
987
+ segmentation_descriptors: Array[
988
+ {
989
+ segment_num: ::Integer?,
990
+ segmentation_event_id: ::Integer?,
991
+ segmentation_type_id: ::Integer?,
992
+ segmentation_upid: ::String?,
993
+ segmentation_upid_type: ::Integer?,
994
+ segments_expected: ::Integer?,
995
+ sub_segment_num: ::Integer?,
996
+ sub_segments_expected: ::Integer?
997
+ },
998
+ ]?
999
+ }?
1000
+ },
1001
+ ]?,
1002
+ clip_range: {
1003
+ end_offset_millis: ::Integer?,
1004
+ start_offset_millis: ::Integer?
1005
+ }?,
1006
+ duration_millis: ::Integer?,
1007
+ live_source_name: ::String?,
1008
+ scheduled_start_time_millis: ::Integer?,
1009
+ source_location_name: ::String?,
1010
+ vod_source_name: ::String?
1011
+ },
1012
+ ]?,
1013
+ audience: ::String?
1014
+ },
1015
+ ],
898
1016
  channel_name: ::String,
899
1017
  program_name: ::String,
900
1018
  schedule_configuration: {
901
1019
  clip_range: {
902
- end_offset_millis: ::Integer
1020
+ end_offset_millis: ::Integer?,
1021
+ start_offset_millis: ::Integer?
903
1022
  }?,
904
1023
  transition: {
905
1024
  duration_millis: ::Integer?,
data/sig/types.rbs CHANGED
@@ -44,6 +44,23 @@ module Aws::MediaTailor
44
44
  SENSITIVE: []
45
45
  end
46
46
 
47
+ 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
+ attr_accessor source_location_name: ::String
54
+ attr_accessor vod_source_name: ::String
55
+ SENSITIVE: []
56
+ end
57
+
58
+ class AudienceMedia
59
+ attr_accessor alternate_media: ::Array[Types::AlternateMedia]
60
+ attr_accessor audience: ::String
61
+ SENSITIVE: []
62
+ end
63
+
47
64
  class AvailMatchingCriteria
48
65
  attr_accessor dynamic_variable: ::String
49
66
  attr_accessor operator: ("EQUALS")
@@ -76,6 +93,7 @@ module Aws::MediaTailor
76
93
 
77
94
  class Channel
78
95
  attr_accessor arn: ::String
96
+ attr_accessor audiences: ::Array[::String]
79
97
  attr_accessor channel_name: ::String
80
98
  attr_accessor channel_state: ::String
81
99
  attr_accessor creation_time: ::Time
@@ -91,6 +109,7 @@ module Aws::MediaTailor
91
109
 
92
110
  class ClipRange
93
111
  attr_accessor end_offset_millis: ::Integer
112
+ attr_accessor start_offset_millis: ::Integer
94
113
  SENSITIVE: []
95
114
  end
96
115
 
@@ -119,6 +138,7 @@ module Aws::MediaTailor
119
138
  end
120
139
 
121
140
  class CreateChannelRequest
141
+ attr_accessor audiences: ::Array[::String]
122
142
  attr_accessor channel_name: ::String
123
143
  attr_accessor filler_slate: Types::SlateSource
124
144
  attr_accessor outputs: ::Array[Types::RequestOutputItem]
@@ -131,6 +151,7 @@ module Aws::MediaTailor
131
151
 
132
152
  class CreateChannelResponse
133
153
  attr_accessor arn: ::String
154
+ attr_accessor audiences: ::Array[::String]
134
155
  attr_accessor channel_name: ::String
135
156
  attr_accessor channel_state: ("RUNNING" | "STOPPED")
136
157
  attr_accessor creation_time: ::Time
@@ -184,6 +205,7 @@ module Aws::MediaTailor
184
205
 
185
206
  class CreateProgramRequest
186
207
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
208
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
187
209
  attr_accessor channel_name: ::String
188
210
  attr_accessor live_source_name: ::String
189
211
  attr_accessor program_name: ::String
@@ -196,6 +218,7 @@ module Aws::MediaTailor
196
218
  class CreateProgramResponse
197
219
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
198
220
  attr_accessor arn: ::String
221
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
199
222
  attr_accessor channel_name: ::String
200
223
  attr_accessor clip_range: Types::ClipRange
201
224
  attr_accessor creation_time: ::Time
@@ -351,6 +374,7 @@ module Aws::MediaTailor
351
374
 
352
375
  class DescribeChannelResponse
353
376
  attr_accessor arn: ::String
377
+ attr_accessor audiences: ::Array[::String]
354
378
  attr_accessor channel_name: ::String
355
379
  attr_accessor channel_state: ("RUNNING" | "STOPPED")
356
380
  attr_accessor creation_time: ::Time
@@ -391,6 +415,7 @@ module Aws::MediaTailor
391
415
  class DescribeProgramResponse
392
416
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
393
417
  attr_accessor arn: ::String
418
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
394
419
  attr_accessor channel_name: ::String
395
420
  attr_accessor clip_range: Types::ClipRange
396
421
  attr_accessor creation_time: ::Time
@@ -450,6 +475,7 @@ module Aws::MediaTailor
450
475
  end
451
476
 
452
477
  class GetChannelScheduleRequest
478
+ attr_accessor audience: ::String
453
479
  attr_accessor channel_name: ::String
454
480
  attr_accessor duration_minutes: ::String
455
481
  attr_accessor max_results: ::Integer
@@ -799,11 +825,12 @@ module Aws::MediaTailor
799
825
  attr_accessor approximate_duration_seconds: ::Integer
800
826
  attr_accessor approximate_start_time: ::Time
801
827
  attr_accessor arn: ::String
828
+ attr_accessor audiences: ::Array[::String]
802
829
  attr_accessor channel_name: ::String
803
830
  attr_accessor live_source_name: ::String
804
831
  attr_accessor program_name: ::String
805
832
  attr_accessor schedule_ad_breaks: ::Array[Types::ScheduleAdBreak]
806
- attr_accessor schedule_entry_type: ("PROGRAM" | "FILLER_SLATE")
833
+ attr_accessor schedule_entry_type: ("PROGRAM" | "FILLER_SLATE" | "ALTERNATE_MEDIA")
807
834
  attr_accessor source_location_name: ::String
808
835
  attr_accessor vod_source_name: ::String
809
836
  SENSITIVE: []
@@ -909,6 +936,7 @@ module Aws::MediaTailor
909
936
  end
910
937
 
911
938
  class UpdateChannelRequest
939
+ attr_accessor audiences: ::Array[::String]
912
940
  attr_accessor channel_name: ::String
913
941
  attr_accessor filler_slate: Types::SlateSource
914
942
  attr_accessor outputs: ::Array[Types::RequestOutputItem]
@@ -918,6 +946,7 @@ module Aws::MediaTailor
918
946
 
919
947
  class UpdateChannelResponse
920
948
  attr_accessor arn: ::String
949
+ attr_accessor audiences: ::Array[::String]
921
950
  attr_accessor channel_name: ::String
922
951
  attr_accessor channel_state: ("RUNNING" | "STOPPED")
923
952
  attr_accessor creation_time: ::Time
@@ -951,6 +980,7 @@ module Aws::MediaTailor
951
980
 
952
981
  class UpdateProgramRequest
953
982
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
983
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
954
984
  attr_accessor channel_name: ::String
955
985
  attr_accessor program_name: ::String
956
986
  attr_accessor schedule_configuration: Types::UpdateProgramScheduleConfiguration
@@ -960,6 +990,7 @@ module Aws::MediaTailor
960
990
  class UpdateProgramResponse
961
991
  attr_accessor ad_breaks: ::Array[Types::AdBreak]
962
992
  attr_accessor arn: ::String
993
+ attr_accessor audience_media: ::Array[Types::AudienceMedia]
963
994
  attr_accessor channel_name: ::String
964
995
  attr_accessor clip_range: Types::ClipRange
965
996
  attr_accessor creation_time: ::Time
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.76.0
4
+ version: 1.77.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core