aws-sdk-ecrpublic 1.44.0 → 1.46.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad37e8e136a079b736e06bea8b395c8fcafa39d85810e81b29b92600cbdaff56
4
- data.tar.gz: 7b78388a6930ab36fe8af02a2d64e580ea45e2bb9c459b8c6b64c5fa5105bd94
3
+ metadata.gz: e1bde9b1d638a7850586210450d311c4009ff40081c1bf74f0698d91fc288685
4
+ data.tar.gz: 7b05af8bfc682bbe0c749d7281eb70fd9b6479e7481765da19a2dd973f6aa232
5
5
  SHA512:
6
- metadata.gz: a313857378e0514457e9241b838d48570f53d45d67fab132e7aa4a61a052391326167da785a1466be9c0d56d22fac3e902cc8826ea11a0e9f026788187371192
7
- data.tar.gz: a1e103ce7e8a7d5694cc47f61efbfe0df6a66b58487797055e3b8f498a79218757cca5694a0554abf7e0483ae91102afda9ff1b29b2192a11bc0a1f894c57dd5
6
+ metadata.gz: 73864886925b2c47f0d8ebd7d2c24c838106859e8f6608f5e8d4f019d0f158eddad48b4fe97b4dd983d8e49b1ee8f3514bf957b63d38afb4e46d9f9dba37eda9
7
+ data.tar.gz: a59239f543564e01c6100e185d93127c3b1a89159cb167ab345f578fc2ea097c03f8e6e0db3f1d6f6ae2fa45f9b506922fb5be4e804871842f4e79c4c13ebf6d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2025-02-06)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.45.0 (2025-01-30)
10
+ ------------------
11
+
12
+ * Feature - Temporarily updating dualstack endpoint support
13
+
4
14
  1.44.0 (2025-01-29)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.44.0
1
+ 1.46.0
@@ -1690,7 +1690,7 @@ module Aws::ECRPublic
1690
1690
  tracer: tracer
1691
1691
  )
1692
1692
  context[:gem_name] = 'aws-sdk-ecrpublic'
1693
- context[:gem_version] = '1.44.0'
1693
+ context[:gem_version] = '1.46.0'
1694
1694
  Seahorse::Client::Request.new(handlers, context)
1695
1695
  end
1696
1696
 
@@ -10,43 +10,36 @@
10
10
  module Aws::ECRPublic
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://api.ecr-public-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
26
+ return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-public-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
- return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-public-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
32
+ return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-public-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
33
  end
38
34
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
39
35
  end
40
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
36
+ if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
41
37
  if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
42
- if Aws::Endpoints::Matchers.string_equals?("aws", Aws::Endpoints::Matchers.attr(partition_result, "name"))
43
- return Aws::Endpoints::Endpoint.new(url: "https://ecr-public.#{region}.api.aws", headers: {}, properties: {})
44
- end
45
- return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-public.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
38
+ return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-public.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
46
39
  end
47
40
  raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
48
41
  end
49
- return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-public.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
42
+ return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-public.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
50
43
  end
51
44
  end
52
45
  raise ArgumentError, "Invalid Configuration: Missing Region"
@@ -54,7 +54,7 @@ module Aws::ECRPublic
54
54
  autoload :EndpointProvider, 'aws-sdk-ecrpublic/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-ecrpublic/endpoints'
56
56
 
57
- GEM_VERSION = '1.44.0'
57
+ GEM_VERSION = '1.46.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-ecrpublic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.44.0
4
+ version: 1.46.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-29 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