aws-sdk-mediapackagev2 1.12.0 → 1.14.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mediapackagev2/client.rb +153 -1
- data/lib/aws-sdk-mediapackagev2/client_api.rb +84 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +375 -4
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- data/sig/client.rbs +66 -1
- data/sig/types.rbs +67 -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: e3011839831744458380fa54a0b1ce758f01444e4188a9eac484304385fe3734
|
4
|
+
data.tar.gz: 6515e6e6d1f6107ac29bd656fd93e9186a341caf5b31cba1b0a3b4a1ce7fa8cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 626dd391a510d93e824202c1136081fad667d2bafdf6fdbf248384124c6c8ade76e8859f61da7b02d5b0c66c986bc9a020f4867ed6d51991756bb44e6c97f297
|
7
|
+
data.tar.gz: 37a55028bd1dc03749056b3f03846deafd55e107be6891328699e37b0651f369908b65501a29e4c9e2853684ddc14f55adccd69b536cf69f56e77f0594b71565
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.14.0 (2024-04-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Dash v2 is a MediaPackage V2 feature to support egressing on DASH manifest format.
|
8
|
+
|
9
|
+
1.13.0 (2024-03-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release enables customers to safely update their MediaPackage v2 channel groups, channels and origin endpoints using entity tags.
|
13
|
+
|
4
14
|
1.12.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.14.0
|
@@ -436,6 +436,7 @@ module Aws::MediaPackageV2
|
|
436
436
|
# * {Types::CreateChannelResponse#modified_at #modified_at} => Time
|
437
437
|
# * {Types::CreateChannelResponse#description #description} => String
|
438
438
|
# * {Types::CreateChannelResponse#ingest_endpoints #ingest_endpoints} => Array<Types::IngestEndpoint>
|
439
|
+
# * {Types::CreateChannelResponse#etag #etag} => String
|
439
440
|
# * {Types::CreateChannelResponse#tags #tags} => Hash<String,String>
|
440
441
|
#
|
441
442
|
# @example Request syntax with placeholder values
|
@@ -461,6 +462,7 @@ module Aws::MediaPackageV2
|
|
461
462
|
# resp.ingest_endpoints #=> Array
|
462
463
|
# resp.ingest_endpoints[0].id #=> String
|
463
464
|
# resp.ingest_endpoints[0].url #=> String
|
465
|
+
# resp.etag #=> String
|
464
466
|
# resp.tags #=> Hash
|
465
467
|
# resp.tags["TagKey"] #=> String
|
466
468
|
#
|
@@ -512,6 +514,7 @@ module Aws::MediaPackageV2
|
|
512
514
|
# * {Types::CreateChannelGroupResponse#egress_domain #egress_domain} => String
|
513
515
|
# * {Types::CreateChannelGroupResponse#created_at #created_at} => Time
|
514
516
|
# * {Types::CreateChannelGroupResponse#modified_at #modified_at} => Time
|
517
|
+
# * {Types::CreateChannelGroupResponse#etag #etag} => String
|
515
518
|
# * {Types::CreateChannelGroupResponse#description #description} => String
|
516
519
|
# * {Types::CreateChannelGroupResponse#tags #tags} => Hash<String,String>
|
517
520
|
#
|
@@ -533,6 +536,7 @@ module Aws::MediaPackageV2
|
|
533
536
|
# resp.egress_domain #=> String
|
534
537
|
# resp.created_at #=> Time
|
535
538
|
# resp.modified_at #=> Time
|
539
|
+
# resp.etag #=> String
|
536
540
|
# resp.description #=> String
|
537
541
|
# resp.tags #=> Hash
|
538
542
|
# resp.tags["TagKey"] #=> String
|
@@ -602,6 +606,9 @@ module Aws::MediaPackageV2
|
|
602
606
|
# @option params [Array<Types::CreateLowLatencyHlsManifestConfiguration>] :low_latency_hls_manifests
|
603
607
|
# A low-latency HLS manifest configuration.
|
604
608
|
#
|
609
|
+
# @option params [Array<Types::CreateDashManifestConfiguration>] :dash_manifests
|
610
|
+
# A DASH manifest configuration.
|
611
|
+
#
|
605
612
|
# @option params [Hash<String,String>] :tags
|
606
613
|
# A comma-separated list of tag key:value pairs that you define. For
|
607
614
|
# example:
|
@@ -624,6 +631,8 @@ module Aws::MediaPackageV2
|
|
624
631
|
# * {Types::CreateOriginEndpointResponse#startover_window_seconds #startover_window_seconds} => Integer
|
625
632
|
# * {Types::CreateOriginEndpointResponse#hls_manifests #hls_manifests} => Array<Types::GetHlsManifestConfiguration>
|
626
633
|
# * {Types::CreateOriginEndpointResponse#low_latency_hls_manifests #low_latency_hls_manifests} => Array<Types::GetLowLatencyHlsManifestConfiguration>
|
634
|
+
# * {Types::CreateOriginEndpointResponse#dash_manifests #dash_manifests} => Array<Types::GetDashManifestConfiguration>
|
635
|
+
# * {Types::CreateOriginEndpointResponse#etag #etag} => String
|
627
636
|
# * {Types::CreateOriginEndpointResponse#tags #tags} => Hash<String,String>
|
628
637
|
#
|
629
638
|
# @example Request syntax with placeholder values
|
@@ -698,6 +707,31 @@ module Aws::MediaPackageV2
|
|
698
707
|
# },
|
699
708
|
# },
|
700
709
|
# ],
|
710
|
+
# dash_manifests: [
|
711
|
+
# {
|
712
|
+
# manifest_name: "ManifestName", # required
|
713
|
+
# manifest_window_seconds: 1,
|
714
|
+
# filter_configuration: {
|
715
|
+
# manifest_filter: "FilterConfigurationManifestFilterString",
|
716
|
+
# start: Time.now,
|
717
|
+
# end: Time.now,
|
718
|
+
# time_delay_seconds: 1,
|
719
|
+
# },
|
720
|
+
# min_update_period_seconds: 1,
|
721
|
+
# min_buffer_time_seconds: 1,
|
722
|
+
# suggested_presentation_delay_seconds: 1,
|
723
|
+
# segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE
|
724
|
+
# period_triggers: ["AVAILS"], # accepts AVAILS, DRM_KEY_ROTATION, SOURCE_CHANGES, SOURCE_DISRUPTIONS, NONE
|
725
|
+
# scte_dash: {
|
726
|
+
# ad_marker_dash: "BINARY", # accepts BINARY, XML
|
727
|
+
# },
|
728
|
+
# drm_signaling: "INDIVIDUAL", # accepts INDIVIDUAL, REFERENCED
|
729
|
+
# utc_timing: {
|
730
|
+
# timing_mode: "HTTP_HEAD", # accepts HTTP_HEAD, HTTP_ISO, HTTP_XSDATE, UTC_DIRECT
|
731
|
+
# timing_source: "DashUtcTimingTimingSourceString",
|
732
|
+
# },
|
733
|
+
# },
|
734
|
+
# ],
|
701
735
|
# tags: {
|
702
736
|
# "TagKey" => "TagValue",
|
703
737
|
# },
|
@@ -754,6 +788,25 @@ module Aws::MediaPackageV2
|
|
754
788
|
# resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
|
755
789
|
# resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
|
756
790
|
# resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
791
|
+
# resp.dash_manifests #=> Array
|
792
|
+
# resp.dash_manifests[0].manifest_name #=> String
|
793
|
+
# resp.dash_manifests[0].url #=> String
|
794
|
+
# resp.dash_manifests[0].manifest_window_seconds #=> Integer
|
795
|
+
# resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
|
796
|
+
# resp.dash_manifests[0].filter_configuration.start #=> Time
|
797
|
+
# resp.dash_manifests[0].filter_configuration.end #=> Time
|
798
|
+
# resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
799
|
+
# resp.dash_manifests[0].min_update_period_seconds #=> Integer
|
800
|
+
# resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
|
801
|
+
# resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
|
802
|
+
# resp.dash_manifests[0].segment_template_format #=> String, one of "NUMBER_WITH_TIMELINE"
|
803
|
+
# resp.dash_manifests[0].period_triggers #=> Array
|
804
|
+
# resp.dash_manifests[0].period_triggers[0] #=> String, one of "AVAILS", "DRM_KEY_ROTATION", "SOURCE_CHANGES", "SOURCE_DISRUPTIONS", "NONE"
|
805
|
+
# resp.dash_manifests[0].scte_dash.ad_marker_dash #=> String, one of "BINARY", "XML"
|
806
|
+
# resp.dash_manifests[0].drm_signaling #=> String, one of "INDIVIDUAL", "REFERENCED"
|
807
|
+
# resp.dash_manifests[0].utc_timing.timing_mode #=> String, one of "HTTP_HEAD", "HTTP_ISO", "HTTP_XSDATE", "UTC_DIRECT"
|
808
|
+
# resp.dash_manifests[0].utc_timing.timing_source #=> String
|
809
|
+
# resp.etag #=> String
|
757
810
|
# resp.tags #=> Hash
|
758
811
|
# resp.tags["TagKey"] #=> String
|
759
812
|
#
|
@@ -952,6 +1005,7 @@ module Aws::MediaPackageV2
|
|
952
1005
|
# * {Types::GetChannelResponse#modified_at #modified_at} => Time
|
953
1006
|
# * {Types::GetChannelResponse#description #description} => String
|
954
1007
|
# * {Types::GetChannelResponse#ingest_endpoints #ingest_endpoints} => Array<Types::IngestEndpoint>
|
1008
|
+
# * {Types::GetChannelResponse#etag #etag} => String
|
955
1009
|
# * {Types::GetChannelResponse#tags #tags} => Hash<String,String>
|
956
1010
|
#
|
957
1011
|
# @example Request syntax with placeholder values
|
@@ -972,6 +1026,7 @@ module Aws::MediaPackageV2
|
|
972
1026
|
# resp.ingest_endpoints #=> Array
|
973
1027
|
# resp.ingest_endpoints[0].id #=> String
|
974
1028
|
# resp.ingest_endpoints[0].url #=> String
|
1029
|
+
# resp.etag #=> String
|
975
1030
|
# resp.tags #=> Hash
|
976
1031
|
# resp.tags["TagKey"] #=> String
|
977
1032
|
#
|
@@ -1001,6 +1056,7 @@ module Aws::MediaPackageV2
|
|
1001
1056
|
# * {Types::GetChannelGroupResponse#created_at #created_at} => Time
|
1002
1057
|
# * {Types::GetChannelGroupResponse#modified_at #modified_at} => Time
|
1003
1058
|
# * {Types::GetChannelGroupResponse#description #description} => String
|
1059
|
+
# * {Types::GetChannelGroupResponse#etag #etag} => String
|
1004
1060
|
# * {Types::GetChannelGroupResponse#tags #tags} => Hash<String,String>
|
1005
1061
|
#
|
1006
1062
|
# @example Request syntax with placeholder values
|
@@ -1017,6 +1073,7 @@ module Aws::MediaPackageV2
|
|
1017
1073
|
# resp.created_at #=> Time
|
1018
1074
|
# resp.modified_at #=> Time
|
1019
1075
|
# resp.description #=> String
|
1076
|
+
# resp.etag #=> String
|
1020
1077
|
# resp.tags #=> Hash
|
1021
1078
|
# resp.tags["TagKey"] #=> String
|
1022
1079
|
#
|
@@ -1104,7 +1161,9 @@ module Aws::MediaPackageV2
|
|
1104
1161
|
# * {Types::GetOriginEndpointResponse#startover_window_seconds #startover_window_seconds} => Integer
|
1105
1162
|
# * {Types::GetOriginEndpointResponse#hls_manifests #hls_manifests} => Array<Types::GetHlsManifestConfiguration>
|
1106
1163
|
# * {Types::GetOriginEndpointResponse#low_latency_hls_manifests #low_latency_hls_manifests} => Array<Types::GetLowLatencyHlsManifestConfiguration>
|
1164
|
+
# * {Types::GetOriginEndpointResponse#etag #etag} => String
|
1107
1165
|
# * {Types::GetOriginEndpointResponse#tags #tags} => Hash<String,String>
|
1166
|
+
# * {Types::GetOriginEndpointResponse#dash_manifests #dash_manifests} => Array<Types::GetDashManifestConfiguration>
|
1108
1167
|
#
|
1109
1168
|
# @example Request syntax with placeholder values
|
1110
1169
|
#
|
@@ -1165,8 +1224,27 @@ module Aws::MediaPackageV2
|
|
1165
1224
|
# resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
|
1166
1225
|
# resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
|
1167
1226
|
# resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
1227
|
+
# resp.etag #=> String
|
1168
1228
|
# resp.tags #=> Hash
|
1169
1229
|
# resp.tags["TagKey"] #=> String
|
1230
|
+
# resp.dash_manifests #=> Array
|
1231
|
+
# resp.dash_manifests[0].manifest_name #=> String
|
1232
|
+
# resp.dash_manifests[0].url #=> String
|
1233
|
+
# resp.dash_manifests[0].manifest_window_seconds #=> Integer
|
1234
|
+
# resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
|
1235
|
+
# resp.dash_manifests[0].filter_configuration.start #=> Time
|
1236
|
+
# resp.dash_manifests[0].filter_configuration.end #=> Time
|
1237
|
+
# resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
1238
|
+
# resp.dash_manifests[0].min_update_period_seconds #=> Integer
|
1239
|
+
# resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
|
1240
|
+
# resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
|
1241
|
+
# resp.dash_manifests[0].segment_template_format #=> String, one of "NUMBER_WITH_TIMELINE"
|
1242
|
+
# resp.dash_manifests[0].period_triggers #=> Array
|
1243
|
+
# resp.dash_manifests[0].period_triggers[0] #=> String, one of "AVAILS", "DRM_KEY_ROTATION", "SOURCE_CHANGES", "SOURCE_DISRUPTIONS", "NONE"
|
1244
|
+
# resp.dash_manifests[0].scte_dash.ad_marker_dash #=> String, one of "BINARY", "XML"
|
1245
|
+
# resp.dash_manifests[0].drm_signaling #=> String, one of "INDIVIDUAL", "REFERENCED"
|
1246
|
+
# resp.dash_manifests[0].utc_timing.timing_mode #=> String, one of "HTTP_HEAD", "HTTP_ISO", "HTTP_XSDATE", "UTC_DIRECT"
|
1247
|
+
# resp.dash_manifests[0].utc_timing.timing_source #=> String
|
1170
1248
|
#
|
1171
1249
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetOriginEndpoint AWS API Documentation
|
1172
1250
|
#
|
@@ -1376,6 +1454,9 @@ module Aws::MediaPackageV2
|
|
1376
1454
|
# resp.items[0].low_latency_hls_manifests[0].manifest_name #=> String
|
1377
1455
|
# resp.items[0].low_latency_hls_manifests[0].child_manifest_name #=> String
|
1378
1456
|
# resp.items[0].low_latency_hls_manifests[0].url #=> String
|
1457
|
+
# resp.items[0].dash_manifests #=> Array
|
1458
|
+
# resp.items[0].dash_manifests[0].manifest_name #=> String
|
1459
|
+
# resp.items[0].dash_manifests[0].url #=> String
|
1379
1460
|
# resp.next_token #=> String
|
1380
1461
|
#
|
1381
1462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/ListOriginEndpoints AWS API Documentation
|
@@ -1578,6 +1659,11 @@ module Aws::MediaPackageV2
|
|
1578
1659
|
# identifier for the channel, and must be unique for your account in the
|
1579
1660
|
# AWS Region and channel group.
|
1580
1661
|
#
|
1662
|
+
# @option params [String] :etag
|
1663
|
+
# The expected current Entity Tag (ETag) for the resource. If the
|
1664
|
+
# specified ETag does not match the resource's current entity tag, the
|
1665
|
+
# update request will be rejected.
|
1666
|
+
#
|
1581
1667
|
# @option params [String] :description
|
1582
1668
|
# Any descriptive information that you want to add to the channel for
|
1583
1669
|
# future identification purposes.
|
@@ -1591,6 +1677,7 @@ module Aws::MediaPackageV2
|
|
1591
1677
|
# * {Types::UpdateChannelResponse#modified_at #modified_at} => Time
|
1592
1678
|
# * {Types::UpdateChannelResponse#description #description} => String
|
1593
1679
|
# * {Types::UpdateChannelResponse#ingest_endpoints #ingest_endpoints} => Array<Types::IngestEndpoint>
|
1680
|
+
# * {Types::UpdateChannelResponse#etag #etag} => String
|
1594
1681
|
# * {Types::UpdateChannelResponse#tags #tags} => Hash<String,String>
|
1595
1682
|
#
|
1596
1683
|
# @example Request syntax with placeholder values
|
@@ -1598,6 +1685,7 @@ module Aws::MediaPackageV2
|
|
1598
1685
|
# resp = client.update_channel({
|
1599
1686
|
# channel_group_name: "ResourceName", # required
|
1600
1687
|
# channel_name: "ResourceName", # required
|
1688
|
+
# etag: "EntityTag",
|
1601
1689
|
# description: "ResourceDescription",
|
1602
1690
|
# })
|
1603
1691
|
#
|
@@ -1612,6 +1700,7 @@ module Aws::MediaPackageV2
|
|
1612
1700
|
# resp.ingest_endpoints #=> Array
|
1613
1701
|
# resp.ingest_endpoints[0].id #=> String
|
1614
1702
|
# resp.ingest_endpoints[0].url #=> String
|
1703
|
+
# resp.etag #=> String
|
1615
1704
|
# resp.tags #=> Hash
|
1616
1705
|
# resp.tags["TagKey"] #=> String
|
1617
1706
|
#
|
@@ -1636,6 +1725,11 @@ module Aws::MediaPackageV2
|
|
1636
1725
|
# identifier for the channel group, and must be unique for your account
|
1637
1726
|
# in the AWS Region.
|
1638
1727
|
#
|
1728
|
+
# @option params [String] :etag
|
1729
|
+
# The expected current Entity Tag (ETag) for the resource. If the
|
1730
|
+
# specified ETag does not match the resource's current entity tag, the
|
1731
|
+
# update request will be rejected.
|
1732
|
+
#
|
1639
1733
|
# @option params [String] :description
|
1640
1734
|
# Any descriptive information that you want to add to the channel group
|
1641
1735
|
# for future identification purposes.
|
@@ -1648,12 +1742,14 @@ module Aws::MediaPackageV2
|
|
1648
1742
|
# * {Types::UpdateChannelGroupResponse#created_at #created_at} => Time
|
1649
1743
|
# * {Types::UpdateChannelGroupResponse#modified_at #modified_at} => Time
|
1650
1744
|
# * {Types::UpdateChannelGroupResponse#description #description} => String
|
1745
|
+
# * {Types::UpdateChannelGroupResponse#etag #etag} => String
|
1651
1746
|
# * {Types::UpdateChannelGroupResponse#tags #tags} => Hash<String,String>
|
1652
1747
|
#
|
1653
1748
|
# @example Request syntax with placeholder values
|
1654
1749
|
#
|
1655
1750
|
# resp = client.update_channel_group({
|
1656
1751
|
# channel_group_name: "ResourceName", # required
|
1752
|
+
# etag: "EntityTag",
|
1657
1753
|
# description: "ResourceDescription",
|
1658
1754
|
# })
|
1659
1755
|
#
|
@@ -1665,6 +1761,7 @@ module Aws::MediaPackageV2
|
|
1665
1761
|
# resp.created_at #=> Time
|
1666
1762
|
# resp.modified_at #=> Time
|
1667
1763
|
# resp.description #=> String
|
1764
|
+
# resp.etag #=> String
|
1668
1765
|
# resp.tags #=> Hash
|
1669
1766
|
# resp.tags["TagKey"] #=> String
|
1670
1767
|
#
|
@@ -1724,6 +1821,14 @@ module Aws::MediaPackageV2
|
|
1724
1821
|
# @option params [Array<Types::CreateLowLatencyHlsManifestConfiguration>] :low_latency_hls_manifests
|
1725
1822
|
# A low-latency HLS manifest configuration.
|
1726
1823
|
#
|
1824
|
+
# @option params [Array<Types::CreateDashManifestConfiguration>] :dash_manifests
|
1825
|
+
# A DASH manifest configuration.
|
1826
|
+
#
|
1827
|
+
# @option params [String] :etag
|
1828
|
+
# The expected current Entity Tag (ETag) for the resource. If the
|
1829
|
+
# specified ETag does not match the resource's current entity tag, the
|
1830
|
+
# update request will be rejected.
|
1831
|
+
#
|
1727
1832
|
# @return [Types::UpdateOriginEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1728
1833
|
#
|
1729
1834
|
# * {Types::UpdateOriginEndpointResponse#arn #arn} => String
|
@@ -1738,7 +1843,9 @@ module Aws::MediaPackageV2
|
|
1738
1843
|
# * {Types::UpdateOriginEndpointResponse#startover_window_seconds #startover_window_seconds} => Integer
|
1739
1844
|
# * {Types::UpdateOriginEndpointResponse#hls_manifests #hls_manifests} => Array<Types::GetHlsManifestConfiguration>
|
1740
1845
|
# * {Types::UpdateOriginEndpointResponse#low_latency_hls_manifests #low_latency_hls_manifests} => Array<Types::GetLowLatencyHlsManifestConfiguration>
|
1846
|
+
# * {Types::UpdateOriginEndpointResponse#etag #etag} => String
|
1741
1847
|
# * {Types::UpdateOriginEndpointResponse#tags #tags} => Hash<String,String>
|
1848
|
+
# * {Types::UpdateOriginEndpointResponse#dash_manifests #dash_manifests} => Array<Types::GetDashManifestConfiguration>
|
1742
1849
|
#
|
1743
1850
|
# @example Request syntax with placeholder values
|
1744
1851
|
#
|
@@ -1811,6 +1918,32 @@ module Aws::MediaPackageV2
|
|
1811
1918
|
# },
|
1812
1919
|
# },
|
1813
1920
|
# ],
|
1921
|
+
# dash_manifests: [
|
1922
|
+
# {
|
1923
|
+
# manifest_name: "ManifestName", # required
|
1924
|
+
# manifest_window_seconds: 1,
|
1925
|
+
# filter_configuration: {
|
1926
|
+
# manifest_filter: "FilterConfigurationManifestFilterString",
|
1927
|
+
# start: Time.now,
|
1928
|
+
# end: Time.now,
|
1929
|
+
# time_delay_seconds: 1,
|
1930
|
+
# },
|
1931
|
+
# min_update_period_seconds: 1,
|
1932
|
+
# min_buffer_time_seconds: 1,
|
1933
|
+
# suggested_presentation_delay_seconds: 1,
|
1934
|
+
# segment_template_format: "NUMBER_WITH_TIMELINE", # accepts NUMBER_WITH_TIMELINE
|
1935
|
+
# period_triggers: ["AVAILS"], # accepts AVAILS, DRM_KEY_ROTATION, SOURCE_CHANGES, SOURCE_DISRUPTIONS, NONE
|
1936
|
+
# scte_dash: {
|
1937
|
+
# ad_marker_dash: "BINARY", # accepts BINARY, XML
|
1938
|
+
# },
|
1939
|
+
# drm_signaling: "INDIVIDUAL", # accepts INDIVIDUAL, REFERENCED
|
1940
|
+
# utc_timing: {
|
1941
|
+
# timing_mode: "HTTP_HEAD", # accepts HTTP_HEAD, HTTP_ISO, HTTP_XSDATE, UTC_DIRECT
|
1942
|
+
# timing_source: "DashUtcTimingTimingSourceString",
|
1943
|
+
# },
|
1944
|
+
# },
|
1945
|
+
# ],
|
1946
|
+
# etag: "EntityTag",
|
1814
1947
|
# })
|
1815
1948
|
#
|
1816
1949
|
# @example Response structure
|
@@ -1864,8 +1997,27 @@ module Aws::MediaPackageV2
|
|
1864
1997
|
# resp.low_latency_hls_manifests[0].filter_configuration.start #=> Time
|
1865
1998
|
# resp.low_latency_hls_manifests[0].filter_configuration.end #=> Time
|
1866
1999
|
# resp.low_latency_hls_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
2000
|
+
# resp.etag #=> String
|
1867
2001
|
# resp.tags #=> Hash
|
1868
2002
|
# resp.tags["TagKey"] #=> String
|
2003
|
+
# resp.dash_manifests #=> Array
|
2004
|
+
# resp.dash_manifests[0].manifest_name #=> String
|
2005
|
+
# resp.dash_manifests[0].url #=> String
|
2006
|
+
# resp.dash_manifests[0].manifest_window_seconds #=> Integer
|
2007
|
+
# resp.dash_manifests[0].filter_configuration.manifest_filter #=> String
|
2008
|
+
# resp.dash_manifests[0].filter_configuration.start #=> Time
|
2009
|
+
# resp.dash_manifests[0].filter_configuration.end #=> Time
|
2010
|
+
# resp.dash_manifests[0].filter_configuration.time_delay_seconds #=> Integer
|
2011
|
+
# resp.dash_manifests[0].min_update_period_seconds #=> Integer
|
2012
|
+
# resp.dash_manifests[0].min_buffer_time_seconds #=> Integer
|
2013
|
+
# resp.dash_manifests[0].suggested_presentation_delay_seconds #=> Integer
|
2014
|
+
# resp.dash_manifests[0].segment_template_format #=> String, one of "NUMBER_WITH_TIMELINE"
|
2015
|
+
# resp.dash_manifests[0].period_triggers #=> Array
|
2016
|
+
# resp.dash_manifests[0].period_triggers[0] #=> String, one of "AVAILS", "DRM_KEY_ROTATION", "SOURCE_CHANGES", "SOURCE_DISRUPTIONS", "NONE"
|
2017
|
+
# resp.dash_manifests[0].scte_dash.ad_marker_dash #=> String, one of "BINARY", "XML"
|
2018
|
+
# resp.dash_manifests[0].drm_signaling #=> String, one of "INDIVIDUAL", "REFERENCED"
|
2019
|
+
# resp.dash_manifests[0].utc_timing.timing_mode #=> String, one of "HTTP_HEAD", "HTTP_ISO", "HTTP_XSDATE", "UTC_DIRECT"
|
2020
|
+
# resp.dash_manifests[0].utc_timing.timing_source #=> String
|
1869
2021
|
#
|
1870
2022
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateOriginEndpoint AWS API Documentation
|
1871
2023
|
#
|
@@ -1889,7 +2041,7 @@ module Aws::MediaPackageV2
|
|
1889
2041
|
params: params,
|
1890
2042
|
config: config)
|
1891
2043
|
context[:gem_name] = 'aws-sdk-mediapackagev2'
|
1892
|
-
context[:gem_version] = '1.
|
2044
|
+
context[:gem_version] = '1.14.0'
|
1893
2045
|
Seahorse::Client::Request.new(handlers, context)
|
1894
2046
|
end
|
1895
2047
|
|
@@ -14,6 +14,7 @@ module Aws::MediaPackageV2
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
16
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
17
|
+
AdMarkerDash = Shapes::StringShape.new(name: 'AdMarkerDash')
|
17
18
|
AdMarkerHls = Shapes::StringShape.new(name: 'AdMarkerHls')
|
18
19
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
19
20
|
ChannelGroupListConfiguration = Shapes::StructureShape.new(name: 'ChannelGroupListConfiguration')
|
@@ -28,6 +29,12 @@ module Aws::MediaPackageV2
|
|
28
29
|
CreateChannelGroupResponse = Shapes::StructureShape.new(name: 'CreateChannelGroupResponse')
|
29
30
|
CreateChannelRequest = Shapes::StructureShape.new(name: 'CreateChannelRequest')
|
30
31
|
CreateChannelResponse = Shapes::StructureShape.new(name: 'CreateChannelResponse')
|
32
|
+
CreateDashManifestConfiguration = Shapes::StructureShape.new(name: 'CreateDashManifestConfiguration')
|
33
|
+
CreateDashManifestConfigurationManifestWindowSecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationManifestWindowSecondsInteger')
|
34
|
+
CreateDashManifestConfigurationMinBufferTimeSecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationMinBufferTimeSecondsInteger')
|
35
|
+
CreateDashManifestConfigurationMinUpdatePeriodSecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationMinUpdatePeriodSecondsInteger')
|
36
|
+
CreateDashManifestConfigurationSuggestedPresentationDelaySecondsInteger = Shapes::IntegerShape.new(name: 'CreateDashManifestConfigurationSuggestedPresentationDelaySecondsInteger')
|
37
|
+
CreateDashManifests = Shapes::ListShape.new(name: 'CreateDashManifests')
|
31
38
|
CreateHlsManifestConfiguration = Shapes::StructureShape.new(name: 'CreateHlsManifestConfiguration')
|
32
39
|
CreateHlsManifestConfigurationManifestWindowSecondsInteger = Shapes::IntegerShape.new(name: 'CreateHlsManifestConfigurationManifestWindowSecondsInteger')
|
33
40
|
CreateHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger = Shapes::IntegerShape.new(name: 'CreateHlsManifestConfigurationProgramDateTimeIntervalSecondsInteger')
|
@@ -39,6 +46,13 @@ module Aws::MediaPackageV2
|
|
39
46
|
CreateOriginEndpointRequest = Shapes::StructureShape.new(name: 'CreateOriginEndpointRequest')
|
40
47
|
CreateOriginEndpointRequestStartoverWindowSecondsInteger = Shapes::IntegerShape.new(name: 'CreateOriginEndpointRequestStartoverWindowSecondsInteger')
|
41
48
|
CreateOriginEndpointResponse = Shapes::StructureShape.new(name: 'CreateOriginEndpointResponse')
|
49
|
+
DashDrmSignaling = Shapes::StringShape.new(name: 'DashDrmSignaling')
|
50
|
+
DashPeriodTrigger = Shapes::StringShape.new(name: 'DashPeriodTrigger')
|
51
|
+
DashPeriodTriggers = Shapes::ListShape.new(name: 'DashPeriodTriggers')
|
52
|
+
DashSegmentTemplateFormat = Shapes::StringShape.new(name: 'DashSegmentTemplateFormat')
|
53
|
+
DashUtcTiming = Shapes::StructureShape.new(name: 'DashUtcTiming')
|
54
|
+
DashUtcTimingMode = Shapes::StringShape.new(name: 'DashUtcTimingMode')
|
55
|
+
DashUtcTimingTimingSourceString = Shapes::StringShape.new(name: 'DashUtcTimingTimingSourceString')
|
42
56
|
DeleteChannelGroupRequest = Shapes::StructureShape.new(name: 'DeleteChannelGroupRequest')
|
43
57
|
DeleteChannelGroupResponse = Shapes::StructureShape.new(name: 'DeleteChannelGroupResponse')
|
44
58
|
DeleteChannelPolicyRequest = Shapes::StructureShape.new(name: 'DeleteChannelPolicyRequest')
|
@@ -55,6 +69,7 @@ module Aws::MediaPackageV2
|
|
55
69
|
EncryptionContractConfiguration = Shapes::StructureShape.new(name: 'EncryptionContractConfiguration')
|
56
70
|
EncryptionKeyRotationIntervalSecondsInteger = Shapes::IntegerShape.new(name: 'EncryptionKeyRotationIntervalSecondsInteger')
|
57
71
|
EncryptionMethod = Shapes::StructureShape.new(name: 'EncryptionMethod')
|
72
|
+
EntityTag = Shapes::StringShape.new(name: 'EntityTag')
|
58
73
|
FilterConfiguration = Shapes::StructureShape.new(name: 'FilterConfiguration')
|
59
74
|
FilterConfigurationManifestFilterString = Shapes::StringShape.new(name: 'FilterConfigurationManifestFilterString')
|
60
75
|
FilterConfigurationTimeDelaySecondsInteger = Shapes::IntegerShape.new(name: 'FilterConfigurationTimeDelaySecondsInteger')
|
@@ -64,6 +79,8 @@ module Aws::MediaPackageV2
|
|
64
79
|
GetChannelPolicyResponse = Shapes::StructureShape.new(name: 'GetChannelPolicyResponse')
|
65
80
|
GetChannelRequest = Shapes::StructureShape.new(name: 'GetChannelRequest')
|
66
81
|
GetChannelResponse = Shapes::StructureShape.new(name: 'GetChannelResponse')
|
82
|
+
GetDashManifestConfiguration = Shapes::StructureShape.new(name: 'GetDashManifestConfiguration')
|
83
|
+
GetDashManifests = Shapes::ListShape.new(name: 'GetDashManifests')
|
67
84
|
GetHlsManifestConfiguration = Shapes::StructureShape.new(name: 'GetHlsManifestConfiguration')
|
68
85
|
GetHlsManifests = Shapes::ListShape.new(name: 'GetHlsManifests')
|
69
86
|
GetLowLatencyHlsManifestConfiguration = Shapes::StructureShape.new(name: 'GetLowLatencyHlsManifestConfiguration')
|
@@ -81,6 +98,8 @@ module Aws::MediaPackageV2
|
|
81
98
|
ListChannelGroupsResponse = Shapes::StructureShape.new(name: 'ListChannelGroupsResponse')
|
82
99
|
ListChannelsRequest = Shapes::StructureShape.new(name: 'ListChannelsRequest')
|
83
100
|
ListChannelsResponse = Shapes::StructureShape.new(name: 'ListChannelsResponse')
|
101
|
+
ListDashManifestConfiguration = Shapes::StructureShape.new(name: 'ListDashManifestConfiguration')
|
102
|
+
ListDashManifests = Shapes::ListShape.new(name: 'ListDashManifests')
|
84
103
|
ListHlsManifestConfiguration = Shapes::StructureShape.new(name: 'ListHlsManifestConfiguration')
|
85
104
|
ListHlsManifests = Shapes::ListShape.new(name: 'ListHlsManifests')
|
86
105
|
ListLowLatencyHlsManifestConfiguration = Shapes::StructureShape.new(name: 'ListLowLatencyHlsManifestConfiguration')
|
@@ -105,6 +124,7 @@ module Aws::MediaPackageV2
|
|
105
124
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
106
125
|
ResourceTypeNotFound = Shapes::StringShape.new(name: 'ResourceTypeNotFound')
|
107
126
|
Scte = Shapes::StructureShape.new(name: 'Scte')
|
127
|
+
ScteDash = Shapes::StructureShape.new(name: 'ScteDash')
|
108
128
|
ScteFilter = Shapes::StringShape.new(name: 'ScteFilter')
|
109
129
|
ScteFilterList = Shapes::ListShape.new(name: 'ScteFilterList')
|
110
130
|
ScteHls = Shapes::StructureShape.new(name: 'ScteHls')
|
@@ -175,6 +195,7 @@ module Aws::MediaPackageV2
|
|
175
195
|
CreateChannelGroupResponse.add_member(:egress_domain, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EgressDomain"))
|
176
196
|
CreateChannelGroupResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
177
197
|
CreateChannelGroupResponse.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ModifiedAt"))
|
198
|
+
CreateChannelGroupResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
178
199
|
CreateChannelGroupResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
179
200
|
CreateChannelGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
180
201
|
CreateChannelGroupResponse.struct_class = Types::CreateChannelGroupResponse
|
@@ -193,9 +214,25 @@ module Aws::MediaPackageV2
|
|
193
214
|
CreateChannelResponse.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ModifiedAt"))
|
194
215
|
CreateChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
195
216
|
CreateChannelResponse.add_member(:ingest_endpoints, Shapes::ShapeRef.new(shape: IngestEndpointList, location_name: "IngestEndpoints"))
|
217
|
+
CreateChannelResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
196
218
|
CreateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
197
219
|
CreateChannelResponse.struct_class = Types::CreateChannelResponse
|
198
220
|
|
221
|
+
CreateDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ManifestName, required: true, location_name: "ManifestName"))
|
222
|
+
CreateDashManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationManifestWindowSecondsInteger, location_name: "ManifestWindowSeconds"))
|
223
|
+
CreateDashManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
|
224
|
+
CreateDashManifestConfiguration.add_member(:min_update_period_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationMinUpdatePeriodSecondsInteger, location_name: "MinUpdatePeriodSeconds"))
|
225
|
+
CreateDashManifestConfiguration.add_member(:min_buffer_time_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationMinBufferTimeSecondsInteger, location_name: "MinBufferTimeSeconds"))
|
226
|
+
CreateDashManifestConfiguration.add_member(:suggested_presentation_delay_seconds, Shapes::ShapeRef.new(shape: CreateDashManifestConfigurationSuggestedPresentationDelaySecondsInteger, location_name: "SuggestedPresentationDelaySeconds"))
|
227
|
+
CreateDashManifestConfiguration.add_member(:segment_template_format, Shapes::ShapeRef.new(shape: DashSegmentTemplateFormat, location_name: "SegmentTemplateFormat"))
|
228
|
+
CreateDashManifestConfiguration.add_member(:period_triggers, Shapes::ShapeRef.new(shape: DashPeriodTriggers, location_name: "PeriodTriggers"))
|
229
|
+
CreateDashManifestConfiguration.add_member(:scte_dash, Shapes::ShapeRef.new(shape: ScteDash, location_name: "ScteDash"))
|
230
|
+
CreateDashManifestConfiguration.add_member(:drm_signaling, Shapes::ShapeRef.new(shape: DashDrmSignaling, location_name: "DrmSignaling"))
|
231
|
+
CreateDashManifestConfiguration.add_member(:utc_timing, Shapes::ShapeRef.new(shape: DashUtcTiming, location_name: "UtcTiming"))
|
232
|
+
CreateDashManifestConfiguration.struct_class = Types::CreateDashManifestConfiguration
|
233
|
+
|
234
|
+
CreateDashManifests.member = Shapes::ShapeRef.new(shape: CreateDashManifestConfiguration)
|
235
|
+
|
199
236
|
CreateHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ManifestName, required: true, location_name: "ManifestName"))
|
200
237
|
CreateHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ManifestName, location_name: "ChildManifestName"))
|
201
238
|
CreateHlsManifestConfiguration.add_member(:scte_hls, Shapes::ShapeRef.new(shape: ScteHls, location_name: "ScteHls"))
|
@@ -226,6 +263,7 @@ module Aws::MediaPackageV2
|
|
226
263
|
CreateOriginEndpointRequest.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: CreateOriginEndpointRequestStartoverWindowSecondsInteger, location_name: "StartoverWindowSeconds"))
|
227
264
|
CreateOriginEndpointRequest.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: CreateHlsManifests, location_name: "HlsManifests"))
|
228
265
|
CreateOriginEndpointRequest.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
|
266
|
+
CreateOriginEndpointRequest.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: CreateDashManifests, location_name: "DashManifests"))
|
229
267
|
CreateOriginEndpointRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
230
268
|
CreateOriginEndpointRequest.struct_class = Types::CreateOriginEndpointRequest
|
231
269
|
|
@@ -241,9 +279,17 @@ module Aws::MediaPackageV2
|
|
241
279
|
CreateOriginEndpointResponse.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "StartoverWindowSeconds"))
|
242
280
|
CreateOriginEndpointResponse.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: GetHlsManifests, location_name: "HlsManifests"))
|
243
281
|
CreateOriginEndpointResponse.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
|
282
|
+
CreateOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
|
283
|
+
CreateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
244
284
|
CreateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
245
285
|
CreateOriginEndpointResponse.struct_class = Types::CreateOriginEndpointResponse
|
246
286
|
|
287
|
+
DashPeriodTriggers.member = Shapes::ShapeRef.new(shape: DashPeriodTrigger)
|
288
|
+
|
289
|
+
DashUtcTiming.add_member(:timing_mode, Shapes::ShapeRef.new(shape: DashUtcTimingMode, location_name: "TimingMode"))
|
290
|
+
DashUtcTiming.add_member(:timing_source, Shapes::ShapeRef.new(shape: DashUtcTimingTimingSourceString, location_name: "TimingSource"))
|
291
|
+
DashUtcTiming.struct_class = Types::DashUtcTiming
|
292
|
+
|
247
293
|
DeleteChannelGroupRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
|
248
294
|
DeleteChannelGroupRequest.struct_class = Types::DeleteChannelGroupRequest
|
249
295
|
|
@@ -304,6 +350,7 @@ module Aws::MediaPackageV2
|
|
304
350
|
GetChannelGroupResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
305
351
|
GetChannelGroupResponse.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ModifiedAt"))
|
306
352
|
GetChannelGroupResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
353
|
+
GetChannelGroupResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
307
354
|
GetChannelGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
308
355
|
GetChannelGroupResponse.struct_class = Types::GetChannelGroupResponse
|
309
356
|
|
@@ -327,9 +374,26 @@ module Aws::MediaPackageV2
|
|
327
374
|
GetChannelResponse.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ModifiedAt"))
|
328
375
|
GetChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
329
376
|
GetChannelResponse.add_member(:ingest_endpoints, Shapes::ShapeRef.new(shape: IngestEndpointList, location_name: "IngestEndpoints"))
|
377
|
+
GetChannelResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
330
378
|
GetChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
331
379
|
GetChannelResponse.struct_class = Types::GetChannelResponse
|
332
380
|
|
381
|
+
GetDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
|
382
|
+
GetDashManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Url"))
|
383
|
+
GetDashManifestConfiguration.add_member(:manifest_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "ManifestWindowSeconds"))
|
384
|
+
GetDashManifestConfiguration.add_member(:filter_configuration, Shapes::ShapeRef.new(shape: FilterConfiguration, location_name: "FilterConfiguration"))
|
385
|
+
GetDashManifestConfiguration.add_member(:min_update_period_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "MinUpdatePeriodSeconds"))
|
386
|
+
GetDashManifestConfiguration.add_member(:min_buffer_time_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "MinBufferTimeSeconds"))
|
387
|
+
GetDashManifestConfiguration.add_member(:suggested_presentation_delay_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "SuggestedPresentationDelaySeconds"))
|
388
|
+
GetDashManifestConfiguration.add_member(:segment_template_format, Shapes::ShapeRef.new(shape: DashSegmentTemplateFormat, location_name: "SegmentTemplateFormat"))
|
389
|
+
GetDashManifestConfiguration.add_member(:period_triggers, Shapes::ShapeRef.new(shape: DashPeriodTriggers, location_name: "PeriodTriggers"))
|
390
|
+
GetDashManifestConfiguration.add_member(:scte_dash, Shapes::ShapeRef.new(shape: ScteDash, location_name: "ScteDash"))
|
391
|
+
GetDashManifestConfiguration.add_member(:drm_signaling, Shapes::ShapeRef.new(shape: DashDrmSignaling, location_name: "DrmSignaling"))
|
392
|
+
GetDashManifestConfiguration.add_member(:utc_timing, Shapes::ShapeRef.new(shape: DashUtcTiming, location_name: "UtcTiming"))
|
393
|
+
GetDashManifestConfiguration.struct_class = Types::GetDashManifestConfiguration
|
394
|
+
|
395
|
+
GetDashManifests.member = Shapes::ShapeRef.new(shape: GetDashManifestConfiguration)
|
396
|
+
|
333
397
|
GetHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
|
334
398
|
GetHlsManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Url"))
|
335
399
|
GetHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "ChildManifestName"))
|
@@ -380,7 +444,9 @@ module Aws::MediaPackageV2
|
|
380
444
|
GetOriginEndpointResponse.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "StartoverWindowSeconds"))
|
381
445
|
GetOriginEndpointResponse.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: GetHlsManifests, location_name: "HlsManifests"))
|
382
446
|
GetOriginEndpointResponse.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
|
447
|
+
GetOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
383
448
|
GetOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
449
|
+
GetOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
|
384
450
|
GetOriginEndpointResponse.struct_class = Types::GetOriginEndpointResponse
|
385
451
|
|
386
452
|
IngestEndpoint.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "Id"))
|
@@ -409,6 +475,12 @@ module Aws::MediaPackageV2
|
|
409
475
|
ListChannelsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
410
476
|
ListChannelsResponse.struct_class = Types::ListChannelsResponse
|
411
477
|
|
478
|
+
ListDashManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
|
479
|
+
ListDashManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, location_name: "Url"))
|
480
|
+
ListDashManifestConfiguration.struct_class = Types::ListDashManifestConfiguration
|
481
|
+
|
482
|
+
ListDashManifests.member = Shapes::ShapeRef.new(shape: ListDashManifestConfiguration)
|
483
|
+
|
412
484
|
ListHlsManifestConfiguration.add_member(:manifest_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ManifestName"))
|
413
485
|
ListHlsManifestConfiguration.add_member(:child_manifest_name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "ChildManifestName"))
|
414
486
|
ListHlsManifestConfiguration.add_member(:url, Shapes::ShapeRef.new(shape: String, location_name: "Url"))
|
@@ -449,6 +521,7 @@ module Aws::MediaPackageV2
|
|
449
521
|
OriginEndpointListConfiguration.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ModifiedAt"))
|
450
522
|
OriginEndpointListConfiguration.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: ListHlsManifests, location_name: "HlsManifests"))
|
451
523
|
OriginEndpointListConfiguration.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: ListLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
|
524
|
+
OriginEndpointListConfiguration.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: ListDashManifests, location_name: "DashManifests"))
|
452
525
|
OriginEndpointListConfiguration.struct_class = Types::OriginEndpointListConfiguration
|
453
526
|
|
454
527
|
OriginEndpointsList.member = Shapes::ShapeRef.new(shape: OriginEndpointListConfiguration)
|
@@ -475,6 +548,9 @@ module Aws::MediaPackageV2
|
|
475
548
|
Scte.add_member(:scte_filter, Shapes::ShapeRef.new(shape: ScteFilterList, location_name: "ScteFilter"))
|
476
549
|
Scte.struct_class = Types::Scte
|
477
550
|
|
551
|
+
ScteDash.add_member(:ad_marker_dash, Shapes::ShapeRef.new(shape: AdMarkerDash, location_name: "AdMarkerDash"))
|
552
|
+
ScteDash.struct_class = Types::ScteDash
|
553
|
+
|
478
554
|
ScteFilterList.member = Shapes::ShapeRef.new(shape: ScteFilter)
|
479
555
|
|
480
556
|
ScteHls.add_member(:ad_marker_hls, Shapes::ShapeRef.new(shape: AdMarkerHls, location_name: "AdMarkerHls"))
|
@@ -518,6 +594,7 @@ module Aws::MediaPackageV2
|
|
518
594
|
UntagResourceRequest.struct_class = Types::UntagResourceRequest
|
519
595
|
|
520
596
|
UpdateChannelGroupRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
|
597
|
+
UpdateChannelGroupRequest.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location: "header", location_name: "x-amzn-update-if-match"))
|
521
598
|
UpdateChannelGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
522
599
|
UpdateChannelGroupRequest.struct_class = Types::UpdateChannelGroupRequest
|
523
600
|
|
@@ -527,11 +604,13 @@ module Aws::MediaPackageV2
|
|
527
604
|
UpdateChannelGroupResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
528
605
|
UpdateChannelGroupResponse.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ModifiedAt"))
|
529
606
|
UpdateChannelGroupResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
607
|
+
UpdateChannelGroupResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
530
608
|
UpdateChannelGroupResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
531
609
|
UpdateChannelGroupResponse.struct_class = Types::UpdateChannelGroupResponse
|
532
610
|
|
533
611
|
UpdateChannelRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
|
534
612
|
UpdateChannelRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelName"))
|
613
|
+
UpdateChannelRequest.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location: "header", location_name: "x-amzn-update-if-match"))
|
535
614
|
UpdateChannelRequest.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
536
615
|
UpdateChannelRequest.struct_class = Types::UpdateChannelRequest
|
537
616
|
|
@@ -542,6 +621,7 @@ module Aws::MediaPackageV2
|
|
542
621
|
UpdateChannelResponse.add_member(:modified_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ModifiedAt"))
|
543
622
|
UpdateChannelResponse.add_member(:description, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "Description"))
|
544
623
|
UpdateChannelResponse.add_member(:ingest_endpoints, Shapes::ShapeRef.new(shape: IngestEndpointList, location_name: "IngestEndpoints"))
|
624
|
+
UpdateChannelResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
545
625
|
UpdateChannelResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
546
626
|
UpdateChannelResponse.struct_class = Types::UpdateChannelResponse
|
547
627
|
|
@@ -554,6 +634,8 @@ module Aws::MediaPackageV2
|
|
554
634
|
UpdateOriginEndpointRequest.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: UpdateOriginEndpointRequestStartoverWindowSecondsInteger, location_name: "StartoverWindowSeconds"))
|
555
635
|
UpdateOriginEndpointRequest.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: CreateHlsManifests, location_name: "HlsManifests"))
|
556
636
|
UpdateOriginEndpointRequest.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: CreateLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
|
637
|
+
UpdateOriginEndpointRequest.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: CreateDashManifests, location_name: "DashManifests"))
|
638
|
+
UpdateOriginEndpointRequest.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location: "header", location_name: "x-amzn-update-if-match"))
|
557
639
|
UpdateOriginEndpointRequest.struct_class = Types::UpdateOriginEndpointRequest
|
558
640
|
|
559
641
|
UpdateOriginEndpointResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
@@ -568,7 +650,9 @@ module Aws::MediaPackageV2
|
|
568
650
|
UpdateOriginEndpointResponse.add_member(:startover_window_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "StartoverWindowSeconds"))
|
569
651
|
UpdateOriginEndpointResponse.add_member(:hls_manifests, Shapes::ShapeRef.new(shape: GetHlsManifests, location_name: "HlsManifests"))
|
570
652
|
UpdateOriginEndpointResponse.add_member(:low_latency_hls_manifests, Shapes::ShapeRef.new(shape: GetLowLatencyHlsManifests, location_name: "LowLatencyHlsManifests"))
|
653
|
+
UpdateOriginEndpointResponse.add_member(:etag, Shapes::ShapeRef.new(shape: EntityTag, location_name: "ETag"))
|
571
654
|
UpdateOriginEndpointResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
655
|
+
UpdateOriginEndpointResponse.add_member(:dash_manifests, Shapes::ShapeRef.new(shape: GetDashManifests, location_name: "DashManifests"))
|
572
656
|
UpdateOriginEndpointResponse.struct_class = Types::UpdateOriginEndpointResponse
|
573
657
|
|
574
658
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|