@aws-sdk/client-ecr 3.714.0 → 3.718.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.
@@ -27,7 +27,7 @@ declare const GetAccountSettingCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Retrieves the basic scan type version name.</p>
30
+ * <p>Retrieves the account setting value for the specified setting name.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
33
33
  * ```javascript
@@ -27,8 +27,7 @@ declare const PutAccountSettingCommand_base: {
27
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
28
  };
29
29
  /**
30
- * <p>Allows you to change the basic scan type version by setting the <code>name</code>
31
- * parameter to either <code>CLAIR</code> to <code>AWS_NATIVE</code>.</p>
30
+ * <p>Allows you to change the basic scan type version or registry policy scope.</p>
32
31
  * @example
33
32
  * Use a bare-bones client and the command you need to make an API call.
34
33
  * ```javascript
@@ -841,14 +841,14 @@ export interface EncryptionConfiguration {
841
841
  * for Amazon ECR, or specify your own KMS key, which you already created.</p>
842
842
  * <p>If you use the <code>KMS_DSSE</code> encryption type, the contents of the repository
843
843
  * will be encrypted with two layers of encryption using server-side encryption with the
844
- * KMS Management Service key stored in KMS. Similar to the <code>KMS</code> encryption type, you
845
- * can either use the default Amazon Web Services managed KMS key for Amazon ECR, or specify your own KMS
846
- * key, which you've already created. </p>
844
+ * KMS Management Service key stored in KMS. Similar to the <code>KMS</code> encryption
845
+ * type, you can either use the default Amazon Web Services managed KMS key for Amazon ECR, or specify your
846
+ * own KMS key, which you've already created. </p>
847
847
  * <p>If you use the <code>AES256</code> encryption type, Amazon ECR uses server-side encryption
848
848
  * with Amazon S3-managed encryption keys which encrypts the images in the repository using an
849
849
  * AES256 encryption algorithm.</p>
850
850
  * <p>For more information, see <a href="https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html">Amazon ECR encryption at
851
- * rest</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
851
+ * rest</a> in the <i>Amazon Elastic Container Registry User Guide</i>.</p>
852
852
  * @public
853
853
  */
854
854
  encryptionType: EncryptionType | undefined;
@@ -2809,7 +2809,8 @@ export interface DescribeRepositoryCreationTemplatesResponse {
2809
2809
  */
2810
2810
  export interface GetAccountSettingRequest {
2811
2811
  /**
2812
- * <p>Basic scan type version name. </p>
2812
+ * <p>The name of the account setting, such as <code>BASIC_SCAN_TYPE_VERSION</code> or
2813
+ * <code>REGISTRY_POLICY_SCOPE</code>. </p>
2813
2814
  * @public
2814
2815
  */
2815
2816
  name: string | undefined;
@@ -2819,13 +2820,15 @@ export interface GetAccountSettingRequest {
2819
2820
  */
2820
2821
  export interface GetAccountSettingResponse {
2821
2822
  /**
2822
- * <p>Retrieves the basic scan type version name.</p>
2823
+ * <p>Retrieves the name of the account setting.</p>
2823
2824
  * @public
2824
2825
  */
2825
2826
  name?: string | undefined;
2826
2827
  /**
2827
- * <p>Retrieves the value that specifies what basic scan type is being used:
2828
- * <code>AWS_NATIVE</code> or <code>CLAIR</code>.</p>
2828
+ * <p>The setting value for the setting name. The following are valid values for the basic scan
2829
+ * type being used: <code>AWS_NATIVE</code> or <code>CLAIR</code>. The following are valid
2830
+ * values for the registry policy scope being used: <code>V1</code> or
2831
+ * <code>V2</code>.</p>
2829
2832
  * @public
2830
2833
  */
2831
2834
  value?: string | undefined;
@@ -3469,13 +3472,16 @@ export interface ListTagsForResourceResponse {
3469
3472
  */
3470
3473
  export interface PutAccountSettingRequest {
3471
3474
  /**
3472
- * <p>Basic scan type version name. </p>
3475
+ * <p>The name of the account setting, such as <code>BASIC_SCAN_TYPE_VERSION</code> or
3476
+ * <code>REGISTRY_POLICY_SCOPE</code>. </p>
3473
3477
  * @public
3474
3478
  */
3475
3479
  name: string | undefined;
3476
3480
  /**
3477
- * <p>Setting value that determines what basic scan type is being used:
3478
- * <code>AWS_NATIVE</code> or <code>CLAIR</code>.</p>
3481
+ * <p>Setting value that is specified. The following are valid values for the basic scan
3482
+ * type being used: <code>AWS_NATIVE</code> or <code>CLAIR</code>. The following are valid
3483
+ * values for the registry policy scope being used: <code>V1</code> or
3484
+ * <code>V2</code>.</p>
3479
3485
  * @public
3480
3486
  */
3481
3487
  value: string | undefined;
@@ -3485,13 +3491,12 @@ export interface PutAccountSettingRequest {
3485
3491
  */
3486
3492
  export interface PutAccountSettingResponse {
3487
3493
  /**
3488
- * <p>Retrieves the the basic scan type version name.</p>
3494
+ * <p>Retrieves the name of the account setting.</p>
3489
3495
  * @public
3490
3496
  */
3491
3497
  name?: string | undefined;
3492
3498
  /**
3493
- * <p>Retrieves the basic scan type value, either <code>AWS_NATIVE</code> or
3494
- * <code>-</code>.</p>
3499
+ * <p>Retrieves the value of the specified account setting.</p>
3495
3500
  * @public
3496
3501
  */
3497
3502
  value?: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ecr",
3
3
  "description": "AWS SDK for JavaScript Ecr Client for Node.js, Browser and React Native",
4
- "version": "3.714.0",
4
+ "version": "3.718.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-ecr",
@@ -20,40 +20,40 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.714.0",
24
- "@aws-sdk/client-sts": "3.714.0",
25
- "@aws-sdk/core": "3.714.0",
26
- "@aws-sdk/credential-provider-node": "3.714.0",
23
+ "@aws-sdk/client-sso-oidc": "3.716.0",
24
+ "@aws-sdk/client-sts": "3.716.0",
25
+ "@aws-sdk/core": "3.716.0",
26
+ "@aws-sdk/credential-provider-node": "3.716.0",
27
27
  "@aws-sdk/middleware-host-header": "3.714.0",
28
28
  "@aws-sdk/middleware-logger": "3.714.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
- "@aws-sdk/middleware-user-agent": "3.714.0",
30
+ "@aws-sdk/middleware-user-agent": "3.716.0",
31
31
  "@aws-sdk/region-config-resolver": "3.714.0",
32
32
  "@aws-sdk/types": "3.714.0",
33
33
  "@aws-sdk/util-endpoints": "3.714.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.714.0",
35
- "@aws-sdk/util-user-agent-node": "3.714.0",
35
+ "@aws-sdk/util-user-agent-node": "3.716.0",
36
36
  "@smithy/config-resolver": "^3.0.13",
37
37
  "@smithy/core": "^2.5.5",
38
38
  "@smithy/fetch-http-handler": "^4.1.2",
39
39
  "@smithy/hash-node": "^3.0.11",
40
40
  "@smithy/invalid-dependency": "^3.0.11",
41
41
  "@smithy/middleware-content-length": "^3.0.13",
42
- "@smithy/middleware-endpoint": "^3.2.5",
43
- "@smithy/middleware-retry": "^3.0.30",
42
+ "@smithy/middleware-endpoint": "^3.2.6",
43
+ "@smithy/middleware-retry": "^3.0.31",
44
44
  "@smithy/middleware-serde": "^3.0.11",
45
45
  "@smithy/middleware-stack": "^3.0.11",
46
46
  "@smithy/node-config-provider": "^3.1.12",
47
47
  "@smithy/node-http-handler": "^3.3.2",
48
48
  "@smithy/protocol-http": "^4.1.8",
49
- "@smithy/smithy-client": "^3.5.0",
49
+ "@smithy/smithy-client": "^3.5.1",
50
50
  "@smithy/types": "^3.7.2",
51
51
  "@smithy/url-parser": "^3.0.11",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.30",
56
- "@smithy/util-defaults-mode-node": "^3.0.30",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.31",
56
+ "@smithy/util-defaults-mode-node": "^3.0.31",
57
57
  "@smithy/util-endpoints": "^2.1.7",
58
58
  "@smithy/util-middleware": "^3.0.11",
59
59
  "@smithy/util-retry": "^3.0.11",