aws-sdk-ecr 1.88.0 → 1.90.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: ad27e85bc1cf30dc64829ad4a82505c4f468bc9ad0fcccda563774000343f55c
4
- data.tar.gz: fa901b87485cef2c3940c0d9a681cebed74e6fdb54ce4c0a7ed23e0db16df9da
3
+ metadata.gz: 876665e3dbf35c24907a79c459fa6981b7afc85b09203927d72edd9962d32d08
4
+ data.tar.gz: ed230e37b26f52a1ee9b78fbe233c7375ac80dea842bbe6fb91e00f0febf9190
5
5
  SHA512:
6
- metadata.gz: 4bc528f12910974797f16de384daba33b08c19b287a07b0a31177dfed49e82d53c760977ba3c03f8d6d1b6e8ecf1d170c1b8950c5ccad9170eefe70a03075cca
7
- data.tar.gz: e29b0325408fab7d67326cf93988aa33379c5cac8845746b34dc687f88293d71ed3b7bb9ef64234ecd9bb621afd7a314c94f2a8730d098be21676baedebcb3de
6
+ metadata.gz: 92477f29c1f970e79fae0b3985f27f50e337117ddb373c481aa57a1cdf8c44e14d755970be853ef1f38c0e4121efd6249683319953e0da73282a6707babd6262
7
+ data.tar.gz: cd77bf2ee5a246f55a0214faeee51c814cfdf59477678c6a00212f45af03c1ecd837e047fb1207624da981f4724019d775dc2a81e1b9357321960f6945f4f346
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.90.0 (2024-12-26)
5
+ ------------------
6
+
7
+ * Feature - Add support for Dualstack Endpoints
8
+
9
+ 1.89.0 (2024-12-23)
10
+ ------------------
11
+
12
+ * Feature - Documentation update for ECR GetAccountSetting and PutAccountSetting APIs.
13
+
4
14
  1.88.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.88.0
1
+ 1.90.0
@@ -2102,10 +2102,11 @@ module Aws::ECR
2102
2102
  req.send_request(options)
2103
2103
  end
2104
2104
 
2105
- # Retrieves the basic scan type version name.
2105
+ # Retrieves the account setting value for the specified setting name.
2106
2106
  #
2107
2107
  # @option params [required, String] :name
2108
- # Basic scan type version name.
2108
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION` or
2109
+ # `REGISTRY_POLICY_SCOPE`.
2109
2110
  #
2110
2111
  # @return [Types::GetAccountSettingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2111
2112
  #
@@ -2668,15 +2669,18 @@ module Aws::ECR
2668
2669
  req.send_request(options)
2669
2670
  end
2670
2671
 
2671
- # Allows you to change the basic scan type version by setting the `name`
2672
- # parameter to either `CLAIR` to `AWS_NATIVE`.
2672
+ # Allows you to change the basic scan type version or registry policy
2673
+ # scope.
2673
2674
  #
2674
2675
  # @option params [required, String] :name
2675
- # Basic scan type version name.
2676
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION` or
2677
+ # `REGISTRY_POLICY_SCOPE`.
2676
2678
  #
2677
2679
  # @option params [required, String] :value
2678
- # Setting value that determines what basic scan type is being used:
2679
- # `AWS_NATIVE` or `CLAIR`.
2680
+ # Setting value that is specified. The following are valid values for
2681
+ # the basic scan type being used: `AWS_NATIVE` or `CLAIR`. The following
2682
+ # are valid values for the registry policy scope being used: `V1` or
2683
+ # `V2`.
2680
2684
  #
2681
2685
  # @return [Types::PutAccountSettingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2682
2686
  #
@@ -3673,7 +3677,7 @@ module Aws::ECR
3673
3677
  tracer: tracer
3674
3678
  )
3675
3679
  context[:gem_name] = 'aws-sdk-ecr'
3676
- context[:gem_version] = '1.88.0'
3680
+ context[:gem_version] = '1.90.0'
3677
3681
  Seahorse::Client::Request.new(handlers, context)
3678
3682
  end
3679
3683
 
@@ -15,26 +15,20 @@ module Aws::ECR
15
15
  #
16
16
  # @return [String]
17
17
  #
18
- # @!attribute use_dual_stack
19
- # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
20
- #
21
- # @return [Boolean]
22
- #
23
18
  # @!attribute use_fips
24
19
  # When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
25
20
  #
26
21
  # @return [Boolean]
27
22
  #
28
- # @!attribute endpoint
29
- # Override the endpoint used to send this request
23
+ # @!attribute use_dual_stack
24
+ # When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
30
25
  #
31
- # @return [String]
26
+ # @return [Boolean]
32
27
  #
33
28
  EndpointParameters = Struct.new(
34
29
  :region,
35
- :use_dual_stack,
36
30
  :use_fips,
37
- :endpoint,
31
+ :use_dual_stack,
38
32
  ) do
39
33
  include Aws::Structure
40
34
 
@@ -42,27 +36,24 @@ module Aws::ECR
42
36
  class << self
43
37
  PARAM_MAP = {
44
38
  'Region' => :region,
45
- 'UseDualStack' => :use_dual_stack,
46
39
  'UseFIPS' => :use_fips,
47
- 'Endpoint' => :endpoint,
40
+ 'UseDualStack' => :use_dual_stack,
48
41
  }.freeze
49
42
  end
50
43
 
51
44
  def initialize(options = {})
52
45
  self[:region] = options[:region]
53
- self[:use_dual_stack] = options[:use_dual_stack]
54
- self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
46
  self[:use_fips] = options[:use_fips]
56
47
  self[:use_fips] = false if self[:use_fips].nil?
57
- self[:endpoint] = options[:endpoint]
48
+ self[:use_dual_stack] = options[:use_dual_stack]
49
+ self[:use_dual_stack] = false if self[:use_dual_stack].nil?
58
50
  end
59
51
 
60
52
  def self.create(config, options={})
61
53
  new({
62
54
  region: config.region,
63
- use_dual_stack: config.use_dualstack_endpoint,
64
55
  use_fips: config.use_fips_endpoint,
65
- endpoint: (config.endpoint.to_s unless config.regional_endpoint),
56
+ use_dual_stack: config.use_dualstack_endpoint,
66
57
  }.merge(options))
67
58
  end
68
59
  end
@@ -11,48 +11,29 @@ module Aws::ECR
11
11
  class EndpointProvider
12
12
  def resolve_endpoint(parameters)
13
13
  region = parameters.region
14
- use_dual_stack = parameters.use_dual_stack
15
14
  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)
19
- raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
15
+ use_dual_stack = parameters.use_dual_stack
16
+ if Aws::Endpoints::Matchers.set?(region) && (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
17
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
18
+ 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"))
19
+ return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
20
+ end
21
+ raise ArgumentError, "FIPS and dualstack are enabled, but this partition does not support one or both"
20
22
  end
21
23
  if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
- raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
- end
24
- return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
25
- 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)
29
- 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-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
31
- end
32
- raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
- end
34
- if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws")
37
- return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{region}.amazonaws.com", headers: {}, properties: {})
38
- end
39
- if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
40
- return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{region}.amazonaws.com", headers: {}, properties: {})
41
- end
42
- return Aws::Endpoints::Endpoint.new(url: "https://api.ecr-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
43
- end
44
- raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
24
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
25
+ return Aws::Endpoints::Endpoint.new(url: "https://ecr.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
45
26
  end
46
- if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
47
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
48
- return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
49
- end
50
- raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
27
+ raise ArgumentError, "Dualstack is enabled but this partition does not support dualstack"
28
+ end
29
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
30
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
31
+ return Aws::Endpoints::Endpoint.new(url: "https://ecr-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
51
32
  end
52
- return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
33
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
53
34
  end
35
+ return Aws::Endpoints::Endpoint.new(url: "https://api.ecr.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
54
36
  end
55
- raise ArgumentError, "Invalid Configuration: Missing Region"
56
37
  raise ArgumentError, 'No endpoint could be resolved'
57
38
 
58
39
  end
@@ -1613,7 +1613,8 @@ module Aws::ECR
1613
1613
  end
1614
1614
 
1615
1615
  # @!attribute [rw] name
1616
- # Basic scan type version name.
1616
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`
1617
+ # or `REGISTRY_POLICY_SCOPE`.
1617
1618
  # @return [String]
1618
1619
  #
1619
1620
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetAccountSettingRequest AWS API Documentation
@@ -1625,12 +1626,14 @@ module Aws::ECR
1625
1626
  end
1626
1627
 
1627
1628
  # @!attribute [rw] name
1628
- # Retrieves the basic scan type version name.
1629
+ # Retrieves the name of the account setting.
1629
1630
  # @return [String]
1630
1631
  #
1631
1632
  # @!attribute [rw] value
1632
- # Retrieves the value that specifies what basic scan type is being
1633
- # used: `AWS_NATIVE` or `CLAIR`.
1633
+ # The setting value for the setting name. The following are valid
1634
+ # values for the basic scan type being used: `AWS_NATIVE` or `CLAIR`.
1635
+ # The following are valid values for the registry policy scope being
1636
+ # used: `V1` or `V2`.
1634
1637
  # @return [String]
1635
1638
  #
1636
1639
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetAccountSettingResponse AWS API Documentation
@@ -2978,12 +2981,15 @@ module Aws::ECR
2978
2981
  end
2979
2982
 
2980
2983
  # @!attribute [rw] name
2981
- # Basic scan type version name.
2984
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`
2985
+ # or `REGISTRY_POLICY_SCOPE`.
2982
2986
  # @return [String]
2983
2987
  #
2984
2988
  # @!attribute [rw] value
2985
- # Setting value that determines what basic scan type is being used:
2986
- # `AWS_NATIVE` or `CLAIR`.
2989
+ # Setting value that is specified. The following are valid values for
2990
+ # the basic scan type being used: `AWS_NATIVE` or `CLAIR`. The
2991
+ # following are valid values for the registry policy scope being used:
2992
+ # `V1` or `V2`.
2987
2993
  # @return [String]
2988
2994
  #
2989
2995
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/PutAccountSettingRequest AWS API Documentation
@@ -2996,11 +3002,11 @@ module Aws::ECR
2996
3002
  end
2997
3003
 
2998
3004
  # @!attribute [rw] name
2999
- # Retrieves the the basic scan type version name.
3005
+ # Retrieves the name of the account setting.
3000
3006
  # @return [String]
3001
3007
  #
3002
3008
  # @!attribute [rw] value
3003
- # Retrieves the basic scan type value, either `AWS_NATIVE` or `-`.
3009
+ # Retrieves the value of the specified account setting.
3004
3010
  # @return [String]
3005
3011
  #
3006
3012
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/PutAccountSettingResponse AWS API Documentation
data/lib/aws-sdk-ecr.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::ECR
55
55
  autoload :EndpointProvider, 'aws-sdk-ecr/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecr/endpoints'
57
57
 
58
- GEM_VERSION = '1.88.0'
58
+ GEM_VERSION = '1.90.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.88.0
4
+ version: 1.90.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: 2024-10-18 00:00:00.000000000 Z
11
+ date: 2024-12-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core