@aws-sdk/client-glacier 3.529.0 → 3.533.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/dist-types/commands/GetJobOutputCommand.d.ts +1 -1
- package/dist-types/commands/UploadArchiveCommand.d.ts +1 -1
- package/dist-types/commands/UploadMultipartPartCommand.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -2
- package/package.json +42 -42
|
@@ -79,7 +79,7 @@ declare const GetJobOutputCommand_base: {
|
|
|
79
79
|
* const command = new GetJobOutputCommand(input);
|
|
80
80
|
* const response = await client.send(command);
|
|
81
81
|
* // { // GetJobOutputOutput
|
|
82
|
-
* // body: "
|
|
82
|
+
* // body: "<SdkStream>", // see \@smithy/types -> StreamingBlobPayloadOutputTypes
|
|
83
83
|
* // checksum: "STRING_VALUE",
|
|
84
84
|
* // status: Number("int"),
|
|
85
85
|
* // contentRange: "STRING_VALUE",
|
|
@@ -70,7 +70,7 @@ declare const UploadArchiveCommand_base: {
|
|
|
70
70
|
* accountId: "STRING_VALUE", // required
|
|
71
71
|
* archiveDescription: "STRING_VALUE",
|
|
72
72
|
* checksum: "STRING_VALUE",
|
|
73
|
-
* body: "
|
|
73
|
+
* body: "MULTIPLE_TYPES_ACCEPTED", // see \@smithy/types -> StreamingBlobPayloadInputTypes
|
|
74
74
|
* };
|
|
75
75
|
* const command = new UploadArchiveCommand(input);
|
|
76
76
|
* const response = await client.send(command);
|
|
@@ -90,7 +90,7 @@ declare const UploadMultipartPartCommand_base: {
|
|
|
90
90
|
* uploadId: "STRING_VALUE", // required
|
|
91
91
|
* checksum: "STRING_VALUE",
|
|
92
92
|
* range: "STRING_VALUE",
|
|
93
|
-
* body: "
|
|
93
|
+
* body: "MULTIPLE_TYPES_ACCEPTED", // see \@smithy/types -> StreamingBlobPayloadInputTypes
|
|
94
94
|
* };
|
|
95
95
|
* const command = new UploadMultipartPartCommand(input);
|
|
96
96
|
* const response = await client.send(command);
|
|
@@ -24,9 +24,9 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
24
24
|
apiVersion: string;
|
|
25
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
26
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
base64Encoder:
|
|
27
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
28
28
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
utf8Encoder:
|
|
29
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
30
30
|
disableHostPrefix: boolean;
|
|
31
31
|
serviceId: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
@@ -24,9 +24,9 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
24
24
|
apiVersion: string;
|
|
25
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
26
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
27
|
-
base64Encoder:
|
|
27
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
28
28
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
29
|
-
utf8Encoder:
|
|
29
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
30
30
|
disableHostPrefix: boolean;
|
|
31
31
|
serviceId: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
@@ -11,9 +11,9 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
11
11
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
-
base64Encoder:
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
15
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
utf8Encoder:
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
17
|
disableHostPrefix: boolean;
|
|
18
18
|
serviceId: string;
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -5,7 +5,7 @@ import { GlacierClientConfig } from "./GlacierClient";
|
|
|
5
5
|
export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
6
6
|
apiVersion: string;
|
|
7
7
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
-
base64Encoder:
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
9
|
disableHostPrefix: boolean;
|
|
10
10
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
11
|
logger?: import("@smithy/types").Logger | undefined;
|
|
@@ -18,5 +18,5 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
21
|
-
utf8Encoder:
|
|
21
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
22
22
|
};
|
|
@@ -34,9 +34,9 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
34
34
|
apiVersion: string;
|
|
35
35
|
urlParser: import("@smithy/types").UrlParser;
|
|
36
36
|
base64Decoder: import("@smithy/types").Decoder;
|
|
37
|
-
base64Encoder:
|
|
37
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
38
38
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
39
|
-
utf8Encoder:
|
|
39
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
40
40
|
disableHostPrefix: boolean;
|
|
41
41
|
serviceId: string;
|
|
42
42
|
logger: import("@smithy/types").Logger;
|
|
@@ -38,9 +38,9 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
38
38
|
apiVersion: string;
|
|
39
39
|
urlParser: import("@smithy/types").UrlParser;
|
|
40
40
|
base64Decoder: import("@smithy/types").Decoder;
|
|
41
|
-
base64Encoder:
|
|
41
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
42
42
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
43
|
-
utf8Encoder:
|
|
43
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
44
44
|
disableHostPrefix: boolean;
|
|
45
45
|
serviceId: string;
|
|
46
46
|
logger: import("@smithy/types").Logger;
|
|
@@ -13,9 +13,9 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
13
13
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
14
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
15
15
|
base64Decoder: import("@smithy/types").Decoder;
|
|
16
|
-
base64Encoder:
|
|
16
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
17
17
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
18
|
-
utf8Encoder:
|
|
18
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
19
19
|
disableHostPrefix: boolean;
|
|
20
20
|
serviceId: string;
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -2,7 +2,7 @@ import { GlacierClientConfig } from "./GlacierClient";
|
|
|
2
2
|
export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
3
3
|
apiVersion: string;
|
|
4
4
|
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
-
base64Encoder:
|
|
5
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
6
6
|
disableHostPrefix: boolean;
|
|
7
7
|
endpointProvider: (
|
|
8
8
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
@@ -18,5 +18,5 @@ export declare const getRuntimeConfig: (config: GlacierClientConfig) => {
|
|
|
18
18
|
serviceId: string;
|
|
19
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
21
|
-
utf8Encoder:
|
|
21
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
22
22
|
};
|
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.533.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",
|
|
@@ -20,48 +20,48 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/body-checksum-browser": "3.
|
|
24
|
-
"@aws-sdk/body-checksum-node": "3.
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
26
|
-
"@aws-sdk/core": "3.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-sdk-glacier": "3.
|
|
32
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
33
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
34
|
-
"@aws-sdk/types": "3.
|
|
35
|
-
"@aws-sdk/util-endpoints": "3.
|
|
36
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
37
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
38
|
-
"@smithy/config-resolver": "^2.1.
|
|
39
|
-
"@smithy/core": "^1.3.
|
|
40
|
-
"@smithy/fetch-http-handler": "^2.4.
|
|
41
|
-
"@smithy/hash-node": "^2.1.
|
|
42
|
-
"@smithy/invalid-dependency": "^2.1.
|
|
43
|
-
"@smithy/middleware-content-length": "^2.1.
|
|
44
|
-
"@smithy/middleware-endpoint": "^2.4.
|
|
45
|
-
"@smithy/middleware-retry": "^2.1.
|
|
46
|
-
"@smithy/middleware-serde": "^2.1
|
|
47
|
-
"@smithy/middleware-stack": "^2.1.
|
|
48
|
-
"@smithy/node-config-provider": "^2.2.
|
|
49
|
-
"@smithy/node-http-handler": "^2.4.
|
|
50
|
-
"@smithy/protocol-http": "^3.2.
|
|
51
|
-
"@smithy/smithy-client": "^2.4.
|
|
52
|
-
"@smithy/types": "^2.
|
|
53
|
-
"@smithy/url-parser": "^2.1.
|
|
54
|
-
"@smithy/util-base64": "^2.
|
|
23
|
+
"@aws-sdk/body-checksum-browser": "3.533.0",
|
|
24
|
+
"@aws-sdk/body-checksum-node": "3.533.0",
|
|
25
|
+
"@aws-sdk/client-sts": "3.533.0",
|
|
26
|
+
"@aws-sdk/core": "3.533.0",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.533.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.533.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.533.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.533.0",
|
|
31
|
+
"@aws-sdk/middleware-sdk-glacier": "3.533.0",
|
|
32
|
+
"@aws-sdk/middleware-user-agent": "3.533.0",
|
|
33
|
+
"@aws-sdk/region-config-resolver": "3.533.0",
|
|
34
|
+
"@aws-sdk/types": "3.533.0",
|
|
35
|
+
"@aws-sdk/util-endpoints": "3.533.0",
|
|
36
|
+
"@aws-sdk/util-user-agent-browser": "3.533.0",
|
|
37
|
+
"@aws-sdk/util-user-agent-node": "3.533.0",
|
|
38
|
+
"@smithy/config-resolver": "^2.1.5",
|
|
39
|
+
"@smithy/core": "^1.3.8",
|
|
40
|
+
"@smithy/fetch-http-handler": "^2.4.5",
|
|
41
|
+
"@smithy/hash-node": "^2.1.4",
|
|
42
|
+
"@smithy/invalid-dependency": "^2.1.4",
|
|
43
|
+
"@smithy/middleware-content-length": "^2.1.4",
|
|
44
|
+
"@smithy/middleware-endpoint": "^2.4.6",
|
|
45
|
+
"@smithy/middleware-retry": "^2.1.7",
|
|
46
|
+
"@smithy/middleware-serde": "^2.2.1",
|
|
47
|
+
"@smithy/middleware-stack": "^2.1.4",
|
|
48
|
+
"@smithy/node-config-provider": "^2.2.5",
|
|
49
|
+
"@smithy/node-http-handler": "^2.4.3",
|
|
50
|
+
"@smithy/protocol-http": "^3.2.2",
|
|
51
|
+
"@smithy/smithy-client": "^2.4.5",
|
|
52
|
+
"@smithy/types": "^2.11.0",
|
|
53
|
+
"@smithy/url-parser": "^2.1.4",
|
|
54
|
+
"@smithy/util-base64": "^2.2.1",
|
|
55
55
|
"@smithy/util-body-length-browser": "^2.1.1",
|
|
56
|
-
"@smithy/util-body-length-node": "^2.2.
|
|
57
|
-
"@smithy/util-defaults-mode-browser": "^2.1.
|
|
58
|
-
"@smithy/util-defaults-mode-node": "^2.2.
|
|
59
|
-
"@smithy/util-endpoints": "^1.1.
|
|
60
|
-
"@smithy/util-middleware": "^2.1.
|
|
61
|
-
"@smithy/util-retry": "^2.1.
|
|
62
|
-
"@smithy/util-stream": "^2.1.
|
|
63
|
-
"@smithy/util-utf8": "^2.
|
|
64
|
-
"@smithy/util-waiter": "^2.1.
|
|
56
|
+
"@smithy/util-body-length-node": "^2.2.2",
|
|
57
|
+
"@smithy/util-defaults-mode-browser": "^2.1.7",
|
|
58
|
+
"@smithy/util-defaults-mode-node": "^2.2.7",
|
|
59
|
+
"@smithy/util-endpoints": "^1.1.5",
|
|
60
|
+
"@smithy/util-middleware": "^2.1.4",
|
|
61
|
+
"@smithy/util-retry": "^2.1.4",
|
|
62
|
+
"@smithy/util-stream": "^2.1.5",
|
|
63
|
+
"@smithy/util-utf8": "^2.2.0",
|
|
64
|
+
"@smithy/util-waiter": "^2.1.4",
|
|
65
65
|
"tslib": "^2.5.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|