@aws-sdk/client-glacier 3.1087.0 → 3.1089.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-cjs/index.js +1 -1
- package/dist-types/ts3.4/Glacier.d.ts +112 -142
- package/dist-types/ts3.4/GlacierClient.d.ts +23 -54
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/AbortVaultLockCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/AddTagsToVaultCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CompleteVaultLockCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/CreateVaultCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteArchiveCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteVaultAccessPolicyCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteVaultCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteVaultNotificationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeVaultCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDataRetrievalPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetJobOutputCommand.d.ts +4 -8
- package/dist-types/ts3.4/commands/GetVaultAccessPolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetVaultLockCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetVaultNotificationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/InitiateJobCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/InitiateMultipartUploadCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/InitiateVaultLockCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPartsCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/ListProvisionedCapacityCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListTagsForVaultCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListVaultsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/PurchaseProvisionedCapacityCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RemoveTagsFromVaultCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/SetDataRetrievalPolicyCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/SetVaultAccessPolicyCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/SetVaultNotificationsCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/UploadArchiveCommand.d.ts +8 -11
- package/dist-types/ts3.4/commands/UploadMultipartPartCommand.d.ts +9 -17
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +9 -27
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListVaultsPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +11 -26
- package/dist-types/ts3.4/runtimeConfig.d.ts +10 -20
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +11 -26
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/dist-types/ts3.4/waiters/waitForVaultExists.d.ts +3 -5
- package/dist-types/ts3.4/waiters/waitForVaultNotExists.d.ts +3 -5
- package/package.json +41 -41
package/dist-cjs/index.js
CHANGED
|
@@ -25,10 +25,7 @@ import {
|
|
|
25
25
|
CompleteVaultLockCommandInput,
|
|
26
26
|
CompleteVaultLockCommandOutput,
|
|
27
27
|
} from "./commands/CompleteVaultLockCommand";
|
|
28
|
-
import {
|
|
29
|
-
CreateVaultCommandInput,
|
|
30
|
-
CreateVaultCommandOutput,
|
|
31
|
-
} from "./commands/CreateVaultCommand";
|
|
28
|
+
import { CreateVaultCommandInput, CreateVaultCommandOutput } from "./commands/CreateVaultCommand";
|
|
32
29
|
import {
|
|
33
30
|
DeleteArchiveCommandInput,
|
|
34
31
|
DeleteArchiveCommandOutput,
|
|
@@ -37,18 +34,12 @@ import {
|
|
|
37
34
|
DeleteVaultAccessPolicyCommandInput,
|
|
38
35
|
DeleteVaultAccessPolicyCommandOutput,
|
|
39
36
|
} from "./commands/DeleteVaultAccessPolicyCommand";
|
|
40
|
-
import {
|
|
41
|
-
DeleteVaultCommandInput,
|
|
42
|
-
DeleteVaultCommandOutput,
|
|
43
|
-
} from "./commands/DeleteVaultCommand";
|
|
37
|
+
import { DeleteVaultCommandInput, DeleteVaultCommandOutput } from "./commands/DeleteVaultCommand";
|
|
44
38
|
import {
|
|
45
39
|
DeleteVaultNotificationsCommandInput,
|
|
46
40
|
DeleteVaultNotificationsCommandOutput,
|
|
47
41
|
} from "./commands/DeleteVaultNotificationsCommand";
|
|
48
|
-
import {
|
|
49
|
-
DescribeJobCommandInput,
|
|
50
|
-
DescribeJobCommandOutput,
|
|
51
|
-
} from "./commands/DescribeJobCommand";
|
|
42
|
+
import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
52
43
|
import {
|
|
53
44
|
DescribeVaultCommandInput,
|
|
54
45
|
DescribeVaultCommandOutput,
|
|
@@ -73,10 +64,7 @@ import {
|
|
|
73
64
|
GetVaultNotificationsCommandInput,
|
|
74
65
|
GetVaultNotificationsCommandOutput,
|
|
75
66
|
} from "./commands/GetVaultNotificationsCommand";
|
|
76
|
-
import {
|
|
77
|
-
InitiateJobCommandInput,
|
|
78
|
-
InitiateJobCommandOutput,
|
|
79
|
-
} from "./commands/InitiateJobCommand";
|
|
67
|
+
import { InitiateJobCommandInput, InitiateJobCommandOutput } from "./commands/InitiateJobCommand";
|
|
80
68
|
import {
|
|
81
69
|
InitiateMultipartUploadCommandInput,
|
|
82
70
|
InitiateMultipartUploadCommandOutput,
|
|
@@ -85,18 +73,12 @@ import {
|
|
|
85
73
|
InitiateVaultLockCommandInput,
|
|
86
74
|
InitiateVaultLockCommandOutput,
|
|
87
75
|
} from "./commands/InitiateVaultLockCommand";
|
|
88
|
-
import {
|
|
89
|
-
ListJobsCommandInput,
|
|
90
|
-
ListJobsCommandOutput,
|
|
91
|
-
} from "./commands/ListJobsCommand";
|
|
76
|
+
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
92
77
|
import {
|
|
93
78
|
ListMultipartUploadsCommandInput,
|
|
94
79
|
ListMultipartUploadsCommandOutput,
|
|
95
80
|
} from "./commands/ListMultipartUploadsCommand";
|
|
96
|
-
import {
|
|
97
|
-
ListPartsCommandInput,
|
|
98
|
-
ListPartsCommandOutput,
|
|
99
|
-
} from "./commands/ListPartsCommand";
|
|
81
|
+
import { ListPartsCommandInput, ListPartsCommandOutput } from "./commands/ListPartsCommand";
|
|
100
82
|
import {
|
|
101
83
|
ListProvisionedCapacityCommandInput,
|
|
102
84
|
ListProvisionedCapacityCommandOutput,
|
|
@@ -105,10 +87,7 @@ import {
|
|
|
105
87
|
ListTagsForVaultCommandInput,
|
|
106
88
|
ListTagsForVaultCommandOutput,
|
|
107
89
|
} from "./commands/ListTagsForVaultCommand";
|
|
108
|
-
import {
|
|
109
|
-
ListVaultsCommandInput,
|
|
110
|
-
ListVaultsCommandOutput,
|
|
111
|
-
} from "./commands/ListVaultsCommand";
|
|
90
|
+
import { ListVaultsCommandInput, ListVaultsCommandOutput } from "./commands/ListVaultsCommand";
|
|
112
91
|
import {
|
|
113
92
|
PurchaseProvisionedCapacityCommandInput,
|
|
114
93
|
PurchaseProvisionedCapacityCommandOutput,
|
|
@@ -142,478 +121,469 @@ import { ResourceNotFoundException } from "./models/errors";
|
|
|
142
121
|
export interface Glacier {
|
|
143
122
|
abortMultipartUpload(
|
|
144
123
|
args: AbortMultipartUploadCommandInput,
|
|
145
|
-
options?: __HttpHandlerOptions
|
|
124
|
+
options?: __HttpHandlerOptions,
|
|
146
125
|
): Promise<AbortMultipartUploadCommandOutput>;
|
|
147
126
|
abortMultipartUpload(
|
|
148
127
|
args: AbortMultipartUploadCommandInput,
|
|
149
|
-
cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void
|
|
128
|
+
cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void,
|
|
150
129
|
): void;
|
|
151
130
|
abortMultipartUpload(
|
|
152
131
|
args: AbortMultipartUploadCommandInput,
|
|
153
132
|
options: __HttpHandlerOptions,
|
|
154
|
-
cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void
|
|
133
|
+
cb: (err: any, data?: AbortMultipartUploadCommandOutput) => void,
|
|
155
134
|
): void;
|
|
156
135
|
abortVaultLock(
|
|
157
136
|
args: AbortVaultLockCommandInput,
|
|
158
|
-
options?: __HttpHandlerOptions
|
|
137
|
+
options?: __HttpHandlerOptions,
|
|
159
138
|
): Promise<AbortVaultLockCommandOutput>;
|
|
160
139
|
abortVaultLock(
|
|
161
140
|
args: AbortVaultLockCommandInput,
|
|
162
|
-
cb: (err: any, data?: AbortVaultLockCommandOutput) => void
|
|
141
|
+
cb: (err: any, data?: AbortVaultLockCommandOutput) => void,
|
|
163
142
|
): void;
|
|
164
143
|
abortVaultLock(
|
|
165
144
|
args: AbortVaultLockCommandInput,
|
|
166
145
|
options: __HttpHandlerOptions,
|
|
167
|
-
cb: (err: any, data?: AbortVaultLockCommandOutput) => void
|
|
146
|
+
cb: (err: any, data?: AbortVaultLockCommandOutput) => void,
|
|
168
147
|
): void;
|
|
169
148
|
addTagsToVault(
|
|
170
149
|
args: AddTagsToVaultCommandInput,
|
|
171
|
-
options?: __HttpHandlerOptions
|
|
150
|
+
options?: __HttpHandlerOptions,
|
|
172
151
|
): Promise<AddTagsToVaultCommandOutput>;
|
|
173
152
|
addTagsToVault(
|
|
174
153
|
args: AddTagsToVaultCommandInput,
|
|
175
|
-
cb: (err: any, data?: AddTagsToVaultCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: AddTagsToVaultCommandOutput) => void,
|
|
176
155
|
): void;
|
|
177
156
|
addTagsToVault(
|
|
178
157
|
args: AddTagsToVaultCommandInput,
|
|
179
158
|
options: __HttpHandlerOptions,
|
|
180
|
-
cb: (err: any, data?: AddTagsToVaultCommandOutput) => void
|
|
159
|
+
cb: (err: any, data?: AddTagsToVaultCommandOutput) => void,
|
|
181
160
|
): void;
|
|
182
161
|
completeMultipartUpload(
|
|
183
162
|
args: CompleteMultipartUploadCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
163
|
+
options?: __HttpHandlerOptions,
|
|
185
164
|
): Promise<CompleteMultipartUploadCommandOutput>;
|
|
186
165
|
completeMultipartUpload(
|
|
187
166
|
args: CompleteMultipartUploadCommandInput,
|
|
188
|
-
cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void,
|
|
189
168
|
): void;
|
|
190
169
|
completeMultipartUpload(
|
|
191
170
|
args: CompleteMultipartUploadCommandInput,
|
|
192
171
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void
|
|
172
|
+
cb: (err: any, data?: CompleteMultipartUploadCommandOutput) => void,
|
|
194
173
|
): void;
|
|
195
174
|
completeVaultLock(
|
|
196
175
|
args: CompleteVaultLockCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
176
|
+
options?: __HttpHandlerOptions,
|
|
198
177
|
): Promise<CompleteVaultLockCommandOutput>;
|
|
199
178
|
completeVaultLock(
|
|
200
179
|
args: CompleteVaultLockCommandInput,
|
|
201
|
-
cb: (err: any, data?: CompleteVaultLockCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: CompleteVaultLockCommandOutput) => void,
|
|
202
181
|
): void;
|
|
203
182
|
completeVaultLock(
|
|
204
183
|
args: CompleteVaultLockCommandInput,
|
|
205
184
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: CompleteVaultLockCommandOutput) => void
|
|
185
|
+
cb: (err: any, data?: CompleteVaultLockCommandOutput) => void,
|
|
207
186
|
): void;
|
|
208
187
|
createVault(
|
|
209
188
|
args: CreateVaultCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
189
|
+
options?: __HttpHandlerOptions,
|
|
211
190
|
): Promise<CreateVaultCommandOutput>;
|
|
212
191
|
createVault(
|
|
213
192
|
args: CreateVaultCommandInput,
|
|
214
|
-
cb: (err: any, data?: CreateVaultCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: CreateVaultCommandOutput) => void,
|
|
215
194
|
): void;
|
|
216
195
|
createVault(
|
|
217
196
|
args: CreateVaultCommandInput,
|
|
218
197
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: CreateVaultCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: CreateVaultCommandOutput) => void,
|
|
220
199
|
): void;
|
|
221
200
|
deleteArchive(
|
|
222
201
|
args: DeleteArchiveCommandInput,
|
|
223
|
-
options?: __HttpHandlerOptions
|
|
202
|
+
options?: __HttpHandlerOptions,
|
|
224
203
|
): Promise<DeleteArchiveCommandOutput>;
|
|
225
204
|
deleteArchive(
|
|
226
205
|
args: DeleteArchiveCommandInput,
|
|
227
|
-
cb: (err: any, data?: DeleteArchiveCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: DeleteArchiveCommandOutput) => void,
|
|
228
207
|
): void;
|
|
229
208
|
deleteArchive(
|
|
230
209
|
args: DeleteArchiveCommandInput,
|
|
231
210
|
options: __HttpHandlerOptions,
|
|
232
|
-
cb: (err: any, data?: DeleteArchiveCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: DeleteArchiveCommandOutput) => void,
|
|
233
212
|
): void;
|
|
234
213
|
deleteVault(
|
|
235
214
|
args: DeleteVaultCommandInput,
|
|
236
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
237
216
|
): Promise<DeleteVaultCommandOutput>;
|
|
238
217
|
deleteVault(
|
|
239
218
|
args: DeleteVaultCommandInput,
|
|
240
|
-
cb: (err: any, data?: DeleteVaultCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: DeleteVaultCommandOutput) => void,
|
|
241
220
|
): void;
|
|
242
221
|
deleteVault(
|
|
243
222
|
args: DeleteVaultCommandInput,
|
|
244
223
|
options: __HttpHandlerOptions,
|
|
245
|
-
cb: (err: any, data?: DeleteVaultCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: DeleteVaultCommandOutput) => void,
|
|
246
225
|
): void;
|
|
247
226
|
deleteVaultAccessPolicy(
|
|
248
227
|
args: DeleteVaultAccessPolicyCommandInput,
|
|
249
|
-
options?: __HttpHandlerOptions
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
250
229
|
): Promise<DeleteVaultAccessPolicyCommandOutput>;
|
|
251
230
|
deleteVaultAccessPolicy(
|
|
252
231
|
args: DeleteVaultAccessPolicyCommandInput,
|
|
253
|
-
cb: (err: any, data?: DeleteVaultAccessPolicyCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: DeleteVaultAccessPolicyCommandOutput) => void,
|
|
254
233
|
): void;
|
|
255
234
|
deleteVaultAccessPolicy(
|
|
256
235
|
args: DeleteVaultAccessPolicyCommandInput,
|
|
257
236
|
options: __HttpHandlerOptions,
|
|
258
|
-
cb: (err: any, data?: DeleteVaultAccessPolicyCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: DeleteVaultAccessPolicyCommandOutput) => void,
|
|
259
238
|
): void;
|
|
260
239
|
deleteVaultNotifications(
|
|
261
240
|
args: DeleteVaultNotificationsCommandInput,
|
|
262
|
-
options?: __HttpHandlerOptions
|
|
241
|
+
options?: __HttpHandlerOptions,
|
|
263
242
|
): Promise<DeleteVaultNotificationsCommandOutput>;
|
|
264
243
|
deleteVaultNotifications(
|
|
265
244
|
args: DeleteVaultNotificationsCommandInput,
|
|
266
|
-
cb: (err: any, data?: DeleteVaultNotificationsCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: DeleteVaultNotificationsCommandOutput) => void,
|
|
267
246
|
): void;
|
|
268
247
|
deleteVaultNotifications(
|
|
269
248
|
args: DeleteVaultNotificationsCommandInput,
|
|
270
249
|
options: __HttpHandlerOptions,
|
|
271
|
-
cb: (err: any, data?: DeleteVaultNotificationsCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: DeleteVaultNotificationsCommandOutput) => void,
|
|
272
251
|
): void;
|
|
273
252
|
describeJob(
|
|
274
253
|
args: DescribeJobCommandInput,
|
|
275
|
-
options?: __HttpHandlerOptions
|
|
254
|
+
options?: __HttpHandlerOptions,
|
|
276
255
|
): Promise<DescribeJobCommandOutput>;
|
|
277
256
|
describeJob(
|
|
278
257
|
args: DescribeJobCommandInput,
|
|
279
|
-
cb: (err: any, data?: DescribeJobCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: DescribeJobCommandOutput) => void,
|
|
280
259
|
): void;
|
|
281
260
|
describeJob(
|
|
282
261
|
args: DescribeJobCommandInput,
|
|
283
262
|
options: __HttpHandlerOptions,
|
|
284
|
-
cb: (err: any, data?: DescribeJobCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: DescribeJobCommandOutput) => void,
|
|
285
264
|
): void;
|
|
286
265
|
describeVault(
|
|
287
266
|
args: DescribeVaultCommandInput,
|
|
288
|
-
options?: __HttpHandlerOptions
|
|
267
|
+
options?: __HttpHandlerOptions,
|
|
289
268
|
): Promise<DescribeVaultCommandOutput>;
|
|
290
269
|
describeVault(
|
|
291
270
|
args: DescribeVaultCommandInput,
|
|
292
|
-
cb: (err: any, data?: DescribeVaultCommandOutput) => void
|
|
271
|
+
cb: (err: any, data?: DescribeVaultCommandOutput) => void,
|
|
293
272
|
): void;
|
|
294
273
|
describeVault(
|
|
295
274
|
args: DescribeVaultCommandInput,
|
|
296
275
|
options: __HttpHandlerOptions,
|
|
297
|
-
cb: (err: any, data?: DescribeVaultCommandOutput) => void
|
|
276
|
+
cb: (err: any, data?: DescribeVaultCommandOutput) => void,
|
|
298
277
|
): void;
|
|
299
278
|
getDataRetrievalPolicy(
|
|
300
279
|
args: GetDataRetrievalPolicyCommandInput,
|
|
301
|
-
options?: __HttpHandlerOptions
|
|
280
|
+
options?: __HttpHandlerOptions,
|
|
302
281
|
): Promise<GetDataRetrievalPolicyCommandOutput>;
|
|
303
282
|
getDataRetrievalPolicy(
|
|
304
283
|
args: GetDataRetrievalPolicyCommandInput,
|
|
305
|
-
cb: (err: any, data?: GetDataRetrievalPolicyCommandOutput) => void
|
|
284
|
+
cb: (err: any, data?: GetDataRetrievalPolicyCommandOutput) => void,
|
|
306
285
|
): void;
|
|
307
286
|
getDataRetrievalPolicy(
|
|
308
287
|
args: GetDataRetrievalPolicyCommandInput,
|
|
309
288
|
options: __HttpHandlerOptions,
|
|
310
|
-
cb: (err: any, data?: GetDataRetrievalPolicyCommandOutput) => void
|
|
289
|
+
cb: (err: any, data?: GetDataRetrievalPolicyCommandOutput) => void,
|
|
311
290
|
): void;
|
|
312
291
|
getJobOutput(
|
|
313
292
|
args: GetJobOutputCommandInput,
|
|
314
|
-
options?: __HttpHandlerOptions
|
|
293
|
+
options?: __HttpHandlerOptions,
|
|
315
294
|
): Promise<GetJobOutputCommandOutput>;
|
|
316
295
|
getJobOutput(
|
|
317
296
|
args: GetJobOutputCommandInput,
|
|
318
|
-
cb: (err: any, data?: GetJobOutputCommandOutput) => void
|
|
297
|
+
cb: (err: any, data?: GetJobOutputCommandOutput) => void,
|
|
319
298
|
): void;
|
|
320
299
|
getJobOutput(
|
|
321
300
|
args: GetJobOutputCommandInput,
|
|
322
301
|
options: __HttpHandlerOptions,
|
|
323
|
-
cb: (err: any, data?: GetJobOutputCommandOutput) => void
|
|
302
|
+
cb: (err: any, data?: GetJobOutputCommandOutput) => void,
|
|
324
303
|
): void;
|
|
325
304
|
getVaultAccessPolicy(
|
|
326
305
|
args: GetVaultAccessPolicyCommandInput,
|
|
327
|
-
options?: __HttpHandlerOptions
|
|
306
|
+
options?: __HttpHandlerOptions,
|
|
328
307
|
): Promise<GetVaultAccessPolicyCommandOutput>;
|
|
329
308
|
getVaultAccessPolicy(
|
|
330
309
|
args: GetVaultAccessPolicyCommandInput,
|
|
331
|
-
cb: (err: any, data?: GetVaultAccessPolicyCommandOutput) => void
|
|
310
|
+
cb: (err: any, data?: GetVaultAccessPolicyCommandOutput) => void,
|
|
332
311
|
): void;
|
|
333
312
|
getVaultAccessPolicy(
|
|
334
313
|
args: GetVaultAccessPolicyCommandInput,
|
|
335
314
|
options: __HttpHandlerOptions,
|
|
336
|
-
cb: (err: any, data?: GetVaultAccessPolicyCommandOutput) => void
|
|
315
|
+
cb: (err: any, data?: GetVaultAccessPolicyCommandOutput) => void,
|
|
337
316
|
): void;
|
|
338
317
|
getVaultLock(
|
|
339
318
|
args: GetVaultLockCommandInput,
|
|
340
|
-
options?: __HttpHandlerOptions
|
|
319
|
+
options?: __HttpHandlerOptions,
|
|
341
320
|
): Promise<GetVaultLockCommandOutput>;
|
|
342
321
|
getVaultLock(
|
|
343
322
|
args: GetVaultLockCommandInput,
|
|
344
|
-
cb: (err: any, data?: GetVaultLockCommandOutput) => void
|
|
323
|
+
cb: (err: any, data?: GetVaultLockCommandOutput) => void,
|
|
345
324
|
): void;
|
|
346
325
|
getVaultLock(
|
|
347
326
|
args: GetVaultLockCommandInput,
|
|
348
327
|
options: __HttpHandlerOptions,
|
|
349
|
-
cb: (err: any, data?: GetVaultLockCommandOutput) => void
|
|
328
|
+
cb: (err: any, data?: GetVaultLockCommandOutput) => void,
|
|
350
329
|
): void;
|
|
351
330
|
getVaultNotifications(
|
|
352
331
|
args: GetVaultNotificationsCommandInput,
|
|
353
|
-
options?: __HttpHandlerOptions
|
|
332
|
+
options?: __HttpHandlerOptions,
|
|
354
333
|
): Promise<GetVaultNotificationsCommandOutput>;
|
|
355
334
|
getVaultNotifications(
|
|
356
335
|
args: GetVaultNotificationsCommandInput,
|
|
357
|
-
cb: (err: any, data?: GetVaultNotificationsCommandOutput) => void
|
|
336
|
+
cb: (err: any, data?: GetVaultNotificationsCommandOutput) => void,
|
|
358
337
|
): void;
|
|
359
338
|
getVaultNotifications(
|
|
360
339
|
args: GetVaultNotificationsCommandInput,
|
|
361
340
|
options: __HttpHandlerOptions,
|
|
362
|
-
cb: (err: any, data?: GetVaultNotificationsCommandOutput) => void
|
|
341
|
+
cb: (err: any, data?: GetVaultNotificationsCommandOutput) => void,
|
|
363
342
|
): void;
|
|
364
343
|
initiateJob(
|
|
365
344
|
args: InitiateJobCommandInput,
|
|
366
|
-
options?: __HttpHandlerOptions
|
|
345
|
+
options?: __HttpHandlerOptions,
|
|
367
346
|
): Promise<InitiateJobCommandOutput>;
|
|
368
347
|
initiateJob(
|
|
369
348
|
args: InitiateJobCommandInput,
|
|
370
|
-
cb: (err: any, data?: InitiateJobCommandOutput) => void
|
|
349
|
+
cb: (err: any, data?: InitiateJobCommandOutput) => void,
|
|
371
350
|
): void;
|
|
372
351
|
initiateJob(
|
|
373
352
|
args: InitiateJobCommandInput,
|
|
374
353
|
options: __HttpHandlerOptions,
|
|
375
|
-
cb: (err: any, data?: InitiateJobCommandOutput) => void
|
|
354
|
+
cb: (err: any, data?: InitiateJobCommandOutput) => void,
|
|
376
355
|
): void;
|
|
377
356
|
initiateMultipartUpload(
|
|
378
357
|
args: InitiateMultipartUploadCommandInput,
|
|
379
|
-
options?: __HttpHandlerOptions
|
|
358
|
+
options?: __HttpHandlerOptions,
|
|
380
359
|
): Promise<InitiateMultipartUploadCommandOutput>;
|
|
381
360
|
initiateMultipartUpload(
|
|
382
361
|
args: InitiateMultipartUploadCommandInput,
|
|
383
|
-
cb: (err: any, data?: InitiateMultipartUploadCommandOutput) => void
|
|
362
|
+
cb: (err: any, data?: InitiateMultipartUploadCommandOutput) => void,
|
|
384
363
|
): void;
|
|
385
364
|
initiateMultipartUpload(
|
|
386
365
|
args: InitiateMultipartUploadCommandInput,
|
|
387
366
|
options: __HttpHandlerOptions,
|
|
388
|
-
cb: (err: any, data?: InitiateMultipartUploadCommandOutput) => void
|
|
367
|
+
cb: (err: any, data?: InitiateMultipartUploadCommandOutput) => void,
|
|
389
368
|
): void;
|
|
390
369
|
initiateVaultLock(
|
|
391
370
|
args: InitiateVaultLockCommandInput,
|
|
392
|
-
options?: __HttpHandlerOptions
|
|
371
|
+
options?: __HttpHandlerOptions,
|
|
393
372
|
): Promise<InitiateVaultLockCommandOutput>;
|
|
394
373
|
initiateVaultLock(
|
|
395
374
|
args: InitiateVaultLockCommandInput,
|
|
396
|
-
cb: (err: any, data?: InitiateVaultLockCommandOutput) => void
|
|
375
|
+
cb: (err: any, data?: InitiateVaultLockCommandOutput) => void,
|
|
397
376
|
): void;
|
|
398
377
|
initiateVaultLock(
|
|
399
378
|
args: InitiateVaultLockCommandInput,
|
|
400
379
|
options: __HttpHandlerOptions,
|
|
401
|
-
cb: (err: any, data?: InitiateVaultLockCommandOutput) => void
|
|
380
|
+
cb: (err: any, data?: InitiateVaultLockCommandOutput) => void,
|
|
402
381
|
): void;
|
|
403
382
|
listJobs(
|
|
404
383
|
args: ListJobsCommandInput,
|
|
405
|
-
options?: __HttpHandlerOptions
|
|
384
|
+
options?: __HttpHandlerOptions,
|
|
406
385
|
): Promise<ListJobsCommandOutput>;
|
|
407
|
-
listJobs(
|
|
408
|
-
args: ListJobsCommandInput,
|
|
409
|
-
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
410
|
-
): void;
|
|
386
|
+
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
411
387
|
listJobs(
|
|
412
388
|
args: ListJobsCommandInput,
|
|
413
389
|
options: __HttpHandlerOptions,
|
|
414
|
-
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: ListJobsCommandOutput) => void,
|
|
415
391
|
): void;
|
|
416
392
|
listMultipartUploads(
|
|
417
393
|
args: ListMultipartUploadsCommandInput,
|
|
418
|
-
options?: __HttpHandlerOptions
|
|
394
|
+
options?: __HttpHandlerOptions,
|
|
419
395
|
): Promise<ListMultipartUploadsCommandOutput>;
|
|
420
396
|
listMultipartUploads(
|
|
421
397
|
args: ListMultipartUploadsCommandInput,
|
|
422
|
-
cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void
|
|
398
|
+
cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void,
|
|
423
399
|
): void;
|
|
424
400
|
listMultipartUploads(
|
|
425
401
|
args: ListMultipartUploadsCommandInput,
|
|
426
402
|
options: __HttpHandlerOptions,
|
|
427
|
-
cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: ListMultipartUploadsCommandOutput) => void,
|
|
428
404
|
): void;
|
|
429
405
|
listParts(
|
|
430
406
|
args: ListPartsCommandInput,
|
|
431
|
-
options?: __HttpHandlerOptions
|
|
407
|
+
options?: __HttpHandlerOptions,
|
|
432
408
|
): Promise<ListPartsCommandOutput>;
|
|
433
409
|
listParts(
|
|
434
410
|
args: ListPartsCommandInput,
|
|
435
|
-
cb: (err: any, data?: ListPartsCommandOutput) => void
|
|
411
|
+
cb: (err: any, data?: ListPartsCommandOutput) => void,
|
|
436
412
|
): void;
|
|
437
413
|
listParts(
|
|
438
414
|
args: ListPartsCommandInput,
|
|
439
415
|
options: __HttpHandlerOptions,
|
|
440
|
-
cb: (err: any, data?: ListPartsCommandOutput) => void
|
|
416
|
+
cb: (err: any, data?: ListPartsCommandOutput) => void,
|
|
441
417
|
): void;
|
|
442
418
|
listProvisionedCapacity(
|
|
443
419
|
args: ListProvisionedCapacityCommandInput,
|
|
444
|
-
options?: __HttpHandlerOptions
|
|
420
|
+
options?: __HttpHandlerOptions,
|
|
445
421
|
): Promise<ListProvisionedCapacityCommandOutput>;
|
|
446
422
|
listProvisionedCapacity(
|
|
447
423
|
args: ListProvisionedCapacityCommandInput,
|
|
448
|
-
cb: (err: any, data?: ListProvisionedCapacityCommandOutput) => void
|
|
424
|
+
cb: (err: any, data?: ListProvisionedCapacityCommandOutput) => void,
|
|
449
425
|
): void;
|
|
450
426
|
listProvisionedCapacity(
|
|
451
427
|
args: ListProvisionedCapacityCommandInput,
|
|
452
428
|
options: __HttpHandlerOptions,
|
|
453
|
-
cb: (err: any, data?: ListProvisionedCapacityCommandOutput) => void
|
|
429
|
+
cb: (err: any, data?: ListProvisionedCapacityCommandOutput) => void,
|
|
454
430
|
): void;
|
|
455
431
|
listTagsForVault(
|
|
456
432
|
args: ListTagsForVaultCommandInput,
|
|
457
|
-
options?: __HttpHandlerOptions
|
|
433
|
+
options?: __HttpHandlerOptions,
|
|
458
434
|
): Promise<ListTagsForVaultCommandOutput>;
|
|
459
435
|
listTagsForVault(
|
|
460
436
|
args: ListTagsForVaultCommandInput,
|
|
461
|
-
cb: (err: any, data?: ListTagsForVaultCommandOutput) => void
|
|
437
|
+
cb: (err: any, data?: ListTagsForVaultCommandOutput) => void,
|
|
462
438
|
): void;
|
|
463
439
|
listTagsForVault(
|
|
464
440
|
args: ListTagsForVaultCommandInput,
|
|
465
441
|
options: __HttpHandlerOptions,
|
|
466
|
-
cb: (err: any, data?: ListTagsForVaultCommandOutput) => void
|
|
442
|
+
cb: (err: any, data?: ListTagsForVaultCommandOutput) => void,
|
|
467
443
|
): void;
|
|
468
444
|
listVaults(
|
|
469
445
|
args: ListVaultsCommandInput,
|
|
470
|
-
options?: __HttpHandlerOptions
|
|
446
|
+
options?: __HttpHandlerOptions,
|
|
471
447
|
): Promise<ListVaultsCommandOutput>;
|
|
472
448
|
listVaults(
|
|
473
449
|
args: ListVaultsCommandInput,
|
|
474
|
-
cb: (err: any, data?: ListVaultsCommandOutput) => void
|
|
450
|
+
cb: (err: any, data?: ListVaultsCommandOutput) => void,
|
|
475
451
|
): void;
|
|
476
452
|
listVaults(
|
|
477
453
|
args: ListVaultsCommandInput,
|
|
478
454
|
options: __HttpHandlerOptions,
|
|
479
|
-
cb: (err: any, data?: ListVaultsCommandOutput) => void
|
|
455
|
+
cb: (err: any, data?: ListVaultsCommandOutput) => void,
|
|
480
456
|
): void;
|
|
481
457
|
purchaseProvisionedCapacity(
|
|
482
458
|
args: PurchaseProvisionedCapacityCommandInput,
|
|
483
|
-
options?: __HttpHandlerOptions
|
|
459
|
+
options?: __HttpHandlerOptions,
|
|
484
460
|
): Promise<PurchaseProvisionedCapacityCommandOutput>;
|
|
485
461
|
purchaseProvisionedCapacity(
|
|
486
462
|
args: PurchaseProvisionedCapacityCommandInput,
|
|
487
|
-
cb: (err: any, data?: PurchaseProvisionedCapacityCommandOutput) => void
|
|
463
|
+
cb: (err: any, data?: PurchaseProvisionedCapacityCommandOutput) => void,
|
|
488
464
|
): void;
|
|
489
465
|
purchaseProvisionedCapacity(
|
|
490
466
|
args: PurchaseProvisionedCapacityCommandInput,
|
|
491
467
|
options: __HttpHandlerOptions,
|
|
492
|
-
cb: (err: any, data?: PurchaseProvisionedCapacityCommandOutput) => void
|
|
468
|
+
cb: (err: any, data?: PurchaseProvisionedCapacityCommandOutput) => void,
|
|
493
469
|
): void;
|
|
494
470
|
removeTagsFromVault(
|
|
495
471
|
args: RemoveTagsFromVaultCommandInput,
|
|
496
|
-
options?: __HttpHandlerOptions
|
|
472
|
+
options?: __HttpHandlerOptions,
|
|
497
473
|
): Promise<RemoveTagsFromVaultCommandOutput>;
|
|
498
474
|
removeTagsFromVault(
|
|
499
475
|
args: RemoveTagsFromVaultCommandInput,
|
|
500
|
-
cb: (err: any, data?: RemoveTagsFromVaultCommandOutput) => void
|
|
476
|
+
cb: (err: any, data?: RemoveTagsFromVaultCommandOutput) => void,
|
|
501
477
|
): void;
|
|
502
478
|
removeTagsFromVault(
|
|
503
479
|
args: RemoveTagsFromVaultCommandInput,
|
|
504
480
|
options: __HttpHandlerOptions,
|
|
505
|
-
cb: (err: any, data?: RemoveTagsFromVaultCommandOutput) => void
|
|
481
|
+
cb: (err: any, data?: RemoveTagsFromVaultCommandOutput) => void,
|
|
506
482
|
): void;
|
|
507
483
|
setDataRetrievalPolicy(
|
|
508
484
|
args: SetDataRetrievalPolicyCommandInput,
|
|
509
|
-
options?: __HttpHandlerOptions
|
|
485
|
+
options?: __HttpHandlerOptions,
|
|
510
486
|
): Promise<SetDataRetrievalPolicyCommandOutput>;
|
|
511
487
|
setDataRetrievalPolicy(
|
|
512
488
|
args: SetDataRetrievalPolicyCommandInput,
|
|
513
|
-
cb: (err: any, data?: SetDataRetrievalPolicyCommandOutput) => void
|
|
489
|
+
cb: (err: any, data?: SetDataRetrievalPolicyCommandOutput) => void,
|
|
514
490
|
): void;
|
|
515
491
|
setDataRetrievalPolicy(
|
|
516
492
|
args: SetDataRetrievalPolicyCommandInput,
|
|
517
493
|
options: __HttpHandlerOptions,
|
|
518
|
-
cb: (err: any, data?: SetDataRetrievalPolicyCommandOutput) => void
|
|
494
|
+
cb: (err: any, data?: SetDataRetrievalPolicyCommandOutput) => void,
|
|
519
495
|
): void;
|
|
520
496
|
setVaultAccessPolicy(
|
|
521
497
|
args: SetVaultAccessPolicyCommandInput,
|
|
522
|
-
options?: __HttpHandlerOptions
|
|
498
|
+
options?: __HttpHandlerOptions,
|
|
523
499
|
): Promise<SetVaultAccessPolicyCommandOutput>;
|
|
524
500
|
setVaultAccessPolicy(
|
|
525
501
|
args: SetVaultAccessPolicyCommandInput,
|
|
526
|
-
cb: (err: any, data?: SetVaultAccessPolicyCommandOutput) => void
|
|
502
|
+
cb: (err: any, data?: SetVaultAccessPolicyCommandOutput) => void,
|
|
527
503
|
): void;
|
|
528
504
|
setVaultAccessPolicy(
|
|
529
505
|
args: SetVaultAccessPolicyCommandInput,
|
|
530
506
|
options: __HttpHandlerOptions,
|
|
531
|
-
cb: (err: any, data?: SetVaultAccessPolicyCommandOutput) => void
|
|
507
|
+
cb: (err: any, data?: SetVaultAccessPolicyCommandOutput) => void,
|
|
532
508
|
): void;
|
|
533
509
|
setVaultNotifications(
|
|
534
510
|
args: SetVaultNotificationsCommandInput,
|
|
535
|
-
options?: __HttpHandlerOptions
|
|
511
|
+
options?: __HttpHandlerOptions,
|
|
536
512
|
): Promise<SetVaultNotificationsCommandOutput>;
|
|
537
513
|
setVaultNotifications(
|
|
538
514
|
args: SetVaultNotificationsCommandInput,
|
|
539
|
-
cb: (err: any, data?: SetVaultNotificationsCommandOutput) => void
|
|
515
|
+
cb: (err: any, data?: SetVaultNotificationsCommandOutput) => void,
|
|
540
516
|
): void;
|
|
541
517
|
setVaultNotifications(
|
|
542
518
|
args: SetVaultNotificationsCommandInput,
|
|
543
519
|
options: __HttpHandlerOptions,
|
|
544
|
-
cb: (err: any, data?: SetVaultNotificationsCommandOutput) => void
|
|
520
|
+
cb: (err: any, data?: SetVaultNotificationsCommandOutput) => void,
|
|
545
521
|
): void;
|
|
546
522
|
uploadArchive(
|
|
547
523
|
args: UploadArchiveCommandInput,
|
|
548
|
-
options?: __HttpHandlerOptions
|
|
524
|
+
options?: __HttpHandlerOptions,
|
|
549
525
|
): Promise<UploadArchiveCommandOutput>;
|
|
550
526
|
uploadArchive(
|
|
551
527
|
args: UploadArchiveCommandInput,
|
|
552
|
-
cb: (err: any, data?: UploadArchiveCommandOutput) => void
|
|
528
|
+
cb: (err: any, data?: UploadArchiveCommandOutput) => void,
|
|
553
529
|
): void;
|
|
554
530
|
uploadArchive(
|
|
555
531
|
args: UploadArchiveCommandInput,
|
|
556
532
|
options: __HttpHandlerOptions,
|
|
557
|
-
cb: (err: any, data?: UploadArchiveCommandOutput) => void
|
|
533
|
+
cb: (err: any, data?: UploadArchiveCommandOutput) => void,
|
|
558
534
|
): void;
|
|
559
535
|
uploadMultipartPart(
|
|
560
536
|
args: UploadMultipartPartCommandInput,
|
|
561
|
-
options?: __HttpHandlerOptions
|
|
537
|
+
options?: __HttpHandlerOptions,
|
|
562
538
|
): Promise<UploadMultipartPartCommandOutput>;
|
|
563
539
|
uploadMultipartPart(
|
|
564
540
|
args: UploadMultipartPartCommandInput,
|
|
565
|
-
cb: (err: any, data?: UploadMultipartPartCommandOutput) => void
|
|
541
|
+
cb: (err: any, data?: UploadMultipartPartCommandOutput) => void,
|
|
566
542
|
): void;
|
|
567
543
|
uploadMultipartPart(
|
|
568
544
|
args: UploadMultipartPartCommandInput,
|
|
569
545
|
options: __HttpHandlerOptions,
|
|
570
|
-
cb: (err: any, data?: UploadMultipartPartCommandOutput) => void
|
|
546
|
+
cb: (err: any, data?: UploadMultipartPartCommandOutput) => void,
|
|
571
547
|
): void;
|
|
572
548
|
paginateListJobs(
|
|
573
549
|
args: ListJobsCommandInput,
|
|
574
550
|
paginationConfig?: Pick<
|
|
575
551
|
PaginationConfiguration,
|
|
576
552
|
Exclude<keyof PaginationConfiguration, "client">
|
|
577
|
-
|
|
553
|
+
>,
|
|
578
554
|
): Paginator<ListJobsCommandOutput>;
|
|
579
555
|
paginateListMultipartUploads(
|
|
580
556
|
args: ListMultipartUploadsCommandInput,
|
|
581
557
|
paginationConfig?: Pick<
|
|
582
558
|
PaginationConfiguration,
|
|
583
559
|
Exclude<keyof PaginationConfiguration, "client">
|
|
584
|
-
|
|
560
|
+
>,
|
|
585
561
|
): Paginator<ListMultipartUploadsCommandOutput>;
|
|
586
562
|
paginateListParts(
|
|
587
563
|
args: ListPartsCommandInput,
|
|
588
564
|
paginationConfig?: Pick<
|
|
589
565
|
PaginationConfiguration,
|
|
590
566
|
Exclude<keyof PaginationConfiguration, "client">
|
|
591
|
-
|
|
567
|
+
>,
|
|
592
568
|
): Paginator<ListPartsCommandOutput>;
|
|
593
569
|
paginateListVaults(
|
|
594
570
|
args: ListVaultsCommandInput,
|
|
595
571
|
paginationConfig?: Pick<
|
|
596
572
|
PaginationConfiguration,
|
|
597
573
|
Exclude<keyof PaginationConfiguration, "client">
|
|
598
|
-
|
|
574
|
+
>,
|
|
599
575
|
): Paginator<ListVaultsCommandOutput>;
|
|
600
576
|
waitUntilVaultExists(
|
|
601
577
|
args: DescribeVaultCommandInput,
|
|
602
578
|
waiterConfig:
|
|
603
579
|
| number
|
|
604
|
-
| Pick<
|
|
605
|
-
WaiterConfiguration<Glacier>,
|
|
606
|
-
Exclude<keyof WaiterConfiguration<Glacier>, "client">
|
|
607
|
-
>
|
|
580
|
+
| Pick<WaiterConfiguration<Glacier>, Exclude<keyof WaiterConfiguration<Glacier>, "client">>,
|
|
608
581
|
): Promise<WaiterResult<DescribeVaultCommandOutput>>;
|
|
609
582
|
waitUntilVaultNotExists(
|
|
610
583
|
args: DescribeVaultCommandInput,
|
|
611
584
|
waiterConfig:
|
|
612
585
|
| number
|
|
613
|
-
| Pick<
|
|
614
|
-
WaiterConfiguration<Glacier>,
|
|
615
|
-
Exclude<keyof WaiterConfiguration<Glacier>, "client">
|
|
616
|
-
>
|
|
586
|
+
| Pick<WaiterConfiguration<Glacier>, Exclude<keyof WaiterConfiguration<Glacier>, "client">>,
|
|
617
587
|
): Promise<WaiterResult<ResourceNotFoundException>>;
|
|
618
588
|
}
|
|
619
589
|
export declare class Glacier extends GlacierClient implements Glacier {}
|