@aws-sdk/client-glacier 3.296.0 → 3.297.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/Glacier.d.ts +34 -0
- package/dist-types/GlacierClient.d.ts +24 -4
- package/dist-types/commands/AbortMultipartUploadCommand.d.ts +16 -0
- package/dist-types/commands/AbortVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/AddTagsToVaultCommand.d.ts +16 -0
- package/dist-types/commands/CompleteMultipartUploadCommand.d.ts +16 -0
- package/dist-types/commands/CompleteVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/CreateVaultCommand.d.ts +16 -0
- package/dist-types/commands/DeleteArchiveCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVaultAccessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVaultCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVaultNotificationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeJobCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVaultCommand.d.ts +16 -0
- package/dist-types/commands/GetDataRetrievalPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetJobOutputCommand.d.ts +16 -0
- package/dist-types/commands/GetVaultAccessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/GetVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/GetVaultNotificationsCommand.d.ts +16 -0
- package/dist-types/commands/InitiateJobCommand.d.ts +16 -0
- package/dist-types/commands/InitiateMultipartUploadCommand.d.ts +16 -0
- package/dist-types/commands/InitiateVaultLockCommand.d.ts +16 -0
- package/dist-types/commands/ListJobsCommand.d.ts +16 -0
- package/dist-types/commands/ListMultipartUploadsCommand.d.ts +16 -0
- package/dist-types/commands/ListPartsCommand.d.ts +16 -0
- package/dist-types/commands/ListProvisionedCapacityCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForVaultCommand.d.ts +16 -0
- package/dist-types/commands/ListVaultsCommand.d.ts +16 -0
- package/dist-types/commands/PurchaseProvisionedCapacityCommand.d.ts +16 -0
- package/dist-types/commands/RemoveTagsFromVaultCommand.d.ts +16 -0
- package/dist-types/commands/SetDataRetrievalPolicyCommand.d.ts +16 -0
- package/dist-types/commands/SetVaultAccessPolicyCommand.d.ts +16 -0
- package/dist-types/commands/SetVaultNotificationsCommand.d.ts +16 -0
- package/dist-types/commands/UploadArchiveCommand.d.ts +17 -2
- package/dist-types/commands/UploadMultipartPartCommand.d.ts +17 -2
- package/dist-types/models/GlacierServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +120 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListJobsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListMultipartUploadsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPartsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListVaultsPaginator.d.ts +3 -0
- package/dist-types/ts3.4/commands/UploadArchiveCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/UploadMultipartPartCommand.d.ts +1 -2
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { DeleteArchiveInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteArchiveCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteArchiveCommandInput extends DeleteArchiveInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteArchiveCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteArchiveCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation deletes an archive from a vault. Subsequent requests to initiate a
|
|
18
23
|
* retrieval of this archive will fail. Archive retrievals that are in progress for this
|
|
19
24
|
* archive ID may or may not succeed according to the following scenarios:</p>
|
|
@@ -51,6 +56,8 @@ export interface DeleteArchiveCommandOutput extends __MetadataBearer {
|
|
|
51
56
|
* const response = await client.send(command);
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
59
|
+
* @param DeleteArchiveCommandInput - {@link DeleteArchiveCommandInput}
|
|
60
|
+
* @returns {@link DeleteArchiveCommandOutput}
|
|
54
61
|
* @see {@link DeleteArchiveCommandInput} for command's `input` shape.
|
|
55
62
|
* @see {@link DeleteArchiveCommandOutput} for command's `response` shape.
|
|
56
63
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -86,11 +93,20 @@ export interface DeleteArchiveCommandOutput extends __MetadataBearer {
|
|
|
86
93
|
export declare class DeleteArchiveCommand extends $Command<DeleteArchiveCommandInput, DeleteArchiveCommandOutput, GlacierClientResolvedConfig> {
|
|
87
94
|
readonly input: DeleteArchiveCommandInput;
|
|
88
95
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
89
99
|
constructor(input: DeleteArchiveCommandInput);
|
|
90
100
|
/**
|
|
91
101
|
* @internal
|
|
92
102
|
*/
|
|
93
103
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteArchiveCommandInput, DeleteArchiveCommandOutput>;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
94
107
|
private serialize;
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
95
111
|
private deserialize;
|
|
96
112
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { DeleteVaultAccessPolicyInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVaultAccessPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVaultAccessPolicyCommandInput extends DeleteVaultAccessPolicyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVaultAccessPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVaultAccessPolicyCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation deletes the access policy associated with the specified vault. The
|
|
18
23
|
* operation is eventually consistent; that is, it might take some time for Amazon S3 Glacier to
|
|
19
24
|
* completely remove the access policy, and you might still see the effect of the policy for a
|
|
@@ -31,6 +36,8 @@ export interface DeleteVaultAccessPolicyCommandOutput extends __MetadataBearer {
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param DeleteVaultAccessPolicyCommandInput - {@link DeleteVaultAccessPolicyCommandInput}
|
|
40
|
+
* @returns {@link DeleteVaultAccessPolicyCommandOutput}
|
|
34
41
|
* @see {@link DeleteVaultAccessPolicyCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link DeleteVaultAccessPolicyCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -65,11 +72,20 @@ export interface DeleteVaultAccessPolicyCommandOutput extends __MetadataBearer {
|
|
|
65
72
|
export declare class DeleteVaultAccessPolicyCommand extends $Command<DeleteVaultAccessPolicyCommandInput, DeleteVaultAccessPolicyCommandOutput, GlacierClientResolvedConfig> {
|
|
66
73
|
readonly input: DeleteVaultAccessPolicyCommandInput;
|
|
67
74
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
68
78
|
constructor(input: DeleteVaultAccessPolicyCommandInput);
|
|
69
79
|
/**
|
|
70
80
|
* @internal
|
|
71
81
|
*/
|
|
72
82
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVaultAccessPolicyCommandInput, DeleteVaultAccessPolicyCommandOutput>;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
73
86
|
private serialize;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
74
90
|
private deserialize;
|
|
75
91
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { DeleteVaultInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVaultCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVaultCommandInput extends DeleteVaultInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVaultCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVaultCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation deletes a vault. Amazon S3 Glacier will delete a vault only if there are
|
|
18
23
|
* no archives in the vault as of the last inventory and there have been no writes to the
|
|
19
24
|
* vault since the last inventory. If either of these conditions is not satisfied, the vault
|
|
@@ -44,6 +49,8 @@ export interface DeleteVaultCommandOutput extends __MetadataBearer {
|
|
|
44
49
|
* const response = await client.send(command);
|
|
45
50
|
* ```
|
|
46
51
|
*
|
|
52
|
+
* @param DeleteVaultCommandInput - {@link DeleteVaultCommandInput}
|
|
53
|
+
* @returns {@link DeleteVaultCommandOutput}
|
|
47
54
|
* @see {@link DeleteVaultCommandInput} for command's `input` shape.
|
|
48
55
|
* @see {@link DeleteVaultCommandOutput} for command's `response` shape.
|
|
49
56
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -78,11 +85,20 @@ export interface DeleteVaultCommandOutput extends __MetadataBearer {
|
|
|
78
85
|
export declare class DeleteVaultCommand extends $Command<DeleteVaultCommandInput, DeleteVaultCommandOutput, GlacierClientResolvedConfig> {
|
|
79
86
|
readonly input: DeleteVaultCommandInput;
|
|
80
87
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
81
91
|
constructor(input: DeleteVaultCommandInput);
|
|
82
92
|
/**
|
|
83
93
|
* @internal
|
|
84
94
|
*/
|
|
85
95
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVaultCommandInput, DeleteVaultCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
86
99
|
private serialize;
|
|
100
|
+
/**
|
|
101
|
+
* @internal
|
|
102
|
+
*/
|
|
87
103
|
private deserialize;
|
|
88
104
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { DeleteVaultNotificationsInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVaultNotificationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVaultNotificationsCommandInput extends DeleteVaultNotificationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVaultNotificationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVaultNotificationsCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation deletes the notification configuration set for a vault. The operation
|
|
18
23
|
* is eventually consistent; that is, it might take some time for Amazon S3 Glacier to completely
|
|
19
24
|
* disable the notifications and you might still receive some notifications for a short time
|
|
@@ -37,6 +42,8 @@ export interface DeleteVaultNotificationsCommandOutput extends __MetadataBearer
|
|
|
37
42
|
* const response = await client.send(command);
|
|
38
43
|
* ```
|
|
39
44
|
*
|
|
45
|
+
* @param DeleteVaultNotificationsCommandInput - {@link DeleteVaultNotificationsCommandInput}
|
|
46
|
+
* @returns {@link DeleteVaultNotificationsCommandOutput}
|
|
40
47
|
* @see {@link DeleteVaultNotificationsCommandInput} for command's `input` shape.
|
|
41
48
|
* @see {@link DeleteVaultNotificationsCommandOutput} for command's `response` shape.
|
|
42
49
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface DeleteVaultNotificationsCommandOutput extends __MetadataBearer
|
|
|
71
78
|
export declare class DeleteVaultNotificationsCommand extends $Command<DeleteVaultNotificationsCommandInput, DeleteVaultNotificationsCommandOutput, GlacierClientResolvedConfig> {
|
|
72
79
|
readonly input: DeleteVaultNotificationsCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: DeleteVaultNotificationsCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVaultNotificationsCommandInput, DeleteVaultNotificationsCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { DescribeJobInput, GlacierJobDescription } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeJobCommandInput extends DescribeJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeJobCommandOutput extends GlacierJobDescription, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation returns information about a job you previously initiated, including
|
|
18
23
|
* the job initiation date, the user who initiated the job, the job status code/message and
|
|
19
24
|
* the Amazon SNS topic to notify after Amazon S3 Glacier (Glacier) completes the job. For more information
|
|
@@ -48,6 +53,8 @@ export interface DescribeJobCommandOutput extends GlacierJobDescription, __Metad
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param DescribeJobCommandInput - {@link DescribeJobCommandInput}
|
|
57
|
+
* @returns {@link DescribeJobCommandOutput}
|
|
51
58
|
* @see {@link DescribeJobCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link DescribeJobCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -96,11 +103,20 @@ export interface DescribeJobCommandOutput extends GlacierJobDescription, __Metad
|
|
|
96
103
|
export declare class DescribeJobCommand extends $Command<DescribeJobCommandInput, DescribeJobCommandOutput, GlacierClientResolvedConfig> {
|
|
97
104
|
readonly input: DescribeJobCommandInput;
|
|
98
105
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
106
|
+
/**
|
|
107
|
+
* @public
|
|
108
|
+
*/
|
|
99
109
|
constructor(input: DescribeJobCommandInput);
|
|
100
110
|
/**
|
|
101
111
|
* @internal
|
|
102
112
|
*/
|
|
103
113
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeJobCommandInput, DescribeJobCommandOutput>;
|
|
114
|
+
/**
|
|
115
|
+
* @internal
|
|
116
|
+
*/
|
|
104
117
|
private serialize;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
105
121
|
private deserialize;
|
|
106
122
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { DescribeVaultInput, DescribeVaultOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeVaultCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeVaultCommandInput extends DescribeVaultInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeVaultCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeVaultCommandOutput extends DescribeVaultOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation returns information about a vault, including the vault's Amazon
|
|
18
23
|
* Resource Name (ARN), the date the vault was created, the number of archives it contains,
|
|
19
24
|
* and the total size of all the archives in the vault. The number of archives and their total
|
|
@@ -42,6 +47,8 @@ export interface DescribeVaultCommandOutput extends DescribeVaultOutput, __Metad
|
|
|
42
47
|
* const response = await client.send(command);
|
|
43
48
|
* ```
|
|
44
49
|
*
|
|
50
|
+
* @param DescribeVaultCommandInput - {@link DescribeVaultCommandInput}
|
|
51
|
+
* @returns {@link DescribeVaultCommandOutput}
|
|
45
52
|
* @see {@link DescribeVaultCommandInput} for command's `input` shape.
|
|
46
53
|
* @see {@link DescribeVaultCommandOutput} for command's `response` shape.
|
|
47
54
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -85,11 +92,20 @@ export interface DescribeVaultCommandOutput extends DescribeVaultOutput, __Metad
|
|
|
85
92
|
export declare class DescribeVaultCommand extends $Command<DescribeVaultCommandInput, DescribeVaultCommandOutput, GlacierClientResolvedConfig> {
|
|
86
93
|
readonly input: DescribeVaultCommandInput;
|
|
87
94
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
88
98
|
constructor(input: DescribeVaultCommandInput);
|
|
89
99
|
/**
|
|
90
100
|
* @internal
|
|
91
101
|
*/
|
|
92
102
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVaultCommandInput, DescribeVaultCommandOutput>;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
93
106
|
private serialize;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
94
110
|
private deserialize;
|
|
95
111
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { GetDataRetrievalPolicyInput, GetDataRetrievalPolicyOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetDataRetrievalPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetDataRetrievalPolicyCommandInput extends GetDataRetrievalPolicyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetDataRetrievalPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetDataRetrievalPolicyCommandOutput extends GetDataRetrievalPolicyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation returns the current data retrieval policy for the account and region
|
|
18
23
|
* specified in the GET request. For more information about data retrieval policies, see
|
|
19
24
|
* <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/data-retrieval-policy.html">Amazon Glacier Data Retrieval Policies</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetDataRetrievalPolicyCommandOutput extends GetDataRetrievalPol
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetDataRetrievalPolicyCommandInput - {@link GetDataRetrievalPolicyCommandInput}
|
|
36
|
+
* @returns {@link GetDataRetrievalPolicyCommandOutput}
|
|
30
37
|
* @see {@link GetDataRetrievalPolicyCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetDataRetrievalPolicyCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface GetDataRetrievalPolicyCommandOutput extends GetDataRetrievalPol
|
|
|
68
75
|
export declare class GetDataRetrievalPolicyCommand extends $Command<GetDataRetrievalPolicyCommandInput, GetDataRetrievalPolicyCommandOutput, GlacierClientResolvedConfig> {
|
|
69
76
|
readonly input: GetDataRetrievalPolicyCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: GetDataRetrievalPolicyCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetDataRetrievalPolicyCommandInput, GetDataRetrievalPolicyCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { GetJobOutputInput, GetJobOutputOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetJobOutputCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetJobOutputCommandInput extends GetJobOutputInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetJobOutputCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetJobOutputCommandOutput extends __WithSdkStreamMixin<GetJobOutputOutput, "body">, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation downloads the output of the job you initiated using <a>InitiateJob</a>. Depending on the job type you specified when you initiated the
|
|
18
23
|
* job, the output will be either the content of an archive or a vault inventory.</p>
|
|
19
24
|
*
|
|
@@ -61,6 +66,8 @@ export interface GetJobOutputCommandOutput extends __WithSdkStreamMixin<GetJobOu
|
|
|
61
66
|
* const response = await client.send(command);
|
|
62
67
|
* ```
|
|
63
68
|
*
|
|
69
|
+
* @param GetJobOutputCommandInput - {@link GetJobOutputCommandInput}
|
|
70
|
+
* @returns {@link GetJobOutputCommandOutput}
|
|
64
71
|
* @see {@link GetJobOutputCommandInput} for command's `input` shape.
|
|
65
72
|
* @see {@link GetJobOutputCommandOutput} for command's `response` shape.
|
|
66
73
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -105,11 +112,20 @@ export interface GetJobOutputCommandOutput extends __WithSdkStreamMixin<GetJobOu
|
|
|
105
112
|
export declare class GetJobOutputCommand extends $Command<GetJobOutputCommandInput, GetJobOutputCommandOutput, GlacierClientResolvedConfig> {
|
|
106
113
|
readonly input: GetJobOutputCommandInput;
|
|
107
114
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
108
118
|
constructor(input: GetJobOutputCommandInput);
|
|
109
119
|
/**
|
|
110
120
|
* @internal
|
|
111
121
|
*/
|
|
112
122
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobOutputCommandInput, GetJobOutputCommandOutput>;
|
|
123
|
+
/**
|
|
124
|
+
* @internal
|
|
125
|
+
*/
|
|
113
126
|
private serialize;
|
|
127
|
+
/**
|
|
128
|
+
* @internal
|
|
129
|
+
*/
|
|
114
130
|
private deserialize;
|
|
115
131
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { GetVaultAccessPolicyInput, GetVaultAccessPolicyOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetVaultAccessPolicyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetVaultAccessPolicyCommandInput extends GetVaultAccessPolicyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetVaultAccessPolicyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetVaultAccessPolicyCommandOutput extends GetVaultAccessPolicyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation retrieves the <code>access-policy</code> subresource set on the vault;
|
|
18
23
|
* for more information on setting this subresource, see <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/api-SetVaultAccessPolicy.html">Set Vault Access Policy
|
|
19
24
|
* (PUT access-policy)</a>. If there is no access policy set on the vault, the
|
|
@@ -30,6 +35,8 @@ export interface GetVaultAccessPolicyCommandOutput extends GetVaultAccessPolicyO
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param GetVaultAccessPolicyCommandInput - {@link GetVaultAccessPolicyCommandInput}
|
|
39
|
+
* @returns {@link GetVaultAccessPolicyCommandOutput}
|
|
33
40
|
* @see {@link GetVaultAccessPolicyCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link GetVaultAccessPolicyCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface GetVaultAccessPolicyCommandOutput extends GetVaultAccessPolicyO
|
|
|
71
78
|
export declare class GetVaultAccessPolicyCommand extends $Command<GetVaultAccessPolicyCommandInput, GetVaultAccessPolicyCommandOutput, GlacierClientResolvedConfig> {
|
|
72
79
|
readonly input: GetVaultAccessPolicyCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: GetVaultAccessPolicyCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVaultAccessPolicyCommandInput, GetVaultAccessPolicyCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { GetVaultLockInput, GetVaultLockOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetVaultLockCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetVaultLockCommandInput extends GetVaultLockInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetVaultLockCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetVaultLockCommandOutput extends GetVaultLockOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation retrieves the following attributes from the <code>lock-policy</code>
|
|
18
23
|
* subresource set on the specified vault: </p>
|
|
19
24
|
* <ul>
|
|
@@ -52,6 +57,8 @@ export interface GetVaultLockCommandOutput extends GetVaultLockOutput, __Metadat
|
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
|
54
59
|
*
|
|
60
|
+
* @param GetVaultLockCommandInput - {@link GetVaultLockCommandInput}
|
|
61
|
+
* @returns {@link GetVaultLockCommandOutput}
|
|
55
62
|
* @see {@link GetVaultLockCommandInput} for command's `input` shape.
|
|
56
63
|
* @see {@link GetVaultLockCommandOutput} for command's `response` shape.
|
|
57
64
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -94,11 +101,20 @@ export interface GetVaultLockCommandOutput extends GetVaultLockOutput, __Metadat
|
|
|
94
101
|
export declare class GetVaultLockCommand extends $Command<GetVaultLockCommandInput, GetVaultLockCommandOutput, GlacierClientResolvedConfig> {
|
|
95
102
|
readonly input: GetVaultLockCommandInput;
|
|
96
103
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
*/
|
|
97
107
|
constructor(input: GetVaultLockCommandInput);
|
|
98
108
|
/**
|
|
99
109
|
* @internal
|
|
100
110
|
*/
|
|
101
111
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVaultLockCommandInput, GetVaultLockCommandOutput>;
|
|
112
|
+
/**
|
|
113
|
+
* @internal
|
|
114
|
+
*/
|
|
102
115
|
private serialize;
|
|
116
|
+
/**
|
|
117
|
+
* @internal
|
|
118
|
+
*/
|
|
103
119
|
private deserialize;
|
|
104
120
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { GetVaultNotificationsInput, GetVaultNotificationsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetVaultNotificationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetVaultNotificationsCommandInput extends GetVaultNotificationsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetVaultNotificationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetVaultNotificationsCommandOutput extends GetVaultNotificationsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation retrieves the <code>notification-configuration</code> subresource of
|
|
18
23
|
* the specified vault.</p>
|
|
19
24
|
*
|
|
@@ -40,6 +45,8 @@ export interface GetVaultNotificationsCommandOutput extends GetVaultNotification
|
|
|
40
45
|
* const response = await client.send(command);
|
|
41
46
|
* ```
|
|
42
47
|
*
|
|
48
|
+
* @param GetVaultNotificationsCommandInput - {@link GetVaultNotificationsCommandInput}
|
|
49
|
+
* @returns {@link GetVaultNotificationsCommandOutput}
|
|
43
50
|
* @see {@link GetVaultNotificationsCommandInput} for command's `input` shape.
|
|
44
51
|
* @see {@link GetVaultNotificationsCommandOutput} for command's `response` shape.
|
|
45
52
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -85,11 +92,20 @@ export interface GetVaultNotificationsCommandOutput extends GetVaultNotification
|
|
|
85
92
|
export declare class GetVaultNotificationsCommand extends $Command<GetVaultNotificationsCommandInput, GetVaultNotificationsCommandOutput, GlacierClientResolvedConfig> {
|
|
86
93
|
readonly input: GetVaultNotificationsCommandInput;
|
|
87
94
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
95
|
+
/**
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
88
98
|
constructor(input: GetVaultNotificationsCommandInput);
|
|
89
99
|
/**
|
|
90
100
|
* @internal
|
|
91
101
|
*/
|
|
92
102
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetVaultNotificationsCommandInput, GetVaultNotificationsCommandOutput>;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
93
106
|
private serialize;
|
|
107
|
+
/**
|
|
108
|
+
* @internal
|
|
109
|
+
*/
|
|
94
110
|
private deserialize;
|
|
95
111
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { InitiateJobInput, InitiateJobOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link InitiateJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface InitiateJobCommandInput extends InitiateJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link InitiateJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation initiates a job of the specified type, which can be a select, an archival retrieval,
|
|
18
23
|
* or a vault retrieval. For more information about using this operation,
|
|
19
24
|
* see the documentation for the underlying REST API <a href="https://docs.aws.amazon.com/amazonglacier/latest/dev/api-initiate-job-post.html">Initiate
|
|
@@ -29,6 +34,8 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param InitiateJobCommandInput - {@link InitiateJobCommandInput}
|
|
38
|
+
* @returns {@link InitiateJobCommandOutput}
|
|
32
39
|
* @see {@link InitiateJobCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link InitiateJobCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -84,11 +91,20 @@ export interface InitiateJobCommandOutput extends InitiateJobOutput, __MetadataB
|
|
|
84
91
|
export declare class InitiateJobCommand extends $Command<InitiateJobCommandInput, InitiateJobCommandOutput, GlacierClientResolvedConfig> {
|
|
85
92
|
readonly input: InitiateJobCommandInput;
|
|
86
93
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
*/
|
|
87
97
|
constructor(input: InitiateJobCommandInput);
|
|
88
98
|
/**
|
|
89
99
|
* @internal
|
|
90
100
|
*/
|
|
91
101
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InitiateJobCommandInput, InitiateJobCommandOutput>;
|
|
102
|
+
/**
|
|
103
|
+
* @internal
|
|
104
|
+
*/
|
|
92
105
|
private serialize;
|
|
106
|
+
/**
|
|
107
|
+
* @internal
|
|
108
|
+
*/
|
|
93
109
|
private deserialize;
|
|
94
110
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { GlacierClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlacierClient";
|
|
5
5
|
import { InitiateMultipartUploadInput, InitiateMultipartUploadOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link InitiateMultipartUploadCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface InitiateMultipartUploadCommandInput extends InitiateMultipartUploadInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link InitiateMultipartUploadCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface InitiateMultipartUploadCommandOutput extends InitiateMultipartUploadOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>This operation initiates a multipart upload. Amazon S3 Glacier creates a multipart
|
|
18
23
|
* upload resource and returns its ID in the response. The multipart upload ID is used in
|
|
19
24
|
* subsequent requests to upload parts of an archive (see <a>UploadMultipartPart</a>).</p>
|
|
@@ -58,6 +63,8 @@ export interface InitiateMultipartUploadCommandOutput extends InitiateMultipartU
|
|
|
58
63
|
* const response = await client.send(command);
|
|
59
64
|
* ```
|
|
60
65
|
*
|
|
66
|
+
* @param InitiateMultipartUploadCommandInput - {@link InitiateMultipartUploadCommandInput}
|
|
67
|
+
* @returns {@link InitiateMultipartUploadCommandOutput}
|
|
61
68
|
* @see {@link InitiateMultipartUploadCommandInput} for command's `input` shape.
|
|
62
69
|
* @see {@link InitiateMultipartUploadCommandOutput} for command's `response` shape.
|
|
63
70
|
* @see {@link GlacierClientResolvedConfig | config} for GlacierClient's `config` shape.
|
|
@@ -99,11 +106,20 @@ export interface InitiateMultipartUploadCommandOutput extends InitiateMultipartU
|
|
|
99
106
|
export declare class InitiateMultipartUploadCommand extends $Command<InitiateMultipartUploadCommandInput, InitiateMultipartUploadCommandOutput, GlacierClientResolvedConfig> {
|
|
100
107
|
readonly input: InitiateMultipartUploadCommandInput;
|
|
101
108
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
109
|
+
/**
|
|
110
|
+
* @public
|
|
111
|
+
*/
|
|
102
112
|
constructor(input: InitiateMultipartUploadCommandInput);
|
|
103
113
|
/**
|
|
104
114
|
* @internal
|
|
105
115
|
*/
|
|
106
116
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GlacierClientResolvedConfig, options?: __HttpHandlerOptions): Handler<InitiateMultipartUploadCommandInput, InitiateMultipartUploadCommandOutput>;
|
|
117
|
+
/**
|
|
118
|
+
* @internal
|
|
119
|
+
*/
|
|
107
120
|
private serialize;
|
|
121
|
+
/**
|
|
122
|
+
* @internal
|
|
123
|
+
*/
|
|
108
124
|
private deserialize;
|
|
109
125
|
}
|