aws-sdk-ecr 1.88.0 → 1.89.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ecr/client.rb +12 -8
- data/lib/aws-sdk-ecr/types.rb +15 -9
- data/lib/aws-sdk-ecr.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 309ded0d6861365225433a77fe649d02571fc08f13903d5c298fa9fae30be90c
|
4
|
+
data.tar.gz: 3a09ac6c6d1824068c61ef33ba8169699e3a45033c9bf77d2a2f4dc244630359
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e41e276367e6f3df51e01bf7a469b5e5745c73650c5b0e7b913f2a7b85efe83599e0a6b9fcf1ffd8998091a6a34772bfd49859c3417916631eabbaae7c37d083
|
7
|
+
data.tar.gz: dccc8e957c1a8fcdacbf21c7a9c4377a9f587c577cf059f2ea7e4433da41e78957dbadce56b56cecfed64ee2ae0b0856a9e0871dab365abe79296412139862b5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.89.0
|
data/lib/aws-sdk-ecr/client.rb
CHANGED
@@ -2102,10 +2102,11 @@ module Aws::ECR
|
|
2102
2102
|
req.send_request(options)
|
2103
2103
|
end
|
2104
2104
|
|
2105
|
-
# Retrieves the
|
2105
|
+
# Retrieves the account setting value for the specified setting name.
|
2106
2106
|
#
|
2107
2107
|
# @option params [required, String] :name
|
2108
|
-
#
|
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
|
2672
|
-
#
|
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
|
-
#
|
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
|
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.
|
3680
|
+
context[:gem_version] = '1.89.0'
|
3677
3681
|
Seahorse::Client::Request.new(handlers, context)
|
3678
3682
|
end
|
3679
3683
|
|
data/lib/aws-sdk-ecr/types.rb
CHANGED
@@ -1613,7 +1613,8 @@ module Aws::ECR
|
|
1613
1613
|
end
|
1614
1614
|
|
1615
1615
|
# @!attribute [rw] name
|
1616
|
-
#
|
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
|
1629
|
+
# Retrieves the name of the account setting.
|
1629
1630
|
# @return [String]
|
1630
1631
|
#
|
1631
1632
|
# @!attribute [rw] value
|
1632
|
-
#
|
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
|
-
#
|
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
|
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
|
3005
|
+
# Retrieves the name of the account setting.
|
3000
3006
|
# @return [String]
|
3001
3007
|
#
|
3002
3008
|
# @!attribute [rw] value
|
3003
|
-
# Retrieves the
|
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
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.
|
4
|
+
version: 1.89.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-
|
11
|
+
date: 2024-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|