@aws-sdk/client-glacier 3.587.0 → 3.590.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.
|
@@ -123,6 +123,10 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
123
123
|
* Enables FIPS compatible endpoints.
|
|
124
124
|
*/
|
|
125
125
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
126
|
+
/**
|
|
127
|
+
* The AWS region to which this client will send requests
|
|
128
|
+
*/
|
|
129
|
+
region?: string | __Provider<string>;
|
|
126
130
|
/**
|
|
127
131
|
* Function that returns body checksums.
|
|
128
132
|
* @internal
|
|
@@ -136,10 +140,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
136
140
|
* @internal
|
|
137
141
|
*/
|
|
138
142
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
139
|
-
/**
|
|
140
|
-
* The AWS region to which this client will send requests
|
|
141
|
-
*/
|
|
142
|
-
region?: string | __Provider<string>;
|
|
143
143
|
/**
|
|
144
144
|
* Default credentials provider; Not available in browser runtime.
|
|
145
145
|
* @deprecated
|
|
@@ -18,12 +18,12 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
21
22
|
bodyChecksumGenerator: (request: import("@smithy/types").HttpRequest, options: {
|
|
22
23
|
sha256: import("@smithy/types").ChecksumConstructor | import("@smithy/types").HashConstructor;
|
|
23
24
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
24
25
|
}) => Promise<[string, string]>;
|
|
25
26
|
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
26
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
27
27
|
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
28
28
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
29
29
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
@@ -270,6 +270,7 @@ export interface ClientDefaults
|
|
|
270
270
|
serviceId?: string;
|
|
271
271
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
272
272
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
273
|
+
region?: string | __Provider<string>;
|
|
273
274
|
bodyChecksumGenerator?: (
|
|
274
275
|
request: __HttpRequest,
|
|
275
276
|
options: {
|
|
@@ -278,7 +279,6 @@ export interface ClientDefaults
|
|
|
278
279
|
}
|
|
279
280
|
) => Promise<[string, string]>;
|
|
280
281
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
281
|
-
region?: string | __Provider<string>;
|
|
282
282
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
283
283
|
maxAttempts?: number | __Provider<number>;
|
|
284
284
|
retryMode?: string | __Provider<string>;
|
|
@@ -20,6 +20,7 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
24
|
bodyChecksumGenerator: (
|
|
24
25
|
request: import("@smithy/types").HttpRequest,
|
|
25
26
|
options: {
|
|
@@ -32,7 +33,6 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
32
33
|
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
33
34
|
import("@smithy/types").UserAgent
|
|
34
35
|
>;
|
|
35
|
-
region: string | import("@smithy/types").Provider<any>;
|
|
36
36
|
credentialDefaultProvider: (
|
|
37
37
|
input: any
|
|
38
38
|
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
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.
|
|
4
|
+
"version": "3.590.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-glacier",
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
23
|
"@aws-sdk/body-checksum-browser": "3.577.0",
|
|
24
24
|
"@aws-sdk/body-checksum-node": "3.577.0",
|
|
25
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
-
"@aws-sdk/core": "3.
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/client-sso-oidc": "3.590.0",
|
|
26
|
+
"@aws-sdk/client-sts": "3.590.0",
|
|
27
|
+
"@aws-sdk/core": "3.588.0",
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.590.0",
|
|
29
29
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
|
30
30
|
"@aws-sdk/middleware-logger": "3.577.0",
|
|
31
31
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|