aws-sdk-mediapackagev2 1.43.0 → 1.45.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 +27 -15
- data/lib/aws-sdk-mediapackagev2/client_api.rb +2 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +10 -1
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +2 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7ce2bdaded16cb73ac6bb7ee1f8874787a9b3721fb2f5fe4f1124b123c0cc8b
|
4
|
+
data.tar.gz: 7d0280dfc5deabee544e26240e5f88386dc790fb216655ee317112238348f26b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e025c04d6481d4f81841ddac9bdcacf77f8b279e5ecb106973b6a9995b769d6a6dafe5aa953a8a1cb3c74ec27dc25ecd13a14a42b52dcd86beddf2a61f6d403
|
7
|
+
data.tar.gz: 92126b45e079705343b56af6d6cc944700842c070c4a81fbdbd9301c8b9c97d79f5213147701d912b2fdc4980b721b2552eb685aa2b89542a2451bbcb1f90629
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2025-07-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for specifying a preferred input for channels using CMAF ingest.
|
8
|
+
|
9
|
+
1.44.0 (2025-07-21)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.43.0 (2025-07-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
@@ -95,7 +95,7 @@ module Aws::MediaPackageV2
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::MediaPackageV2
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::MediaPackageV2
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::MediaPackageV2
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -367,7 +377,7 @@ module Aws::MediaPackageV2
|
|
367
377
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
368
378
|
#
|
369
379
|
# @option options [Aws::TokenProvider] :token_provider
|
370
|
-
#
|
380
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
371
381
|
# following classes:
|
372
382
|
#
|
373
383
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -652,6 +662,7 @@ module Aws::MediaPackageV2
|
|
652
662
|
# description: "ResourceDescription",
|
653
663
|
# input_switch_configuration: {
|
654
664
|
# mqcs_input_switching: false,
|
665
|
+
# preferred_input: 1,
|
655
666
|
# },
|
656
667
|
# output_header_configuration: {
|
657
668
|
# publish_mqcs: false,
|
@@ -677,6 +688,7 @@ module Aws::MediaPackageV2
|
|
677
688
|
# resp.tags #=> Hash
|
678
689
|
# resp.tags["TagKey"] #=> String
|
679
690
|
# resp.input_switch_configuration.mqcs_input_switching #=> Boolean
|
691
|
+
# resp.input_switch_configuration.preferred_input #=> Integer
|
680
692
|
# resp.output_header_configuration.publish_mqcs #=> Boolean
|
681
693
|
#
|
682
694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CreateChannel AWS API Documentation
|
@@ -2334,8 +2346,7 @@ module Aws::MediaPackageV2
|
|
2334
2346
|
end
|
2335
2347
|
|
2336
2348
|
# Retrieves the specified channel that's configured in AWS Elemental
|
2337
|
-
# MediaPackage
|
2338
|
-
# it.
|
2349
|
+
# MediaPackage.
|
2339
2350
|
#
|
2340
2351
|
# @option params [required, String] :channel_group_name
|
2341
2352
|
# The name that describes the channel group. The name is the primary
|
@@ -2421,6 +2432,7 @@ module Aws::MediaPackageV2
|
|
2421
2432
|
# resp.tags #=> Hash
|
2422
2433
|
# resp.tags["TagKey"] #=> String
|
2423
2434
|
# resp.input_switch_configuration.mqcs_input_switching #=> Boolean
|
2435
|
+
# resp.input_switch_configuration.preferred_input #=> Integer
|
2424
2436
|
# resp.output_header_configuration.publish_mqcs #=> Boolean
|
2425
2437
|
#
|
2426
2438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetChannel AWS API Documentation
|
@@ -2433,8 +2445,7 @@ module Aws::MediaPackageV2
|
|
2433
2445
|
end
|
2434
2446
|
|
2435
2447
|
# Retrieves the specified channel group that's configured in AWS
|
2436
|
-
# Elemental MediaPackage
|
2437
|
-
# that are associated with it.
|
2448
|
+
# Elemental MediaPackage.
|
2438
2449
|
#
|
2439
2450
|
# @option params [required, String] :channel_group_name
|
2440
2451
|
# The name that describes the channel group. The name is the primary
|
@@ -3188,8 +3199,7 @@ module Aws::MediaPackageV2
|
|
3188
3199
|
end
|
3189
3200
|
|
3190
3201
|
# Retrieves all channels in a specific channel group that are configured
|
3191
|
-
# in AWS Elemental MediaPackage
|
3192
|
-
# associated with it.
|
3202
|
+
# in AWS Elemental MediaPackage.
|
3193
3203
|
#
|
3194
3204
|
# @option params [required, String] :channel_group_name
|
3195
3205
|
# The name that describes the channel group. The name is the primary
|
@@ -4350,6 +4360,7 @@ module Aws::MediaPackageV2
|
|
4350
4360
|
# description: "ResourceDescription",
|
4351
4361
|
# input_switch_configuration: {
|
4352
4362
|
# mqcs_input_switching: false,
|
4363
|
+
# preferred_input: 1,
|
4353
4364
|
# },
|
4354
4365
|
# output_header_configuration: {
|
4355
4366
|
# publish_mqcs: false,
|
@@ -4372,6 +4383,7 @@ module Aws::MediaPackageV2
|
|
4372
4383
|
# resp.tags #=> Hash
|
4373
4384
|
# resp.tags["TagKey"] #=> String
|
4374
4385
|
# resp.input_switch_configuration.mqcs_input_switching #=> Boolean
|
4386
|
+
# resp.input_switch_configuration.preferred_input #=> Integer
|
4375
4387
|
# resp.output_header_configuration.publish_mqcs #=> Boolean
|
4376
4388
|
#
|
4377
4389
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/UpdateChannel AWS API Documentation
|
@@ -5164,7 +5176,7 @@ module Aws::MediaPackageV2
|
|
5164
5176
|
tracer: tracer
|
5165
5177
|
)
|
5166
5178
|
context[:gem_name] = 'aws-sdk-mediapackagev2'
|
5167
|
-
context[:gem_version] = '1.
|
5179
|
+
context[:gem_version] = '1.45.0'
|
5168
5180
|
Seahorse::Client::Request.new(handlers, context)
|
5169
5181
|
end
|
5170
5182
|
|
@@ -152,6 +152,7 @@ module Aws::MediaPackageV2
|
|
152
152
|
IngestEndpoint = Shapes::StructureShape.new(name: 'IngestEndpoint')
|
153
153
|
IngestEndpointList = Shapes::ListShape.new(name: 'IngestEndpointList')
|
154
154
|
InputSwitchConfiguration = Shapes::StructureShape.new(name: 'InputSwitchConfiguration')
|
155
|
+
InputSwitchConfigurationPreferredInputInteger = Shapes::IntegerShape.new(name: 'InputSwitchConfigurationPreferredInputInteger')
|
155
156
|
InputType = Shapes::StringShape.new(name: 'InputType')
|
156
157
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
157
158
|
InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
|
@@ -749,6 +750,7 @@ module Aws::MediaPackageV2
|
|
749
750
|
IngestEndpointList.member = Shapes::ShapeRef.new(shape: IngestEndpoint)
|
750
751
|
|
751
752
|
InputSwitchConfiguration.add_member(:mqcs_input_switching, Shapes::ShapeRef.new(shape: Boolean, location_name: "MQCSInputSwitching"))
|
753
|
+
InputSwitchConfiguration.add_member(:preferred_input, Shapes::ShapeRef.new(shape: InputSwitchConfigurationPreferredInputInteger, location_name: "PreferredInput"))
|
752
754
|
InputSwitchConfiguration.struct_class = Types::InputSwitchConfiguration
|
753
755
|
|
754
756
|
InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
@@ -2882,10 +2882,19 @@ module Aws::MediaPackageV2
|
|
2882
2882
|
# `InputType` is `CMAF`.
|
2883
2883
|
# @return [Boolean]
|
2884
2884
|
#
|
2885
|
+
# @!attribute [rw] preferred_input
|
2886
|
+
# For CMAF inputs, indicates which input MediaPackage should prefer
|
2887
|
+
# when both inputs have equal MQCS scores. Select `1` to prefer the
|
2888
|
+
# first ingest endpoint, or `2` to prefer the second ingest endpoint.
|
2889
|
+
# If you don't specify a preferred input, MediaPackage uses its
|
2890
|
+
# default switching behavior when MQCS scores are equal.
|
2891
|
+
# @return [Integer]
|
2892
|
+
#
|
2885
2893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/InputSwitchConfiguration AWS API Documentation
|
2886
2894
|
#
|
2887
2895
|
class InputSwitchConfiguration < Struct.new(
|
2888
|
-
:mqcs_input_switching
|
2896
|
+
:mqcs_input_switching,
|
2897
|
+
:preferred_input)
|
2889
2898
|
SENSITIVE = []
|
2890
2899
|
include Aws::Structure
|
2891
2900
|
end
|
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -113,7 +114,8 @@ module Aws
|
|
113
114
|
?input_type: ("HLS" | "CMAF"),
|
114
115
|
?description: ::String,
|
115
116
|
?input_switch_configuration: {
|
116
|
-
mqcs_input_switching: bool
|
117
|
+
mqcs_input_switching: bool?,
|
118
|
+
preferred_input: ::Integer?
|
117
119
|
},
|
118
120
|
?output_header_configuration: {
|
119
121
|
publish_mqcs: bool?
|
@@ -720,7 +722,8 @@ module Aws
|
|
720
722
|
?etag: ::String,
|
721
723
|
?description: ::String,
|
722
724
|
?input_switch_configuration: {
|
723
|
-
mqcs_input_switching: bool
|
725
|
+
mqcs_input_switching: bool?,
|
726
|
+
preferred_input: ::Integer?
|
724
727
|
},
|
725
728
|
?output_header_configuration: {
|
726
729
|
publish_mqcs: bool?
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -605,6 +605,7 @@ module Aws::MediaPackageV2
|
|
605
605
|
|
606
606
|
class InputSwitchConfiguration
|
607
607
|
attr_accessor mqcs_input_switching: bool
|
608
|
+
attr_accessor preferred_input: ::Integer
|
608
609
|
SENSITIVE: []
|
609
610
|
end
|
610
611
|
|
@@ -938,7 +939,7 @@ module Aws::MediaPackageV2
|
|
938
939
|
|
939
940
|
class ValidationException
|
940
941
|
attr_accessor message: ::String
|
941
|
-
attr_accessor validation_exception_type: ("CONTAINER_TYPE_IMMUTABLE" | "INVALID_PAGINATION_TOKEN" | "INVALID_PAGINATION_MAX_RESULTS" | "INVALID_POLICY" | "INVALID_ROLE_ARN" | "MANIFEST_NAME_COLLISION" | "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH" | "CENC_IV_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITH_ISM_CONTAINER_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_UNENCRYPTED" | "ENCRYPTION_CONTRACT_SHARED" | "NUM_MANIFESTS_LOW" | "NUM_MANIFESTS_HIGH" | "MANIFEST_DRM_SYSTEMS_INCOMPATIBLE" | "DRM_SYSTEMS_ENCRYPTION_METHOD_INCOMPATIBLE" | "ROLE_ARN_NOT_ASSUMABLE" | "ROLE_ARN_LENGTH_OUT_OF_RANGE" | "ROLE_ARN_INVALID_FORMAT" | "URL_INVALID" | "URL_SCHEME" | "URL_USER_INFO" | "URL_PORT" | "URL_UNKNOWN_HOST" | "URL_LOCAL_ADDRESS" | "URL_LOOPBACK_ADDRESS" | "URL_LINK_LOCAL_ADDRESS" | "URL_MULTICAST_ADDRESS" | "MEMBER_INVALID" | "MEMBER_MISSING" | "MEMBER_MIN_VALUE" | "MEMBER_MAX_VALUE" | "MEMBER_MIN_LENGTH" | "MEMBER_MAX_LENGTH" | "MEMBER_INVALID_ENUM_VALUE" | "MEMBER_DOES_NOT_MATCH_PATTERN" | "INVALID_MANIFEST_FILTER" | "INVALID_TIME_DELAY_SECONDS" | "END_TIME_EARLIER_THAN_START_TIME" | "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "DIRECT_MODE_WITH_TIMING_SOURCE" | "NONE_MODE_WITH_TIMING_SOURCE" | "TIMING_SOURCE_MISSING" | "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION" | "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES" | "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY" | "HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION" | "HARVESTED_MANIFEST_NOT_FOUND_ON_ENDPOINT" | "TOO_MANY_IN_PROGRESS_HARVEST_JOBS" | "HARVEST_JOB_INELIGIBLE_FOR_CANCELLATION" | "INVALID_HARVEST_JOB_DURATION" | "HARVEST_JOB_S3_DESTINATION_MISSING_OR_INCOMPLETE" | "HARVEST_JOB_UNABLE_TO_WRITE_TO_S3_DESTINATION" | "HARVEST_JOB_CUSTOMER_ENDPOINT_READ_ACCESS_DENIED" | "CLIP_START_TIME_WITH_START_OR_END" | "START_TAG_TIME_OFFSET_INVALID" | "INCOMPATIBLE_DASH_PROFILE_DVB_DASH_CONFIGURATION" | "DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE" | "INCOMPATIBLE_DASH_COMPACTNESS_CONFIGURATION" | "INCOMPATIBLE_XML_ENCODING" | "CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION" | "TS_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_SCTE" | "ISM_CONTAINER_WITH_KEY_ROTATION" | "BATCH_GET_SECRET_VALUE_DENIED" | "GET_SECRET_VALUE_DENIED" | "DESCRIBE_SECRET_DENIED" | "INVALID_SECRET_FORMAT" | "SECRET_IS_NOT_ONE_KEY_VALUE_PAIR" | "INVALID_SECRET_KEY" | "INVALID_SECRET_VALUE" | "SECRET_ARN_RESOURCE_NOT_FOUND" | "DECRYPT_SECRET_FAILED" | "TOO_MANY_SECRETS" | "DUPLICATED_SECRET" | "MALFORMED_SECRET_ARN" | "SECRET_FROM_DIFFERENT_ACCOUNT" | "SECRET_FROM_DIFFERENT_REGION" | "INVALID_SECRET")
|
942
|
+
attr_accessor validation_exception_type: ("CONTAINER_TYPE_IMMUTABLE" | "INVALID_PAGINATION_TOKEN" | "INVALID_PAGINATION_MAX_RESULTS" | "INVALID_POLICY" | "INVALID_ROLE_ARN" | "MANIFEST_NAME_COLLISION" | "ENCRYPTION_METHOD_CONTAINER_TYPE_MISMATCH" | "CENC_IV_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITHOUT_AUDIO_RENDITION_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_WITH_ISM_CONTAINER_INCOMPATIBLE" | "ENCRYPTION_CONTRACT_UNENCRYPTED" | "ENCRYPTION_CONTRACT_SHARED" | "NUM_MANIFESTS_LOW" | "NUM_MANIFESTS_HIGH" | "MANIFEST_DRM_SYSTEMS_INCOMPATIBLE" | "DRM_SYSTEMS_ENCRYPTION_METHOD_INCOMPATIBLE" | "ROLE_ARN_NOT_ASSUMABLE" | "ROLE_ARN_LENGTH_OUT_OF_RANGE" | "ROLE_ARN_INVALID_FORMAT" | "URL_INVALID" | "URL_SCHEME" | "URL_USER_INFO" | "URL_PORT" | "URL_UNKNOWN_HOST" | "URL_LOCAL_ADDRESS" | "URL_LOOPBACK_ADDRESS" | "URL_LINK_LOCAL_ADDRESS" | "URL_MULTICAST_ADDRESS" | "MEMBER_INVALID" | "MEMBER_MISSING" | "MEMBER_MIN_VALUE" | "MEMBER_MAX_VALUE" | "MEMBER_MIN_LENGTH" | "MEMBER_MAX_LENGTH" | "MEMBER_INVALID_ENUM_VALUE" | "MEMBER_DOES_NOT_MATCH_PATTERN" | "INVALID_MANIFEST_FILTER" | "INVALID_TIME_DELAY_SECONDS" | "END_TIME_EARLIER_THAN_START_TIME" | "TS_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "DIRECT_MODE_WITH_TIMING_SOURCE" | "NONE_MODE_WITH_TIMING_SOURCE" | "TIMING_SOURCE_MISSING" | "UPDATE_PERIOD_SMALLER_THAN_SEGMENT_DURATION" | "PERIOD_TRIGGERS_NONE_SPECIFIED_WITH_ADDITIONAL_VALUES" | "DRM_SIGNALING_MISMATCH_SEGMENT_ENCRYPTION_STATUS" | "ONLY_CMAF_INPUT_TYPE_ALLOW_FORCE_ENDPOINT_ERROR_CONFIGURATION" | "SOURCE_DISRUPTIONS_ENABLED_INCORRECTLY" | "HARVESTED_MANIFEST_HAS_START_END_FILTER_CONFIGURATION" | "HARVESTED_MANIFEST_NOT_FOUND_ON_ENDPOINT" | "TOO_MANY_IN_PROGRESS_HARVEST_JOBS" | "HARVEST_JOB_INELIGIBLE_FOR_CANCELLATION" | "INVALID_HARVEST_JOB_DURATION" | "HARVEST_JOB_S3_DESTINATION_MISSING_OR_INCOMPLETE" | "HARVEST_JOB_UNABLE_TO_WRITE_TO_S3_DESTINATION" | "HARVEST_JOB_CUSTOMER_ENDPOINT_READ_ACCESS_DENIED" | "CLIP_START_TIME_WITH_START_OR_END" | "START_TAG_TIME_OFFSET_INVALID" | "INCOMPATIBLE_DASH_PROFILE_DVB_DASH_CONFIGURATION" | "DASH_DVB_ATTRIBUTES_WITHOUT_DVB_DASH_PROFILE" | "INCOMPATIBLE_DASH_COMPACTNESS_CONFIGURATION" | "INCOMPATIBLE_XML_ENCODING" | "CMAF_EXCLUDE_SEGMENT_DRM_METADATA_INCOMPATIBLE_CONTAINER_TYPE" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_INPUT_SWITCHING" | "ONLY_CMAF_INPUT_TYPE_ALLOW_MQCS_OUTPUT_CONFIGURATION" | "ONLY_CMAF_INPUT_TYPE_ALLOW_PREFERRED_INPUT_CONFIGURATION" | "TS_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "CMAF_CONTAINER_TYPE_WITH_MSS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_LL_HLS_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_DASH_MANIFEST" | "ISM_CONTAINER_TYPE_WITH_SCTE" | "ISM_CONTAINER_WITH_KEY_ROTATION" | "BATCH_GET_SECRET_VALUE_DENIED" | "GET_SECRET_VALUE_DENIED" | "DESCRIBE_SECRET_DENIED" | "INVALID_SECRET_FORMAT" | "SECRET_IS_NOT_ONE_KEY_VALUE_PAIR" | "INVALID_SECRET_KEY" | "INVALID_SECRET_VALUE" | "SECRET_ARN_RESOURCE_NOT_FOUND" | "DECRYPT_SECRET_FAILED" | "TOO_MANY_SECRETS" | "DUPLICATED_SECRET" | "MALFORMED_SECRET_ARN" | "SECRET_FROM_DIFFERENT_ACCOUNT" | "SECRET_FROM_DIFFERENT_REGION" | "INVALID_SECRET")
|
942
943
|
SENSITIVE: []
|
943
944
|
end
|
944
945
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediapackagev2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|