aws-sdk-ecr 1.119.0 → 1.120.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: cdd51c81cece8c1290051f07d199aaf62feb1f52a0576fe45379d531867e7f02
4
- data.tar.gz: 5bf6deff85f44df95f666cec177f4cb2a5842c434a1a64df18472b756a250844
3
+ metadata.gz: a39fd0d1f9f10ca5a5ad2b9af4e590051f755238500c70ed870039636cba607a
4
+ data.tar.gz: 64b15c383de2f28357049a8db6b0fca911c43819dfb945426b9fbd3cb3720d95
5
5
  SHA512:
6
- metadata.gz: f7c20a790b9f02adb2e62d30ebaed561619740669a04558160ce8729276898c94cf39dca08f73ae118621340707abc8a9d4323b4fd6b7417eda6def74a5ea30c
7
- data.tar.gz: bb5ad4682144d638d46036fa17872c6b6b62688d471d67288bc20d84d3b421fe1a149f2672187b6f5ff4fa29732d61ae60d958b7bf1fb8f1cb69511a51a8731e
6
+ metadata.gz: 02c61fed1161572bdfb6ae67d1e0da13679878d0f94205bd78ebecaaec791d1b273c4ed0cd8aff44e35edb447581c7d0f22cd754f933407a057464c27a2c9137
7
+ data.tar.gz: ba983a76b9550f543abe5690386bbbf952ae0df244ca7871f81a3a0c27ecd7cacf03599b6bd83a8ae07d5c7acddc04202984cca19433513460dc72f8f05cc457
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2026-02-16)
5
+ ------------------
6
+
7
+ * Feature - Adds support for enabling blob mounting, and removes support for Clair based image scanning
8
+
4
9
  1.119.0 (2026-01-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.119.0
1
+ 1.120.0
@@ -2375,8 +2375,8 @@ module Aws::ECR
2375
2375
  # Retrieves the account setting value for the specified setting name.
2376
2376
  #
2377
2377
  # @option params [required, String] :name
2378
- # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION` or
2379
- # `REGISTRY_POLICY_SCOPE`.
2378
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`,
2379
+ # `REGISTRY_POLICY_SCOPE`, or `BLOB_MOUNTING`.
2380
2380
  #
2381
2381
  # @return [Types::GetAccountSettingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2382
2382
  #
@@ -2849,6 +2849,11 @@ module Aws::ECR
2849
2849
 
2850
2850
  # Lists the artifacts associated with a specified subject image.
2851
2851
  #
2852
+ # <note markdown="1"> The IAM principal invoking this operation must have the
2853
+ # `ecr:BatchGetImage` permission.
2854
+ #
2855
+ # </note>
2856
+ #
2852
2857
  # @option params [String] :registry_id
2853
2858
  # The Amazon Web Services account ID associated with the registry that
2854
2859
  # contains the repository in which to list image referrers. If you do
@@ -3263,14 +3268,13 @@ module Aws::ECR
3263
3268
  # scope.
3264
3269
  #
3265
3270
  # @option params [required, String] :name
3266
- # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION` or
3267
- # `REGISTRY_POLICY_SCOPE`.
3271
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`,
3272
+ # `REGISTRY_POLICY_SCOPE`, or `BLOB_MOUNTING`.
3268
3273
  #
3269
3274
  # @option params [required, String] :value
3270
- # Setting value that is specified. The following are valid values for
3271
- # the basic scan type being used: `AWS_NATIVE` or `CLAIR`. The following
3272
- # are valid values for the registry policy scope being used: `V1` or
3273
- # `V2`.
3275
+ # Setting value that is specified. Valid value for basic scan type:
3276
+ # `AWS_NATIVE`. Valid values for registry policy scope: `V1` or `V2`.
3277
+ # Valid values for blob mounting: `ENABLED` or `DISABLED`.
3274
3278
  #
3275
3279
  # @return [Types::PutAccountSettingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3276
3280
  #
@@ -4523,7 +4527,7 @@ module Aws::ECR
4523
4527
  tracer: tracer
4524
4528
  )
4525
4529
  context[:gem_name] = 'aws-sdk-ecr'
4526
- context[:gem_version] = '1.119.0'
4530
+ context[:gem_version] = '1.120.0'
4527
4531
  Seahorse::Client::Request.new(handlers, context)
4528
4532
  end
4529
4533
 
@@ -1835,8 +1835,8 @@ module Aws::ECR
1835
1835
  end
1836
1836
 
1837
1837
  # @!attribute [rw] name
1838
- # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`
1839
- # or `REGISTRY_POLICY_SCOPE`.
1838
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`,
1839
+ # `REGISTRY_POLICY_SCOPE`, or `BLOB_MOUNTING`.
1840
1840
  # @return [String]
1841
1841
  #
1842
1842
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetAccountSettingRequest AWS API Documentation
@@ -1852,10 +1852,9 @@ module Aws::ECR
1852
1852
  # @return [String]
1853
1853
  #
1854
1854
  # @!attribute [rw] value
1855
- # The setting value for the setting name. The following are valid
1856
- # values for the basic scan type being used: `AWS_NATIVE` or `CLAIR`.
1857
- # The following are valid values for the registry policy scope being
1858
- # used: `V1` or `V2`.
1855
+ # The setting value for the setting name. Valid value for basic scan
1856
+ # type: `AWS_NATIVE`. Valid values for registry policy scope: `V1` or
1857
+ # `V2`. Valid values for blob mounting: `ENABLED` or `DISABLED`.
1859
1858
  # @return [String]
1860
1859
  #
1861
1860
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/GetAccountSettingResponse AWS API Documentation
@@ -3580,15 +3579,14 @@ module Aws::ECR
3580
3579
  end
3581
3580
 
3582
3581
  # @!attribute [rw] name
3583
- # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`
3584
- # or `REGISTRY_POLICY_SCOPE`.
3582
+ # The name of the account setting, such as `BASIC_SCAN_TYPE_VERSION`,
3583
+ # `REGISTRY_POLICY_SCOPE`, or `BLOB_MOUNTING`.
3585
3584
  # @return [String]
3586
3585
  #
3587
3586
  # @!attribute [rw] value
3588
- # Setting value that is specified. The following are valid values for
3589
- # the basic scan type being used: `AWS_NATIVE` or `CLAIR`. The
3590
- # following are valid values for the registry policy scope being used:
3591
- # `V1` or `V2`.
3587
+ # Setting value that is specified. Valid value for basic scan type:
3588
+ # `AWS_NATIVE`. Valid values for registry policy scope: `V1` or `V2`.
3589
+ # Valid values for blob mounting: `ENABLED` or `DISABLED`.
3592
3590
  # @return [String]
3593
3591
  #
3594
3592
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecr-2015-09-21/PutAccountSettingRequest 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.119.0'
58
+ GEM_VERSION = '1.120.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.119.0
4
+ version: 1.120.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services