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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediatailor.rb +1 -1
- data/lib/aws-sdk-mediatailor/client.rb +6 -1
- data/lib/aws-sdk-mediatailor/client_api.rb +11 -0
- data/lib/aws-sdk-mediatailor/types.rb +35 -0
- 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: 776b821ba99e304f858c10f608739a8f215585af77cc80af0c6e30194e916d22
|
4
|
+
data.tar.gz: 6d37139aa1d17a952fd812ef9186d3d30f42404a98f49e0252429b5d6ca429b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a79c67cad2834cad13eeea039069871edf17a1c96ea9bde38c42428834f7d5574d41c93defd22c02fae0bf87c47d6206e3dfd78640ac024d14bd1e3374102b3
|
7
|
+
data.tar.gz: 1db7f8481231f2db9f0446b2711dfd2397b9fb697808572057f29f40a5a9ef0ea17dc3488ddddb549888e63c980928260a5fa4c7ba679c14ed9566027a5af7f7
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.40.0
|
data/lib/aws-sdk-mediatailor.rb
CHANGED
@@ -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.
|
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.
|
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-
|
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
|