@aws-sdk/client-glacier 3.687.0 → 3.691.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.
@@ -9,8 +9,8 @@ export interface AbortMultipartUploadInput {
9
9
  export declare class InvalidParameterValueException extends __BaseException {
10
10
  readonly name: "InvalidParameterValueException";
11
11
  readonly $fault: "client";
12
- type?: string;
13
- code?: string;
12
+ type?: string | undefined;
13
+ code?: string | undefined;
14
14
  constructor(
15
15
  opts: __ExceptionOptionType<InvalidParameterValueException, __BaseException>
16
16
  );
@@ -18,8 +18,8 @@ export declare class InvalidParameterValueException extends __BaseException {
18
18
  export declare class MissingParameterValueException extends __BaseException {
19
19
  readonly name: "MissingParameterValueException";
20
20
  readonly $fault: "client";
21
- type?: string;
22
- code?: string;
21
+ type?: string | undefined;
22
+ code?: string | undefined;
23
23
  constructor(
24
24
  opts: __ExceptionOptionType<MissingParameterValueException, __BaseException>
25
25
  );
@@ -27,8 +27,8 @@ export declare class MissingParameterValueException extends __BaseException {
27
27
  export declare class ResourceNotFoundException extends __BaseException {
28
28
  readonly name: "ResourceNotFoundException";
29
29
  readonly $fault: "client";
30
- type?: string;
31
- code?: string;
30
+ type?: string | undefined;
31
+ code?: string | undefined;
32
32
  constructor(
33
33
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
34
34
  );
@@ -36,8 +36,8 @@ export declare class ResourceNotFoundException extends __BaseException {
36
36
  export declare class ServiceUnavailableException extends __BaseException {
37
37
  readonly name: "ServiceUnavailableException";
38
38
  readonly $fault: "server";
39
- type?: string;
40
- code?: string;
39
+ type?: string | undefined;
40
+ code?: string | undefined;
41
41
  constructor(
42
42
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
43
43
  );
@@ -54,10 +54,10 @@ export declare const Type: {
54
54
  export type Type = (typeof Type)[keyof typeof Type];
55
55
  export interface Grantee {
56
56
  Type: Type | undefined;
57
- DisplayName?: string;
58
- URI?: string;
59
- ID?: string;
60
- EmailAddress?: string;
57
+ DisplayName?: string | undefined;
58
+ URI?: string | undefined;
59
+ ID?: string | undefined;
60
+ EmailAddress?: string | undefined;
61
61
  }
62
62
  export declare const Permission: {
63
63
  readonly FULL_CONTROL: "FULL_CONTROL";
@@ -68,8 +68,8 @@ export declare const Permission: {
68
68
  };
69
69
  export type Permission = (typeof Permission)[keyof typeof Permission];
70
70
  export interface Grant {
71
- Grantee?: Grantee;
72
- Permission?: Permission;
71
+ Grantee?: Grantee | undefined;
72
+ Permission?: Permission | undefined;
73
73
  }
74
74
  export declare const ActionCode: {
75
75
  readonly ArchiveRetrieval: "ArchiveRetrieval";
@@ -80,21 +80,21 @@ export type ActionCode = (typeof ActionCode)[keyof typeof ActionCode];
80
80
  export interface AddTagsToVaultInput {
81
81
  accountId: string | undefined;
82
82
  vaultName: string | undefined;
83
- Tags?: Record<string, string>;
83
+ Tags?: Record<string, string> | undefined;
84
84
  }
85
85
  export declare class LimitExceededException extends __BaseException {
86
86
  readonly name: "LimitExceededException";
87
87
  readonly $fault: "client";
88
- type?: string;
89
- code?: string;
88
+ type?: string | undefined;
89
+ code?: string | undefined;
90
90
  constructor(
91
91
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
92
92
  );
93
93
  }
94
94
  export interface ArchiveCreationOutput {
95
- location?: string;
96
- checksum?: string;
97
- archiveId?: string;
95
+ location?: string | undefined;
96
+ checksum?: string | undefined;
97
+ archiveId?: string | undefined;
98
98
  }
99
99
  export declare const CannedACL: {
100
100
  readonly AuthenticatedRead: "authenticated-read";
@@ -110,8 +110,8 @@ export interface CompleteMultipartUploadInput {
110
110
  accountId: string | undefined;
111
111
  vaultName: string | undefined;
112
112
  uploadId: string | undefined;
113
- archiveSize?: string;
114
- checksum?: string;
113
+ archiveSize?: string | undefined;
114
+ checksum?: string | undefined;
115
115
  }
116
116
  export interface CompleteVaultLockInput {
117
117
  accountId: string | undefined;
@@ -123,7 +123,7 @@ export interface CreateVaultInput {
123
123
  vaultName: string | undefined;
124
124
  }
125
125
  export interface CreateVaultOutput {
126
- location?: string;
126
+ location?: string | undefined;
127
127
  }
128
128
  export declare const FileHeaderInfo: {
129
129
  readonly Ignore: "IGNORE";
@@ -133,12 +133,12 @@ export declare const FileHeaderInfo: {
133
133
  export type FileHeaderInfo =
134
134
  (typeof FileHeaderInfo)[keyof typeof FileHeaderInfo];
135
135
  export interface CSVInput {
136
- FileHeaderInfo?: FileHeaderInfo;
137
- Comments?: string;
138
- QuoteEscapeCharacter?: string;
139
- RecordDelimiter?: string;
140
- FieldDelimiter?: string;
141
- QuoteCharacter?: string;
136
+ FileHeaderInfo?: FileHeaderInfo | undefined;
137
+ Comments?: string | undefined;
138
+ QuoteEscapeCharacter?: string | undefined;
139
+ RecordDelimiter?: string | undefined;
140
+ FieldDelimiter?: string | undefined;
141
+ QuoteCharacter?: string | undefined;
142
142
  }
143
143
  export declare const QuoteFields: {
144
144
  readonly Always: "ALWAYS";
@@ -146,18 +146,18 @@ export declare const QuoteFields: {
146
146
  };
147
147
  export type QuoteFields = (typeof QuoteFields)[keyof typeof QuoteFields];
148
148
  export interface CSVOutput {
149
- QuoteFields?: QuoteFields;
150
- QuoteEscapeCharacter?: string;
151
- RecordDelimiter?: string;
152
- FieldDelimiter?: string;
153
- QuoteCharacter?: string;
149
+ QuoteFields?: QuoteFields | undefined;
150
+ QuoteEscapeCharacter?: string | undefined;
151
+ RecordDelimiter?: string | undefined;
152
+ FieldDelimiter?: string | undefined;
153
+ QuoteCharacter?: string | undefined;
154
154
  }
155
155
  export interface DataRetrievalRule {
156
- Strategy?: string;
157
- BytesPerHour?: number;
156
+ Strategy?: string | undefined;
157
+ BytesPerHour?: number | undefined;
158
158
  }
159
159
  export interface DataRetrievalPolicy {
160
- Rules?: DataRetrievalRule[];
160
+ Rules?: DataRetrievalRule[] | undefined;
161
161
  }
162
162
  export interface DeleteArchiveInput {
163
163
  accountId: string | undefined;
@@ -182,11 +182,11 @@ export interface DescribeJobInput {
182
182
  jobId: string | undefined;
183
183
  }
184
184
  export interface InventoryRetrievalJobDescription {
185
- Format?: string;
186
- StartDate?: string;
187
- EndDate?: string;
188
- Limit?: string;
189
- Marker?: string;
185
+ Format?: string | undefined;
186
+ StartDate?: string | undefined;
187
+ EndDate?: string | undefined;
188
+ Limit?: string | undefined;
189
+ Marker?: string | undefined;
190
190
  }
191
191
  export declare const EncryptionType: {
192
192
  readonly KMS: "aws:kms";
@@ -195,9 +195,9 @@ export declare const EncryptionType: {
195
195
  export type EncryptionType =
196
196
  (typeof EncryptionType)[keyof typeof EncryptionType];
197
197
  export interface Encryption {
198
- EncryptionType?: EncryptionType;
199
- KMSKeyId?: string;
200
- KMSContext?: string;
198
+ EncryptionType?: EncryptionType | undefined;
199
+ KMSKeyId?: string | undefined;
200
+ KMSContext?: string | undefined;
201
201
  }
202
202
  export declare const StorageClass: {
203
203
  readonly ReducedRedundancy: "REDUCED_REDUNDANCY";
@@ -206,17 +206,17 @@ export declare const StorageClass: {
206
206
  };
207
207
  export type StorageClass = (typeof StorageClass)[keyof typeof StorageClass];
208
208
  export interface S3Location {
209
- BucketName?: string;
210
- Prefix?: string;
211
- Encryption?: Encryption;
212
- CannedACL?: CannedACL;
213
- AccessControlList?: Grant[];
214
- Tagging?: Record<string, string>;
215
- UserMetadata?: Record<string, string>;
216
- StorageClass?: StorageClass;
209
+ BucketName?: string | undefined;
210
+ Prefix?: string | undefined;
211
+ Encryption?: Encryption | undefined;
212
+ CannedACL?: CannedACL | undefined;
213
+ AccessControlList?: Grant[] | undefined;
214
+ Tagging?: Record<string, string> | undefined;
215
+ UserMetadata?: Record<string, string> | undefined;
216
+ StorageClass?: StorageClass | undefined;
217
217
  }
218
218
  export interface OutputLocation {
219
- S3?: S3Location;
219
+ S3?: S3Location | undefined;
220
220
  }
221
221
  export declare const ExpressionType: {
222
222
  readonly SQL: "SQL";
@@ -224,16 +224,16 @@ export declare const ExpressionType: {
224
224
  export type ExpressionType =
225
225
  (typeof ExpressionType)[keyof typeof ExpressionType];
226
226
  export interface InputSerialization {
227
- csv?: CSVInput;
227
+ csv?: CSVInput | undefined;
228
228
  }
229
229
  export interface OutputSerialization {
230
- csv?: CSVOutput;
230
+ csv?: CSVOutput | undefined;
231
231
  }
232
232
  export interface SelectParameters {
233
- InputSerialization?: InputSerialization;
234
- ExpressionType?: ExpressionType;
235
- Expression?: string;
236
- OutputSerialization?: OutputSerialization;
233
+ InputSerialization?: InputSerialization | undefined;
234
+ ExpressionType?: ExpressionType | undefined;
235
+ Expression?: string | undefined;
236
+ OutputSerialization?: OutputSerialization | undefined;
237
237
  }
238
238
  export declare const StatusCode: {
239
239
  readonly Failed: "Failed";
@@ -242,125 +242,125 @@ export declare const StatusCode: {
242
242
  };
243
243
  export type StatusCode = (typeof StatusCode)[keyof typeof StatusCode];
244
244
  export interface GlacierJobDescription {
245
- JobId?: string;
246
- JobDescription?: string;
247
- Action?: ActionCode;
248
- ArchiveId?: string;
249
- VaultARN?: string;
250
- CreationDate?: string;
251
- Completed?: boolean;
252
- StatusCode?: StatusCode;
253
- StatusMessage?: string;
254
- ArchiveSizeInBytes?: number;
255
- InventorySizeInBytes?: number;
256
- SNSTopic?: string;
257
- CompletionDate?: string;
258
- SHA256TreeHash?: string;
259
- ArchiveSHA256TreeHash?: string;
260
- RetrievalByteRange?: string;
261
- Tier?: string;
262
- InventoryRetrievalParameters?: InventoryRetrievalJobDescription;
263
- JobOutputPath?: string;
264
- SelectParameters?: SelectParameters;
265
- OutputLocation?: OutputLocation;
245
+ JobId?: string | undefined;
246
+ JobDescription?: string | undefined;
247
+ Action?: ActionCode | undefined;
248
+ ArchiveId?: string | undefined;
249
+ VaultARN?: string | undefined;
250
+ CreationDate?: string | undefined;
251
+ Completed?: boolean | undefined;
252
+ StatusCode?: StatusCode | undefined;
253
+ StatusMessage?: string | undefined;
254
+ ArchiveSizeInBytes?: number | undefined;
255
+ InventorySizeInBytes?: number | undefined;
256
+ SNSTopic?: string | undefined;
257
+ CompletionDate?: string | undefined;
258
+ SHA256TreeHash?: string | undefined;
259
+ ArchiveSHA256TreeHash?: string | undefined;
260
+ RetrievalByteRange?: string | undefined;
261
+ Tier?: string | undefined;
262
+ InventoryRetrievalParameters?: InventoryRetrievalJobDescription | undefined;
263
+ JobOutputPath?: string | undefined;
264
+ SelectParameters?: SelectParameters | undefined;
265
+ OutputLocation?: OutputLocation | undefined;
266
266
  }
267
267
  export interface DescribeVaultInput {
268
268
  accountId: string | undefined;
269
269
  vaultName: string | undefined;
270
270
  }
271
271
  export interface DescribeVaultOutput {
272
- VaultARN?: string;
273
- VaultName?: string;
274
- CreationDate?: string;
275
- LastInventoryDate?: string;
276
- NumberOfArchives?: number;
277
- SizeInBytes?: number;
272
+ VaultARN?: string | undefined;
273
+ VaultName?: string | undefined;
274
+ CreationDate?: string | undefined;
275
+ LastInventoryDate?: string | undefined;
276
+ NumberOfArchives?: number | undefined;
277
+ SizeInBytes?: number | undefined;
278
278
  }
279
279
  export interface GetDataRetrievalPolicyInput {
280
280
  accountId: string | undefined;
281
281
  }
282
282
  export interface GetDataRetrievalPolicyOutput {
283
- Policy?: DataRetrievalPolicy;
283
+ Policy?: DataRetrievalPolicy | undefined;
284
284
  }
285
285
  export interface GetJobOutputInput {
286
286
  accountId: string | undefined;
287
287
  vaultName: string | undefined;
288
288
  jobId: string | undefined;
289
- range?: string;
289
+ range?: string | undefined;
290
290
  }
291
291
  export interface GetJobOutputOutput {
292
- body?: StreamingBlobTypes;
293
- checksum?: string;
294
- status?: number;
295
- contentRange?: string;
296
- acceptRanges?: string;
297
- contentType?: string;
298
- archiveDescription?: string;
292
+ body?: StreamingBlobTypes | undefined;
293
+ checksum?: string | undefined;
294
+ status?: number | undefined;
295
+ contentRange?: string | undefined;
296
+ acceptRanges?: string | undefined;
297
+ contentType?: string | undefined;
298
+ archiveDescription?: string | undefined;
299
299
  }
300
300
  export interface GetVaultAccessPolicyInput {
301
301
  accountId: string | undefined;
302
302
  vaultName: string | undefined;
303
303
  }
304
304
  export interface VaultAccessPolicy {
305
- Policy?: string;
305
+ Policy?: string | undefined;
306
306
  }
307
307
  export interface GetVaultAccessPolicyOutput {
308
- policy?: VaultAccessPolicy;
308
+ policy?: VaultAccessPolicy | undefined;
309
309
  }
310
310
  export interface GetVaultLockInput {
311
311
  accountId: string | undefined;
312
312
  vaultName: string | undefined;
313
313
  }
314
314
  export interface GetVaultLockOutput {
315
- Policy?: string;
316
- State?: string;
317
- ExpirationDate?: string;
318
- CreationDate?: string;
315
+ Policy?: string | undefined;
316
+ State?: string | undefined;
317
+ ExpirationDate?: string | undefined;
318
+ CreationDate?: string | undefined;
319
319
  }
320
320
  export interface GetVaultNotificationsInput {
321
321
  accountId: string | undefined;
322
322
  vaultName: string | undefined;
323
323
  }
324
324
  export interface VaultNotificationConfig {
325
- SNSTopic?: string;
326
- Events?: string[];
325
+ SNSTopic?: string | undefined;
326
+ Events?: string[] | undefined;
327
327
  }
328
328
  export interface GetVaultNotificationsOutput {
329
- vaultNotificationConfig?: VaultNotificationConfig;
329
+ vaultNotificationConfig?: VaultNotificationConfig | undefined;
330
330
  }
331
331
  export interface InventoryRetrievalJobInput {
332
- StartDate?: string;
333
- EndDate?: string;
334
- Limit?: string;
335
- Marker?: string;
332
+ StartDate?: string | undefined;
333
+ EndDate?: string | undefined;
334
+ Limit?: string | undefined;
335
+ Marker?: string | undefined;
336
336
  }
337
337
  export interface JobParameters {
338
- Format?: string;
339
- Type?: string;
340
- ArchiveId?: string;
341
- Description?: string;
342
- SNSTopic?: string;
343
- RetrievalByteRange?: string;
344
- Tier?: string;
345
- InventoryRetrievalParameters?: InventoryRetrievalJobInput;
346
- SelectParameters?: SelectParameters;
347
- OutputLocation?: OutputLocation;
338
+ Format?: string | undefined;
339
+ Type?: string | undefined;
340
+ ArchiveId?: string | undefined;
341
+ Description?: string | undefined;
342
+ SNSTopic?: string | undefined;
343
+ RetrievalByteRange?: string | undefined;
344
+ Tier?: string | undefined;
345
+ InventoryRetrievalParameters?: InventoryRetrievalJobInput | undefined;
346
+ SelectParameters?: SelectParameters | undefined;
347
+ OutputLocation?: OutputLocation | undefined;
348
348
  }
349
349
  export interface InitiateJobInput {
350
350
  accountId: string | undefined;
351
351
  vaultName: string | undefined;
352
- jobParameters?: JobParameters;
352
+ jobParameters?: JobParameters | undefined;
353
353
  }
354
354
  export interface InitiateJobOutput {
355
- location?: string;
356
- jobId?: string;
357
- jobOutputPath?: string;
355
+ location?: string | undefined;
356
+ jobId?: string | undefined;
357
+ jobOutputPath?: string | undefined;
358
358
  }
359
359
  export declare class InsufficientCapacityException extends __BaseException {
360
360
  readonly name: "InsufficientCapacityException";
361
361
  readonly $fault: "client";
362
- type?: string;
363
- code?: string;
362
+ type?: string | undefined;
363
+ code?: string | undefined;
364
364
  constructor(
365
365
  opts: __ExceptionOptionType<InsufficientCapacityException, __BaseException>
366
366
  );
@@ -368,8 +368,8 @@ export declare class InsufficientCapacityException extends __BaseException {
368
368
  export declare class PolicyEnforcedException extends __BaseException {
369
369
  readonly name: "PolicyEnforcedException";
370
370
  readonly $fault: "client";
371
- type?: string;
372
- code?: string;
371
+ type?: string | undefined;
372
+ code?: string | undefined;
373
373
  constructor(
374
374
  opts: __ExceptionOptionType<PolicyEnforcedException, __BaseException>
375
375
  );
@@ -377,130 +377,130 @@ export declare class PolicyEnforcedException extends __BaseException {
377
377
  export interface InitiateMultipartUploadInput {
378
378
  accountId: string | undefined;
379
379
  vaultName: string | undefined;
380
- archiveDescription?: string;
381
- partSize?: string;
380
+ archiveDescription?: string | undefined;
381
+ partSize?: string | undefined;
382
382
  }
383
383
  export interface InitiateMultipartUploadOutput {
384
- location?: string;
385
- uploadId?: string;
384
+ location?: string | undefined;
385
+ uploadId?: string | undefined;
386
386
  }
387
387
  export interface VaultLockPolicy {
388
- Policy?: string;
388
+ Policy?: string | undefined;
389
389
  }
390
390
  export interface InitiateVaultLockInput {
391
391
  accountId: string | undefined;
392
392
  vaultName: string | undefined;
393
- policy?: VaultLockPolicy;
393
+ policy?: VaultLockPolicy | undefined;
394
394
  }
395
395
  export interface InitiateVaultLockOutput {
396
- lockId?: string;
396
+ lockId?: string | undefined;
397
397
  }
398
398
  export interface ListJobsInput {
399
399
  accountId: string | undefined;
400
400
  vaultName: string | undefined;
401
- limit?: number;
402
- marker?: string;
403
- statuscode?: string;
404
- completed?: string;
401
+ limit?: number | undefined;
402
+ marker?: string | undefined;
403
+ statuscode?: string | undefined;
404
+ completed?: string | undefined;
405
405
  }
406
406
  export interface ListJobsOutput {
407
- JobList?: GlacierJobDescription[];
408
- Marker?: string;
407
+ JobList?: GlacierJobDescription[] | undefined;
408
+ Marker?: string | undefined;
409
409
  }
410
410
  export interface ListMultipartUploadsInput {
411
411
  accountId: string | undefined;
412
412
  vaultName: string | undefined;
413
- limit?: number;
414
- marker?: string;
413
+ limit?: number | undefined;
414
+ marker?: string | undefined;
415
415
  }
416
416
  export interface UploadListElement {
417
- MultipartUploadId?: string;
418
- VaultARN?: string;
419
- ArchiveDescription?: string;
420
- PartSizeInBytes?: number;
421
- CreationDate?: string;
417
+ MultipartUploadId?: string | undefined;
418
+ VaultARN?: string | undefined;
419
+ ArchiveDescription?: string | undefined;
420
+ PartSizeInBytes?: number | undefined;
421
+ CreationDate?: string | undefined;
422
422
  }
423
423
  export interface ListMultipartUploadsOutput {
424
- UploadsList?: UploadListElement[];
425
- Marker?: string;
424
+ UploadsList?: UploadListElement[] | undefined;
425
+ Marker?: string | undefined;
426
426
  }
427
427
  export interface ListPartsInput {
428
428
  accountId: string | undefined;
429
429
  vaultName: string | undefined;
430
430
  uploadId: string | undefined;
431
- marker?: string;
432
- limit?: number;
431
+ marker?: string | undefined;
432
+ limit?: number | undefined;
433
433
  }
434
434
  export interface PartListElement {
435
- RangeInBytes?: string;
436
- SHA256TreeHash?: string;
435
+ RangeInBytes?: string | undefined;
436
+ SHA256TreeHash?: string | undefined;
437
437
  }
438
438
  export interface ListPartsOutput {
439
- MultipartUploadId?: string;
440
- VaultARN?: string;
441
- ArchiveDescription?: string;
442
- PartSizeInBytes?: number;
443
- CreationDate?: string;
444
- Parts?: PartListElement[];
445
- Marker?: string;
439
+ MultipartUploadId?: string | undefined;
440
+ VaultARN?: string | undefined;
441
+ ArchiveDescription?: string | undefined;
442
+ PartSizeInBytes?: number | undefined;
443
+ CreationDate?: string | undefined;
444
+ Parts?: PartListElement[] | undefined;
445
+ Marker?: string | undefined;
446
446
  }
447
447
  export interface ListProvisionedCapacityInput {
448
448
  accountId: string | undefined;
449
449
  }
450
450
  export interface ProvisionedCapacityDescription {
451
- CapacityId?: string;
452
- StartDate?: string;
453
- ExpirationDate?: string;
451
+ CapacityId?: string | undefined;
452
+ StartDate?: string | undefined;
453
+ ExpirationDate?: string | undefined;
454
454
  }
455
455
  export interface ListProvisionedCapacityOutput {
456
- ProvisionedCapacityList?: ProvisionedCapacityDescription[];
456
+ ProvisionedCapacityList?: ProvisionedCapacityDescription[] | undefined;
457
457
  }
458
458
  export interface ListTagsForVaultInput {
459
459
  accountId: string | undefined;
460
460
  vaultName: string | undefined;
461
461
  }
462
462
  export interface ListTagsForVaultOutput {
463
- Tags?: Record<string, string>;
463
+ Tags?: Record<string, string> | undefined;
464
464
  }
465
465
  export interface ListVaultsInput {
466
466
  accountId: string | undefined;
467
- marker?: string;
468
- limit?: number;
467
+ marker?: string | undefined;
468
+ limit?: number | undefined;
469
469
  }
470
470
  export interface ListVaultsOutput {
471
- VaultList?: DescribeVaultOutput[];
472
- Marker?: string;
471
+ VaultList?: DescribeVaultOutput[] | undefined;
472
+ Marker?: string | undefined;
473
473
  }
474
474
  export interface PurchaseProvisionedCapacityInput {
475
475
  accountId: string | undefined;
476
476
  }
477
477
  export interface PurchaseProvisionedCapacityOutput {
478
- capacityId?: string;
478
+ capacityId?: string | undefined;
479
479
  }
480
480
  export interface RemoveTagsFromVaultInput {
481
481
  accountId: string | undefined;
482
482
  vaultName: string | undefined;
483
- TagKeys?: string[];
483
+ TagKeys?: string[] | undefined;
484
484
  }
485
485
  export interface SetDataRetrievalPolicyInput {
486
486
  accountId: string | undefined;
487
- Policy?: DataRetrievalPolicy;
487
+ Policy?: DataRetrievalPolicy | undefined;
488
488
  }
489
489
  export interface SetVaultAccessPolicyInput {
490
490
  accountId: string | undefined;
491
491
  vaultName: string | undefined;
492
- policy?: VaultAccessPolicy;
492
+ policy?: VaultAccessPolicy | undefined;
493
493
  }
494
494
  export interface SetVaultNotificationsInput {
495
495
  accountId: string | undefined;
496
496
  vaultName: string | undefined;
497
- vaultNotificationConfig?: VaultNotificationConfig;
497
+ vaultNotificationConfig?: VaultNotificationConfig | undefined;
498
498
  }
499
499
  export declare class RequestTimeoutException extends __BaseException {
500
500
  readonly name: "RequestTimeoutException";
501
501
  readonly $fault: "client";
502
- type?: string;
503
- code?: string;
502
+ type?: string | undefined;
503
+ code?: string | undefined;
504
504
  constructor(
505
505
  opts: __ExceptionOptionType<RequestTimeoutException, __BaseException>
506
506
  );
@@ -508,20 +508,20 @@ export declare class RequestTimeoutException extends __BaseException {
508
508
  export interface UploadArchiveInput {
509
509
  vaultName: string | undefined;
510
510
  accountId: string | undefined;
511
- archiveDescription?: string;
512
- checksum?: string;
513
- body?: StreamingBlobTypes;
511
+ archiveDescription?: string | undefined;
512
+ checksum?: string | undefined;
513
+ body?: StreamingBlobTypes | undefined;
514
514
  }
515
515
  export interface UploadMultipartPartInput {
516
516
  accountId: string | undefined;
517
517
  vaultName: string | undefined;
518
518
  uploadId: string | undefined;
519
- checksum?: string;
520
- range?: string;
521
- body?: StreamingBlobTypes;
519
+ checksum?: string | undefined;
520
+ range?: string | undefined;
521
+ body?: StreamingBlobTypes | undefined;
522
522
  }
523
523
  export interface UploadMultipartPartOutput {
524
- checksum?: string;
524
+ checksum?: string | undefined;
525
525
  }
526
526
  export declare const GetJobOutputOutputFilterSensitiveLog: (
527
527
  obj: GetJobOutputOutput
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-glacier",
3
3
  "description": "AWS SDK for JavaScript Glacier Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-glacier",
@@ -20,22 +20,22 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/body-checksum-browser": "3.686.0",
23
+ "@aws-sdk/body-checksum-browser": "3.691.0",
24
24
  "@aws-sdk/body-checksum-node": "3.686.0",
25
- "@aws-sdk/client-sso-oidc": "3.687.0",
26
- "@aws-sdk/client-sts": "3.687.0",
27
- "@aws-sdk/core": "3.686.0",
28
- "@aws-sdk/credential-provider-node": "3.687.0",
25
+ "@aws-sdk/client-sso-oidc": "3.691.0",
26
+ "@aws-sdk/client-sts": "3.691.0",
27
+ "@aws-sdk/core": "3.691.0",
28
+ "@aws-sdk/credential-provider-node": "3.691.0",
29
29
  "@aws-sdk/middleware-host-header": "3.686.0",
30
30
  "@aws-sdk/middleware-logger": "3.686.0",
31
31
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
32
32
  "@aws-sdk/middleware-sdk-glacier": "3.686.0",
33
- "@aws-sdk/middleware-user-agent": "3.687.0",
33
+ "@aws-sdk/middleware-user-agent": "3.691.0",
34
34
  "@aws-sdk/region-config-resolver": "3.686.0",
35
35
  "@aws-sdk/types": "3.686.0",
36
36
  "@aws-sdk/util-endpoints": "3.686.0",
37
37
  "@aws-sdk/util-user-agent-browser": "3.686.0",
38
- "@aws-sdk/util-user-agent-node": "3.687.0",
38
+ "@aws-sdk/util-user-agent-node": "3.691.0",
39
39
  "@smithy/config-resolver": "^3.0.10",
40
40
  "@smithy/core": "^2.5.1",
41
41
  "@smithy/fetch-http-handler": "^4.0.0",