@aws-sdk/client-glacier 3.100.0 → 3.105.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-glacier
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_sdk_glacier_1 = require("@aws-sdk/middleware-sdk-glacier");
10
11
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
@@ -27,6 +28,7 @@ class GlacierClient extends smithy_client_1.Client {
27
28
  this.middlewareStack.use((0, middleware_sdk_glacier_1.getGlacierPlugin)(this.config));
28
29
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
29
30
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
31
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
30
32
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
31
33
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
32
34
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getGlacierPlugin } from "@aws-sdk/middleware-sdk-glacier";
8
9
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
@@ -27,6 +28,7 @@ var GlacierClient = (function (_super) {
27
28
  _this.middlewareStack.use(getGlacierPlugin(_this.config));
28
29
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
29
30
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
31
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
32
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
33
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
34
  return _this;
@@ -220,9 +220,7 @@ export interface AddTagsToVaultInput {
220
220
  * <p>The tags to add to the vault. Each tag is composed of a key and a value. The value
221
221
  * can be an empty string.</p>
222
222
  */
223
- Tags?: {
224
- [key: string]: string;
225
- };
223
+ Tags?: Record<string, string>;
226
224
  }
227
225
  export declare namespace AddTagsToVaultInput {
228
226
  /**
@@ -741,15 +739,11 @@ export interface S3Location {
741
739
  /**
742
740
  * <p>The tag-set that is applied to the job results.</p>
743
741
  */
744
- Tagging?: {
745
- [key: string]: string;
746
- };
742
+ Tagging?: Record<string, string>;
747
743
  /**
748
744
  * <p>A map of metadata to store with the job results in Amazon S3.</p>
749
745
  */
750
- UserMetadata?: {
751
- [key: string]: string;
752
- };
746
+ UserMetadata?: Record<string, string>;
753
747
  /**
754
748
  * <p>The storage class used to store the job results.</p>
755
749
  */
@@ -2038,9 +2032,7 @@ export interface ListTagsForVaultOutput {
2038
2032
  /**
2039
2033
  * <p>The tags attached to the vault. Each tag is composed of a key and a value.</p>
2040
2034
  */
2041
- Tags?: {
2042
- [key: string]: string;
2043
- };
2035
+ Tags?: Record<string, string>;
2044
2036
  }
2045
2037
  export declare namespace ListTagsForVaultOutput {
2046
2038
  /**
@@ -122,9 +122,7 @@ export interface AddTagsToVaultInput {
122
122
 
123
123
  vaultName: string | undefined;
124
124
 
125
- Tags?: {
126
- [key: string]: string;
127
- };
125
+ Tags?: Record<string, string>;
128
126
  }
129
127
  export declare namespace AddTagsToVaultInput {
130
128
 
@@ -389,13 +387,9 @@ export interface S3Location {
389
387
 
390
388
  AccessControlList?: Grant[];
391
389
 
392
- Tagging?: {
393
- [key: string]: string;
394
- };
390
+ Tagging?: Record<string, string>;
395
391
 
396
- UserMetadata?: {
397
- [key: string]: string;
398
- };
392
+ UserMetadata?: Record<string, string>;
399
393
 
400
394
  StorageClass?: StorageClass | string;
401
395
  }
@@ -982,9 +976,7 @@ export declare namespace ListTagsForVaultInput {
982
976
 
983
977
  export interface ListTagsForVaultOutput {
984
978
 
985
- Tags?: {
986
- [key: string]: string;
987
- };
979
+ Tags?: Record<string, string>;
988
980
  }
989
981
  export declare namespace ListTagsForVaultOutput {
990
982
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glacier",
3
3
  "description": "AWS SDK for JavaScript Glacier Client for Node.js, Browser and React Native",
4
- "version": "3.100.0",
4
+ "version": "3.105.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,15 +20,16 @@
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
21
  "@aws-sdk/body-checksum-browser": "3.78.0",
22
22
  "@aws-sdk/body-checksum-node": "3.78.0",
23
- "@aws-sdk/client-sts": "3.100.0",
23
+ "@aws-sdk/client-sts": "3.105.0",
24
24
  "@aws-sdk/config-resolver": "3.80.0",
25
- "@aws-sdk/credential-provider-node": "3.100.0",
25
+ "@aws-sdk/credential-provider-node": "3.105.0",
26
26
  "@aws-sdk/fetch-http-handler": "3.78.0",
27
27
  "@aws-sdk/hash-node": "3.78.0",
28
28
  "@aws-sdk/invalid-dependency": "3.78.0",
29
29
  "@aws-sdk/middleware-content-length": "3.78.0",
30
30
  "@aws-sdk/middleware-host-header": "3.78.0",
31
31
  "@aws-sdk/middleware-logger": "3.78.0",
32
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
32
33
  "@aws-sdk/middleware-retry": "3.80.0",
33
34
  "@aws-sdk/middleware-sdk-glacier": "3.78.0",
34
35
  "@aws-sdk/middleware-serde": "3.78.0",