@aws-sdk/client-glacier 3.926.0 → 3.928.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 +1532 -1313
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/GlacierClient.js +2 -0
- package/dist-es/commands/AbortMultipartUploadCommand.js +3 -9
- package/dist-es/commands/AbortVaultLockCommand.js +3 -9
- package/dist-es/commands/AddTagsToVaultCommand.js +3 -9
- package/dist-es/commands/CompleteMultipartUploadCommand.js +3 -9
- package/dist-es/commands/CompleteVaultLockCommand.js +3 -9
- package/dist-es/commands/CreateVaultCommand.js +3 -9
- package/dist-es/commands/DeleteArchiveCommand.js +3 -9
- package/dist-es/commands/DeleteVaultAccessPolicyCommand.js +3 -9
- package/dist-es/commands/DeleteVaultCommand.js +3 -9
- package/dist-es/commands/DeleteVaultNotificationsCommand.js +3 -9
- package/dist-es/commands/DescribeJobCommand.js +3 -9
- package/dist-es/commands/DescribeVaultCommand.js +3 -9
- package/dist-es/commands/GetDataRetrievalPolicyCommand.js +3 -9
- package/dist-es/commands/GetJobOutputCommand.js +3 -10
- package/dist-es/commands/GetVaultAccessPolicyCommand.js +3 -9
- package/dist-es/commands/GetVaultLockCommand.js +3 -9
- package/dist-es/commands/GetVaultNotificationsCommand.js +3 -9
- package/dist-es/commands/InitiateJobCommand.js +3 -9
- package/dist-es/commands/InitiateMultipartUploadCommand.js +3 -9
- package/dist-es/commands/InitiateVaultLockCommand.js +3 -9
- package/dist-es/commands/ListJobsCommand.js +3 -9
- package/dist-es/commands/ListMultipartUploadsCommand.js +3 -9
- package/dist-es/commands/ListPartsCommand.js +3 -9
- package/dist-es/commands/ListProvisionedCapacityCommand.js +3 -9
- package/dist-es/commands/ListTagsForVaultCommand.js +3 -9
- package/dist-es/commands/ListVaultsCommand.js +3 -9
- package/dist-es/commands/PurchaseProvisionedCapacityCommand.js +3 -9
- package/dist-es/commands/RemoveTagsFromVaultCommand.js +3 -9
- package/dist-es/commands/SetDataRetrievalPolicyCommand.js +3 -9
- package/dist-es/commands/SetVaultAccessPolicyCommand.js +3 -9
- package/dist-es/commands/SetVaultNotificationsCommand.js +3 -9
- package/dist-es/commands/UploadArchiveCommand.js +3 -10
- package/dist-es/commands/UploadMultipartPartCommand.js +3 -10
- package/dist-es/models/models_0.js +0 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1467 -0
- package/dist-types/GlacierClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +130 -0
- package/dist-types/ts3.4/GlacierClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -9
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +136 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_restJson1.js +0 -1070
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -299
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -404
package/dist-cjs/index.js
CHANGED
|
@@ -7,6 +7,7 @@ var middlewareSdkGlacier = require('@aws-sdk/middleware-sdk-glacier');
|
|
|
7
7
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
8
8
|
var configResolver = require('@smithy/config-resolver');
|
|
9
9
|
var core = require('@smithy/core');
|
|
10
|
+
var schema = require('@smithy/core/schema');
|
|
10
11
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
11
12
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
12
13
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -15,8 +16,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
16
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
17
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
18
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
19
|
-
var core$1 = require('@aws-sdk/core');
|
|
20
19
|
var utilWaiter = require('@smithy/util-waiter');
|
|
21
20
|
|
|
22
21
|
const resolveClientEndpointParameters = (options) => {
|
|
@@ -93,6 +92,7 @@ class GlacierClient extends smithyClient.Client {
|
|
|
93
92
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
94
93
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
95
94
|
this.config = _config_8;
|
|
95
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
97
97
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
98
98
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -113,14 +113,14 @@ class GlacierClient extends smithyClient.Client {
|
|
|
113
113
|
}
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
-
class GlacierServiceException extends smithyClient.ServiceException {
|
|
116
|
+
let GlacierServiceException$1 = class GlacierServiceException extends smithyClient.ServiceException {
|
|
117
117
|
constructor(options) {
|
|
118
118
|
super(options);
|
|
119
119
|
Object.setPrototypeOf(this, GlacierServiceException.prototype);
|
|
120
120
|
}
|
|
121
|
-
}
|
|
121
|
+
};
|
|
122
122
|
|
|
123
|
-
class InvalidParameterValueException extends GlacierServiceException {
|
|
123
|
+
let InvalidParameterValueException$1 = class InvalidParameterValueException extends GlacierServiceException$1 {
|
|
124
124
|
name = "InvalidParameterValueException";
|
|
125
125
|
$fault = "client";
|
|
126
126
|
type;
|
|
@@ -135,8 +135,8 @@ class InvalidParameterValueException extends GlacierServiceException {
|
|
|
135
135
|
this.type = opts.type;
|
|
136
136
|
this.code = opts.code;
|
|
137
137
|
}
|
|
138
|
-
}
|
|
139
|
-
class MissingParameterValueException extends GlacierServiceException {
|
|
138
|
+
};
|
|
139
|
+
let MissingParameterValueException$1 = class MissingParameterValueException extends GlacierServiceException$1 {
|
|
140
140
|
name = "MissingParameterValueException";
|
|
141
141
|
$fault = "client";
|
|
142
142
|
type;
|
|
@@ -151,8 +151,8 @@ class MissingParameterValueException extends GlacierServiceException {
|
|
|
151
151
|
this.type = opts.type;
|
|
152
152
|
this.code = opts.code;
|
|
153
153
|
}
|
|
154
|
-
}
|
|
155
|
-
class ResourceNotFoundException extends GlacierServiceException {
|
|
154
|
+
};
|
|
155
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends GlacierServiceException$1 {
|
|
156
156
|
name = "ResourceNotFoundException";
|
|
157
157
|
$fault = "client";
|
|
158
158
|
type;
|
|
@@ -167,8 +167,8 @@ class ResourceNotFoundException extends GlacierServiceException {
|
|
|
167
167
|
this.type = opts.type;
|
|
168
168
|
this.code = opts.code;
|
|
169
169
|
}
|
|
170
|
-
}
|
|
171
|
-
class ServiceUnavailableException extends GlacierServiceException {
|
|
170
|
+
};
|
|
171
|
+
let ServiceUnavailableException$1 = class ServiceUnavailableException extends GlacierServiceException$1 {
|
|
172
172
|
name = "ServiceUnavailableException";
|
|
173
173
|
$fault = "server";
|
|
174
174
|
type;
|
|
@@ -183,7 +183,7 @@ class ServiceUnavailableException extends GlacierServiceException {
|
|
|
183
183
|
this.type = opts.type;
|
|
184
184
|
this.code = opts.code;
|
|
185
185
|
}
|
|
186
|
-
}
|
|
186
|
+
};
|
|
187
187
|
const Type = {
|
|
188
188
|
AmazonCustomerByEmail: "AmazonCustomerByEmail",
|
|
189
189
|
CanonicalUser: "CanonicalUser",
|
|
@@ -201,7 +201,7 @@ const ActionCode = {
|
|
|
201
201
|
InventoryRetrieval: "InventoryRetrieval",
|
|
202
202
|
Select: "Select",
|
|
203
203
|
};
|
|
204
|
-
class LimitExceededException extends GlacierServiceException {
|
|
204
|
+
let LimitExceededException$1 = class LimitExceededException extends GlacierServiceException$1 {
|
|
205
205
|
name = "LimitExceededException";
|
|
206
206
|
$fault = "client";
|
|
207
207
|
type;
|
|
@@ -216,7 +216,7 @@ class LimitExceededException extends GlacierServiceException {
|
|
|
216
216
|
this.type = opts.type;
|
|
217
217
|
this.code = opts.code;
|
|
218
218
|
}
|
|
219
|
-
}
|
|
219
|
+
};
|
|
220
220
|
const CannedACL = {
|
|
221
221
|
AuthenticatedRead: "authenticated-read",
|
|
222
222
|
AwsExecRead: "aws-exec-read",
|
|
@@ -252,7 +252,7 @@ const StatusCode = {
|
|
|
252
252
|
InProgress: "InProgress",
|
|
253
253
|
Succeeded: "Succeeded",
|
|
254
254
|
};
|
|
255
|
-
class InsufficientCapacityException extends GlacierServiceException {
|
|
255
|
+
let InsufficientCapacityException$1 = class InsufficientCapacityException extends GlacierServiceException$1 {
|
|
256
256
|
name = "InsufficientCapacityException";
|
|
257
257
|
$fault = "client";
|
|
258
258
|
type;
|
|
@@ -267,8 +267,8 @@ class InsufficientCapacityException extends GlacierServiceException {
|
|
|
267
267
|
this.type = opts.type;
|
|
268
268
|
this.code = opts.code;
|
|
269
269
|
}
|
|
270
|
-
}
|
|
271
|
-
class PolicyEnforcedException extends GlacierServiceException {
|
|
270
|
+
};
|
|
271
|
+
let PolicyEnforcedException$1 = class PolicyEnforcedException extends GlacierServiceException$1 {
|
|
272
272
|
name = "PolicyEnforcedException";
|
|
273
273
|
$fault = "client";
|
|
274
274
|
type;
|
|
@@ -283,8 +283,8 @@ class PolicyEnforcedException extends GlacierServiceException {
|
|
|
283
283
|
this.type = opts.type;
|
|
284
284
|
this.code = opts.code;
|
|
285
285
|
}
|
|
286
|
-
}
|
|
287
|
-
class RequestTimeoutException extends GlacierServiceException {
|
|
286
|
+
};
|
|
287
|
+
let RequestTimeoutException$1 = class RequestTimeoutException extends GlacierServiceException$1 {
|
|
288
288
|
name = "RequestTimeoutException";
|
|
289
289
|
$fault = "client";
|
|
290
290
|
type;
|
|
@@ -299,1071 +299,245 @@ class RequestTimeoutException extends GlacierServiceException {
|
|
|
299
299
|
this.type = opts.type;
|
|
300
300
|
this.code = opts.code;
|
|
301
301
|
}
|
|
302
|
-
}
|
|
303
|
-
const GetJobOutputOutputFilterSensitiveLog = (obj) => ({
|
|
304
|
-
...obj,
|
|
305
|
-
});
|
|
306
|
-
const UploadArchiveInputFilterSensitiveLog = (obj) => ({
|
|
307
|
-
...obj,
|
|
308
|
-
});
|
|
309
|
-
const UploadMultipartPartInputFilterSensitiveLog = (obj) => ({
|
|
310
|
-
...obj,
|
|
311
|
-
});
|
|
312
|
-
|
|
313
|
-
const se_AbortMultipartUploadCommand = async (input, context) => {
|
|
314
|
-
const b = core.requestBuilder(input, context);
|
|
315
|
-
const headers = {};
|
|
316
|
-
b.bp("/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}");
|
|
317
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
318
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
319
|
-
b.p("uploadId", () => input.uploadId, "{uploadId}", false);
|
|
320
|
-
let body;
|
|
321
|
-
b.m("DELETE").h(headers).b(body);
|
|
322
|
-
return b.build();
|
|
323
|
-
};
|
|
324
|
-
const se_AbortVaultLockCommand = async (input, context) => {
|
|
325
|
-
const b = core.requestBuilder(input, context);
|
|
326
|
-
const headers = {};
|
|
327
|
-
b.bp("/{accountId}/vaults/{vaultName}/lock-policy");
|
|
328
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
329
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
330
|
-
let body;
|
|
331
|
-
b.m("DELETE").h(headers).b(body);
|
|
332
|
-
return b.build();
|
|
333
|
-
};
|
|
334
|
-
const se_AddTagsToVaultCommand = async (input, context) => {
|
|
335
|
-
const b = core.requestBuilder(input, context);
|
|
336
|
-
const headers = {
|
|
337
|
-
"content-type": "application/json",
|
|
338
|
-
};
|
|
339
|
-
b.bp("/{accountId}/vaults/{vaultName}/tags");
|
|
340
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
341
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
342
|
-
const query = smithyClient.map({
|
|
343
|
-
[_o]: [, "add"],
|
|
344
|
-
});
|
|
345
|
-
let body;
|
|
346
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
347
|
-
Tags: (_) => smithyClient._json(_),
|
|
348
|
-
}));
|
|
349
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
350
|
-
return b.build();
|
|
351
|
-
};
|
|
352
|
-
const se_CompleteMultipartUploadCommand = async (input, context) => {
|
|
353
|
-
const b = core.requestBuilder(input, context);
|
|
354
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
355
|
-
[_xaas]: input[_aS],
|
|
356
|
-
[_xasth]: input[_c],
|
|
357
|
-
});
|
|
358
|
-
b.bp("/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}");
|
|
359
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
360
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
361
|
-
b.p("uploadId", () => input.uploadId, "{uploadId}", false);
|
|
362
|
-
let body;
|
|
363
|
-
b.m("POST").h(headers).b(body);
|
|
364
|
-
return b.build();
|
|
365
|
-
};
|
|
366
|
-
const se_CompleteVaultLockCommand = async (input, context) => {
|
|
367
|
-
const b = core.requestBuilder(input, context);
|
|
368
|
-
const headers = {};
|
|
369
|
-
b.bp("/{accountId}/vaults/{vaultName}/lock-policy/{lockId}");
|
|
370
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
371
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
372
|
-
b.p("lockId", () => input.lockId, "{lockId}", false);
|
|
373
|
-
let body;
|
|
374
|
-
b.m("POST").h(headers).b(body);
|
|
375
|
-
return b.build();
|
|
376
|
-
};
|
|
377
|
-
const se_CreateVaultCommand = async (input, context) => {
|
|
378
|
-
const b = core.requestBuilder(input, context);
|
|
379
|
-
const headers = {};
|
|
380
|
-
b.bp("/{accountId}/vaults/{vaultName}");
|
|
381
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
382
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
383
|
-
let body;
|
|
384
|
-
b.m("PUT").h(headers).b(body);
|
|
385
|
-
return b.build();
|
|
386
|
-
};
|
|
387
|
-
const se_DeleteArchiveCommand = async (input, context) => {
|
|
388
|
-
const b = core.requestBuilder(input, context);
|
|
389
|
-
const headers = {};
|
|
390
|
-
b.bp("/{accountId}/vaults/{vaultName}/archives/{archiveId}");
|
|
391
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
392
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
393
|
-
b.p("archiveId", () => input.archiveId, "{archiveId}", false);
|
|
394
|
-
let body;
|
|
395
|
-
b.m("DELETE").h(headers).b(body);
|
|
396
|
-
return b.build();
|
|
397
|
-
};
|
|
398
|
-
const se_DeleteVaultCommand = async (input, context) => {
|
|
399
|
-
const b = core.requestBuilder(input, context);
|
|
400
|
-
const headers = {};
|
|
401
|
-
b.bp("/{accountId}/vaults/{vaultName}");
|
|
402
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
403
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
404
|
-
let body;
|
|
405
|
-
b.m("DELETE").h(headers).b(body);
|
|
406
|
-
return b.build();
|
|
407
|
-
};
|
|
408
|
-
const se_DeleteVaultAccessPolicyCommand = async (input, context) => {
|
|
409
|
-
const b = core.requestBuilder(input, context);
|
|
410
|
-
const headers = {};
|
|
411
|
-
b.bp("/{accountId}/vaults/{vaultName}/access-policy");
|
|
412
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
413
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
414
|
-
let body;
|
|
415
|
-
b.m("DELETE").h(headers).b(body);
|
|
416
|
-
return b.build();
|
|
417
|
-
};
|
|
418
|
-
const se_DeleteVaultNotificationsCommand = async (input, context) => {
|
|
419
|
-
const b = core.requestBuilder(input, context);
|
|
420
|
-
const headers = {};
|
|
421
|
-
b.bp("/{accountId}/vaults/{vaultName}/notification-configuration");
|
|
422
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
423
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
424
|
-
let body;
|
|
425
|
-
b.m("DELETE").h(headers).b(body);
|
|
426
|
-
return b.build();
|
|
427
|
-
};
|
|
428
|
-
const se_DescribeJobCommand = async (input, context) => {
|
|
429
|
-
const b = core.requestBuilder(input, context);
|
|
430
|
-
const headers = {};
|
|
431
|
-
b.bp("/{accountId}/vaults/{vaultName}/jobs/{jobId}");
|
|
432
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
433
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
434
|
-
b.p("jobId", () => input.jobId, "{jobId}", false);
|
|
435
|
-
let body;
|
|
436
|
-
b.m("GET").h(headers).b(body);
|
|
437
|
-
return b.build();
|
|
438
|
-
};
|
|
439
|
-
const se_DescribeVaultCommand = async (input, context) => {
|
|
440
|
-
const b = core.requestBuilder(input, context);
|
|
441
|
-
const headers = {};
|
|
442
|
-
b.bp("/{accountId}/vaults/{vaultName}");
|
|
443
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
444
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
445
|
-
let body;
|
|
446
|
-
b.m("GET").h(headers).b(body);
|
|
447
|
-
return b.build();
|
|
448
|
-
};
|
|
449
|
-
const se_GetDataRetrievalPolicyCommand = async (input, context) => {
|
|
450
|
-
const b = core.requestBuilder(input, context);
|
|
451
|
-
const headers = {};
|
|
452
|
-
b.bp("/{accountId}/policies/data-retrieval");
|
|
453
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
454
|
-
let body;
|
|
455
|
-
b.m("GET").h(headers).b(body);
|
|
456
|
-
return b.build();
|
|
457
|
-
};
|
|
458
|
-
const se_GetJobOutputCommand = async (input, context) => {
|
|
459
|
-
const b = core.requestBuilder(input, context);
|
|
460
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
461
|
-
[_r]: input[_r],
|
|
462
|
-
});
|
|
463
|
-
b.bp("/{accountId}/vaults/{vaultName}/jobs/{jobId}/output");
|
|
464
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
465
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
466
|
-
b.p("jobId", () => input.jobId, "{jobId}", false);
|
|
467
|
-
let body;
|
|
468
|
-
b.m("GET").h(headers).b(body);
|
|
469
|
-
return b.build();
|
|
470
|
-
};
|
|
471
|
-
const se_GetVaultAccessPolicyCommand = async (input, context) => {
|
|
472
|
-
const b = core.requestBuilder(input, context);
|
|
473
|
-
const headers = {};
|
|
474
|
-
b.bp("/{accountId}/vaults/{vaultName}/access-policy");
|
|
475
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
476
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
477
|
-
let body;
|
|
478
|
-
b.m("GET").h(headers).b(body);
|
|
479
|
-
return b.build();
|
|
480
|
-
};
|
|
481
|
-
const se_GetVaultLockCommand = async (input, context) => {
|
|
482
|
-
const b = core.requestBuilder(input, context);
|
|
483
|
-
const headers = {};
|
|
484
|
-
b.bp("/{accountId}/vaults/{vaultName}/lock-policy");
|
|
485
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
486
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
487
|
-
let body;
|
|
488
|
-
b.m("GET").h(headers).b(body);
|
|
489
|
-
return b.build();
|
|
490
|
-
};
|
|
491
|
-
const se_GetVaultNotificationsCommand = async (input, context) => {
|
|
492
|
-
const b = core.requestBuilder(input, context);
|
|
493
|
-
const headers = {};
|
|
494
|
-
b.bp("/{accountId}/vaults/{vaultName}/notification-configuration");
|
|
495
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
496
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
497
|
-
let body;
|
|
498
|
-
b.m("GET").h(headers).b(body);
|
|
499
|
-
return b.build();
|
|
500
|
-
};
|
|
501
|
-
const se_InitiateJobCommand = async (input, context) => {
|
|
502
|
-
const b = core.requestBuilder(input, context);
|
|
503
|
-
const headers = {
|
|
504
|
-
"content-type": "application/json",
|
|
505
|
-
};
|
|
506
|
-
b.bp("/{accountId}/vaults/{vaultName}/jobs");
|
|
507
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
508
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
509
|
-
let body;
|
|
510
|
-
if (input.jobParameters !== undefined) {
|
|
511
|
-
body = smithyClient._json(input.jobParameters);
|
|
512
|
-
}
|
|
513
|
-
if (body === undefined) {
|
|
514
|
-
body = {};
|
|
515
|
-
}
|
|
516
|
-
body = JSON.stringify(body);
|
|
517
|
-
b.m("POST").h(headers).b(body);
|
|
518
|
-
return b.build();
|
|
519
|
-
};
|
|
520
|
-
const se_InitiateMultipartUploadCommand = async (input, context) => {
|
|
521
|
-
const b = core.requestBuilder(input, context);
|
|
522
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
523
|
-
[_xaad]: input[_aD],
|
|
524
|
-
[_xaps]: input[_pS],
|
|
525
|
-
});
|
|
526
|
-
b.bp("/{accountId}/vaults/{vaultName}/multipart-uploads");
|
|
527
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
528
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
529
|
-
let body;
|
|
530
|
-
b.m("POST").h(headers).b(body);
|
|
531
|
-
return b.build();
|
|
532
|
-
};
|
|
533
|
-
const se_InitiateVaultLockCommand = async (input, context) => {
|
|
534
|
-
const b = core.requestBuilder(input, context);
|
|
535
|
-
const headers = {
|
|
536
|
-
"content-type": "application/json",
|
|
537
|
-
};
|
|
538
|
-
b.bp("/{accountId}/vaults/{vaultName}/lock-policy");
|
|
539
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
540
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
541
|
-
let body;
|
|
542
|
-
if (input.policy !== undefined) {
|
|
543
|
-
body = smithyClient._json(input.policy);
|
|
544
|
-
}
|
|
545
|
-
if (body === undefined) {
|
|
546
|
-
body = {};
|
|
547
|
-
}
|
|
548
|
-
body = JSON.stringify(body);
|
|
549
|
-
b.m("POST").h(headers).b(body);
|
|
550
|
-
return b.build();
|
|
551
|
-
};
|
|
552
|
-
const se_ListJobsCommand = async (input, context) => {
|
|
553
|
-
const b = core.requestBuilder(input, context);
|
|
554
|
-
const headers = {};
|
|
555
|
-
b.bp("/{accountId}/vaults/{vaultName}/jobs");
|
|
556
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
557
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
558
|
-
const query = smithyClient.map({
|
|
559
|
-
[_l]: [() => input.limit !== void 0, () => input[_l].toString()],
|
|
560
|
-
[_m]: [, input[_m]],
|
|
561
|
-
[_s]: [, input[_s]],
|
|
562
|
-
[_co]: [, input[_co]],
|
|
563
|
-
});
|
|
564
|
-
let body;
|
|
565
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
566
|
-
return b.build();
|
|
567
|
-
};
|
|
568
|
-
const se_ListMultipartUploadsCommand = async (input, context) => {
|
|
569
|
-
const b = core.requestBuilder(input, context);
|
|
570
|
-
const headers = {};
|
|
571
|
-
b.bp("/{accountId}/vaults/{vaultName}/multipart-uploads");
|
|
572
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
573
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
574
|
-
const query = smithyClient.map({
|
|
575
|
-
[_l]: [() => input.limit !== void 0, () => input[_l].toString()],
|
|
576
|
-
[_m]: [, input[_m]],
|
|
577
|
-
});
|
|
578
|
-
let body;
|
|
579
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
580
|
-
return b.build();
|
|
581
|
-
};
|
|
582
|
-
const se_ListPartsCommand = async (input, context) => {
|
|
583
|
-
const b = core.requestBuilder(input, context);
|
|
584
|
-
const headers = {};
|
|
585
|
-
b.bp("/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}");
|
|
586
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
587
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
588
|
-
b.p("uploadId", () => input.uploadId, "{uploadId}", false);
|
|
589
|
-
const query = smithyClient.map({
|
|
590
|
-
[_m]: [, input[_m]],
|
|
591
|
-
[_l]: [() => input.limit !== void 0, () => input[_l].toString()],
|
|
592
|
-
});
|
|
593
|
-
let body;
|
|
594
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
595
|
-
return b.build();
|
|
596
|
-
};
|
|
597
|
-
const se_ListProvisionedCapacityCommand = async (input, context) => {
|
|
598
|
-
const b = core.requestBuilder(input, context);
|
|
599
|
-
const headers = {};
|
|
600
|
-
b.bp("/{accountId}/provisioned-capacity");
|
|
601
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
602
|
-
let body;
|
|
603
|
-
b.m("GET").h(headers).b(body);
|
|
604
|
-
return b.build();
|
|
605
|
-
};
|
|
606
|
-
const se_ListTagsForVaultCommand = async (input, context) => {
|
|
607
|
-
const b = core.requestBuilder(input, context);
|
|
608
|
-
const headers = {};
|
|
609
|
-
b.bp("/{accountId}/vaults/{vaultName}/tags");
|
|
610
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
611
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
612
|
-
let body;
|
|
613
|
-
b.m("GET").h(headers).b(body);
|
|
614
|
-
return b.build();
|
|
615
|
-
};
|
|
616
|
-
const se_ListVaultsCommand = async (input, context) => {
|
|
617
|
-
const b = core.requestBuilder(input, context);
|
|
618
|
-
const headers = {};
|
|
619
|
-
b.bp("/{accountId}/vaults");
|
|
620
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
621
|
-
const query = smithyClient.map({
|
|
622
|
-
[_m]: [, input[_m]],
|
|
623
|
-
[_l]: [() => input.limit !== void 0, () => input[_l].toString()],
|
|
624
|
-
});
|
|
625
|
-
let body;
|
|
626
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
627
|
-
return b.build();
|
|
628
|
-
};
|
|
629
|
-
const se_PurchaseProvisionedCapacityCommand = async (input, context) => {
|
|
630
|
-
const b = core.requestBuilder(input, context);
|
|
631
|
-
const headers = {};
|
|
632
|
-
b.bp("/{accountId}/provisioned-capacity");
|
|
633
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
634
|
-
let body;
|
|
635
|
-
b.m("POST").h(headers).b(body);
|
|
636
|
-
return b.build();
|
|
637
|
-
};
|
|
638
|
-
const se_RemoveTagsFromVaultCommand = async (input, context) => {
|
|
639
|
-
const b = core.requestBuilder(input, context);
|
|
640
|
-
const headers = {
|
|
641
|
-
"content-type": "application/json",
|
|
642
|
-
};
|
|
643
|
-
b.bp("/{accountId}/vaults/{vaultName}/tags");
|
|
644
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
645
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
646
|
-
const query = smithyClient.map({
|
|
647
|
-
[_o]: [, "remove"],
|
|
648
|
-
});
|
|
649
|
-
let body;
|
|
650
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
651
|
-
TagKeys: (_) => smithyClient._json(_),
|
|
652
|
-
}));
|
|
653
|
-
b.m("POST").h(headers).q(query).b(body);
|
|
654
|
-
return b.build();
|
|
655
|
-
};
|
|
656
|
-
const se_SetDataRetrievalPolicyCommand = async (input, context) => {
|
|
657
|
-
const b = core.requestBuilder(input, context);
|
|
658
|
-
const headers = {
|
|
659
|
-
"content-type": "application/json",
|
|
660
|
-
};
|
|
661
|
-
b.bp("/{accountId}/policies/data-retrieval");
|
|
662
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
663
|
-
let body;
|
|
664
|
-
body = JSON.stringify(smithyClient.take(input, {
|
|
665
|
-
Policy: (_) => smithyClient._json(_),
|
|
666
|
-
}));
|
|
667
|
-
b.m("PUT").h(headers).b(body);
|
|
668
|
-
return b.build();
|
|
669
|
-
};
|
|
670
|
-
const se_SetVaultAccessPolicyCommand = async (input, context) => {
|
|
671
|
-
const b = core.requestBuilder(input, context);
|
|
672
|
-
const headers = {
|
|
673
|
-
"content-type": "application/json",
|
|
674
|
-
};
|
|
675
|
-
b.bp("/{accountId}/vaults/{vaultName}/access-policy");
|
|
676
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
677
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
678
|
-
let body;
|
|
679
|
-
if (input.policy !== undefined) {
|
|
680
|
-
body = smithyClient._json(input.policy);
|
|
681
|
-
}
|
|
682
|
-
if (body === undefined) {
|
|
683
|
-
body = {};
|
|
684
|
-
}
|
|
685
|
-
body = JSON.stringify(body);
|
|
686
|
-
b.m("PUT").h(headers).b(body);
|
|
687
|
-
return b.build();
|
|
688
|
-
};
|
|
689
|
-
const se_SetVaultNotificationsCommand = async (input, context) => {
|
|
690
|
-
const b = core.requestBuilder(input, context);
|
|
691
|
-
const headers = {
|
|
692
|
-
"content-type": "application/json",
|
|
693
|
-
};
|
|
694
|
-
b.bp("/{accountId}/vaults/{vaultName}/notification-configuration");
|
|
695
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
696
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
697
|
-
let body;
|
|
698
|
-
if (input.vaultNotificationConfig !== undefined) {
|
|
699
|
-
body = smithyClient._json(input.vaultNotificationConfig);
|
|
700
|
-
}
|
|
701
|
-
if (body === undefined) {
|
|
702
|
-
body = {};
|
|
703
|
-
}
|
|
704
|
-
body = JSON.stringify(body);
|
|
705
|
-
b.m("PUT").h(headers).b(body);
|
|
706
|
-
return b.build();
|
|
707
|
-
};
|
|
708
|
-
const se_UploadArchiveCommand = async (input, context) => {
|
|
709
|
-
const b = core.requestBuilder(input, context);
|
|
710
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
711
|
-
"content-type": "application/octet-stream",
|
|
712
|
-
[_xaad]: input[_aD],
|
|
713
|
-
[_xasth]: input[_c],
|
|
714
|
-
});
|
|
715
|
-
b.bp("/{accountId}/vaults/{vaultName}/archives");
|
|
716
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
717
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
718
|
-
let body;
|
|
719
|
-
if (input.body !== undefined) {
|
|
720
|
-
body = input.body;
|
|
721
|
-
}
|
|
722
|
-
b.m("POST").h(headers).b(body);
|
|
723
|
-
return b.build();
|
|
724
|
-
};
|
|
725
|
-
const se_UploadMultipartPartCommand = async (input, context) => {
|
|
726
|
-
const b = core.requestBuilder(input, context);
|
|
727
|
-
const headers = smithyClient.map({}, smithyClient.isSerializableHeaderValue, {
|
|
728
|
-
"content-type": "application/octet-stream",
|
|
729
|
-
[_xasth]: input[_c],
|
|
730
|
-
[_cr]: input[_r],
|
|
731
|
-
});
|
|
732
|
-
b.bp("/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}");
|
|
733
|
-
b.p("accountId", () => input.accountId, "{accountId}", false);
|
|
734
|
-
b.p("vaultName", () => input.vaultName, "{vaultName}", false);
|
|
735
|
-
b.p("uploadId", () => input.uploadId, "{uploadId}", false);
|
|
736
|
-
let body;
|
|
737
|
-
if (input.body !== undefined) {
|
|
738
|
-
body = input.body;
|
|
739
|
-
}
|
|
740
|
-
b.m("PUT").h(headers).b(body);
|
|
741
|
-
return b.build();
|
|
742
|
-
};
|
|
743
|
-
const de_AbortMultipartUploadCommand = async (output, context) => {
|
|
744
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
745
|
-
return de_CommandError(output, context);
|
|
746
|
-
}
|
|
747
|
-
const contents = smithyClient.map({
|
|
748
|
-
$metadata: deserializeMetadata(output),
|
|
749
|
-
});
|
|
750
|
-
await smithyClient.collectBody(output.body, context);
|
|
751
|
-
return contents;
|
|
752
|
-
};
|
|
753
|
-
const de_AbortVaultLockCommand = async (output, context) => {
|
|
754
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
755
|
-
return de_CommandError(output, context);
|
|
756
|
-
}
|
|
757
|
-
const contents = smithyClient.map({
|
|
758
|
-
$metadata: deserializeMetadata(output),
|
|
759
|
-
});
|
|
760
|
-
await smithyClient.collectBody(output.body, context);
|
|
761
|
-
return contents;
|
|
762
|
-
};
|
|
763
|
-
const de_AddTagsToVaultCommand = async (output, context) => {
|
|
764
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
765
|
-
return de_CommandError(output, context);
|
|
766
|
-
}
|
|
767
|
-
const contents = smithyClient.map({
|
|
768
|
-
$metadata: deserializeMetadata(output),
|
|
769
|
-
});
|
|
770
|
-
await smithyClient.collectBody(output.body, context);
|
|
771
|
-
return contents;
|
|
772
|
-
};
|
|
773
|
-
const de_CompleteMultipartUploadCommand = async (output, context) => {
|
|
774
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
775
|
-
return de_CommandError(output, context);
|
|
776
|
-
}
|
|
777
|
-
const contents = smithyClient.map({
|
|
778
|
-
$metadata: deserializeMetadata(output),
|
|
779
|
-
[_lo]: [, output.headers[_lo]],
|
|
780
|
-
[_c]: [, output.headers[_xasth]],
|
|
781
|
-
[_aI]: [, output.headers[_xaai]],
|
|
782
|
-
});
|
|
783
|
-
await smithyClient.collectBody(output.body, context);
|
|
784
|
-
return contents;
|
|
785
|
-
};
|
|
786
|
-
const de_CompleteVaultLockCommand = async (output, context) => {
|
|
787
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
788
|
-
return de_CommandError(output, context);
|
|
789
|
-
}
|
|
790
|
-
const contents = smithyClient.map({
|
|
791
|
-
$metadata: deserializeMetadata(output),
|
|
792
|
-
});
|
|
793
|
-
await smithyClient.collectBody(output.body, context);
|
|
794
|
-
return contents;
|
|
795
|
-
};
|
|
796
|
-
const de_CreateVaultCommand = async (output, context) => {
|
|
797
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
798
|
-
return de_CommandError(output, context);
|
|
799
|
-
}
|
|
800
|
-
const contents = smithyClient.map({
|
|
801
|
-
$metadata: deserializeMetadata(output),
|
|
802
|
-
[_lo]: [, output.headers[_lo]],
|
|
803
|
-
});
|
|
804
|
-
await smithyClient.collectBody(output.body, context);
|
|
805
|
-
return contents;
|
|
806
|
-
};
|
|
807
|
-
const de_DeleteArchiveCommand = async (output, context) => {
|
|
808
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
809
|
-
return de_CommandError(output, context);
|
|
810
|
-
}
|
|
811
|
-
const contents = smithyClient.map({
|
|
812
|
-
$metadata: deserializeMetadata(output),
|
|
813
|
-
});
|
|
814
|
-
await smithyClient.collectBody(output.body, context);
|
|
815
|
-
return contents;
|
|
816
|
-
};
|
|
817
|
-
const de_DeleteVaultCommand = async (output, context) => {
|
|
818
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
819
|
-
return de_CommandError(output, context);
|
|
820
|
-
}
|
|
821
|
-
const contents = smithyClient.map({
|
|
822
|
-
$metadata: deserializeMetadata(output),
|
|
823
|
-
});
|
|
824
|
-
await smithyClient.collectBody(output.body, context);
|
|
825
|
-
return contents;
|
|
826
|
-
};
|
|
827
|
-
const de_DeleteVaultAccessPolicyCommand = async (output, context) => {
|
|
828
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
829
|
-
return de_CommandError(output, context);
|
|
830
|
-
}
|
|
831
|
-
const contents = smithyClient.map({
|
|
832
|
-
$metadata: deserializeMetadata(output),
|
|
833
|
-
});
|
|
834
|
-
await smithyClient.collectBody(output.body, context);
|
|
835
|
-
return contents;
|
|
836
|
-
};
|
|
837
|
-
const de_DeleteVaultNotificationsCommand = async (output, context) => {
|
|
838
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
839
|
-
return de_CommandError(output, context);
|
|
840
|
-
}
|
|
841
|
-
const contents = smithyClient.map({
|
|
842
|
-
$metadata: deserializeMetadata(output),
|
|
843
|
-
});
|
|
844
|
-
await smithyClient.collectBody(output.body, context);
|
|
845
|
-
return contents;
|
|
846
|
-
};
|
|
847
|
-
const de_DescribeJobCommand = async (output, context) => {
|
|
848
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
849
|
-
return de_CommandError(output, context);
|
|
850
|
-
}
|
|
851
|
-
const contents = smithyClient.map({
|
|
852
|
-
$metadata: deserializeMetadata(output),
|
|
853
|
-
});
|
|
854
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
855
|
-
const doc = smithyClient.take(data, {
|
|
856
|
-
Action: smithyClient.expectString,
|
|
857
|
-
ArchiveId: smithyClient.expectString,
|
|
858
|
-
ArchiveSHA256TreeHash: smithyClient.expectString,
|
|
859
|
-
ArchiveSizeInBytes: smithyClient.expectLong,
|
|
860
|
-
Completed: smithyClient.expectBoolean,
|
|
861
|
-
CompletionDate: smithyClient.expectString,
|
|
862
|
-
CreationDate: smithyClient.expectString,
|
|
863
|
-
InventoryRetrievalParameters: smithyClient._json,
|
|
864
|
-
InventorySizeInBytes: smithyClient.expectLong,
|
|
865
|
-
JobDescription: smithyClient.expectString,
|
|
866
|
-
JobId: smithyClient.expectString,
|
|
867
|
-
JobOutputPath: smithyClient.expectString,
|
|
868
|
-
OutputLocation: smithyClient._json,
|
|
869
|
-
RetrievalByteRange: smithyClient.expectString,
|
|
870
|
-
SHA256TreeHash: smithyClient.expectString,
|
|
871
|
-
SNSTopic: smithyClient.expectString,
|
|
872
|
-
SelectParameters: smithyClient._json,
|
|
873
|
-
StatusCode: smithyClient.expectString,
|
|
874
|
-
StatusMessage: smithyClient.expectString,
|
|
875
|
-
Tier: smithyClient.expectString,
|
|
876
|
-
VaultARN: smithyClient.expectString,
|
|
877
|
-
});
|
|
878
|
-
Object.assign(contents, doc);
|
|
879
|
-
return contents;
|
|
880
|
-
};
|
|
881
|
-
const de_DescribeVaultCommand = async (output, context) => {
|
|
882
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
883
|
-
return de_CommandError(output, context);
|
|
884
|
-
}
|
|
885
|
-
const contents = smithyClient.map({
|
|
886
|
-
$metadata: deserializeMetadata(output),
|
|
887
|
-
});
|
|
888
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
889
|
-
const doc = smithyClient.take(data, {
|
|
890
|
-
CreationDate: smithyClient.expectString,
|
|
891
|
-
LastInventoryDate: smithyClient.expectString,
|
|
892
|
-
NumberOfArchives: smithyClient.expectLong,
|
|
893
|
-
SizeInBytes: smithyClient.expectLong,
|
|
894
|
-
VaultARN: smithyClient.expectString,
|
|
895
|
-
VaultName: smithyClient.expectString,
|
|
896
|
-
});
|
|
897
|
-
Object.assign(contents, doc);
|
|
898
|
-
return contents;
|
|
899
|
-
};
|
|
900
|
-
const de_GetDataRetrievalPolicyCommand = async (output, context) => {
|
|
901
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
902
|
-
return de_CommandError(output, context);
|
|
903
|
-
}
|
|
904
|
-
const contents = smithyClient.map({
|
|
905
|
-
$metadata: deserializeMetadata(output),
|
|
906
|
-
});
|
|
907
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
908
|
-
const doc = smithyClient.take(data, {
|
|
909
|
-
Policy: smithyClient._json,
|
|
910
|
-
});
|
|
911
|
-
Object.assign(contents, doc);
|
|
912
|
-
return contents;
|
|
913
|
-
};
|
|
914
|
-
const de_GetJobOutputCommand = async (output, context) => {
|
|
915
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
916
|
-
return de_CommandError(output, context);
|
|
917
|
-
}
|
|
918
|
-
const contents = smithyClient.map({
|
|
919
|
-
$metadata: deserializeMetadata(output),
|
|
920
|
-
[_c]: [, output.headers[_xasth]],
|
|
921
|
-
[_cR]: [, output.headers[_cr]],
|
|
922
|
-
[_aR]: [, output.headers[_ar]],
|
|
923
|
-
[_cT]: [, output.headers[_ct]],
|
|
924
|
-
[_aD]: [, output.headers[_xaad]],
|
|
925
|
-
});
|
|
926
|
-
const data = output.body;
|
|
927
|
-
context.sdkStreamMixin(data);
|
|
928
|
-
contents.body = data;
|
|
929
|
-
smithyClient.map(contents, {
|
|
930
|
-
status: [, output.statusCode],
|
|
931
|
-
});
|
|
932
|
-
return contents;
|
|
933
|
-
};
|
|
934
|
-
const de_GetVaultAccessPolicyCommand = async (output, context) => {
|
|
935
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
936
|
-
return de_CommandError(output, context);
|
|
937
|
-
}
|
|
938
|
-
const contents = smithyClient.map({
|
|
939
|
-
$metadata: deserializeMetadata(output),
|
|
940
|
-
});
|
|
941
|
-
const data = smithyClient.expectObject(await core$1.parseJsonBody(output.body, context));
|
|
942
|
-
contents.policy = smithyClient._json(data);
|
|
943
|
-
return contents;
|
|
944
|
-
};
|
|
945
|
-
const de_GetVaultLockCommand = async (output, context) => {
|
|
946
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
947
|
-
return de_CommandError(output, context);
|
|
948
|
-
}
|
|
949
|
-
const contents = smithyClient.map({
|
|
950
|
-
$metadata: deserializeMetadata(output),
|
|
951
|
-
});
|
|
952
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
953
|
-
const doc = smithyClient.take(data, {
|
|
954
|
-
CreationDate: smithyClient.expectString,
|
|
955
|
-
ExpirationDate: smithyClient.expectString,
|
|
956
|
-
Policy: smithyClient.expectString,
|
|
957
|
-
State: smithyClient.expectString,
|
|
958
|
-
});
|
|
959
|
-
Object.assign(contents, doc);
|
|
960
|
-
return contents;
|
|
961
|
-
};
|
|
962
|
-
const de_GetVaultNotificationsCommand = async (output, context) => {
|
|
963
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
964
|
-
return de_CommandError(output, context);
|
|
965
|
-
}
|
|
966
|
-
const contents = smithyClient.map({
|
|
967
|
-
$metadata: deserializeMetadata(output),
|
|
968
|
-
});
|
|
969
|
-
const data = smithyClient.expectObject(await core$1.parseJsonBody(output.body, context));
|
|
970
|
-
contents.vaultNotificationConfig = smithyClient._json(data);
|
|
971
|
-
return contents;
|
|
972
|
-
};
|
|
973
|
-
const de_InitiateJobCommand = async (output, context) => {
|
|
974
|
-
if (output.statusCode !== 202 && output.statusCode >= 300) {
|
|
975
|
-
return de_CommandError(output, context);
|
|
976
|
-
}
|
|
977
|
-
const contents = smithyClient.map({
|
|
978
|
-
$metadata: deserializeMetadata(output),
|
|
979
|
-
[_lo]: [, output.headers[_lo]],
|
|
980
|
-
[_jI]: [, output.headers[_xaji]],
|
|
981
|
-
[_jOP]: [, output.headers[_xajop]],
|
|
982
|
-
});
|
|
983
|
-
await smithyClient.collectBody(output.body, context);
|
|
984
|
-
return contents;
|
|
985
|
-
};
|
|
986
|
-
const de_InitiateMultipartUploadCommand = async (output, context) => {
|
|
987
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
988
|
-
return de_CommandError(output, context);
|
|
989
|
-
}
|
|
990
|
-
const contents = smithyClient.map({
|
|
991
|
-
$metadata: deserializeMetadata(output),
|
|
992
|
-
[_lo]: [, output.headers[_lo]],
|
|
993
|
-
[_uI]: [, output.headers[_xamui]],
|
|
994
|
-
});
|
|
995
|
-
await smithyClient.collectBody(output.body, context);
|
|
996
|
-
return contents;
|
|
997
|
-
};
|
|
998
|
-
const de_InitiateVaultLockCommand = async (output, context) => {
|
|
999
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1000
|
-
return de_CommandError(output, context);
|
|
1001
|
-
}
|
|
1002
|
-
const contents = smithyClient.map({
|
|
1003
|
-
$metadata: deserializeMetadata(output),
|
|
1004
|
-
[_lI]: [, output.headers[_xali]],
|
|
1005
|
-
});
|
|
1006
|
-
await smithyClient.collectBody(output.body, context);
|
|
1007
|
-
return contents;
|
|
1008
|
-
};
|
|
1009
|
-
const de_ListJobsCommand = async (output, context) => {
|
|
1010
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1011
|
-
return de_CommandError(output, context);
|
|
1012
|
-
}
|
|
1013
|
-
const contents = smithyClient.map({
|
|
1014
|
-
$metadata: deserializeMetadata(output),
|
|
1015
|
-
});
|
|
1016
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1017
|
-
const doc = smithyClient.take(data, {
|
|
1018
|
-
JobList: smithyClient._json,
|
|
1019
|
-
Marker: smithyClient.expectString,
|
|
1020
|
-
});
|
|
1021
|
-
Object.assign(contents, doc);
|
|
1022
|
-
return contents;
|
|
1023
|
-
};
|
|
1024
|
-
const de_ListMultipartUploadsCommand = async (output, context) => {
|
|
1025
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1026
|
-
return de_CommandError(output, context);
|
|
1027
|
-
}
|
|
1028
|
-
const contents = smithyClient.map({
|
|
1029
|
-
$metadata: deserializeMetadata(output),
|
|
1030
|
-
});
|
|
1031
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1032
|
-
const doc = smithyClient.take(data, {
|
|
1033
|
-
Marker: smithyClient.expectString,
|
|
1034
|
-
UploadsList: smithyClient._json,
|
|
1035
|
-
});
|
|
1036
|
-
Object.assign(contents, doc);
|
|
1037
|
-
return contents;
|
|
1038
|
-
};
|
|
1039
|
-
const de_ListPartsCommand = async (output, context) => {
|
|
1040
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1041
|
-
return de_CommandError(output, context);
|
|
1042
|
-
}
|
|
1043
|
-
const contents = smithyClient.map({
|
|
1044
|
-
$metadata: deserializeMetadata(output),
|
|
1045
|
-
});
|
|
1046
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1047
|
-
const doc = smithyClient.take(data, {
|
|
1048
|
-
ArchiveDescription: smithyClient.expectString,
|
|
1049
|
-
CreationDate: smithyClient.expectString,
|
|
1050
|
-
Marker: smithyClient.expectString,
|
|
1051
|
-
MultipartUploadId: smithyClient.expectString,
|
|
1052
|
-
PartSizeInBytes: smithyClient.expectLong,
|
|
1053
|
-
Parts: smithyClient._json,
|
|
1054
|
-
VaultARN: smithyClient.expectString,
|
|
1055
|
-
});
|
|
1056
|
-
Object.assign(contents, doc);
|
|
1057
|
-
return contents;
|
|
1058
|
-
};
|
|
1059
|
-
const de_ListProvisionedCapacityCommand = async (output, context) => {
|
|
1060
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1061
|
-
return de_CommandError(output, context);
|
|
1062
|
-
}
|
|
1063
|
-
const contents = smithyClient.map({
|
|
1064
|
-
$metadata: deserializeMetadata(output),
|
|
1065
|
-
});
|
|
1066
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1067
|
-
const doc = smithyClient.take(data, {
|
|
1068
|
-
ProvisionedCapacityList: smithyClient._json,
|
|
1069
|
-
});
|
|
1070
|
-
Object.assign(contents, doc);
|
|
1071
|
-
return contents;
|
|
1072
|
-
};
|
|
1073
|
-
const de_ListTagsForVaultCommand = async (output, context) => {
|
|
1074
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1075
|
-
return de_CommandError(output, context);
|
|
1076
|
-
}
|
|
1077
|
-
const contents = smithyClient.map({
|
|
1078
|
-
$metadata: deserializeMetadata(output),
|
|
1079
|
-
});
|
|
1080
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1081
|
-
const doc = smithyClient.take(data, {
|
|
1082
|
-
Tags: smithyClient._json,
|
|
1083
|
-
});
|
|
1084
|
-
Object.assign(contents, doc);
|
|
1085
|
-
return contents;
|
|
1086
|
-
};
|
|
1087
|
-
const de_ListVaultsCommand = async (output, context) => {
|
|
1088
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
1089
|
-
return de_CommandError(output, context);
|
|
1090
|
-
}
|
|
1091
|
-
const contents = smithyClient.map({
|
|
1092
|
-
$metadata: deserializeMetadata(output),
|
|
1093
|
-
});
|
|
1094
|
-
const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
|
|
1095
|
-
const doc = smithyClient.take(data, {
|
|
1096
|
-
Marker: smithyClient.expectString,
|
|
1097
|
-
VaultList: smithyClient._json,
|
|
1098
|
-
});
|
|
1099
|
-
Object.assign(contents, doc);
|
|
1100
|
-
return contents;
|
|
1101
|
-
};
|
|
1102
|
-
const de_PurchaseProvisionedCapacityCommand = async (output, context) => {
|
|
1103
|
-
if (output.statusCode !== 201 && output.statusCode >= 300) {
|
|
1104
|
-
return de_CommandError(output, context);
|
|
1105
|
-
}
|
|
1106
|
-
const contents = smithyClient.map({
|
|
1107
|
-
$metadata: deserializeMetadata(output),
|
|
1108
|
-
[_cI]: [, output.headers[_xaci]],
|
|
1109
|
-
});
|
|
1110
|
-
await smithyClient.collectBody(output.body, context);
|
|
1111
|
-
return contents;
|
|
1112
|
-
};
|
|
1113
|
-
const de_RemoveTagsFromVaultCommand = async (output, context) => {
|
|
1114
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1115
|
-
return de_CommandError(output, context);
|
|
1116
|
-
}
|
|
1117
|
-
const contents = smithyClient.map({
|
|
1118
|
-
$metadata: deserializeMetadata(output),
|
|
1119
|
-
});
|
|
1120
|
-
await smithyClient.collectBody(output.body, context);
|
|
1121
|
-
return contents;
|
|
1122
|
-
};
|
|
1123
|
-
const de_SetDataRetrievalPolicyCommand = async (output, context) => {
|
|
1124
|
-
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
1125
|
-
return de_CommandError(output, context);
|
|
1126
|
-
}
|
|
1127
|
-
const contents = smithyClient.map({
|
|
1128
|
-
$metadata: deserializeMetadata(output),
|
|
1129
|
-
});
|
|
1130
|
-
await smithyClient.collectBody(output.body, context);
|
|
1131
|
-
return contents;
|
|
1132
302
|
};
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
const
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
const
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
const
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
const
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
const
|
|
1218
|
-
const
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
const
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
const
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
const
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
const
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
const
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
const
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
const
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
const exception = new ServiceUnavailableException({
|
|
1333
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
1334
|
-
...contents,
|
|
1335
|
-
});
|
|
1336
|
-
return smithyClient.decorateServiceException(exception, parsedOutput.body);
|
|
1337
|
-
};
|
|
1338
|
-
const deserializeMetadata = (output) => ({
|
|
1339
|
-
httpStatusCode: output.statusCode,
|
|
1340
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1341
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1342
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1343
|
-
});
|
|
303
|
+
|
|
304
|
+
const _A = "Action";
|
|
305
|
+
const _ACL = "AccessControlList";
|
|
306
|
+
const _ACO = "ArchiveCreationOutput";
|
|
307
|
+
const _ACPL = "AccessControlPolicyList";
|
|
308
|
+
const _AD = "ArchiveDescription";
|
|
309
|
+
const _AI = "ArchiveId";
|
|
310
|
+
const _AMU = "AbortMultipartUpload";
|
|
311
|
+
const _AMUI = "AbortMultipartUploadInput";
|
|
312
|
+
const _AR = "Accept-Ranges";
|
|
313
|
+
const _ASHATH = "ArchiveSHA256TreeHash";
|
|
314
|
+
const _ASIB = "ArchiveSizeInBytes";
|
|
315
|
+
const _ATTV = "AddTagsToVault";
|
|
316
|
+
const _ATTVI = "AddTagsToVaultInput";
|
|
317
|
+
const _AVL = "AbortVaultLock";
|
|
318
|
+
const _AVLI = "AbortVaultLockInput";
|
|
319
|
+
const _BN = "BucketName";
|
|
320
|
+
const _BPH = "BytesPerHour";
|
|
321
|
+
const _C = "Comments";
|
|
322
|
+
const _CACL = "CannedACL";
|
|
323
|
+
const _CD = "CreationDate";
|
|
324
|
+
const _CDo = "CompletionDate";
|
|
325
|
+
const _CI = "CapacityId";
|
|
326
|
+
const _CMU = "CompleteMultipartUpload";
|
|
327
|
+
const _CMUI = "CompleteMultipartUploadInput";
|
|
328
|
+
const _CR = "Content-Range";
|
|
329
|
+
const _CSVI = "CSVInput";
|
|
330
|
+
const _CSVO = "CSVOutput";
|
|
331
|
+
const _CT = "Content-Type";
|
|
332
|
+
const _CV = "CreateVault";
|
|
333
|
+
const _CVI = "CreateVaultInput";
|
|
334
|
+
const _CVL = "CompleteVaultLock";
|
|
335
|
+
const _CVLI = "CompleteVaultLockInput";
|
|
336
|
+
const _CVO = "CreateVaultOutput";
|
|
337
|
+
const _Co = "Completed";
|
|
338
|
+
const _D = "Description";
|
|
339
|
+
const _DA = "DeleteArchive";
|
|
340
|
+
const _DAI = "DeleteArchiveInput";
|
|
341
|
+
const _DJ = "DescribeJob";
|
|
342
|
+
const _DJI = "DescribeJobInput";
|
|
343
|
+
const _DN = "DisplayName";
|
|
344
|
+
const _DRP = "DataRetrievalPolicy";
|
|
345
|
+
const _DRR = "DataRetrievalRule";
|
|
346
|
+
const _DRRL = "DataRetrievalRulesList";
|
|
347
|
+
const _DV = "DeleteVault";
|
|
348
|
+
const _DVAP = "DeleteVaultAccessPolicy";
|
|
349
|
+
const _DVAPI = "DeleteVaultAccessPolicyInput";
|
|
350
|
+
const _DVI = "DeleteVaultInput";
|
|
351
|
+
const _DVIe = "DescribeVaultInput";
|
|
352
|
+
const _DVN = "DeleteVaultNotifications";
|
|
353
|
+
const _DVNI = "DeleteVaultNotificationsInput";
|
|
354
|
+
const _DVO = "DescribeVaultOutput";
|
|
355
|
+
const _DVe = "DescribeVault";
|
|
356
|
+
const _E = "Encryption";
|
|
357
|
+
const _EA = "EmailAddress";
|
|
358
|
+
const _ED = "ExpirationDate";
|
|
359
|
+
const _EDn = "EndDate";
|
|
360
|
+
const _ET = "EncryptionType";
|
|
361
|
+
const _ETx = "ExpressionType";
|
|
362
|
+
const _Ev = "Events";
|
|
363
|
+
const _Ex = "Expression";
|
|
364
|
+
const _F = "Format";
|
|
365
|
+
const _FD = "FieldDelimiter";
|
|
366
|
+
const _FHI = "FileHeaderInfo";
|
|
367
|
+
const _G = "Grant";
|
|
368
|
+
const _GDRP = "GetDataRetrievalPolicy";
|
|
369
|
+
const _GDRPI = "GetDataRetrievalPolicyInput";
|
|
370
|
+
const _GDRPO = "GetDataRetrievalPolicyOutput";
|
|
371
|
+
const _GJD = "GlacierJobDescription";
|
|
372
|
+
const _GJO = "GetJobOutput";
|
|
373
|
+
const _GJOI = "GetJobOutputInput";
|
|
374
|
+
const _GJOO = "GetJobOutputOutput";
|
|
375
|
+
const _GVAP = "GetVaultAccessPolicy";
|
|
376
|
+
const _GVAPI = "GetVaultAccessPolicyInput";
|
|
377
|
+
const _GVAPO = "GetVaultAccessPolicyOutput";
|
|
378
|
+
const _GVL = "GetVaultLock";
|
|
379
|
+
const _GVLI = "GetVaultLockInput";
|
|
380
|
+
const _GVLO = "GetVaultLockOutput";
|
|
381
|
+
const _GVN = "GetVaultNotifications";
|
|
382
|
+
const _GVNI = "GetVaultNotificationsInput";
|
|
383
|
+
const _GVNO = "GetVaultNotificationsOutput";
|
|
384
|
+
const _Gr = "Grantee";
|
|
385
|
+
const _ICE = "InsufficientCapacityException";
|
|
386
|
+
const _ID = "ID";
|
|
387
|
+
const _IJ = "InitiateJob";
|
|
388
|
+
const _IJI = "InitiateJobInput";
|
|
389
|
+
const _IJO = "InitiateJobOutput";
|
|
390
|
+
const _IMU = "InitiateMultipartUpload";
|
|
391
|
+
const _IMUI = "InitiateMultipartUploadInput";
|
|
392
|
+
const _IMUO = "InitiateMultipartUploadOutput";
|
|
393
|
+
const _IPVE = "InvalidParameterValueException";
|
|
394
|
+
const _IRJD = "InventoryRetrievalJobDescription";
|
|
395
|
+
const _IRJI = "InventoryRetrievalJobInput";
|
|
396
|
+
const _IRP = "InventoryRetrievalParameters";
|
|
397
|
+
const _IS = "InputSerialization";
|
|
398
|
+
const _ISIB = "InventorySizeInBytes";
|
|
399
|
+
const _IVL = "InitiateVaultLock";
|
|
400
|
+
const _IVLI = "InitiateVaultLockInput";
|
|
401
|
+
const _IVLO = "InitiateVaultLockOutput";
|
|
402
|
+
const _JD = "JobDescription";
|
|
403
|
+
const _JI = "JobId";
|
|
404
|
+
const _JL = "JobList";
|
|
405
|
+
const _JOP = "JobOutputPath";
|
|
406
|
+
const _JP = "JobParameters";
|
|
407
|
+
const _KMSC = "KMSContext";
|
|
408
|
+
const _KMSKI = "KMSKeyId";
|
|
409
|
+
const _L = "Location";
|
|
410
|
+
const _LEE = "LimitExceededException";
|
|
411
|
+
const _LID = "LastInventoryDate";
|
|
412
|
+
const _LJ = "ListJobs";
|
|
413
|
+
const _LJI = "ListJobsInput";
|
|
414
|
+
const _LJO = "ListJobsOutput";
|
|
415
|
+
const _LMU = "ListMultipartUploads";
|
|
416
|
+
const _LMUI = "ListMultipartUploadsInput";
|
|
417
|
+
const _LMUO = "ListMultipartUploadsOutput";
|
|
418
|
+
const _LP = "ListParts";
|
|
419
|
+
const _LPC = "ListProvisionedCapacity";
|
|
420
|
+
const _LPCI = "ListProvisionedCapacityInput";
|
|
421
|
+
const _LPCO = "ListProvisionedCapacityOutput";
|
|
422
|
+
const _LPI = "ListPartsInput";
|
|
423
|
+
const _LPO = "ListPartsOutput";
|
|
424
|
+
const _LTFV = "ListTagsForVault";
|
|
425
|
+
const _LTFVI = "ListTagsForVaultInput";
|
|
426
|
+
const _LTFVO = "ListTagsForVaultOutput";
|
|
427
|
+
const _LV = "ListVaults";
|
|
428
|
+
const _LVI = "ListVaultsInput";
|
|
429
|
+
const _LVO = "ListVaultsOutput";
|
|
430
|
+
const _Li = "Limit";
|
|
431
|
+
const _M = "Marker";
|
|
432
|
+
const _MPVE = "MissingParameterValueException";
|
|
433
|
+
const _MUI = "MultipartUploadId";
|
|
434
|
+
const _NOA = "NumberOfArchives";
|
|
435
|
+
const _OL = "OutputLocation";
|
|
436
|
+
const _OS = "OutputSerialization";
|
|
437
|
+
const _P = "Policy";
|
|
438
|
+
const _PCD = "ProvisionedCapacityDescription";
|
|
439
|
+
const _PCL = "ProvisionedCapacityList";
|
|
440
|
+
const _PEE = "PolicyEnforcedException";
|
|
441
|
+
const _PL = "PartList";
|
|
442
|
+
const _PLE = "PartListElement";
|
|
443
|
+
const _PPC = "PurchaseProvisionedCapacity";
|
|
444
|
+
const _PPCI = "PurchaseProvisionedCapacityInput";
|
|
445
|
+
const _PPCO = "PurchaseProvisionedCapacityOutput";
|
|
446
|
+
const _PSIB = "PartSizeInBytes";
|
|
447
|
+
const _Pa = "Parts";
|
|
448
|
+
const _Pe = "Permission";
|
|
449
|
+
const _Pr = "Prefix";
|
|
450
|
+
const _QC = "QuoteCharacter";
|
|
451
|
+
const _QEC = "QuoteEscapeCharacter";
|
|
452
|
+
const _QF = "QuoteFields";
|
|
453
|
+
const _R = "Rules";
|
|
454
|
+
const _RBR = "RetrievalByteRange";
|
|
455
|
+
const _RD = "RecordDelimiter";
|
|
456
|
+
const _RIB = "RangeInBytes";
|
|
457
|
+
const _RNFE = "ResourceNotFoundException";
|
|
458
|
+
const _RTE = "RequestTimeoutException";
|
|
459
|
+
const _RTFV = "RemoveTagsFromVault";
|
|
460
|
+
const _RTFVI = "RemoveTagsFromVaultInput";
|
|
461
|
+
const _Ra = "Range";
|
|
462
|
+
const _S = "Stream";
|
|
463
|
+
const _SC = "StatusCode";
|
|
464
|
+
const _SCt = "StorageClass";
|
|
465
|
+
const _SD = "StartDate";
|
|
466
|
+
const _SDRP = "SetDataRetrievalPolicy";
|
|
467
|
+
const _SDRPI = "SetDataRetrievalPolicyInput";
|
|
468
|
+
const _SHATH = "SHA256TreeHash";
|
|
469
|
+
const _SIB = "SizeInBytes";
|
|
470
|
+
const _SL = "S3Location";
|
|
471
|
+
const _SM = "StatusMessage";
|
|
472
|
+
const _SNST = "SNSTopic";
|
|
473
|
+
const _SP = "SelectParameters";
|
|
474
|
+
const _SUE = "ServiceUnavailableException";
|
|
475
|
+
const _SVAP = "SetVaultAccessPolicy";
|
|
476
|
+
const _SVAPI = "SetVaultAccessPolicyInput";
|
|
477
|
+
const _SVN = "SetVaultNotifications";
|
|
478
|
+
const _SVNI = "SetVaultNotificationsInput";
|
|
479
|
+
const _S_ = "S3";
|
|
480
|
+
const _St = "Strategy";
|
|
481
|
+
const _Sta = "State";
|
|
482
|
+
const _T = "Tags";
|
|
483
|
+
const _TK = "TagKeys";
|
|
484
|
+
const _Ta = "Tagging";
|
|
485
|
+
const _Ti = "Tier";
|
|
486
|
+
const _Ty = "Type";
|
|
487
|
+
const _UA = "UploadArchive";
|
|
488
|
+
const _UAI = "UploadArchiveInput";
|
|
489
|
+
const _UL = "UploadsList";
|
|
490
|
+
const _ULE = "UploadListElement";
|
|
491
|
+
const _UM = "UserMetadata";
|
|
492
|
+
const _UMP = "UploadMultipartPart";
|
|
493
|
+
const _UMPI = "UploadMultipartPartInput";
|
|
494
|
+
const _UMPO = "UploadMultipartPartOutput";
|
|
495
|
+
const _URI = "URI";
|
|
496
|
+
const _VAP = "VaultAccessPolicy";
|
|
497
|
+
const _VARN = "VaultARN";
|
|
498
|
+
const _VL = "VaultList";
|
|
499
|
+
const _VLP = "VaultLockPolicy";
|
|
500
|
+
const _VN = "VaultName";
|
|
501
|
+
const _VNC = "VaultNotificationConfig";
|
|
1344
502
|
const _aD = "archiveDescription";
|
|
1345
|
-
const _aI = "
|
|
503
|
+
const _aI = "accountId";
|
|
504
|
+
const _aIr = "archiveId";
|
|
1346
505
|
const _aR = "acceptRanges";
|
|
1347
506
|
const _aS = "archiveSize";
|
|
1348
|
-
const
|
|
507
|
+
const _b = "body";
|
|
1349
508
|
const _c = "checksum";
|
|
1350
509
|
const _cI = "capacityId";
|
|
1351
510
|
const _cR = "contentRange";
|
|
1352
511
|
const _cT = "contentType";
|
|
1353
|
-
const
|
|
1354
|
-
const
|
|
1355
|
-
const
|
|
512
|
+
const _cl = "client";
|
|
513
|
+
const _co = "code";
|
|
514
|
+
const _com = "completed";
|
|
515
|
+
const _cs = "csv";
|
|
516
|
+
const _e = "error";
|
|
517
|
+
const _h = "http";
|
|
518
|
+
const _hE = "httpError";
|
|
519
|
+
const _hH = "httpHeader";
|
|
520
|
+
const _hQ = "httpQuery";
|
|
1356
521
|
const _jI = "jobId";
|
|
1357
522
|
const _jOP = "jobOutputPath";
|
|
1358
|
-
const
|
|
523
|
+
const _jP = "jobParameters";
|
|
524
|
+
const _l = "location";
|
|
1359
525
|
const _lI = "lockId";
|
|
1360
|
-
const
|
|
1361
|
-
const _m = "
|
|
1362
|
-
const
|
|
526
|
+
const _li = "limit";
|
|
527
|
+
const _m = "message";
|
|
528
|
+
const _ma = "marker";
|
|
529
|
+
const _p = "policy";
|
|
1363
530
|
const _pS = "partSize";
|
|
1364
531
|
const _r = "range";
|
|
1365
|
-
const _s = "
|
|
532
|
+
const _s = "streaming";
|
|
533
|
+
const _se = "server";
|
|
534
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.glacier";
|
|
535
|
+
const _st = "status";
|
|
536
|
+
const _sta = "statuscode";
|
|
537
|
+
const _t = "type";
|
|
1366
538
|
const _uI = "uploadId";
|
|
539
|
+
const _vN = "vaultName";
|
|
540
|
+
const _vNC = "vaultNotificationConfig";
|
|
1367
541
|
const _xaad = "x-amz-archive-description";
|
|
1368
542
|
const _xaai = "x-amz-archive-id";
|
|
1369
543
|
const _xaas = "x-amz-archive-size";
|
|
@@ -1374,21 +548,1229 @@ const _xali = "x-amz-lock-id";
|
|
|
1374
548
|
const _xamui = "x-amz-multipart-upload-id";
|
|
1375
549
|
const _xaps = "x-amz-part-size";
|
|
1376
550
|
const _xasth = "x-amz-sha256-tree-hash";
|
|
551
|
+
const n0 = "com.amazonaws.glacier";
|
|
552
|
+
var _Stream = [
|
|
553
|
+
0,
|
|
554
|
+
n0,
|
|
555
|
+
_S,
|
|
556
|
+
{
|
|
557
|
+
[_s]: 1,
|
|
558
|
+
},
|
|
559
|
+
42,
|
|
560
|
+
];
|
|
561
|
+
var AbortMultipartUploadInput = [
|
|
562
|
+
3,
|
|
563
|
+
n0,
|
|
564
|
+
_AMUI,
|
|
565
|
+
0,
|
|
566
|
+
[_aI, _vN, _uI],
|
|
567
|
+
[
|
|
568
|
+
[0, 1],
|
|
569
|
+
[0, 1],
|
|
570
|
+
[0, 1],
|
|
571
|
+
],
|
|
572
|
+
];
|
|
573
|
+
var AbortVaultLockInput = [
|
|
574
|
+
3,
|
|
575
|
+
n0,
|
|
576
|
+
_AVLI,
|
|
577
|
+
0,
|
|
578
|
+
[_aI, _vN],
|
|
579
|
+
[
|
|
580
|
+
[0, 1],
|
|
581
|
+
[0, 1],
|
|
582
|
+
],
|
|
583
|
+
];
|
|
584
|
+
var AddTagsToVaultInput = [3, n0, _ATTVI, 0, [_aI, _vN, _T], [[0, 1], [0, 1], 128 | 0]];
|
|
585
|
+
var ArchiveCreationOutput = [
|
|
586
|
+
3,
|
|
587
|
+
n0,
|
|
588
|
+
_ACO,
|
|
589
|
+
0,
|
|
590
|
+
[_l, _c, _aIr],
|
|
591
|
+
[
|
|
592
|
+
[
|
|
593
|
+
0,
|
|
594
|
+
{
|
|
595
|
+
[_hH]: _L,
|
|
596
|
+
},
|
|
597
|
+
],
|
|
598
|
+
[
|
|
599
|
+
0,
|
|
600
|
+
{
|
|
601
|
+
[_hH]: _xasth,
|
|
602
|
+
},
|
|
603
|
+
],
|
|
604
|
+
[
|
|
605
|
+
0,
|
|
606
|
+
{
|
|
607
|
+
[_hH]: _xaai,
|
|
608
|
+
},
|
|
609
|
+
],
|
|
610
|
+
],
|
|
611
|
+
];
|
|
612
|
+
var CompleteMultipartUploadInput = [
|
|
613
|
+
3,
|
|
614
|
+
n0,
|
|
615
|
+
_CMUI,
|
|
616
|
+
0,
|
|
617
|
+
[_aI, _vN, _uI, _aS, _c],
|
|
618
|
+
[
|
|
619
|
+
[0, 1],
|
|
620
|
+
[0, 1],
|
|
621
|
+
[0, 1],
|
|
622
|
+
[
|
|
623
|
+
0,
|
|
624
|
+
{
|
|
625
|
+
[_hH]: _xaas,
|
|
626
|
+
},
|
|
627
|
+
],
|
|
628
|
+
[
|
|
629
|
+
0,
|
|
630
|
+
{
|
|
631
|
+
[_hH]: _xasth,
|
|
632
|
+
},
|
|
633
|
+
],
|
|
634
|
+
],
|
|
635
|
+
];
|
|
636
|
+
var CompleteVaultLockInput = [
|
|
637
|
+
3,
|
|
638
|
+
n0,
|
|
639
|
+
_CVLI,
|
|
640
|
+
0,
|
|
641
|
+
[_aI, _vN, _lI],
|
|
642
|
+
[
|
|
643
|
+
[0, 1],
|
|
644
|
+
[0, 1],
|
|
645
|
+
[0, 1],
|
|
646
|
+
],
|
|
647
|
+
];
|
|
648
|
+
var CreateVaultInput = [
|
|
649
|
+
3,
|
|
650
|
+
n0,
|
|
651
|
+
_CVI,
|
|
652
|
+
0,
|
|
653
|
+
[_aI, _vN],
|
|
654
|
+
[
|
|
655
|
+
[0, 1],
|
|
656
|
+
[0, 1],
|
|
657
|
+
],
|
|
658
|
+
];
|
|
659
|
+
var CreateVaultOutput = [
|
|
660
|
+
3,
|
|
661
|
+
n0,
|
|
662
|
+
_CVO,
|
|
663
|
+
0,
|
|
664
|
+
[_l],
|
|
665
|
+
[
|
|
666
|
+
[
|
|
667
|
+
0,
|
|
668
|
+
{
|
|
669
|
+
[_hH]: _L,
|
|
670
|
+
},
|
|
671
|
+
],
|
|
672
|
+
],
|
|
673
|
+
];
|
|
674
|
+
var CSVInput = [3, n0, _CSVI, 0, [_FHI, _C, _QEC, _RD, _FD, _QC], [0, 0, 0, 0, 0, 0]];
|
|
675
|
+
var CSVOutput = [3, n0, _CSVO, 0, [_QF, _QEC, _RD, _FD, _QC], [0, 0, 0, 0, 0]];
|
|
676
|
+
var DataRetrievalPolicy = [3, n0, _DRP, 0, [_R], [() => DataRetrievalRulesList]];
|
|
677
|
+
var DataRetrievalRule = [3, n0, _DRR, 0, [_St, _BPH], [0, 1]];
|
|
678
|
+
var DeleteArchiveInput = [
|
|
679
|
+
3,
|
|
680
|
+
n0,
|
|
681
|
+
_DAI,
|
|
682
|
+
0,
|
|
683
|
+
[_aI, _vN, _aIr],
|
|
684
|
+
[
|
|
685
|
+
[0, 1],
|
|
686
|
+
[0, 1],
|
|
687
|
+
[0, 1],
|
|
688
|
+
],
|
|
689
|
+
];
|
|
690
|
+
var DeleteVaultAccessPolicyInput = [
|
|
691
|
+
3,
|
|
692
|
+
n0,
|
|
693
|
+
_DVAPI,
|
|
694
|
+
0,
|
|
695
|
+
[_aI, _vN],
|
|
696
|
+
[
|
|
697
|
+
[0, 1],
|
|
698
|
+
[0, 1],
|
|
699
|
+
],
|
|
700
|
+
];
|
|
701
|
+
var DeleteVaultInput = [
|
|
702
|
+
3,
|
|
703
|
+
n0,
|
|
704
|
+
_DVI,
|
|
705
|
+
0,
|
|
706
|
+
[_aI, _vN],
|
|
707
|
+
[
|
|
708
|
+
[0, 1],
|
|
709
|
+
[0, 1],
|
|
710
|
+
],
|
|
711
|
+
];
|
|
712
|
+
var DeleteVaultNotificationsInput = [
|
|
713
|
+
3,
|
|
714
|
+
n0,
|
|
715
|
+
_DVNI,
|
|
716
|
+
0,
|
|
717
|
+
[_aI, _vN],
|
|
718
|
+
[
|
|
719
|
+
[0, 1],
|
|
720
|
+
[0, 1],
|
|
721
|
+
],
|
|
722
|
+
];
|
|
723
|
+
var DescribeJobInput = [
|
|
724
|
+
3,
|
|
725
|
+
n0,
|
|
726
|
+
_DJI,
|
|
727
|
+
0,
|
|
728
|
+
[_aI, _vN, _jI],
|
|
729
|
+
[
|
|
730
|
+
[0, 1],
|
|
731
|
+
[0, 1],
|
|
732
|
+
[0, 1],
|
|
733
|
+
],
|
|
734
|
+
];
|
|
735
|
+
var DescribeVaultInput = [
|
|
736
|
+
3,
|
|
737
|
+
n0,
|
|
738
|
+
_DVIe,
|
|
739
|
+
0,
|
|
740
|
+
[_aI, _vN],
|
|
741
|
+
[
|
|
742
|
+
[0, 1],
|
|
743
|
+
[0, 1],
|
|
744
|
+
],
|
|
745
|
+
];
|
|
746
|
+
var DescribeVaultOutput = [
|
|
747
|
+
3,
|
|
748
|
+
n0,
|
|
749
|
+
_DVO,
|
|
750
|
+
0,
|
|
751
|
+
[_VARN, _VN, _CD, _LID, _NOA, _SIB],
|
|
752
|
+
[0, 0, 0, 0, 1, 1],
|
|
753
|
+
];
|
|
754
|
+
var Encryption = [3, n0, _E, 0, [_ET, _KMSKI, _KMSC], [0, 0, 0]];
|
|
755
|
+
var GetDataRetrievalPolicyInput = [3, n0, _GDRPI, 0, [_aI], [[0, 1]]];
|
|
756
|
+
var GetDataRetrievalPolicyOutput = [3, n0, _GDRPO, 0, [_P], [() => DataRetrievalPolicy]];
|
|
757
|
+
var GetJobOutputInput = [
|
|
758
|
+
3,
|
|
759
|
+
n0,
|
|
760
|
+
_GJOI,
|
|
761
|
+
0,
|
|
762
|
+
[_aI, _vN, _jI, _r],
|
|
763
|
+
[
|
|
764
|
+
[0, 1],
|
|
765
|
+
[0, 1],
|
|
766
|
+
[0, 1],
|
|
767
|
+
[
|
|
768
|
+
0,
|
|
769
|
+
{
|
|
770
|
+
[_hH]: _Ra,
|
|
771
|
+
},
|
|
772
|
+
],
|
|
773
|
+
],
|
|
774
|
+
];
|
|
775
|
+
var GetJobOutputOutput = [
|
|
776
|
+
3,
|
|
777
|
+
n0,
|
|
778
|
+
_GJOO,
|
|
779
|
+
0,
|
|
780
|
+
[_b, _c, _st, _cR, _aR, _cT, _aD],
|
|
781
|
+
[
|
|
782
|
+
[() => _Stream, 16],
|
|
783
|
+
[
|
|
784
|
+
0,
|
|
785
|
+
{
|
|
786
|
+
[_hH]: _xasth,
|
|
787
|
+
},
|
|
788
|
+
],
|
|
789
|
+
[1, 32],
|
|
790
|
+
[
|
|
791
|
+
0,
|
|
792
|
+
{
|
|
793
|
+
[_hH]: _CR,
|
|
794
|
+
},
|
|
795
|
+
],
|
|
796
|
+
[
|
|
797
|
+
0,
|
|
798
|
+
{
|
|
799
|
+
[_hH]: _AR,
|
|
800
|
+
},
|
|
801
|
+
],
|
|
802
|
+
[
|
|
803
|
+
0,
|
|
804
|
+
{
|
|
805
|
+
[_hH]: _CT,
|
|
806
|
+
},
|
|
807
|
+
],
|
|
808
|
+
[
|
|
809
|
+
0,
|
|
810
|
+
{
|
|
811
|
+
[_hH]: _xaad,
|
|
812
|
+
},
|
|
813
|
+
],
|
|
814
|
+
],
|
|
815
|
+
];
|
|
816
|
+
var GetVaultAccessPolicyInput = [
|
|
817
|
+
3,
|
|
818
|
+
n0,
|
|
819
|
+
_GVAPI,
|
|
820
|
+
0,
|
|
821
|
+
[_aI, _vN],
|
|
822
|
+
[
|
|
823
|
+
[0, 1],
|
|
824
|
+
[0, 1],
|
|
825
|
+
],
|
|
826
|
+
];
|
|
827
|
+
var GetVaultAccessPolicyOutput = [
|
|
828
|
+
3,
|
|
829
|
+
n0,
|
|
830
|
+
_GVAPO,
|
|
831
|
+
0,
|
|
832
|
+
[_p],
|
|
833
|
+
[[() => VaultAccessPolicy, 16]],
|
|
834
|
+
];
|
|
835
|
+
var GetVaultLockInput = [
|
|
836
|
+
3,
|
|
837
|
+
n0,
|
|
838
|
+
_GVLI,
|
|
839
|
+
0,
|
|
840
|
+
[_aI, _vN],
|
|
841
|
+
[
|
|
842
|
+
[0, 1],
|
|
843
|
+
[0, 1],
|
|
844
|
+
],
|
|
845
|
+
];
|
|
846
|
+
var GetVaultLockOutput = [3, n0, _GVLO, 0, [_P, _Sta, _ED, _CD], [0, 0, 0, 0]];
|
|
847
|
+
var GetVaultNotificationsInput = [
|
|
848
|
+
3,
|
|
849
|
+
n0,
|
|
850
|
+
_GVNI,
|
|
851
|
+
0,
|
|
852
|
+
[_aI, _vN],
|
|
853
|
+
[
|
|
854
|
+
[0, 1],
|
|
855
|
+
[0, 1],
|
|
856
|
+
],
|
|
857
|
+
];
|
|
858
|
+
var GetVaultNotificationsOutput = [
|
|
859
|
+
3,
|
|
860
|
+
n0,
|
|
861
|
+
_GVNO,
|
|
862
|
+
0,
|
|
863
|
+
[_vNC],
|
|
864
|
+
[[() => VaultNotificationConfig, 16]],
|
|
865
|
+
];
|
|
866
|
+
var GlacierJobDescription = [
|
|
867
|
+
3,
|
|
868
|
+
n0,
|
|
869
|
+
_GJD,
|
|
870
|
+
0,
|
|
871
|
+
[
|
|
872
|
+
_JI,
|
|
873
|
+
_JD,
|
|
874
|
+
_A,
|
|
875
|
+
_AI,
|
|
876
|
+
_VARN,
|
|
877
|
+
_CD,
|
|
878
|
+
_Co,
|
|
879
|
+
_SC,
|
|
880
|
+
_SM,
|
|
881
|
+
_ASIB,
|
|
882
|
+
_ISIB,
|
|
883
|
+
_SNST,
|
|
884
|
+
_CDo,
|
|
885
|
+
_SHATH,
|
|
886
|
+
_ASHATH,
|
|
887
|
+
_RBR,
|
|
888
|
+
_Ti,
|
|
889
|
+
_IRP,
|
|
890
|
+
_JOP,
|
|
891
|
+
_SP,
|
|
892
|
+
_OL,
|
|
893
|
+
],
|
|
894
|
+
[
|
|
895
|
+
0,
|
|
896
|
+
0,
|
|
897
|
+
0,
|
|
898
|
+
0,
|
|
899
|
+
0,
|
|
900
|
+
0,
|
|
901
|
+
2,
|
|
902
|
+
0,
|
|
903
|
+
0,
|
|
904
|
+
1,
|
|
905
|
+
1,
|
|
906
|
+
0,
|
|
907
|
+
0,
|
|
908
|
+
0,
|
|
909
|
+
0,
|
|
910
|
+
0,
|
|
911
|
+
0,
|
|
912
|
+
() => InventoryRetrievalJobDescription,
|
|
913
|
+
0,
|
|
914
|
+
() => SelectParameters,
|
|
915
|
+
() => OutputLocation,
|
|
916
|
+
],
|
|
917
|
+
];
|
|
918
|
+
var Grant = [3, n0, _G, 0, [_Gr, _Pe], [() => Grantee, 0]];
|
|
919
|
+
var Grantee = [3, n0, _Gr, 0, [_Ty, _DN, _URI, _ID, _EA], [0, 0, 0, 0, 0]];
|
|
920
|
+
var InitiateJobInput = [
|
|
921
|
+
3,
|
|
922
|
+
n0,
|
|
923
|
+
_IJI,
|
|
924
|
+
0,
|
|
925
|
+
[_aI, _vN, _jP],
|
|
926
|
+
[
|
|
927
|
+
[0, 1],
|
|
928
|
+
[0, 1],
|
|
929
|
+
[() => JobParameters, 16],
|
|
930
|
+
],
|
|
931
|
+
];
|
|
932
|
+
var InitiateJobOutput = [
|
|
933
|
+
3,
|
|
934
|
+
n0,
|
|
935
|
+
_IJO,
|
|
936
|
+
0,
|
|
937
|
+
[_l, _jI, _jOP],
|
|
938
|
+
[
|
|
939
|
+
[
|
|
940
|
+
0,
|
|
941
|
+
{
|
|
942
|
+
[_hH]: _L,
|
|
943
|
+
},
|
|
944
|
+
],
|
|
945
|
+
[
|
|
946
|
+
0,
|
|
947
|
+
{
|
|
948
|
+
[_hH]: _xaji,
|
|
949
|
+
},
|
|
950
|
+
],
|
|
951
|
+
[
|
|
952
|
+
0,
|
|
953
|
+
{
|
|
954
|
+
[_hH]: _xajop,
|
|
955
|
+
},
|
|
956
|
+
],
|
|
957
|
+
],
|
|
958
|
+
];
|
|
959
|
+
var InitiateMultipartUploadInput = [
|
|
960
|
+
3,
|
|
961
|
+
n0,
|
|
962
|
+
_IMUI,
|
|
963
|
+
0,
|
|
964
|
+
[_aI, _vN, _aD, _pS],
|
|
965
|
+
[
|
|
966
|
+
[0, 1],
|
|
967
|
+
[0, 1],
|
|
968
|
+
[
|
|
969
|
+
0,
|
|
970
|
+
{
|
|
971
|
+
[_hH]: _xaad,
|
|
972
|
+
},
|
|
973
|
+
],
|
|
974
|
+
[
|
|
975
|
+
0,
|
|
976
|
+
{
|
|
977
|
+
[_hH]: _xaps,
|
|
978
|
+
},
|
|
979
|
+
],
|
|
980
|
+
],
|
|
981
|
+
];
|
|
982
|
+
var InitiateMultipartUploadOutput = [
|
|
983
|
+
3,
|
|
984
|
+
n0,
|
|
985
|
+
_IMUO,
|
|
986
|
+
0,
|
|
987
|
+
[_l, _uI],
|
|
988
|
+
[
|
|
989
|
+
[
|
|
990
|
+
0,
|
|
991
|
+
{
|
|
992
|
+
[_hH]: _L,
|
|
993
|
+
},
|
|
994
|
+
],
|
|
995
|
+
[
|
|
996
|
+
0,
|
|
997
|
+
{
|
|
998
|
+
[_hH]: _xamui,
|
|
999
|
+
},
|
|
1000
|
+
],
|
|
1001
|
+
],
|
|
1002
|
+
];
|
|
1003
|
+
var InitiateVaultLockInput = [
|
|
1004
|
+
3,
|
|
1005
|
+
n0,
|
|
1006
|
+
_IVLI,
|
|
1007
|
+
0,
|
|
1008
|
+
[_aI, _vN, _p],
|
|
1009
|
+
[
|
|
1010
|
+
[0, 1],
|
|
1011
|
+
[0, 1],
|
|
1012
|
+
[() => VaultLockPolicy, 16],
|
|
1013
|
+
],
|
|
1014
|
+
];
|
|
1015
|
+
var InitiateVaultLockOutput = [
|
|
1016
|
+
3,
|
|
1017
|
+
n0,
|
|
1018
|
+
_IVLO,
|
|
1019
|
+
0,
|
|
1020
|
+
[_lI],
|
|
1021
|
+
[
|
|
1022
|
+
[
|
|
1023
|
+
0,
|
|
1024
|
+
{
|
|
1025
|
+
[_hH]: _xali,
|
|
1026
|
+
},
|
|
1027
|
+
],
|
|
1028
|
+
],
|
|
1029
|
+
];
|
|
1030
|
+
var InputSerialization = [3, n0, _IS, 0, [_cs], [() => CSVInput]];
|
|
1031
|
+
var InsufficientCapacityException = [
|
|
1032
|
+
-3,
|
|
1033
|
+
n0,
|
|
1034
|
+
_ICE,
|
|
1035
|
+
{
|
|
1036
|
+
[_e]: _cl,
|
|
1037
|
+
[_hE]: 400,
|
|
1038
|
+
},
|
|
1039
|
+
[_t, _co, _m],
|
|
1040
|
+
[0, 0, 0],
|
|
1041
|
+
];
|
|
1042
|
+
schema.TypeRegistry.for(n0).registerError(InsufficientCapacityException, InsufficientCapacityException$1);
|
|
1043
|
+
var InvalidParameterValueException = [
|
|
1044
|
+
-3,
|
|
1045
|
+
n0,
|
|
1046
|
+
_IPVE,
|
|
1047
|
+
{
|
|
1048
|
+
[_e]: _cl,
|
|
1049
|
+
[_hE]: 400,
|
|
1050
|
+
},
|
|
1051
|
+
[_t, _co, _m],
|
|
1052
|
+
[0, 0, 0],
|
|
1053
|
+
];
|
|
1054
|
+
schema.TypeRegistry.for(n0).registerError(InvalidParameterValueException, InvalidParameterValueException$1);
|
|
1055
|
+
var InventoryRetrievalJobDescription = [
|
|
1056
|
+
3,
|
|
1057
|
+
n0,
|
|
1058
|
+
_IRJD,
|
|
1059
|
+
0,
|
|
1060
|
+
[_F, _SD, _EDn, _Li, _M],
|
|
1061
|
+
[0, 0, 0, 0, 0],
|
|
1062
|
+
];
|
|
1063
|
+
var InventoryRetrievalJobInput = [3, n0, _IRJI, 0, [_SD, _EDn, _Li, _M], [0, 0, 0, 0]];
|
|
1064
|
+
var JobParameters = [
|
|
1065
|
+
3,
|
|
1066
|
+
n0,
|
|
1067
|
+
_JP,
|
|
1068
|
+
0,
|
|
1069
|
+
[_F, _Ty, _AI, _D, _SNST, _RBR, _Ti, _IRP, _SP, _OL],
|
|
1070
|
+
[0, 0, 0, 0, 0, 0, 0, () => InventoryRetrievalJobInput, () => SelectParameters, () => OutputLocation],
|
|
1071
|
+
];
|
|
1072
|
+
var LimitExceededException = [
|
|
1073
|
+
-3,
|
|
1074
|
+
n0,
|
|
1075
|
+
_LEE,
|
|
1076
|
+
{
|
|
1077
|
+
[_e]: _cl,
|
|
1078
|
+
[_hE]: 400,
|
|
1079
|
+
},
|
|
1080
|
+
[_t, _co, _m],
|
|
1081
|
+
[0, 0, 0],
|
|
1082
|
+
];
|
|
1083
|
+
schema.TypeRegistry.for(n0).registerError(LimitExceededException, LimitExceededException$1);
|
|
1084
|
+
var ListJobsInput = [
|
|
1085
|
+
3,
|
|
1086
|
+
n0,
|
|
1087
|
+
_LJI,
|
|
1088
|
+
0,
|
|
1089
|
+
[_aI, _vN, _li, _ma, _sta, _com],
|
|
1090
|
+
[
|
|
1091
|
+
[0, 1],
|
|
1092
|
+
[0, 1],
|
|
1093
|
+
[
|
|
1094
|
+
1,
|
|
1095
|
+
{
|
|
1096
|
+
[_hQ]: _li,
|
|
1097
|
+
},
|
|
1098
|
+
],
|
|
1099
|
+
[
|
|
1100
|
+
0,
|
|
1101
|
+
{
|
|
1102
|
+
[_hQ]: _ma,
|
|
1103
|
+
},
|
|
1104
|
+
],
|
|
1105
|
+
[
|
|
1106
|
+
0,
|
|
1107
|
+
{
|
|
1108
|
+
[_hQ]: _sta,
|
|
1109
|
+
},
|
|
1110
|
+
],
|
|
1111
|
+
[
|
|
1112
|
+
0,
|
|
1113
|
+
{
|
|
1114
|
+
[_hQ]: _com,
|
|
1115
|
+
},
|
|
1116
|
+
],
|
|
1117
|
+
],
|
|
1118
|
+
];
|
|
1119
|
+
var ListJobsOutput = [3, n0, _LJO, 0, [_JL, _M], [() => JobList, 0]];
|
|
1120
|
+
var ListMultipartUploadsInput = [
|
|
1121
|
+
3,
|
|
1122
|
+
n0,
|
|
1123
|
+
_LMUI,
|
|
1124
|
+
0,
|
|
1125
|
+
[_aI, _vN, _li, _ma],
|
|
1126
|
+
[
|
|
1127
|
+
[0, 1],
|
|
1128
|
+
[0, 1],
|
|
1129
|
+
[
|
|
1130
|
+
1,
|
|
1131
|
+
{
|
|
1132
|
+
[_hQ]: _li,
|
|
1133
|
+
},
|
|
1134
|
+
],
|
|
1135
|
+
[
|
|
1136
|
+
0,
|
|
1137
|
+
{
|
|
1138
|
+
[_hQ]: _ma,
|
|
1139
|
+
},
|
|
1140
|
+
],
|
|
1141
|
+
],
|
|
1142
|
+
];
|
|
1143
|
+
var ListMultipartUploadsOutput = [3, n0, _LMUO, 0, [_UL, _M], [() => UploadsList, 0]];
|
|
1144
|
+
var ListPartsInput = [
|
|
1145
|
+
3,
|
|
1146
|
+
n0,
|
|
1147
|
+
_LPI,
|
|
1148
|
+
0,
|
|
1149
|
+
[_aI, _vN, _uI, _ma, _li],
|
|
1150
|
+
[
|
|
1151
|
+
[0, 1],
|
|
1152
|
+
[0, 1],
|
|
1153
|
+
[0, 1],
|
|
1154
|
+
[
|
|
1155
|
+
0,
|
|
1156
|
+
{
|
|
1157
|
+
[_hQ]: _ma,
|
|
1158
|
+
},
|
|
1159
|
+
],
|
|
1160
|
+
[
|
|
1161
|
+
1,
|
|
1162
|
+
{
|
|
1163
|
+
[_hQ]: _li,
|
|
1164
|
+
},
|
|
1165
|
+
],
|
|
1166
|
+
],
|
|
1167
|
+
];
|
|
1168
|
+
var ListPartsOutput = [
|
|
1169
|
+
3,
|
|
1170
|
+
n0,
|
|
1171
|
+
_LPO,
|
|
1172
|
+
0,
|
|
1173
|
+
[_MUI, _VARN, _AD, _PSIB, _CD, _Pa, _M],
|
|
1174
|
+
[0, 0, 0, 1, 0, () => PartList, 0],
|
|
1175
|
+
];
|
|
1176
|
+
var ListProvisionedCapacityInput = [3, n0, _LPCI, 0, [_aI], [[0, 1]]];
|
|
1177
|
+
var ListProvisionedCapacityOutput = [
|
|
1178
|
+
3,
|
|
1179
|
+
n0,
|
|
1180
|
+
_LPCO,
|
|
1181
|
+
0,
|
|
1182
|
+
[_PCL],
|
|
1183
|
+
[() => ProvisionedCapacityList],
|
|
1184
|
+
];
|
|
1185
|
+
var ListTagsForVaultInput = [
|
|
1186
|
+
3,
|
|
1187
|
+
n0,
|
|
1188
|
+
_LTFVI,
|
|
1189
|
+
0,
|
|
1190
|
+
[_aI, _vN],
|
|
1191
|
+
[
|
|
1192
|
+
[0, 1],
|
|
1193
|
+
[0, 1],
|
|
1194
|
+
],
|
|
1195
|
+
];
|
|
1196
|
+
var ListTagsForVaultOutput = [3, n0, _LTFVO, 0, [_T], [128 | 0]];
|
|
1197
|
+
var ListVaultsInput = [
|
|
1198
|
+
3,
|
|
1199
|
+
n0,
|
|
1200
|
+
_LVI,
|
|
1201
|
+
0,
|
|
1202
|
+
[_aI, _ma, _li],
|
|
1203
|
+
[
|
|
1204
|
+
[0, 1],
|
|
1205
|
+
[
|
|
1206
|
+
0,
|
|
1207
|
+
{
|
|
1208
|
+
[_hQ]: _ma,
|
|
1209
|
+
},
|
|
1210
|
+
],
|
|
1211
|
+
[
|
|
1212
|
+
1,
|
|
1213
|
+
{
|
|
1214
|
+
[_hQ]: _li,
|
|
1215
|
+
},
|
|
1216
|
+
],
|
|
1217
|
+
],
|
|
1218
|
+
];
|
|
1219
|
+
var ListVaultsOutput = [3, n0, _LVO, 0, [_VL, _M], [() => VaultList, 0]];
|
|
1220
|
+
var MissingParameterValueException = [
|
|
1221
|
+
-3,
|
|
1222
|
+
n0,
|
|
1223
|
+
_MPVE,
|
|
1224
|
+
{
|
|
1225
|
+
[_e]: _cl,
|
|
1226
|
+
[_hE]: 400,
|
|
1227
|
+
},
|
|
1228
|
+
[_t, _co, _m],
|
|
1229
|
+
[0, 0, 0],
|
|
1230
|
+
];
|
|
1231
|
+
schema.TypeRegistry.for(n0).registerError(MissingParameterValueException, MissingParameterValueException$1);
|
|
1232
|
+
var OutputLocation = [3, n0, _OL, 0, [_S_], [() => S3Location]];
|
|
1233
|
+
var OutputSerialization = [3, n0, _OS, 0, [_cs], [() => CSVOutput]];
|
|
1234
|
+
var PartListElement = [3, n0, _PLE, 0, [_RIB, _SHATH], [0, 0]];
|
|
1235
|
+
var PolicyEnforcedException = [
|
|
1236
|
+
-3,
|
|
1237
|
+
n0,
|
|
1238
|
+
_PEE,
|
|
1239
|
+
{
|
|
1240
|
+
[_e]: _cl,
|
|
1241
|
+
[_hE]: 400,
|
|
1242
|
+
},
|
|
1243
|
+
[_t, _co, _m],
|
|
1244
|
+
[0, 0, 0],
|
|
1245
|
+
];
|
|
1246
|
+
schema.TypeRegistry.for(n0).registerError(PolicyEnforcedException, PolicyEnforcedException$1);
|
|
1247
|
+
var ProvisionedCapacityDescription = [3, n0, _PCD, 0, [_CI, _SD, _ED], [0, 0, 0]];
|
|
1248
|
+
var PurchaseProvisionedCapacityInput = [3, n0, _PPCI, 0, [_aI], [[0, 1]]];
|
|
1249
|
+
var PurchaseProvisionedCapacityOutput = [
|
|
1250
|
+
3,
|
|
1251
|
+
n0,
|
|
1252
|
+
_PPCO,
|
|
1253
|
+
0,
|
|
1254
|
+
[_cI],
|
|
1255
|
+
[
|
|
1256
|
+
[
|
|
1257
|
+
0,
|
|
1258
|
+
{
|
|
1259
|
+
[_hH]: _xaci,
|
|
1260
|
+
},
|
|
1261
|
+
],
|
|
1262
|
+
],
|
|
1263
|
+
];
|
|
1264
|
+
var RemoveTagsFromVaultInput = [
|
|
1265
|
+
3,
|
|
1266
|
+
n0,
|
|
1267
|
+
_RTFVI,
|
|
1268
|
+
0,
|
|
1269
|
+
[_aI, _vN, _TK],
|
|
1270
|
+
[[0, 1], [0, 1], 64 | 0],
|
|
1271
|
+
];
|
|
1272
|
+
var RequestTimeoutException = [
|
|
1273
|
+
-3,
|
|
1274
|
+
n0,
|
|
1275
|
+
_RTE,
|
|
1276
|
+
{
|
|
1277
|
+
[_e]: _cl,
|
|
1278
|
+
[_hE]: 408,
|
|
1279
|
+
},
|
|
1280
|
+
[_t, _co, _m],
|
|
1281
|
+
[0, 0, 0],
|
|
1282
|
+
];
|
|
1283
|
+
schema.TypeRegistry.for(n0).registerError(RequestTimeoutException, RequestTimeoutException$1);
|
|
1284
|
+
var ResourceNotFoundException = [
|
|
1285
|
+
-3,
|
|
1286
|
+
n0,
|
|
1287
|
+
_RNFE,
|
|
1288
|
+
{
|
|
1289
|
+
[_e]: _cl,
|
|
1290
|
+
[_hE]: 404,
|
|
1291
|
+
},
|
|
1292
|
+
[_t, _co, _m],
|
|
1293
|
+
[0, 0, 0],
|
|
1294
|
+
];
|
|
1295
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
1296
|
+
var S3Location = [
|
|
1297
|
+
3,
|
|
1298
|
+
n0,
|
|
1299
|
+
_SL,
|
|
1300
|
+
0,
|
|
1301
|
+
[_BN, _Pr, _E, _CACL, _ACL, _Ta, _UM, _SCt],
|
|
1302
|
+
[0, 0, () => Encryption, 0, () => AccessControlPolicyList, 128 | 0, 128 | 0, 0],
|
|
1303
|
+
];
|
|
1304
|
+
var SelectParameters = [
|
|
1305
|
+
3,
|
|
1306
|
+
n0,
|
|
1307
|
+
_SP,
|
|
1308
|
+
0,
|
|
1309
|
+
[_IS, _ETx, _Ex, _OS],
|
|
1310
|
+
[() => InputSerialization, 0, 0, () => OutputSerialization],
|
|
1311
|
+
];
|
|
1312
|
+
var ServiceUnavailableException = [
|
|
1313
|
+
-3,
|
|
1314
|
+
n0,
|
|
1315
|
+
_SUE,
|
|
1316
|
+
{
|
|
1317
|
+
[_e]: _se,
|
|
1318
|
+
[_hE]: 500,
|
|
1319
|
+
},
|
|
1320
|
+
[_t, _co, _m],
|
|
1321
|
+
[0, 0, 0],
|
|
1322
|
+
];
|
|
1323
|
+
schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException, ServiceUnavailableException$1);
|
|
1324
|
+
var SetDataRetrievalPolicyInput = [
|
|
1325
|
+
3,
|
|
1326
|
+
n0,
|
|
1327
|
+
_SDRPI,
|
|
1328
|
+
0,
|
|
1329
|
+
[_aI, _P],
|
|
1330
|
+
[[0, 1], () => DataRetrievalPolicy],
|
|
1331
|
+
];
|
|
1332
|
+
var SetVaultAccessPolicyInput = [
|
|
1333
|
+
3,
|
|
1334
|
+
n0,
|
|
1335
|
+
_SVAPI,
|
|
1336
|
+
0,
|
|
1337
|
+
[_aI, _vN, _p],
|
|
1338
|
+
[
|
|
1339
|
+
[0, 1],
|
|
1340
|
+
[0, 1],
|
|
1341
|
+
[() => VaultAccessPolicy, 16],
|
|
1342
|
+
],
|
|
1343
|
+
];
|
|
1344
|
+
var SetVaultNotificationsInput = [
|
|
1345
|
+
3,
|
|
1346
|
+
n0,
|
|
1347
|
+
_SVNI,
|
|
1348
|
+
0,
|
|
1349
|
+
[_aI, _vN, _vNC],
|
|
1350
|
+
[
|
|
1351
|
+
[0, 1],
|
|
1352
|
+
[0, 1],
|
|
1353
|
+
[() => VaultNotificationConfig, 16],
|
|
1354
|
+
],
|
|
1355
|
+
];
|
|
1356
|
+
var UploadArchiveInput = [
|
|
1357
|
+
3,
|
|
1358
|
+
n0,
|
|
1359
|
+
_UAI,
|
|
1360
|
+
0,
|
|
1361
|
+
[_vN, _aI, _aD, _c, _b],
|
|
1362
|
+
[
|
|
1363
|
+
[0, 1],
|
|
1364
|
+
[0, 1],
|
|
1365
|
+
[
|
|
1366
|
+
0,
|
|
1367
|
+
{
|
|
1368
|
+
[_hH]: _xaad,
|
|
1369
|
+
},
|
|
1370
|
+
],
|
|
1371
|
+
[
|
|
1372
|
+
0,
|
|
1373
|
+
{
|
|
1374
|
+
[_hH]: _xasth,
|
|
1375
|
+
},
|
|
1376
|
+
],
|
|
1377
|
+
[() => _Stream, 16],
|
|
1378
|
+
],
|
|
1379
|
+
];
|
|
1380
|
+
var UploadListElement = [3, n0, _ULE, 0, [_MUI, _VARN, _AD, _PSIB, _CD], [0, 0, 0, 1, 0]];
|
|
1381
|
+
var UploadMultipartPartInput = [
|
|
1382
|
+
3,
|
|
1383
|
+
n0,
|
|
1384
|
+
_UMPI,
|
|
1385
|
+
0,
|
|
1386
|
+
[_aI, _vN, _uI, _c, _r, _b],
|
|
1387
|
+
[
|
|
1388
|
+
[0, 1],
|
|
1389
|
+
[0, 1],
|
|
1390
|
+
[0, 1],
|
|
1391
|
+
[
|
|
1392
|
+
0,
|
|
1393
|
+
{
|
|
1394
|
+
[_hH]: _xasth,
|
|
1395
|
+
},
|
|
1396
|
+
],
|
|
1397
|
+
[
|
|
1398
|
+
0,
|
|
1399
|
+
{
|
|
1400
|
+
[_hH]: _CR,
|
|
1401
|
+
},
|
|
1402
|
+
],
|
|
1403
|
+
[() => _Stream, 16],
|
|
1404
|
+
],
|
|
1405
|
+
];
|
|
1406
|
+
var UploadMultipartPartOutput = [
|
|
1407
|
+
3,
|
|
1408
|
+
n0,
|
|
1409
|
+
_UMPO,
|
|
1410
|
+
0,
|
|
1411
|
+
[_c],
|
|
1412
|
+
[
|
|
1413
|
+
[
|
|
1414
|
+
0,
|
|
1415
|
+
{
|
|
1416
|
+
[_hH]: _xasth,
|
|
1417
|
+
},
|
|
1418
|
+
],
|
|
1419
|
+
],
|
|
1420
|
+
];
|
|
1421
|
+
var VaultAccessPolicy = [3, n0, _VAP, 0, [_P], [0]];
|
|
1422
|
+
var VaultLockPolicy = [3, n0, _VLP, 0, [_P], [0]];
|
|
1423
|
+
var VaultNotificationConfig = [3, n0, _VNC, 0, [_SNST, _Ev], [0, 64 | 0]];
|
|
1424
|
+
var __Unit = "unit";
|
|
1425
|
+
var GlacierServiceException = [-3, _sm, "GlacierServiceException", 0, [], []];
|
|
1426
|
+
schema.TypeRegistry.for(_sm).registerError(GlacierServiceException, GlacierServiceException$1);
|
|
1427
|
+
var AccessControlPolicyList = [1, n0, _ACPL, 0, () => Grant];
|
|
1428
|
+
var DataRetrievalRulesList = [1, n0, _DRRL, 0, () => DataRetrievalRule];
|
|
1429
|
+
var JobList = [1, n0, _JL, 0, () => GlacierJobDescription];
|
|
1430
|
+
var PartList = [1, n0, _PL, 0, () => PartListElement];
|
|
1431
|
+
var ProvisionedCapacityList = [1, n0, _PCL, 0, () => ProvisionedCapacityDescription];
|
|
1432
|
+
var UploadsList = [1, n0, _UL, 0, () => UploadListElement];
|
|
1433
|
+
var VaultList = [1, n0, _VL, 0, () => DescribeVaultOutput];
|
|
1434
|
+
var AbortMultipartUpload = [
|
|
1435
|
+
9,
|
|
1436
|
+
n0,
|
|
1437
|
+
_AMU,
|
|
1438
|
+
{
|
|
1439
|
+
[_h]: ["DELETE", "/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}", 204],
|
|
1440
|
+
},
|
|
1441
|
+
() => AbortMultipartUploadInput,
|
|
1442
|
+
() => __Unit,
|
|
1443
|
+
];
|
|
1444
|
+
var AbortVaultLock = [
|
|
1445
|
+
9,
|
|
1446
|
+
n0,
|
|
1447
|
+
_AVL,
|
|
1448
|
+
{
|
|
1449
|
+
[_h]: ["DELETE", "/{accountId}/vaults/{vaultName}/lock-policy", 204],
|
|
1450
|
+
},
|
|
1451
|
+
() => AbortVaultLockInput,
|
|
1452
|
+
() => __Unit,
|
|
1453
|
+
];
|
|
1454
|
+
var AddTagsToVault = [
|
|
1455
|
+
9,
|
|
1456
|
+
n0,
|
|
1457
|
+
_ATTV,
|
|
1458
|
+
{
|
|
1459
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/tags?operation=add", 204],
|
|
1460
|
+
},
|
|
1461
|
+
() => AddTagsToVaultInput,
|
|
1462
|
+
() => __Unit,
|
|
1463
|
+
];
|
|
1464
|
+
var CompleteMultipartUpload = [
|
|
1465
|
+
9,
|
|
1466
|
+
n0,
|
|
1467
|
+
_CMU,
|
|
1468
|
+
{
|
|
1469
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}", 201],
|
|
1470
|
+
},
|
|
1471
|
+
() => CompleteMultipartUploadInput,
|
|
1472
|
+
() => ArchiveCreationOutput,
|
|
1473
|
+
];
|
|
1474
|
+
var CompleteVaultLock = [
|
|
1475
|
+
9,
|
|
1476
|
+
n0,
|
|
1477
|
+
_CVL,
|
|
1478
|
+
{
|
|
1479
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/lock-policy/{lockId}", 204],
|
|
1480
|
+
},
|
|
1481
|
+
() => CompleteVaultLockInput,
|
|
1482
|
+
() => __Unit,
|
|
1483
|
+
];
|
|
1484
|
+
var CreateVault = [
|
|
1485
|
+
9,
|
|
1486
|
+
n0,
|
|
1487
|
+
_CV,
|
|
1488
|
+
{
|
|
1489
|
+
[_h]: ["PUT", "/{accountId}/vaults/{vaultName}", 201],
|
|
1490
|
+
},
|
|
1491
|
+
() => CreateVaultInput,
|
|
1492
|
+
() => CreateVaultOutput,
|
|
1493
|
+
];
|
|
1494
|
+
var DeleteArchive = [
|
|
1495
|
+
9,
|
|
1496
|
+
n0,
|
|
1497
|
+
_DA,
|
|
1498
|
+
{
|
|
1499
|
+
[_h]: ["DELETE", "/{accountId}/vaults/{vaultName}/archives/{archiveId}", 204],
|
|
1500
|
+
},
|
|
1501
|
+
() => DeleteArchiveInput,
|
|
1502
|
+
() => __Unit,
|
|
1503
|
+
];
|
|
1504
|
+
var DeleteVault = [
|
|
1505
|
+
9,
|
|
1506
|
+
n0,
|
|
1507
|
+
_DV,
|
|
1508
|
+
{
|
|
1509
|
+
[_h]: ["DELETE", "/{accountId}/vaults/{vaultName}", 204],
|
|
1510
|
+
},
|
|
1511
|
+
() => DeleteVaultInput,
|
|
1512
|
+
() => __Unit,
|
|
1513
|
+
];
|
|
1514
|
+
var DeleteVaultAccessPolicy = [
|
|
1515
|
+
9,
|
|
1516
|
+
n0,
|
|
1517
|
+
_DVAP,
|
|
1518
|
+
{
|
|
1519
|
+
[_h]: ["DELETE", "/{accountId}/vaults/{vaultName}/access-policy", 204],
|
|
1520
|
+
},
|
|
1521
|
+
() => DeleteVaultAccessPolicyInput,
|
|
1522
|
+
() => __Unit,
|
|
1523
|
+
];
|
|
1524
|
+
var DeleteVaultNotifications = [
|
|
1525
|
+
9,
|
|
1526
|
+
n0,
|
|
1527
|
+
_DVN,
|
|
1528
|
+
{
|
|
1529
|
+
[_h]: ["DELETE", "/{accountId}/vaults/{vaultName}/notification-configuration", 204],
|
|
1530
|
+
},
|
|
1531
|
+
() => DeleteVaultNotificationsInput,
|
|
1532
|
+
() => __Unit,
|
|
1533
|
+
];
|
|
1534
|
+
var DescribeJob = [
|
|
1535
|
+
9,
|
|
1536
|
+
n0,
|
|
1537
|
+
_DJ,
|
|
1538
|
+
{
|
|
1539
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/jobs/{jobId}", 200],
|
|
1540
|
+
},
|
|
1541
|
+
() => DescribeJobInput,
|
|
1542
|
+
() => GlacierJobDescription,
|
|
1543
|
+
];
|
|
1544
|
+
var DescribeVault = [
|
|
1545
|
+
9,
|
|
1546
|
+
n0,
|
|
1547
|
+
_DVe,
|
|
1548
|
+
{
|
|
1549
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}", 200],
|
|
1550
|
+
},
|
|
1551
|
+
() => DescribeVaultInput,
|
|
1552
|
+
() => DescribeVaultOutput,
|
|
1553
|
+
];
|
|
1554
|
+
var GetDataRetrievalPolicy = [
|
|
1555
|
+
9,
|
|
1556
|
+
n0,
|
|
1557
|
+
_GDRP,
|
|
1558
|
+
{
|
|
1559
|
+
[_h]: ["GET", "/{accountId}/policies/data-retrieval", 200],
|
|
1560
|
+
},
|
|
1561
|
+
() => GetDataRetrievalPolicyInput,
|
|
1562
|
+
() => GetDataRetrievalPolicyOutput,
|
|
1563
|
+
];
|
|
1564
|
+
var GetJobOutput = [
|
|
1565
|
+
9,
|
|
1566
|
+
n0,
|
|
1567
|
+
_GJO,
|
|
1568
|
+
{
|
|
1569
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/jobs/{jobId}/output", 200],
|
|
1570
|
+
},
|
|
1571
|
+
() => GetJobOutputInput,
|
|
1572
|
+
() => GetJobOutputOutput,
|
|
1573
|
+
];
|
|
1574
|
+
var GetVaultAccessPolicy = [
|
|
1575
|
+
9,
|
|
1576
|
+
n0,
|
|
1577
|
+
_GVAP,
|
|
1578
|
+
{
|
|
1579
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/access-policy", 200],
|
|
1580
|
+
},
|
|
1581
|
+
() => GetVaultAccessPolicyInput,
|
|
1582
|
+
() => GetVaultAccessPolicyOutput,
|
|
1583
|
+
];
|
|
1584
|
+
var GetVaultLock = [
|
|
1585
|
+
9,
|
|
1586
|
+
n0,
|
|
1587
|
+
_GVL,
|
|
1588
|
+
{
|
|
1589
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/lock-policy", 200],
|
|
1590
|
+
},
|
|
1591
|
+
() => GetVaultLockInput,
|
|
1592
|
+
() => GetVaultLockOutput,
|
|
1593
|
+
];
|
|
1594
|
+
var GetVaultNotifications = [
|
|
1595
|
+
9,
|
|
1596
|
+
n0,
|
|
1597
|
+
_GVN,
|
|
1598
|
+
{
|
|
1599
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/notification-configuration", 200],
|
|
1600
|
+
},
|
|
1601
|
+
() => GetVaultNotificationsInput,
|
|
1602
|
+
() => GetVaultNotificationsOutput,
|
|
1603
|
+
];
|
|
1604
|
+
var InitiateJob = [
|
|
1605
|
+
9,
|
|
1606
|
+
n0,
|
|
1607
|
+
_IJ,
|
|
1608
|
+
{
|
|
1609
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/jobs", 202],
|
|
1610
|
+
},
|
|
1611
|
+
() => InitiateJobInput,
|
|
1612
|
+
() => InitiateJobOutput,
|
|
1613
|
+
];
|
|
1614
|
+
var InitiateMultipartUpload = [
|
|
1615
|
+
9,
|
|
1616
|
+
n0,
|
|
1617
|
+
_IMU,
|
|
1618
|
+
{
|
|
1619
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/multipart-uploads", 201],
|
|
1620
|
+
},
|
|
1621
|
+
() => InitiateMultipartUploadInput,
|
|
1622
|
+
() => InitiateMultipartUploadOutput,
|
|
1623
|
+
];
|
|
1624
|
+
var InitiateVaultLock = [
|
|
1625
|
+
9,
|
|
1626
|
+
n0,
|
|
1627
|
+
_IVL,
|
|
1628
|
+
{
|
|
1629
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/lock-policy", 201],
|
|
1630
|
+
},
|
|
1631
|
+
() => InitiateVaultLockInput,
|
|
1632
|
+
() => InitiateVaultLockOutput,
|
|
1633
|
+
];
|
|
1634
|
+
var ListJobs = [
|
|
1635
|
+
9,
|
|
1636
|
+
n0,
|
|
1637
|
+
_LJ,
|
|
1638
|
+
{
|
|
1639
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/jobs", 200],
|
|
1640
|
+
},
|
|
1641
|
+
() => ListJobsInput,
|
|
1642
|
+
() => ListJobsOutput,
|
|
1643
|
+
];
|
|
1644
|
+
var ListMultipartUploads = [
|
|
1645
|
+
9,
|
|
1646
|
+
n0,
|
|
1647
|
+
_LMU,
|
|
1648
|
+
{
|
|
1649
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/multipart-uploads", 200],
|
|
1650
|
+
},
|
|
1651
|
+
() => ListMultipartUploadsInput,
|
|
1652
|
+
() => ListMultipartUploadsOutput,
|
|
1653
|
+
];
|
|
1654
|
+
var ListParts = [
|
|
1655
|
+
9,
|
|
1656
|
+
n0,
|
|
1657
|
+
_LP,
|
|
1658
|
+
{
|
|
1659
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}", 200],
|
|
1660
|
+
},
|
|
1661
|
+
() => ListPartsInput,
|
|
1662
|
+
() => ListPartsOutput,
|
|
1663
|
+
];
|
|
1664
|
+
var ListProvisionedCapacity = [
|
|
1665
|
+
9,
|
|
1666
|
+
n0,
|
|
1667
|
+
_LPC,
|
|
1668
|
+
{
|
|
1669
|
+
[_h]: ["GET", "/{accountId}/provisioned-capacity", 200],
|
|
1670
|
+
},
|
|
1671
|
+
() => ListProvisionedCapacityInput,
|
|
1672
|
+
() => ListProvisionedCapacityOutput,
|
|
1673
|
+
];
|
|
1674
|
+
var ListTagsForVault = [
|
|
1675
|
+
9,
|
|
1676
|
+
n0,
|
|
1677
|
+
_LTFV,
|
|
1678
|
+
{
|
|
1679
|
+
[_h]: ["GET", "/{accountId}/vaults/{vaultName}/tags", 200],
|
|
1680
|
+
},
|
|
1681
|
+
() => ListTagsForVaultInput,
|
|
1682
|
+
() => ListTagsForVaultOutput,
|
|
1683
|
+
];
|
|
1684
|
+
var ListVaults = [
|
|
1685
|
+
9,
|
|
1686
|
+
n0,
|
|
1687
|
+
_LV,
|
|
1688
|
+
{
|
|
1689
|
+
[_h]: ["GET", "/{accountId}/vaults", 200],
|
|
1690
|
+
},
|
|
1691
|
+
() => ListVaultsInput,
|
|
1692
|
+
() => ListVaultsOutput,
|
|
1693
|
+
];
|
|
1694
|
+
var PurchaseProvisionedCapacity = [
|
|
1695
|
+
9,
|
|
1696
|
+
n0,
|
|
1697
|
+
_PPC,
|
|
1698
|
+
{
|
|
1699
|
+
[_h]: ["POST", "/{accountId}/provisioned-capacity", 201],
|
|
1700
|
+
},
|
|
1701
|
+
() => PurchaseProvisionedCapacityInput,
|
|
1702
|
+
() => PurchaseProvisionedCapacityOutput,
|
|
1703
|
+
];
|
|
1704
|
+
var RemoveTagsFromVault = [
|
|
1705
|
+
9,
|
|
1706
|
+
n0,
|
|
1707
|
+
_RTFV,
|
|
1708
|
+
{
|
|
1709
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/tags?operation=remove", 204],
|
|
1710
|
+
},
|
|
1711
|
+
() => RemoveTagsFromVaultInput,
|
|
1712
|
+
() => __Unit,
|
|
1713
|
+
];
|
|
1714
|
+
var SetDataRetrievalPolicy = [
|
|
1715
|
+
9,
|
|
1716
|
+
n0,
|
|
1717
|
+
_SDRP,
|
|
1718
|
+
{
|
|
1719
|
+
[_h]: ["PUT", "/{accountId}/policies/data-retrieval", 204],
|
|
1720
|
+
},
|
|
1721
|
+
() => SetDataRetrievalPolicyInput,
|
|
1722
|
+
() => __Unit,
|
|
1723
|
+
];
|
|
1724
|
+
var SetVaultAccessPolicy = [
|
|
1725
|
+
9,
|
|
1726
|
+
n0,
|
|
1727
|
+
_SVAP,
|
|
1728
|
+
{
|
|
1729
|
+
[_h]: ["PUT", "/{accountId}/vaults/{vaultName}/access-policy", 204],
|
|
1730
|
+
},
|
|
1731
|
+
() => SetVaultAccessPolicyInput,
|
|
1732
|
+
() => __Unit,
|
|
1733
|
+
];
|
|
1734
|
+
var SetVaultNotifications = [
|
|
1735
|
+
9,
|
|
1736
|
+
n0,
|
|
1737
|
+
_SVN,
|
|
1738
|
+
{
|
|
1739
|
+
[_h]: ["PUT", "/{accountId}/vaults/{vaultName}/notification-configuration", 204],
|
|
1740
|
+
},
|
|
1741
|
+
() => SetVaultNotificationsInput,
|
|
1742
|
+
() => __Unit,
|
|
1743
|
+
];
|
|
1744
|
+
var UploadArchive = [
|
|
1745
|
+
9,
|
|
1746
|
+
n0,
|
|
1747
|
+
_UA,
|
|
1748
|
+
{
|
|
1749
|
+
[_h]: ["POST", "/{accountId}/vaults/{vaultName}/archives", 201],
|
|
1750
|
+
},
|
|
1751
|
+
() => UploadArchiveInput,
|
|
1752
|
+
() => ArchiveCreationOutput,
|
|
1753
|
+
];
|
|
1754
|
+
var UploadMultipartPart = [
|
|
1755
|
+
9,
|
|
1756
|
+
n0,
|
|
1757
|
+
_UMP,
|
|
1758
|
+
{
|
|
1759
|
+
[_h]: ["PUT", "/{accountId}/vaults/{vaultName}/multipart-uploads/{uploadId}", 204],
|
|
1760
|
+
},
|
|
1761
|
+
() => UploadMultipartPartInput,
|
|
1762
|
+
() => UploadMultipartPartOutput,
|
|
1763
|
+
];
|
|
1377
1764
|
|
|
1378
1765
|
class AbortMultipartUploadCommand extends smithyClient.Command
|
|
1379
1766
|
.classBuilder()
|
|
1380
1767
|
.ep(commonParams)
|
|
1381
1768
|
.m(function (Command, cs, config, o) {
|
|
1382
|
-
return [
|
|
1383
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1384
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1385
|
-
];
|
|
1769
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1386
1770
|
})
|
|
1387
1771
|
.s("Glacier", "AbortMultipartUpload", {})
|
|
1388
1772
|
.n("GlacierClient", "AbortMultipartUploadCommand")
|
|
1389
|
-
.
|
|
1390
|
-
.ser(se_AbortMultipartUploadCommand)
|
|
1391
|
-
.de(de_AbortMultipartUploadCommand)
|
|
1773
|
+
.sc(AbortMultipartUpload)
|
|
1392
1774
|
.build() {
|
|
1393
1775
|
}
|
|
1394
1776
|
|
|
@@ -1396,16 +1778,11 @@ class AbortVaultLockCommand extends smithyClient.Command
|
|
|
1396
1778
|
.classBuilder()
|
|
1397
1779
|
.ep(commonParams)
|
|
1398
1780
|
.m(function (Command, cs, config, o) {
|
|
1399
|
-
return [
|
|
1400
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1401
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1402
|
-
];
|
|
1781
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1403
1782
|
})
|
|
1404
1783
|
.s("Glacier", "AbortVaultLock", {})
|
|
1405
1784
|
.n("GlacierClient", "AbortVaultLockCommand")
|
|
1406
|
-
.
|
|
1407
|
-
.ser(se_AbortVaultLockCommand)
|
|
1408
|
-
.de(de_AbortVaultLockCommand)
|
|
1785
|
+
.sc(AbortVaultLock)
|
|
1409
1786
|
.build() {
|
|
1410
1787
|
}
|
|
1411
1788
|
|
|
@@ -1413,16 +1790,11 @@ class AddTagsToVaultCommand extends smithyClient.Command
|
|
|
1413
1790
|
.classBuilder()
|
|
1414
1791
|
.ep(commonParams)
|
|
1415
1792
|
.m(function (Command, cs, config, o) {
|
|
1416
|
-
return [
|
|
1417
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1418
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1419
|
-
];
|
|
1793
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1420
1794
|
})
|
|
1421
1795
|
.s("Glacier", "AddTagsToVault", {})
|
|
1422
1796
|
.n("GlacierClient", "AddTagsToVaultCommand")
|
|
1423
|
-
.
|
|
1424
|
-
.ser(se_AddTagsToVaultCommand)
|
|
1425
|
-
.de(de_AddTagsToVaultCommand)
|
|
1797
|
+
.sc(AddTagsToVault)
|
|
1426
1798
|
.build() {
|
|
1427
1799
|
}
|
|
1428
1800
|
|
|
@@ -1430,16 +1802,11 @@ class CompleteMultipartUploadCommand extends smithyClient.Command
|
|
|
1430
1802
|
.classBuilder()
|
|
1431
1803
|
.ep(commonParams)
|
|
1432
1804
|
.m(function (Command, cs, config, o) {
|
|
1433
|
-
return [
|
|
1434
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1435
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1436
|
-
];
|
|
1805
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1437
1806
|
})
|
|
1438
1807
|
.s("Glacier", "CompleteMultipartUpload", {})
|
|
1439
1808
|
.n("GlacierClient", "CompleteMultipartUploadCommand")
|
|
1440
|
-
.
|
|
1441
|
-
.ser(se_CompleteMultipartUploadCommand)
|
|
1442
|
-
.de(de_CompleteMultipartUploadCommand)
|
|
1809
|
+
.sc(CompleteMultipartUpload)
|
|
1443
1810
|
.build() {
|
|
1444
1811
|
}
|
|
1445
1812
|
|
|
@@ -1447,16 +1814,11 @@ class CompleteVaultLockCommand extends smithyClient.Command
|
|
|
1447
1814
|
.classBuilder()
|
|
1448
1815
|
.ep(commonParams)
|
|
1449
1816
|
.m(function (Command, cs, config, o) {
|
|
1450
|
-
return [
|
|
1451
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1452
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1453
|
-
];
|
|
1817
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1454
1818
|
})
|
|
1455
1819
|
.s("Glacier", "CompleteVaultLock", {})
|
|
1456
1820
|
.n("GlacierClient", "CompleteVaultLockCommand")
|
|
1457
|
-
.
|
|
1458
|
-
.ser(se_CompleteVaultLockCommand)
|
|
1459
|
-
.de(de_CompleteVaultLockCommand)
|
|
1821
|
+
.sc(CompleteVaultLock)
|
|
1460
1822
|
.build() {
|
|
1461
1823
|
}
|
|
1462
1824
|
|
|
@@ -1464,16 +1826,11 @@ class CreateVaultCommand extends smithyClient.Command
|
|
|
1464
1826
|
.classBuilder()
|
|
1465
1827
|
.ep(commonParams)
|
|
1466
1828
|
.m(function (Command, cs, config, o) {
|
|
1467
|
-
return [
|
|
1468
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1469
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1470
|
-
];
|
|
1829
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1471
1830
|
})
|
|
1472
1831
|
.s("Glacier", "CreateVault", {})
|
|
1473
1832
|
.n("GlacierClient", "CreateVaultCommand")
|
|
1474
|
-
.
|
|
1475
|
-
.ser(se_CreateVaultCommand)
|
|
1476
|
-
.de(de_CreateVaultCommand)
|
|
1833
|
+
.sc(CreateVault)
|
|
1477
1834
|
.build() {
|
|
1478
1835
|
}
|
|
1479
1836
|
|
|
@@ -1481,16 +1838,11 @@ class DeleteArchiveCommand extends smithyClient.Command
|
|
|
1481
1838
|
.classBuilder()
|
|
1482
1839
|
.ep(commonParams)
|
|
1483
1840
|
.m(function (Command, cs, config, o) {
|
|
1484
|
-
return [
|
|
1485
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1486
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1487
|
-
];
|
|
1841
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1488
1842
|
})
|
|
1489
1843
|
.s("Glacier", "DeleteArchive", {})
|
|
1490
1844
|
.n("GlacierClient", "DeleteArchiveCommand")
|
|
1491
|
-
.
|
|
1492
|
-
.ser(se_DeleteArchiveCommand)
|
|
1493
|
-
.de(de_DeleteArchiveCommand)
|
|
1845
|
+
.sc(DeleteArchive)
|
|
1494
1846
|
.build() {
|
|
1495
1847
|
}
|
|
1496
1848
|
|
|
@@ -1498,16 +1850,11 @@ class DeleteVaultAccessPolicyCommand extends smithyClient.Command
|
|
|
1498
1850
|
.classBuilder()
|
|
1499
1851
|
.ep(commonParams)
|
|
1500
1852
|
.m(function (Command, cs, config, o) {
|
|
1501
|
-
return [
|
|
1502
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1503
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1504
|
-
];
|
|
1853
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1505
1854
|
})
|
|
1506
1855
|
.s("Glacier", "DeleteVaultAccessPolicy", {})
|
|
1507
1856
|
.n("GlacierClient", "DeleteVaultAccessPolicyCommand")
|
|
1508
|
-
.
|
|
1509
|
-
.ser(se_DeleteVaultAccessPolicyCommand)
|
|
1510
|
-
.de(de_DeleteVaultAccessPolicyCommand)
|
|
1857
|
+
.sc(DeleteVaultAccessPolicy)
|
|
1511
1858
|
.build() {
|
|
1512
1859
|
}
|
|
1513
1860
|
|
|
@@ -1515,16 +1862,11 @@ class DeleteVaultCommand extends smithyClient.Command
|
|
|
1515
1862
|
.classBuilder()
|
|
1516
1863
|
.ep(commonParams)
|
|
1517
1864
|
.m(function (Command, cs, config, o) {
|
|
1518
|
-
return [
|
|
1519
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1520
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1521
|
-
];
|
|
1865
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1522
1866
|
})
|
|
1523
1867
|
.s("Glacier", "DeleteVault", {})
|
|
1524
1868
|
.n("GlacierClient", "DeleteVaultCommand")
|
|
1525
|
-
.
|
|
1526
|
-
.ser(se_DeleteVaultCommand)
|
|
1527
|
-
.de(de_DeleteVaultCommand)
|
|
1869
|
+
.sc(DeleteVault)
|
|
1528
1870
|
.build() {
|
|
1529
1871
|
}
|
|
1530
1872
|
|
|
@@ -1532,16 +1874,11 @@ class DeleteVaultNotificationsCommand extends smithyClient.Command
|
|
|
1532
1874
|
.classBuilder()
|
|
1533
1875
|
.ep(commonParams)
|
|
1534
1876
|
.m(function (Command, cs, config, o) {
|
|
1535
|
-
return [
|
|
1536
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1537
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1538
|
-
];
|
|
1877
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1539
1878
|
})
|
|
1540
1879
|
.s("Glacier", "DeleteVaultNotifications", {})
|
|
1541
1880
|
.n("GlacierClient", "DeleteVaultNotificationsCommand")
|
|
1542
|
-
.
|
|
1543
|
-
.ser(se_DeleteVaultNotificationsCommand)
|
|
1544
|
-
.de(de_DeleteVaultNotificationsCommand)
|
|
1881
|
+
.sc(DeleteVaultNotifications)
|
|
1545
1882
|
.build() {
|
|
1546
1883
|
}
|
|
1547
1884
|
|
|
@@ -1549,16 +1886,11 @@ class DescribeJobCommand extends smithyClient.Command
|
|
|
1549
1886
|
.classBuilder()
|
|
1550
1887
|
.ep(commonParams)
|
|
1551
1888
|
.m(function (Command, cs, config, o) {
|
|
1552
|
-
return [
|
|
1553
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1554
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1555
|
-
];
|
|
1889
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1556
1890
|
})
|
|
1557
1891
|
.s("Glacier", "DescribeJob", {})
|
|
1558
1892
|
.n("GlacierClient", "DescribeJobCommand")
|
|
1559
|
-
.
|
|
1560
|
-
.ser(se_DescribeJobCommand)
|
|
1561
|
-
.de(de_DescribeJobCommand)
|
|
1893
|
+
.sc(DescribeJob)
|
|
1562
1894
|
.build() {
|
|
1563
1895
|
}
|
|
1564
1896
|
|
|
@@ -1566,16 +1898,11 @@ class DescribeVaultCommand extends smithyClient.Command
|
|
|
1566
1898
|
.classBuilder()
|
|
1567
1899
|
.ep(commonParams)
|
|
1568
1900
|
.m(function (Command, cs, config, o) {
|
|
1569
|
-
return [
|
|
1570
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1571
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1572
|
-
];
|
|
1901
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1573
1902
|
})
|
|
1574
1903
|
.s("Glacier", "DescribeVault", {})
|
|
1575
1904
|
.n("GlacierClient", "DescribeVaultCommand")
|
|
1576
|
-
.
|
|
1577
|
-
.ser(se_DescribeVaultCommand)
|
|
1578
|
-
.de(de_DescribeVaultCommand)
|
|
1905
|
+
.sc(DescribeVault)
|
|
1579
1906
|
.build() {
|
|
1580
1907
|
}
|
|
1581
1908
|
|
|
@@ -1583,16 +1910,11 @@ class GetDataRetrievalPolicyCommand extends smithyClient.Command
|
|
|
1583
1910
|
.classBuilder()
|
|
1584
1911
|
.ep(commonParams)
|
|
1585
1912
|
.m(function (Command, cs, config, o) {
|
|
1586
|
-
return [
|
|
1587
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1588
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1589
|
-
];
|
|
1913
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1590
1914
|
})
|
|
1591
1915
|
.s("Glacier", "GetDataRetrievalPolicy", {})
|
|
1592
1916
|
.n("GlacierClient", "GetDataRetrievalPolicyCommand")
|
|
1593
|
-
.
|
|
1594
|
-
.ser(se_GetDataRetrievalPolicyCommand)
|
|
1595
|
-
.de(de_GetDataRetrievalPolicyCommand)
|
|
1917
|
+
.sc(GetDataRetrievalPolicy)
|
|
1596
1918
|
.build() {
|
|
1597
1919
|
}
|
|
1598
1920
|
|
|
@@ -1600,16 +1922,11 @@ class GetJobOutputCommand extends smithyClient.Command
|
|
|
1600
1922
|
.classBuilder()
|
|
1601
1923
|
.ep(commonParams)
|
|
1602
1924
|
.m(function (Command, cs, config, o) {
|
|
1603
|
-
return [
|
|
1604
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1605
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1606
|
-
];
|
|
1925
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1607
1926
|
})
|
|
1608
1927
|
.s("Glacier", "GetJobOutput", {})
|
|
1609
1928
|
.n("GlacierClient", "GetJobOutputCommand")
|
|
1610
|
-
.
|
|
1611
|
-
.ser(se_GetJobOutputCommand)
|
|
1612
|
-
.de(de_GetJobOutputCommand)
|
|
1929
|
+
.sc(GetJobOutput)
|
|
1613
1930
|
.build() {
|
|
1614
1931
|
}
|
|
1615
1932
|
|
|
@@ -1617,16 +1934,11 @@ class GetVaultAccessPolicyCommand extends smithyClient.Command
|
|
|
1617
1934
|
.classBuilder()
|
|
1618
1935
|
.ep(commonParams)
|
|
1619
1936
|
.m(function (Command, cs, config, o) {
|
|
1620
|
-
return [
|
|
1621
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1622
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1623
|
-
];
|
|
1937
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1624
1938
|
})
|
|
1625
1939
|
.s("Glacier", "GetVaultAccessPolicy", {})
|
|
1626
1940
|
.n("GlacierClient", "GetVaultAccessPolicyCommand")
|
|
1627
|
-
.
|
|
1628
|
-
.ser(se_GetVaultAccessPolicyCommand)
|
|
1629
|
-
.de(de_GetVaultAccessPolicyCommand)
|
|
1941
|
+
.sc(GetVaultAccessPolicy)
|
|
1630
1942
|
.build() {
|
|
1631
1943
|
}
|
|
1632
1944
|
|
|
@@ -1634,16 +1946,11 @@ class GetVaultLockCommand extends smithyClient.Command
|
|
|
1634
1946
|
.classBuilder()
|
|
1635
1947
|
.ep(commonParams)
|
|
1636
1948
|
.m(function (Command, cs, config, o) {
|
|
1637
|
-
return [
|
|
1638
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1639
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1640
|
-
];
|
|
1949
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1641
1950
|
})
|
|
1642
1951
|
.s("Glacier", "GetVaultLock", {})
|
|
1643
1952
|
.n("GlacierClient", "GetVaultLockCommand")
|
|
1644
|
-
.
|
|
1645
|
-
.ser(se_GetVaultLockCommand)
|
|
1646
|
-
.de(de_GetVaultLockCommand)
|
|
1953
|
+
.sc(GetVaultLock)
|
|
1647
1954
|
.build() {
|
|
1648
1955
|
}
|
|
1649
1956
|
|
|
@@ -1651,16 +1958,11 @@ class GetVaultNotificationsCommand extends smithyClient.Command
|
|
|
1651
1958
|
.classBuilder()
|
|
1652
1959
|
.ep(commonParams)
|
|
1653
1960
|
.m(function (Command, cs, config, o) {
|
|
1654
|
-
return [
|
|
1655
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1656
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1657
|
-
];
|
|
1961
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1658
1962
|
})
|
|
1659
1963
|
.s("Glacier", "GetVaultNotifications", {})
|
|
1660
1964
|
.n("GlacierClient", "GetVaultNotificationsCommand")
|
|
1661
|
-
.
|
|
1662
|
-
.ser(se_GetVaultNotificationsCommand)
|
|
1663
|
-
.de(de_GetVaultNotificationsCommand)
|
|
1965
|
+
.sc(GetVaultNotifications)
|
|
1664
1966
|
.build() {
|
|
1665
1967
|
}
|
|
1666
1968
|
|
|
@@ -1668,16 +1970,11 @@ class InitiateJobCommand extends smithyClient.Command
|
|
|
1668
1970
|
.classBuilder()
|
|
1669
1971
|
.ep(commonParams)
|
|
1670
1972
|
.m(function (Command, cs, config, o) {
|
|
1671
|
-
return [
|
|
1672
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1673
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1674
|
-
];
|
|
1973
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1675
1974
|
})
|
|
1676
1975
|
.s("Glacier", "InitiateJob", {})
|
|
1677
1976
|
.n("GlacierClient", "InitiateJobCommand")
|
|
1678
|
-
.
|
|
1679
|
-
.ser(se_InitiateJobCommand)
|
|
1680
|
-
.de(de_InitiateJobCommand)
|
|
1977
|
+
.sc(InitiateJob)
|
|
1681
1978
|
.build() {
|
|
1682
1979
|
}
|
|
1683
1980
|
|
|
@@ -1685,16 +1982,11 @@ class InitiateMultipartUploadCommand extends smithyClient.Command
|
|
|
1685
1982
|
.classBuilder()
|
|
1686
1983
|
.ep(commonParams)
|
|
1687
1984
|
.m(function (Command, cs, config, o) {
|
|
1688
|
-
return [
|
|
1689
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1690
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1691
|
-
];
|
|
1985
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1692
1986
|
})
|
|
1693
1987
|
.s("Glacier", "InitiateMultipartUpload", {})
|
|
1694
1988
|
.n("GlacierClient", "InitiateMultipartUploadCommand")
|
|
1695
|
-
.
|
|
1696
|
-
.ser(se_InitiateMultipartUploadCommand)
|
|
1697
|
-
.de(de_InitiateMultipartUploadCommand)
|
|
1989
|
+
.sc(InitiateMultipartUpload)
|
|
1698
1990
|
.build() {
|
|
1699
1991
|
}
|
|
1700
1992
|
|
|
@@ -1702,16 +1994,11 @@ class InitiateVaultLockCommand extends smithyClient.Command
|
|
|
1702
1994
|
.classBuilder()
|
|
1703
1995
|
.ep(commonParams)
|
|
1704
1996
|
.m(function (Command, cs, config, o) {
|
|
1705
|
-
return [
|
|
1706
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1707
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1708
|
-
];
|
|
1997
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1709
1998
|
})
|
|
1710
1999
|
.s("Glacier", "InitiateVaultLock", {})
|
|
1711
2000
|
.n("GlacierClient", "InitiateVaultLockCommand")
|
|
1712
|
-
.
|
|
1713
|
-
.ser(se_InitiateVaultLockCommand)
|
|
1714
|
-
.de(de_InitiateVaultLockCommand)
|
|
2001
|
+
.sc(InitiateVaultLock)
|
|
1715
2002
|
.build() {
|
|
1716
2003
|
}
|
|
1717
2004
|
|
|
@@ -1719,16 +2006,11 @@ class ListJobsCommand extends smithyClient.Command
|
|
|
1719
2006
|
.classBuilder()
|
|
1720
2007
|
.ep(commonParams)
|
|
1721
2008
|
.m(function (Command, cs, config, o) {
|
|
1722
|
-
return [
|
|
1723
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1724
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1725
|
-
];
|
|
2009
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1726
2010
|
})
|
|
1727
2011
|
.s("Glacier", "ListJobs", {})
|
|
1728
2012
|
.n("GlacierClient", "ListJobsCommand")
|
|
1729
|
-
.
|
|
1730
|
-
.ser(se_ListJobsCommand)
|
|
1731
|
-
.de(de_ListJobsCommand)
|
|
2013
|
+
.sc(ListJobs)
|
|
1732
2014
|
.build() {
|
|
1733
2015
|
}
|
|
1734
2016
|
|
|
@@ -1736,16 +2018,11 @@ class ListMultipartUploadsCommand extends smithyClient.Command
|
|
|
1736
2018
|
.classBuilder()
|
|
1737
2019
|
.ep(commonParams)
|
|
1738
2020
|
.m(function (Command, cs, config, o) {
|
|
1739
|
-
return [
|
|
1740
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1741
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1742
|
-
];
|
|
2021
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1743
2022
|
})
|
|
1744
2023
|
.s("Glacier", "ListMultipartUploads", {})
|
|
1745
2024
|
.n("GlacierClient", "ListMultipartUploadsCommand")
|
|
1746
|
-
.
|
|
1747
|
-
.ser(se_ListMultipartUploadsCommand)
|
|
1748
|
-
.de(de_ListMultipartUploadsCommand)
|
|
2025
|
+
.sc(ListMultipartUploads)
|
|
1749
2026
|
.build() {
|
|
1750
2027
|
}
|
|
1751
2028
|
|
|
@@ -1753,16 +2030,11 @@ class ListPartsCommand extends smithyClient.Command
|
|
|
1753
2030
|
.classBuilder()
|
|
1754
2031
|
.ep(commonParams)
|
|
1755
2032
|
.m(function (Command, cs, config, o) {
|
|
1756
|
-
return [
|
|
1757
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1758
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1759
|
-
];
|
|
2033
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1760
2034
|
})
|
|
1761
2035
|
.s("Glacier", "ListParts", {})
|
|
1762
2036
|
.n("GlacierClient", "ListPartsCommand")
|
|
1763
|
-
.
|
|
1764
|
-
.ser(se_ListPartsCommand)
|
|
1765
|
-
.de(de_ListPartsCommand)
|
|
2037
|
+
.sc(ListParts)
|
|
1766
2038
|
.build() {
|
|
1767
2039
|
}
|
|
1768
2040
|
|
|
@@ -1770,16 +2042,11 @@ class ListProvisionedCapacityCommand extends smithyClient.Command
|
|
|
1770
2042
|
.classBuilder()
|
|
1771
2043
|
.ep(commonParams)
|
|
1772
2044
|
.m(function (Command, cs, config, o) {
|
|
1773
|
-
return [
|
|
1774
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1775
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1776
|
-
];
|
|
2045
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1777
2046
|
})
|
|
1778
2047
|
.s("Glacier", "ListProvisionedCapacity", {})
|
|
1779
2048
|
.n("GlacierClient", "ListProvisionedCapacityCommand")
|
|
1780
|
-
.
|
|
1781
|
-
.ser(se_ListProvisionedCapacityCommand)
|
|
1782
|
-
.de(de_ListProvisionedCapacityCommand)
|
|
2049
|
+
.sc(ListProvisionedCapacity)
|
|
1783
2050
|
.build() {
|
|
1784
2051
|
}
|
|
1785
2052
|
|
|
@@ -1787,16 +2054,11 @@ class ListTagsForVaultCommand extends smithyClient.Command
|
|
|
1787
2054
|
.classBuilder()
|
|
1788
2055
|
.ep(commonParams)
|
|
1789
2056
|
.m(function (Command, cs, config, o) {
|
|
1790
|
-
return [
|
|
1791
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1792
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1793
|
-
];
|
|
2057
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1794
2058
|
})
|
|
1795
2059
|
.s("Glacier", "ListTagsForVault", {})
|
|
1796
2060
|
.n("GlacierClient", "ListTagsForVaultCommand")
|
|
1797
|
-
.
|
|
1798
|
-
.ser(se_ListTagsForVaultCommand)
|
|
1799
|
-
.de(de_ListTagsForVaultCommand)
|
|
2061
|
+
.sc(ListTagsForVault)
|
|
1800
2062
|
.build() {
|
|
1801
2063
|
}
|
|
1802
2064
|
|
|
@@ -1804,16 +2066,11 @@ class ListVaultsCommand extends smithyClient.Command
|
|
|
1804
2066
|
.classBuilder()
|
|
1805
2067
|
.ep(commonParams)
|
|
1806
2068
|
.m(function (Command, cs, config, o) {
|
|
1807
|
-
return [
|
|
1808
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1809
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1810
|
-
];
|
|
2069
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1811
2070
|
})
|
|
1812
2071
|
.s("Glacier", "ListVaults", {})
|
|
1813
2072
|
.n("GlacierClient", "ListVaultsCommand")
|
|
1814
|
-
.
|
|
1815
|
-
.ser(se_ListVaultsCommand)
|
|
1816
|
-
.de(de_ListVaultsCommand)
|
|
2073
|
+
.sc(ListVaults)
|
|
1817
2074
|
.build() {
|
|
1818
2075
|
}
|
|
1819
2076
|
|
|
@@ -1821,16 +2078,11 @@ class PurchaseProvisionedCapacityCommand extends smithyClient.Command
|
|
|
1821
2078
|
.classBuilder()
|
|
1822
2079
|
.ep(commonParams)
|
|
1823
2080
|
.m(function (Command, cs, config, o) {
|
|
1824
|
-
return [
|
|
1825
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1826
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1827
|
-
];
|
|
2081
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1828
2082
|
})
|
|
1829
2083
|
.s("Glacier", "PurchaseProvisionedCapacity", {})
|
|
1830
2084
|
.n("GlacierClient", "PurchaseProvisionedCapacityCommand")
|
|
1831
|
-
.
|
|
1832
|
-
.ser(se_PurchaseProvisionedCapacityCommand)
|
|
1833
|
-
.de(de_PurchaseProvisionedCapacityCommand)
|
|
2085
|
+
.sc(PurchaseProvisionedCapacity)
|
|
1834
2086
|
.build() {
|
|
1835
2087
|
}
|
|
1836
2088
|
|
|
@@ -1838,16 +2090,11 @@ class RemoveTagsFromVaultCommand extends smithyClient.Command
|
|
|
1838
2090
|
.classBuilder()
|
|
1839
2091
|
.ep(commonParams)
|
|
1840
2092
|
.m(function (Command, cs, config, o) {
|
|
1841
|
-
return [
|
|
1842
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1843
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1844
|
-
];
|
|
2093
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1845
2094
|
})
|
|
1846
2095
|
.s("Glacier", "RemoveTagsFromVault", {})
|
|
1847
2096
|
.n("GlacierClient", "RemoveTagsFromVaultCommand")
|
|
1848
|
-
.
|
|
1849
|
-
.ser(se_RemoveTagsFromVaultCommand)
|
|
1850
|
-
.de(de_RemoveTagsFromVaultCommand)
|
|
2097
|
+
.sc(RemoveTagsFromVault)
|
|
1851
2098
|
.build() {
|
|
1852
2099
|
}
|
|
1853
2100
|
|
|
@@ -1855,16 +2102,11 @@ class SetDataRetrievalPolicyCommand extends smithyClient.Command
|
|
|
1855
2102
|
.classBuilder()
|
|
1856
2103
|
.ep(commonParams)
|
|
1857
2104
|
.m(function (Command, cs, config, o) {
|
|
1858
|
-
return [
|
|
1859
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1860
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1861
|
-
];
|
|
2105
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1862
2106
|
})
|
|
1863
2107
|
.s("Glacier", "SetDataRetrievalPolicy", {})
|
|
1864
2108
|
.n("GlacierClient", "SetDataRetrievalPolicyCommand")
|
|
1865
|
-
.
|
|
1866
|
-
.ser(se_SetDataRetrievalPolicyCommand)
|
|
1867
|
-
.de(de_SetDataRetrievalPolicyCommand)
|
|
2109
|
+
.sc(SetDataRetrievalPolicy)
|
|
1868
2110
|
.build() {
|
|
1869
2111
|
}
|
|
1870
2112
|
|
|
@@ -1872,16 +2114,11 @@ class SetVaultAccessPolicyCommand extends smithyClient.Command
|
|
|
1872
2114
|
.classBuilder()
|
|
1873
2115
|
.ep(commonParams)
|
|
1874
2116
|
.m(function (Command, cs, config, o) {
|
|
1875
|
-
return [
|
|
1876
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1877
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1878
|
-
];
|
|
2117
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1879
2118
|
})
|
|
1880
2119
|
.s("Glacier", "SetVaultAccessPolicy", {})
|
|
1881
2120
|
.n("GlacierClient", "SetVaultAccessPolicyCommand")
|
|
1882
|
-
.
|
|
1883
|
-
.ser(se_SetVaultAccessPolicyCommand)
|
|
1884
|
-
.de(de_SetVaultAccessPolicyCommand)
|
|
2121
|
+
.sc(SetVaultAccessPolicy)
|
|
1885
2122
|
.build() {
|
|
1886
2123
|
}
|
|
1887
2124
|
|
|
@@ -1889,16 +2126,11 @@ class SetVaultNotificationsCommand extends smithyClient.Command
|
|
|
1889
2126
|
.classBuilder()
|
|
1890
2127
|
.ep(commonParams)
|
|
1891
2128
|
.m(function (Command, cs, config, o) {
|
|
1892
|
-
return [
|
|
1893
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1894
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1895
|
-
];
|
|
2129
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1896
2130
|
})
|
|
1897
2131
|
.s("Glacier", "SetVaultNotifications", {})
|
|
1898
2132
|
.n("GlacierClient", "SetVaultNotificationsCommand")
|
|
1899
|
-
.
|
|
1900
|
-
.ser(se_SetVaultNotificationsCommand)
|
|
1901
|
-
.de(de_SetVaultNotificationsCommand)
|
|
2133
|
+
.sc(SetVaultNotifications)
|
|
1902
2134
|
.build() {
|
|
1903
2135
|
}
|
|
1904
2136
|
|
|
@@ -1906,16 +2138,11 @@ class UploadArchiveCommand extends smithyClient.Command
|
|
|
1906
2138
|
.classBuilder()
|
|
1907
2139
|
.ep(commonParams)
|
|
1908
2140
|
.m(function (Command, cs, config, o) {
|
|
1909
|
-
return [
|
|
1910
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1911
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1912
|
-
];
|
|
2141
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1913
2142
|
})
|
|
1914
2143
|
.s("Glacier", "UploadArchive", {})
|
|
1915
2144
|
.n("GlacierClient", "UploadArchiveCommand")
|
|
1916
|
-
.
|
|
1917
|
-
.ser(se_UploadArchiveCommand)
|
|
1918
|
-
.de(de_UploadArchiveCommand)
|
|
2145
|
+
.sc(UploadArchive)
|
|
1919
2146
|
.build() {
|
|
1920
2147
|
}
|
|
1921
2148
|
|
|
@@ -1923,16 +2150,11 @@ class UploadMultipartPartCommand extends smithyClient.Command
|
|
|
1923
2150
|
.classBuilder()
|
|
1924
2151
|
.ep(commonParams)
|
|
1925
2152
|
.m(function (Command, cs, config, o) {
|
|
1926
|
-
return [
|
|
1927
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1928
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1929
|
-
];
|
|
2153
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1930
2154
|
})
|
|
1931
2155
|
.s("Glacier", "UploadMultipartPart", {})
|
|
1932
2156
|
.n("GlacierClient", "UploadMultipartPartCommand")
|
|
1933
|
-
.
|
|
1934
|
-
.ser(se_UploadMultipartPartCommand)
|
|
1935
|
-
.de(de_UploadMultipartPartCommand)
|
|
2157
|
+
.sc(UploadMultipartPart)
|
|
1936
2158
|
.build() {
|
|
1937
2159
|
}
|
|
1938
2160
|
|
|
@@ -2060,34 +2282,33 @@ exports.ExpressionType = ExpressionType;
|
|
|
2060
2282
|
exports.FileHeaderInfo = FileHeaderInfo;
|
|
2061
2283
|
exports.GetDataRetrievalPolicyCommand = GetDataRetrievalPolicyCommand;
|
|
2062
2284
|
exports.GetJobOutputCommand = GetJobOutputCommand;
|
|
2063
|
-
exports.GetJobOutputOutputFilterSensitiveLog = GetJobOutputOutputFilterSensitiveLog;
|
|
2064
2285
|
exports.GetVaultAccessPolicyCommand = GetVaultAccessPolicyCommand;
|
|
2065
2286
|
exports.GetVaultLockCommand = GetVaultLockCommand;
|
|
2066
2287
|
exports.GetVaultNotificationsCommand = GetVaultNotificationsCommand;
|
|
2067
2288
|
exports.Glacier = Glacier;
|
|
2068
2289
|
exports.GlacierClient = GlacierClient;
|
|
2069
|
-
exports.GlacierServiceException = GlacierServiceException;
|
|
2290
|
+
exports.GlacierServiceException = GlacierServiceException$1;
|
|
2070
2291
|
exports.InitiateJobCommand = InitiateJobCommand;
|
|
2071
2292
|
exports.InitiateMultipartUploadCommand = InitiateMultipartUploadCommand;
|
|
2072
2293
|
exports.InitiateVaultLockCommand = InitiateVaultLockCommand;
|
|
2073
|
-
exports.InsufficientCapacityException = InsufficientCapacityException;
|
|
2074
|
-
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
2075
|
-
exports.LimitExceededException = LimitExceededException;
|
|
2294
|
+
exports.InsufficientCapacityException = InsufficientCapacityException$1;
|
|
2295
|
+
exports.InvalidParameterValueException = InvalidParameterValueException$1;
|
|
2296
|
+
exports.LimitExceededException = LimitExceededException$1;
|
|
2076
2297
|
exports.ListJobsCommand = ListJobsCommand;
|
|
2077
2298
|
exports.ListMultipartUploadsCommand = ListMultipartUploadsCommand;
|
|
2078
2299
|
exports.ListPartsCommand = ListPartsCommand;
|
|
2079
2300
|
exports.ListProvisionedCapacityCommand = ListProvisionedCapacityCommand;
|
|
2080
2301
|
exports.ListTagsForVaultCommand = ListTagsForVaultCommand;
|
|
2081
2302
|
exports.ListVaultsCommand = ListVaultsCommand;
|
|
2082
|
-
exports.MissingParameterValueException = MissingParameterValueException;
|
|
2303
|
+
exports.MissingParameterValueException = MissingParameterValueException$1;
|
|
2083
2304
|
exports.Permission = Permission;
|
|
2084
|
-
exports.PolicyEnforcedException = PolicyEnforcedException;
|
|
2305
|
+
exports.PolicyEnforcedException = PolicyEnforcedException$1;
|
|
2085
2306
|
exports.PurchaseProvisionedCapacityCommand = PurchaseProvisionedCapacityCommand;
|
|
2086
2307
|
exports.QuoteFields = QuoteFields;
|
|
2087
2308
|
exports.RemoveTagsFromVaultCommand = RemoveTagsFromVaultCommand;
|
|
2088
|
-
exports.RequestTimeoutException = RequestTimeoutException;
|
|
2089
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2090
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
2309
|
+
exports.RequestTimeoutException = RequestTimeoutException$1;
|
|
2310
|
+
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
2311
|
+
exports.ServiceUnavailableException = ServiceUnavailableException$1;
|
|
2091
2312
|
exports.SetDataRetrievalPolicyCommand = SetDataRetrievalPolicyCommand;
|
|
2092
2313
|
exports.SetVaultAccessPolicyCommand = SetVaultAccessPolicyCommand;
|
|
2093
2314
|
exports.SetVaultNotificationsCommand = SetVaultNotificationsCommand;
|
|
@@ -2095,9 +2316,7 @@ exports.StatusCode = StatusCode;
|
|
|
2095
2316
|
exports.StorageClass = StorageClass;
|
|
2096
2317
|
exports.Type = Type;
|
|
2097
2318
|
exports.UploadArchiveCommand = UploadArchiveCommand;
|
|
2098
|
-
exports.UploadArchiveInputFilterSensitiveLog = UploadArchiveInputFilterSensitiveLog;
|
|
2099
2319
|
exports.UploadMultipartPartCommand = UploadMultipartPartCommand;
|
|
2100
|
-
exports.UploadMultipartPartInputFilterSensitiveLog = UploadMultipartPartInputFilterSensitiveLog;
|
|
2101
2320
|
exports.paginateListJobs = paginateListJobs;
|
|
2102
2321
|
exports.paginateListMultipartUploads = paginateListMultipartUploads;
|
|
2103
2322
|
exports.paginateListParts = paginateListParts;
|