aws-sdk-mediapackagev2 1.42.0 → 1.44.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 +38 -9
- data/lib/aws-sdk-mediapackagev2/client_api.rb +12 -0
- data/lib/aws-sdk-mediapackagev2/types.rb +57 -6
- data/lib/aws-sdk-mediapackagev2.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +9 -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: 0137ae56b751911a9de23f45636427af8e777174386d1da271637253b70f40b2
|
4
|
+
data.tar.gz: 7cdea1e40a3c83ff85a7e8a092727730223f991e90b201d025e460f0f7aa1e2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb0d0300e8c1e220aecb77d18a6b13a5567b46bbe1d96cb10c8f8ea860ac826b1d186cbc3f1d2f359422833b7de4d1b564a70482101efbc43e2c14a5a4be46f0
|
7
|
+
data.tar.gz: 5c2bd4d322fa64497861026fba7b3fb5798610d04b81f63433909551e657fbf5b9ec7b2e69eb394595e45f34ff71f22799393f03d9c91f60838f2aa048a63b27
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.43.0 (2025-07-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for CDN Authentication using Static Headers in MediaPackage v2.
|
13
|
+
|
4
14
|
1.42.0 (2025-07-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.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
|
@@ -3073,6 +3083,7 @@ module Aws::MediaPackageV2
|
|
3073
3083
|
# * {Types::GetOriginEndpointPolicyResponse#channel_name #channel_name} => String
|
3074
3084
|
# * {Types::GetOriginEndpointPolicyResponse#origin_endpoint_name #origin_endpoint_name} => String
|
3075
3085
|
# * {Types::GetOriginEndpointPolicyResponse#policy #policy} => String
|
3086
|
+
# * {Types::GetOriginEndpointPolicyResponse#cdn_auth_configuration #cdn_auth_configuration} => Types::CdnAuthConfiguration
|
3076
3087
|
#
|
3077
3088
|
#
|
3078
3089
|
# @example Example: Getting an Origin Endpoint Policy
|
@@ -3105,6 +3116,9 @@ module Aws::MediaPackageV2
|
|
3105
3116
|
# resp.channel_name #=> String
|
3106
3117
|
# resp.origin_endpoint_name #=> String
|
3107
3118
|
# resp.policy #=> String
|
3119
|
+
# resp.cdn_auth_configuration.cdn_identifier_secret_arns #=> Array
|
3120
|
+
# resp.cdn_auth_configuration.cdn_identifier_secret_arns[0] #=> String
|
3121
|
+
# resp.cdn_auth_configuration.secrets_role_arn #=> String
|
3108
3122
|
#
|
3109
3123
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetOriginEndpointPolicy AWS API Documentation
|
3110
3124
|
#
|
@@ -3972,6 +3986,17 @@ module Aws::MediaPackageV2
|
|
3972
3986
|
# @option params [required, String] :policy
|
3973
3987
|
# The policy to attach to the specified origin endpoint.
|
3974
3988
|
#
|
3989
|
+
# @option params [Types::CdnAuthConfiguration] :cdn_auth_configuration
|
3990
|
+
# The settings for using authorization headers between the MediaPackage
|
3991
|
+
# endpoint and your CDN.
|
3992
|
+
#
|
3993
|
+
# For information about CDN authorization, see [CDN authorization in
|
3994
|
+
# Elemental MediaPackage][1] in the MediaPackage user guide.
|
3995
|
+
#
|
3996
|
+
#
|
3997
|
+
#
|
3998
|
+
# [1]: https://docs.aws.amazon.com/mediapackage/latest/userguide/cdn-auth.html
|
3999
|
+
#
|
3975
4000
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3976
4001
|
#
|
3977
4002
|
#
|
@@ -3995,6 +4020,10 @@ module Aws::MediaPackageV2
|
|
3995
4020
|
# channel_name: "ResourceName", # required
|
3996
4021
|
# origin_endpoint_name: "ResourceName", # required
|
3997
4022
|
# policy: "PolicyText", # required
|
4023
|
+
# cdn_auth_configuration: {
|
4024
|
+
# cdn_identifier_secret_arns: ["CdnIdentifierSecretArn"], # required
|
4025
|
+
# secrets_role_arn: "CdnAuthConfigurationSecretsRoleArnString", # required
|
4026
|
+
# },
|
3998
4027
|
# })
|
3999
4028
|
#
|
4000
4029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/PutOriginEndpointPolicy AWS API Documentation
|
@@ -5145,7 +5174,7 @@ module Aws::MediaPackageV2
|
|
5145
5174
|
tracer: tracer
|
5146
5175
|
)
|
5147
5176
|
context[:gem_name] = 'aws-sdk-mediapackagev2'
|
5148
|
-
context[:gem_version] = '1.
|
5177
|
+
context[:gem_version] = '1.44.0'
|
5149
5178
|
Seahorse::Client::Request.new(handlers, context)
|
5150
5179
|
end
|
5151
5180
|
|
@@ -20,6 +20,10 @@ module Aws::MediaPackageV2
|
|
20
20
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
21
21
|
CancelHarvestJobRequest = Shapes::StructureShape.new(name: 'CancelHarvestJobRequest')
|
22
22
|
CancelHarvestJobResponse = Shapes::StructureShape.new(name: 'CancelHarvestJobResponse')
|
23
|
+
CdnAuthConfiguration = Shapes::StructureShape.new(name: 'CdnAuthConfiguration')
|
24
|
+
CdnAuthConfigurationCdnIdentifierSecretArnsList = Shapes::ListShape.new(name: 'CdnAuthConfigurationCdnIdentifierSecretArnsList')
|
25
|
+
CdnAuthConfigurationSecretsRoleArnString = Shapes::StringShape.new(name: 'CdnAuthConfigurationSecretsRoleArnString')
|
26
|
+
CdnIdentifierSecretArn = Shapes::StringShape.new(name: 'CdnIdentifierSecretArn')
|
23
27
|
ChannelGroupListConfiguration = Shapes::StructureShape.new(name: 'ChannelGroupListConfiguration')
|
24
28
|
ChannelGroupsList = Shapes::ListShape.new(name: 'ChannelGroupsList')
|
25
29
|
ChannelList = Shapes::ListShape.new(name: 'ChannelList')
|
@@ -245,6 +249,12 @@ module Aws::MediaPackageV2
|
|
245
249
|
|
246
250
|
CancelHarvestJobResponse.struct_class = Types::CancelHarvestJobResponse
|
247
251
|
|
252
|
+
CdnAuthConfiguration.add_member(:cdn_identifier_secret_arns, Shapes::ShapeRef.new(shape: CdnAuthConfigurationCdnIdentifierSecretArnsList, required: true, location_name: "CdnIdentifierSecretArns"))
|
253
|
+
CdnAuthConfiguration.add_member(:secrets_role_arn, Shapes::ShapeRef.new(shape: CdnAuthConfigurationSecretsRoleArnString, required: true, location_name: "SecretsRoleArn"))
|
254
|
+
CdnAuthConfiguration.struct_class = Types::CdnAuthConfiguration
|
255
|
+
|
256
|
+
CdnAuthConfigurationCdnIdentifierSecretArnsList.member = Shapes::ShapeRef.new(shape: CdnIdentifierSecretArn)
|
257
|
+
|
248
258
|
ChannelGroupListConfiguration.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ChannelGroupName"))
|
249
259
|
ChannelGroupListConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Arn"))
|
250
260
|
ChannelGroupListConfiguration.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedAt"))
|
@@ -662,6 +672,7 @@ module Aws::MediaPackageV2
|
|
662
672
|
GetOriginEndpointPolicyResponse.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "ChannelName"))
|
663
673
|
GetOriginEndpointPolicyResponse.add_member(:origin_endpoint_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "OriginEndpointName"))
|
664
674
|
GetOriginEndpointPolicyResponse.add_member(:policy, Shapes::ShapeRef.new(shape: PolicyText, required: true, location_name: "Policy"))
|
675
|
+
GetOriginEndpointPolicyResponse.add_member(:cdn_auth_configuration, Shapes::ShapeRef.new(shape: CdnAuthConfiguration, location_name: "CdnAuthConfiguration"))
|
665
676
|
GetOriginEndpointPolicyResponse.struct_class = Types::GetOriginEndpointPolicyResponse
|
666
677
|
|
667
678
|
GetOriginEndpointRequest.add_member(:channel_group_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelGroupName"))
|
@@ -845,6 +856,7 @@ module Aws::MediaPackageV2
|
|
845
856
|
PutOriginEndpointPolicyRequest.add_member(:channel_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "ChannelName"))
|
846
857
|
PutOriginEndpointPolicyRequest.add_member(:origin_endpoint_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location: "uri", location_name: "OriginEndpointName"))
|
847
858
|
PutOriginEndpointPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: PolicyText, required: true, location_name: "Policy"))
|
859
|
+
PutOriginEndpointPolicyRequest.add_member(:cdn_auth_configuration, Shapes::ShapeRef.new(shape: CdnAuthConfiguration, location_name: "CdnAuthConfiguration"))
|
848
860
|
PutOriginEndpointPolicyRequest.struct_class = Types::PutOriginEndpointPolicyRequest
|
849
861
|
|
850
862
|
PutOriginEndpointPolicyResponse.struct_class = Types::PutOriginEndpointPolicyResponse
|
@@ -10,10 +10,14 @@
|
|
10
10
|
module Aws::MediaPackageV2
|
11
11
|
module Types
|
12
12
|
|
13
|
-
#
|
14
|
-
#
|
15
|
-
#
|
16
|
-
#
|
13
|
+
# Access is denied because either you don't have permissions to perform
|
14
|
+
# the requested operation or MediaPackage is getting throttling errors
|
15
|
+
# with CDN authorization. The user or role that is making the request
|
16
|
+
# must have at least one IAM permissions policy attached that grants the
|
17
|
+
# required permissions. For more information, see Access Management in
|
18
|
+
# the IAM User Guide. Or, if you're using CDN authorization, you will
|
19
|
+
# receive this exception if MediaPackage receives a throttling error
|
20
|
+
# from Secrets Manager.
|
17
21
|
#
|
18
22
|
# @!attribute [rw] message
|
19
23
|
# @return [String]
|
@@ -67,6 +71,27 @@ module Aws::MediaPackageV2
|
|
67
71
|
#
|
68
72
|
class CancelHarvestJobResponse < Aws::EmptyStructure; end
|
69
73
|
|
74
|
+
# The settings to enable CDN authorization headers in MediaPackage.
|
75
|
+
#
|
76
|
+
# @!attribute [rw] cdn_identifier_secret_arns
|
77
|
+
# The ARN for the secret in Secrets Manager that your CDN uses for
|
78
|
+
# authorization to access the endpoint.
|
79
|
+
# @return [Array<String>]
|
80
|
+
#
|
81
|
+
# @!attribute [rw] secrets_role_arn
|
82
|
+
# The ARN for the IAM role that gives MediaPackage read access to
|
83
|
+
# Secrets Manager and KMS for CDN authorization.
|
84
|
+
# @return [String]
|
85
|
+
#
|
86
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/CdnAuthConfiguration AWS API Documentation
|
87
|
+
#
|
88
|
+
class CdnAuthConfiguration < Struct.new(
|
89
|
+
:cdn_identifier_secret_arns,
|
90
|
+
:secrets_role_arn)
|
91
|
+
SENSITIVE = []
|
92
|
+
include Aws::Structure
|
93
|
+
end
|
94
|
+
|
70
95
|
# The configuration of the channel group.
|
71
96
|
#
|
72
97
|
# @!attribute [rw] channel_group_name
|
@@ -2499,13 +2524,26 @@ module Aws::MediaPackageV2
|
|
2499
2524
|
# The policy assigned to the origin endpoint.
|
2500
2525
|
# @return [String]
|
2501
2526
|
#
|
2527
|
+
# @!attribute [rw] cdn_auth_configuration
|
2528
|
+
# The settings for using authorization headers between the
|
2529
|
+
# MediaPackage endpoint and your CDN.
|
2530
|
+
#
|
2531
|
+
# For information about CDN authorization, see [CDN authorization in
|
2532
|
+
# Elemental MediaPackage][1] in the MediaPackage user guide.
|
2533
|
+
#
|
2534
|
+
#
|
2535
|
+
#
|
2536
|
+
# [1]: https://docs.aws.amazon.com/mediapackage/latest/userguide/cdn-auth.html
|
2537
|
+
# @return [Types::CdnAuthConfiguration]
|
2538
|
+
#
|
2502
2539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/GetOriginEndpointPolicyResponse AWS API Documentation
|
2503
2540
|
#
|
2504
2541
|
class GetOriginEndpointPolicyResponse < Struct.new(
|
2505
2542
|
:channel_group_name,
|
2506
2543
|
:channel_name,
|
2507
2544
|
:origin_endpoint_name,
|
2508
|
-
:policy
|
2545
|
+
:policy,
|
2546
|
+
:cdn_auth_configuration)
|
2509
2547
|
SENSITIVE = []
|
2510
2548
|
include Aws::Structure
|
2511
2549
|
end
|
@@ -3353,13 +3391,26 @@ module Aws::MediaPackageV2
|
|
3353
3391
|
# The policy to attach to the specified origin endpoint.
|
3354
3392
|
# @return [String]
|
3355
3393
|
#
|
3394
|
+
# @!attribute [rw] cdn_auth_configuration
|
3395
|
+
# The settings for using authorization headers between the
|
3396
|
+
# MediaPackage endpoint and your CDN.
|
3397
|
+
#
|
3398
|
+
# For information about CDN authorization, see [CDN authorization in
|
3399
|
+
# Elemental MediaPackage][1] in the MediaPackage user guide.
|
3400
|
+
#
|
3401
|
+
#
|
3402
|
+
#
|
3403
|
+
# [1]: https://docs.aws.amazon.com/mediapackage/latest/userguide/cdn-auth.html
|
3404
|
+
# @return [Types::CdnAuthConfiguration]
|
3405
|
+
#
|
3356
3406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediapackagev2-2022-12-25/PutOriginEndpointPolicyRequest AWS API Documentation
|
3357
3407
|
#
|
3358
3408
|
class PutOriginEndpointPolicyRequest < Struct.new(
|
3359
3409
|
:channel_group_name,
|
3360
3410
|
:channel_name,
|
3361
3411
|
:origin_endpoint_name,
|
3362
|
-
:policy
|
3412
|
+
:policy,
|
3413
|
+
:cdn_auth_configuration)
|
3363
3414
|
SENSITIVE = []
|
3364
3415
|
include Aws::Structure
|
3365
3416
|
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,
|
@@ -552,6 +553,7 @@ module Aws
|
|
552
553
|
def channel_name: () -> ::String
|
553
554
|
def origin_endpoint_name: () -> ::String
|
554
555
|
def policy: () -> ::String
|
556
|
+
def cdn_auth_configuration: () -> Types::CdnAuthConfiguration
|
555
557
|
end
|
556
558
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaPackageV2/Client.html#get_origin_endpoint_policy-instance_method
|
557
559
|
def get_origin_endpoint_policy: (
|
@@ -645,7 +647,11 @@ module Aws
|
|
645
647
|
channel_group_name: ::String,
|
646
648
|
channel_name: ::String,
|
647
649
|
origin_endpoint_name: ::String,
|
648
|
-
policy: ::String
|
650
|
+
policy: ::String,
|
651
|
+
?cdn_auth_configuration: {
|
652
|
+
cdn_identifier_secret_arns: Array[::String],
|
653
|
+
secrets_role_arn: ::String
|
654
|
+
}
|
649
655
|
) -> _PutOriginEndpointPolicyResponseSuccess
|
650
656
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutOriginEndpointPolicyResponseSuccess
|
651
657
|
|
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
@@ -25,6 +25,12 @@ module Aws::MediaPackageV2
|
|
25
25
|
class CancelHarvestJobResponse < Aws::EmptyStructure
|
26
26
|
end
|
27
27
|
|
28
|
+
class CdnAuthConfiguration
|
29
|
+
attr_accessor cdn_identifier_secret_arns: ::Array[::String]
|
30
|
+
attr_accessor secrets_role_arn: ::String
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
28
34
|
class ChannelGroupListConfiguration
|
29
35
|
attr_accessor channel_group_name: ::String
|
30
36
|
attr_accessor arn: ::String
|
@@ -512,6 +518,7 @@ module Aws::MediaPackageV2
|
|
512
518
|
attr_accessor channel_name: ::String
|
513
519
|
attr_accessor origin_endpoint_name: ::String
|
514
520
|
attr_accessor policy: ::String
|
521
|
+
attr_accessor cdn_auth_configuration: Types::CdnAuthConfiguration
|
515
522
|
SENSITIVE: []
|
516
523
|
end
|
517
524
|
|
@@ -734,6 +741,7 @@ module Aws::MediaPackageV2
|
|
734
741
|
attr_accessor channel_name: ::String
|
735
742
|
attr_accessor origin_endpoint_name: ::String
|
736
743
|
attr_accessor policy: ::String
|
744
|
+
attr_accessor cdn_auth_configuration: Types::CdnAuthConfiguration
|
737
745
|
SENSITIVE: []
|
738
746
|
end
|
739
747
|
|
@@ -930,7 +938,7 @@ module Aws::MediaPackageV2
|
|
930
938
|
|
931
939
|
class ValidationException
|
932
940
|
attr_accessor message: ::String
|
933
|
-
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")
|
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")
|
934
942
|
SENSITIVE: []
|
935
943
|
end
|
936
944
|
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.44.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
|