aws-sdk-mediatailor 1.39.0 → 1.40.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 63ee783da823a7c1746371e20efe6278b7ad8f2aaa6bb80c62dd869116f7b194
4
- data.tar.gz: 765d838185cd965040120970701e54ca45a9c2c556bdbd12e9f31cb53bf18a9b
3
+ metadata.gz: 776b821ba99e304f858c10f608739a8f215585af77cc80af0c6e30194e916d22
4
+ data.tar.gz: 6d37139aa1d17a952fd812ef9186d3d30f42404a98f49e0252429b5d6ca429b6
5
5
  SHA512:
6
- metadata.gz: ebd71ceeaf95fc25fa30a70603c073541915de41fcf35d3c1d83ef6f9f68100a6f3718fa0492d9b09e6925d562186b8949eb15fe22cf37a9024ebd51e162eff2
7
- data.tar.gz: 32e0c020d1b11cd89c4eef4de35af58c808bda04819fbf1c27b9b858353127acda2f82dbe01456a6f5d365281843212db7a0855637a0e015ccfe54a08111a928
6
+ metadata.gz: 1a79c67cad2834cad13eeea039069871edf17a1c96ea9bde38c42428834f7d5574d41c93defd22c02fae0bf87c47d6206e3dfd78640ac024d14bd1e3374102b3
7
+ data.tar.gz: 1db7f8481231f2db9f0446b2711dfd2397b9fb697808572057f29f40a5a9ef0ea17dc3488ddddb549888e63c980928260a5fa4c7ba679c14ed9566027a5af7f7
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.40.0 (2021-06-23)
5
+ ------------------
6
+
7
+ * Feature - Update GetChannelSchedule to return information on ad breaks.
8
+
4
9
  1.39.0 (2021-06-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.40.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
48
48
  # @!group service
49
49
  module Aws::MediaTailor
50
50
 
51
- GEM_VERSION = '1.39.0'
51
+ GEM_VERSION = '1.40.0'
52
52
 
53
53
  end
@@ -1015,6 +1015,11 @@ module Aws::MediaTailor
1015
1015
  # resp.items[0].arn #=> String
1016
1016
  # resp.items[0].channel_name #=> String
1017
1017
  # resp.items[0].program_name #=> String
1018
+ # resp.items[0].schedule_ad_breaks #=> Array
1019
+ # resp.items[0].schedule_ad_breaks[0].approximate_duration_seconds #=> Integer
1020
+ # resp.items[0].schedule_ad_breaks[0].approximate_start_time #=> Time
1021
+ # resp.items[0].schedule_ad_breaks[0].source_location_name #=> String
1022
+ # resp.items[0].schedule_ad_breaks[0].vod_source_name #=> String
1018
1023
  # resp.items[0].source_location_name #=> String
1019
1024
  # resp.items[0].vod_source_name #=> String
1020
1025
  # resp.next_token #=> String
@@ -1858,7 +1863,7 @@ module Aws::MediaTailor
1858
1863
  params: params,
1859
1864
  config: config)
1860
1865
  context[:gem_name] = 'aws-sdk-mediatailor'
1861
- context[:gem_version] = '1.39.0'
1866
+ context[:gem_version] = '1.40.0'
1862
1867
  Seahorse::Client::Request.new(handlers, context)
1863
1868
  end
1864
1869
 
@@ -95,6 +95,7 @@ module Aws::MediaTailor
95
95
  RequestOutputs = Shapes::ListShape.new(name: 'RequestOutputs')
96
96
  ResponseOutputItem = Shapes::StructureShape.new(name: 'ResponseOutputItem')
97
97
  ResponseOutputs = Shapes::ListShape.new(name: 'ResponseOutputs')
98
+ ScheduleAdBreak = Shapes::StructureShape.new(name: 'ScheduleAdBreak')
98
99
  ScheduleConfiguration = Shapes::StructureShape.new(name: 'ScheduleConfiguration')
99
100
  ScheduleEntry = Shapes::StructureShape.new(name: 'ScheduleEntry')
100
101
  SecretsManagerAccessTokenConfiguration = Shapes::StructureShape.new(name: 'SecretsManagerAccessTokenConfiguration')
@@ -122,6 +123,7 @@ module Aws::MediaTailor
122
123
  __listOfAdBreak = Shapes::ListShape.new(name: '__listOfAdBreak')
123
124
  __listOfChannel = Shapes::ListShape.new(name: '__listOfChannel')
124
125
  __listOfPlaybackConfiguration = Shapes::ListShape.new(name: '__listOfPlaybackConfiguration')
126
+ __listOfScheduleAdBreak = Shapes::ListShape.new(name: '__listOfScheduleAdBreak')
125
127
  __listOfScheduleEntry = Shapes::ListShape.new(name: '__listOfScheduleEntry')
126
128
  __listOfSourceLocation = Shapes::ListShape.new(name: '__listOfSourceLocation')
127
129
  __listOfVodSource = Shapes::ListShape.new(name: '__listOfVodSource')
@@ -522,6 +524,12 @@ module Aws::MediaTailor
522
524
 
523
525
  ResponseOutputs.member = Shapes::ShapeRef.new(shape: ResponseOutputItem)
524
526
 
527
+ ScheduleAdBreak.add_member(:approximate_duration_seconds, Shapes::ShapeRef.new(shape: __long, location_name: "ApproximateDurationSeconds"))
528
+ ScheduleAdBreak.add_member(:approximate_start_time, Shapes::ShapeRef.new(shape: __timestampUnix, location_name: "ApproximateStartTime"))
529
+ ScheduleAdBreak.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, location_name: "SourceLocationName"))
530
+ ScheduleAdBreak.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, location_name: "VodSourceName"))
531
+ ScheduleAdBreak.struct_class = Types::ScheduleAdBreak
532
+
525
533
  ScheduleConfiguration.add_member(:transition, Shapes::ShapeRef.new(shape: Transition, required: true, location_name: "Transition"))
526
534
  ScheduleConfiguration.struct_class = Types::ScheduleConfiguration
527
535
 
@@ -530,6 +538,7 @@ module Aws::MediaTailor
530
538
  ScheduleEntry.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Arn"))
531
539
  ScheduleEntry.add_member(:channel_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ChannelName"))
532
540
  ScheduleEntry.add_member(:program_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ProgramName"))
541
+ ScheduleEntry.add_member(:schedule_ad_breaks, Shapes::ShapeRef.new(shape: __listOfScheduleAdBreak, location_name: "ScheduleAdBreaks"))
533
542
  ScheduleEntry.add_member(:source_location_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "SourceLocationName"))
534
543
  ScheduleEntry.add_member(:vod_source_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "VodSourceName"))
535
544
  ScheduleEntry.struct_class = Types::ScheduleEntry
@@ -641,6 +650,8 @@ module Aws::MediaTailor
641
650
 
642
651
  __listOfPlaybackConfiguration.member = Shapes::ShapeRef.new(shape: PlaybackConfiguration)
643
652
 
653
+ __listOfScheduleAdBreak.member = Shapes::ShapeRef.new(shape: ScheduleAdBreak)
654
+
644
655
  __listOfScheduleEntry.member = Shapes::ShapeRef.new(shape: ScheduleEntry)
645
656
 
646
657
  __listOfSourceLocation.member = Shapes::ShapeRef.new(shape: SourceLocation)
@@ -2459,6 +2459,36 @@ module Aws::MediaTailor
2459
2459
  include Aws::Structure
2460
2460
  end
2461
2461
 
2462
+ # The schedule's ad break properties.
2463
+ #
2464
+ # @!attribute [rw] approximate_duration_seconds
2465
+ # The approximate duration of the ad break, in seconds.
2466
+ # @return [Integer]
2467
+ #
2468
+ # @!attribute [rw] approximate_start_time
2469
+ # The approximate time that the ad will start playing.
2470
+ # @return [Time]
2471
+ #
2472
+ # @!attribute [rw] source_location_name
2473
+ # The name of the source location containing the VOD source used for
2474
+ # the ad break.
2475
+ # @return [String]
2476
+ #
2477
+ # @!attribute [rw] vod_source_name
2478
+ # The name of the VOD source used for the ad break.
2479
+ # @return [String]
2480
+ #
2481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/mediatailor-2018-04-23/ScheduleAdBreak AWS API Documentation
2482
+ #
2483
+ class ScheduleAdBreak < Struct.new(
2484
+ :approximate_duration_seconds,
2485
+ :approximate_start_time,
2486
+ :source_location_name,
2487
+ :vod_source_name)
2488
+ SENSITIVE = []
2489
+ include Aws::Structure
2490
+ end
2491
+
2462
2492
  # Schedule configuration parameters. A channel must be stopped before
2463
2493
  # changes can be made to the schedule.
2464
2494
  #
@@ -2507,6 +2537,10 @@ module Aws::MediaTailor
2507
2537
  # The name of the program.
2508
2538
  # @return [String]
2509
2539
  #
2540
+ # @!attribute [rw] schedule_ad_breaks
2541
+ # The schedule's ad break properties.
2542
+ # @return [Array<Types::ScheduleAdBreak>]
2543
+ #
2510
2544
  # @!attribute [rw] source_location_name
2511
2545
  # The name of the source location.
2512
2546
  # @return [String]
@@ -2523,6 +2557,7 @@ module Aws::MediaTailor
2523
2557
  :arn,
2524
2558
  :channel_name,
2525
2559
  :program_name,
2560
+ :schedule_ad_breaks,
2526
2561
  :source_location_name,
2527
2562
  :vod_source_name)
2528
2563
  SENSITIVE = []
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.39.0
4
+ version: 1.40.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: 2021-06-16 00:00:00.000000000 Z
11
+ date: 2021-06-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core