aws-sdk-mediaconvert 1.149.0 → 1.150.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 30387f3c90af4472a74ebb2e3843a2acb178fddcf659e57b3c134e720b0d6325
4
- data.tar.gz: fb015431a6b266378e551401a8b773a4c7e4f97dc7bb456c10ee76f43aaa56d4
3
+ metadata.gz: 76b11159cca797c8a218de5a3bb0c40eb91ea6005e632769749bc397b0c73a9d
4
+ data.tar.gz: 52ade54be42482829c2dc0d7af8a8531d73e5870178062225ae4864d23dadf5b
5
5
  SHA512:
6
- metadata.gz: 1922dab0051e00941a316ab0f445998df4fb1029a729c05ec0300b0f221fe32e92d1076c021f15e047988ecf3e4b335921ca5490c829b9798bc056c539d63f67
7
- data.tar.gz: bd3f3c3535b495a949015d804b60582a7c89f8967af7272d6ff2618020a6cc4d2be7ac249ce58a4789cc009e4e5385bbfc1e0b3e6a928e61b17dd46c57b0dd2a
6
+ metadata.gz: 45dd437ef44f8706bc7c557148a60c2c7e88b326020e2283ecc524551bc4bf6fa074921e7bdb2edd2b2101fc8be365113aa958781424462d87c9136d480e6d83
7
+ data.tar.gz: 54ccd4608384cb97450fd463d39c052f875b6af0d65fc5df2081b82a05c45f16aa089bf453e4e8c0bb37724215bacf6da0dde9334257d8c6f0e726c4f023762d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.150.0 (2025-02-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.149.0 (2025-01-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.149.0
1
+ 1.150.0
@@ -5920,7 +5920,7 @@ module Aws::MediaConvert
5920
5920
  tracer: tracer
5921
5921
  )
5922
5922
  context[:gem_name] = 'aws-sdk-mediaconvert'
5923
- context[:gem_version] = '1.149.0'
5923
+ context[:gem_version] = '1.150.0'
5924
5924
  Seahorse::Client::Request.new(handlers, context)
5925
5925
  end
5926
5926
 
@@ -10,46 +10,42 @@
10
10
  module Aws::MediaConvert
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
- region = parameters.region
14
- use_dual_stack = parameters.use_dual_stack
15
- use_fips = parameters.use_fips
16
- endpoint = parameters.endpoint
17
- if Aws::Endpoints::Matchers.set?(endpoint)
18
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
13
+ if Aws::Endpoints::Matchers.set?(parameters.endpoint)
14
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
19
15
  raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
20
16
  end
21
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
17
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
22
18
  raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
19
  end
24
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
20
+ return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
25
21
  end
26
- if Aws::Endpoints::Matchers.set?(region)
27
- if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
28
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ if Aws::Endpoints::Matchers.set?(parameters.region)
23
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
24
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
29
25
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
30
- return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
26
+ return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
27
  end
32
28
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
29
  end
34
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
30
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
35
31
  if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
32
  if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
- return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert.#{region}.amazonaws.com", headers: {}, properties: {})
33
+ return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
38
34
  end
39
- return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
35
+ return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
40
36
  end
41
37
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
42
38
  end
43
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
39
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
44
40
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
45
- return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
41
+ return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
46
42
  end
47
43
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
48
44
  end
49
- if Aws::Endpoints::Matchers.string_equals?(region, "cn-northwest-1")
45
+ if Aws::Endpoints::Matchers.string_equals?(parameters.region, "cn-northwest-1")
50
46
  return Aws::Endpoints::Endpoint.new(url: "https://subscribe.mediaconvert.cn-northwest-1.amazonaws.com.cn", headers: {}, properties: {})
51
47
  end
52
- return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
48
+ return Aws::Endpoints::Endpoint.new(url: "https://mediaconvert.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
53
49
  end
54
50
  end
55
51
  raise ArgumentError, "Invalid Configuration: Missing Region"
@@ -54,7 +54,7 @@ module Aws::MediaConvert
54
54
  autoload :EndpointProvider, 'aws-sdk-mediaconvert/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-mediaconvert/endpoints'
56
56
 
57
- GEM_VERSION = '1.149.0'
57
+ GEM_VERSION = '1.150.0'
58
58
 
59
59
  end
60
60
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconvert
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.149.0
4
+ version: 1.150.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-27 00:00:00.000000000 Z
11
+ date: 2025-02-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core