@aws-sdk/client-acm 3.130.0 → 3.141.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.
Files changed (37) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/AddTagsToCertificateCommand.js +1 -1
  4. package/dist-cjs/commands/DeleteCertificateCommand.js +1 -1
  5. package/dist-cjs/commands/DescribeCertificateCommand.js +2 -2
  6. package/dist-cjs/commands/ExportCertificateCommand.js +2 -2
  7. package/dist-cjs/commands/GetAccountConfigurationCommand.js +1 -1
  8. package/dist-cjs/commands/GetCertificateCommand.js +2 -2
  9. package/dist-cjs/commands/ImportCertificateCommand.js +2 -2
  10. package/dist-cjs/commands/ListCertificatesCommand.js +2 -2
  11. package/dist-cjs/commands/ListTagsForCertificateCommand.js +2 -2
  12. package/dist-cjs/commands/PutAccountConfigurationCommand.js +1 -1
  13. package/dist-cjs/commands/RemoveTagsFromCertificateCommand.js +1 -1
  14. package/dist-cjs/commands/RenewCertificateCommand.js +1 -1
  15. package/dist-cjs/commands/RequestCertificateCommand.js +2 -2
  16. package/dist-cjs/commands/ResendValidationEmailCommand.js +1 -1
  17. package/dist-cjs/commands/UpdateCertificateOptionsCommand.js +1 -1
  18. package/dist-cjs/models/models_0.js +141 -209
  19. package/dist-es/commands/AddTagsToCertificateCommand.js +2 -2
  20. package/dist-es/commands/DeleteCertificateCommand.js +2 -2
  21. package/dist-es/commands/DescribeCertificateCommand.js +3 -3
  22. package/dist-es/commands/ExportCertificateCommand.js +3 -3
  23. package/dist-es/commands/GetAccountConfigurationCommand.js +2 -2
  24. package/dist-es/commands/GetCertificateCommand.js +3 -3
  25. package/dist-es/commands/ImportCertificateCommand.js +3 -3
  26. package/dist-es/commands/ListCertificatesCommand.js +3 -3
  27. package/dist-es/commands/ListTagsForCertificateCommand.js +3 -3
  28. package/dist-es/commands/PutAccountConfigurationCommand.js +2 -2
  29. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +2 -2
  30. package/dist-es/commands/RenewCertificateCommand.js +2 -2
  31. package/dist-es/commands/RequestCertificateCommand.js +3 -3
  32. package/dist-es/commands/ResendValidationEmailCommand.js +2 -2
  33. package/dist-es/commands/UpdateCertificateOptionsCommand.js +2 -2
  34. package/dist-es/models/models_0.js +34 -136
  35. package/dist-types/models/models_0.d.ts +136 -204
  36. package/dist-types/ts3.4/models/models_0.d.ts +68 -136
  37. package/package.json +7 -7
@@ -15,20 +15,12 @@ export interface Tag {
15
15
 
16
16
  Value?: string;
17
17
  }
18
- export declare namespace Tag {
19
-
20
- const filterSensitiveLog: (obj: Tag) => any;
21
- }
22
18
  export interface AddTagsToCertificateRequest {
23
19
 
24
20
  CertificateArn: string | undefined;
25
21
 
26
22
  Tags: Tag[] | undefined;
27
23
  }
28
- export declare namespace AddTagsToCertificateRequest {
29
-
30
- const filterSensitiveLog: (obj: AddTagsToCertificateRequest) => any;
31
- }
32
24
 
33
25
  export declare class InvalidArnException extends __BaseException {
34
26
  readonly name: "InvalidArnException";
@@ -90,10 +82,6 @@ export interface ResourceRecord {
90
82
 
91
83
  Value: string | undefined;
92
84
  }
93
- export declare namespace ResourceRecord {
94
-
95
- const filterSensitiveLog: (obj: ResourceRecord) => any;
96
- }
97
85
  export declare enum ValidationMethod {
98
86
  DNS = "DNS",
99
87
  EMAIL = "EMAIL"
@@ -118,10 +106,6 @@ export interface DomainValidation {
118
106
 
119
107
  ValidationMethod?: ValidationMethod | string;
120
108
  }
121
- export declare namespace DomainValidation {
122
-
123
- const filterSensitiveLog: (obj: DomainValidation) => any;
124
- }
125
109
  export declare enum ExtendedKeyUsageName {
126
110
  ANY = "ANY",
127
111
  CODE_SIGNING = "CODE_SIGNING",
@@ -143,10 +127,6 @@ export interface ExtendedKeyUsage {
143
127
 
144
128
  OID?: string;
145
129
  }
146
- export declare namespace ExtendedKeyUsage {
147
-
148
- const filterSensitiveLog: (obj: ExtendedKeyUsage) => any;
149
- }
150
130
  export declare enum FailureReason {
151
131
  ADDITIONAL_VERIFICATION_REQUIRED = "ADDITIONAL_VERIFICATION_REQUIRED",
152
132
  CAA_ERROR = "CAA_ERROR",
@@ -193,10 +173,6 @@ export interface KeyUsage {
193
173
 
194
174
  Name?: KeyUsageName | string;
195
175
  }
196
- export declare namespace KeyUsage {
197
-
198
- const filterSensitiveLog: (obj: KeyUsage) => any;
199
- }
200
176
  export declare enum CertificateTransparencyLoggingPreference {
201
177
  DISABLED = "DISABLED",
202
178
  ENABLED = "ENABLED"
@@ -206,10 +182,6 @@ export interface CertificateOptions {
206
182
 
207
183
  CertificateTransparencyLoggingPreference?: CertificateTransparencyLoggingPreference | string;
208
184
  }
209
- export declare namespace CertificateOptions {
210
-
211
- const filterSensitiveLog: (obj: CertificateOptions) => any;
212
- }
213
185
  export declare enum RenewalEligibility {
214
186
  ELIGIBLE = "ELIGIBLE",
215
187
  INELIGIBLE = "INELIGIBLE"
@@ -231,10 +203,6 @@ export interface RenewalSummary {
231
203
 
232
204
  UpdatedAt: Date | undefined;
233
205
  }
234
- export declare namespace RenewalSummary {
235
-
236
- const filterSensitiveLog: (obj: RenewalSummary) => any;
237
- }
238
206
  export declare enum RevocationReason {
239
207
  AFFILIATION_CHANGED = "AFFILIATION_CHANGED",
240
208
  A_A_COMPROMISE = "A_A_COMPROMISE",
@@ -316,18 +284,10 @@ export interface CertificateDetail {
316
284
 
317
285
  Options?: CertificateOptions;
318
286
  }
319
- export declare namespace CertificateDetail {
320
-
321
- const filterSensitiveLog: (obj: CertificateDetail) => any;
322
- }
323
287
  export interface DeleteCertificateRequest {
324
288
 
325
289
  CertificateArn: string | undefined;
326
290
  }
327
- export declare namespace DeleteCertificateRequest {
328
-
329
- const filterSensitiveLog: (obj: DeleteCertificateRequest) => any;
330
- }
331
291
 
332
292
  export declare class ResourceInUseException extends __BaseException {
333
293
  readonly name: "ResourceInUseException";
@@ -339,28 +299,16 @@ export interface DescribeCertificateRequest {
339
299
 
340
300
  CertificateArn: string | undefined;
341
301
  }
342
- export declare namespace DescribeCertificateRequest {
343
-
344
- const filterSensitiveLog: (obj: DescribeCertificateRequest) => any;
345
- }
346
302
  export interface DescribeCertificateResponse {
347
303
 
348
304
  Certificate?: CertificateDetail;
349
305
  }
350
- export declare namespace DescribeCertificateResponse {
351
-
352
- const filterSensitiveLog: (obj: DescribeCertificateResponse) => any;
353
- }
354
306
  export interface ExportCertificateRequest {
355
307
 
356
308
  CertificateArn: string | undefined;
357
309
 
358
310
  Passphrase: Uint8Array | undefined;
359
311
  }
360
- export declare namespace ExportCertificateRequest {
361
-
362
- const filterSensitiveLog: (obj: ExportCertificateRequest) => any;
363
- }
364
312
  export interface ExportCertificateResponse {
365
313
 
366
314
  Certificate?: string;
@@ -369,10 +317,6 @@ export interface ExportCertificateResponse {
369
317
 
370
318
  PrivateKey?: string;
371
319
  }
372
- export declare namespace ExportCertificateResponse {
373
-
374
- const filterSensitiveLog: (obj: ExportCertificateResponse) => any;
375
- }
376
320
 
377
321
  export declare class RequestInProgressException extends __BaseException {
378
322
  readonly name: "RequestInProgressException";
@@ -385,36 +329,20 @@ export interface ExpiryEventsConfiguration {
385
329
 
386
330
  DaysBeforeExpiry?: number;
387
331
  }
388
- export declare namespace ExpiryEventsConfiguration {
389
-
390
- const filterSensitiveLog: (obj: ExpiryEventsConfiguration) => any;
391
- }
392
332
  export interface GetAccountConfigurationResponse {
393
333
 
394
334
  ExpiryEvents?: ExpiryEventsConfiguration;
395
335
  }
396
- export declare namespace GetAccountConfigurationResponse {
397
-
398
- const filterSensitiveLog: (obj: GetAccountConfigurationResponse) => any;
399
- }
400
336
  export interface GetCertificateRequest {
401
337
 
402
338
  CertificateArn: string | undefined;
403
339
  }
404
- export declare namespace GetCertificateRequest {
405
-
406
- const filterSensitiveLog: (obj: GetCertificateRequest) => any;
407
- }
408
340
  export interface GetCertificateResponse {
409
341
 
410
342
  Certificate?: string;
411
343
 
412
344
  CertificateChain?: string;
413
345
  }
414
- export declare namespace GetCertificateResponse {
415
-
416
- const filterSensitiveLog: (obj: GetCertificateResponse) => any;
417
- }
418
346
  export interface ImportCertificateRequest {
419
347
 
420
348
  CertificateArn?: string;
@@ -427,18 +355,10 @@ export interface ImportCertificateRequest {
427
355
 
428
356
  Tags?: Tag[];
429
357
  }
430
- export declare namespace ImportCertificateRequest {
431
-
432
- const filterSensitiveLog: (obj: ImportCertificateRequest) => any;
433
- }
434
358
  export interface ImportCertificateResponse {
435
359
 
436
360
  CertificateArn?: string;
437
361
  }
438
- export declare namespace ImportCertificateResponse {
439
-
440
- const filterSensitiveLog: (obj: ImportCertificateResponse) => any;
441
- }
442
362
 
443
363
  export declare class LimitExceededException extends __BaseException {
444
364
  readonly name: "LimitExceededException";
@@ -462,10 +382,6 @@ export interface Filters {
462
382
 
463
383
  keyTypes?: (KeyAlgorithm | string)[];
464
384
  }
465
- export declare namespace Filters {
466
-
467
- const filterSensitiveLog: (obj: Filters) => any;
468
- }
469
385
  export interface ListCertificatesRequest {
470
386
 
471
387
  CertificateStatuses?: (CertificateStatus | string)[];
@@ -476,10 +392,6 @@ export interface ListCertificatesRequest {
476
392
 
477
393
  MaxItems?: number;
478
394
  }
479
- export declare namespace ListCertificatesRequest {
480
-
481
- const filterSensitiveLog: (obj: ListCertificatesRequest) => any;
482
- }
483
395
 
484
396
  export interface CertificateSummary {
485
397
 
@@ -487,36 +399,20 @@ export interface CertificateSummary {
487
399
 
488
400
  DomainName?: string;
489
401
  }
490
- export declare namespace CertificateSummary {
491
-
492
- const filterSensitiveLog: (obj: CertificateSummary) => any;
493
- }
494
402
  export interface ListCertificatesResponse {
495
403
 
496
404
  NextToken?: string;
497
405
 
498
406
  CertificateSummaryList?: CertificateSummary[];
499
407
  }
500
- export declare namespace ListCertificatesResponse {
501
-
502
- const filterSensitiveLog: (obj: ListCertificatesResponse) => any;
503
- }
504
408
  export interface ListTagsForCertificateRequest {
505
409
 
506
410
  CertificateArn: string | undefined;
507
411
  }
508
- export declare namespace ListTagsForCertificateRequest {
509
-
510
- const filterSensitiveLog: (obj: ListTagsForCertificateRequest) => any;
511
- }
512
412
  export interface ListTagsForCertificateResponse {
513
413
 
514
414
  Tags?: Tag[];
515
415
  }
516
- export declare namespace ListTagsForCertificateResponse {
517
-
518
- const filterSensitiveLog: (obj: ListTagsForCertificateResponse) => any;
519
- }
520
416
 
521
417
  export declare class ConflictException extends __BaseException {
522
418
  readonly name: "ConflictException";
@@ -530,10 +426,6 @@ export interface PutAccountConfigurationRequest {
530
426
 
531
427
  IdempotencyToken: string | undefined;
532
428
  }
533
- export declare namespace PutAccountConfigurationRequest {
534
-
535
- const filterSensitiveLog: (obj: PutAccountConfigurationRequest) => any;
536
- }
537
429
 
538
430
  export declare class ValidationException extends __BaseException {
539
431
  readonly name: "ValidationException";
@@ -547,18 +439,10 @@ export interface RemoveTagsFromCertificateRequest {
547
439
 
548
440
  Tags: Tag[] | undefined;
549
441
  }
550
- export declare namespace RemoveTagsFromCertificateRequest {
551
-
552
- const filterSensitiveLog: (obj: RemoveTagsFromCertificateRequest) => any;
553
- }
554
442
  export interface RenewCertificateRequest {
555
443
 
556
444
  CertificateArn: string | undefined;
557
445
  }
558
- export declare namespace RenewCertificateRequest {
559
-
560
- const filterSensitiveLog: (obj: RenewCertificateRequest) => any;
561
- }
562
446
 
563
447
  export declare class InvalidDomainValidationOptionsException extends __BaseException {
564
448
  readonly name: "InvalidDomainValidationOptionsException";
@@ -573,10 +457,6 @@ export interface DomainValidationOption {
573
457
 
574
458
  ValidationDomain: string | undefined;
575
459
  }
576
- export declare namespace DomainValidationOption {
577
-
578
- const filterSensitiveLog: (obj: DomainValidationOption) => any;
579
- }
580
460
  export interface RequestCertificateRequest {
581
461
 
582
462
  DomainName: string | undefined;
@@ -595,18 +475,10 @@ export interface RequestCertificateRequest {
595
475
 
596
476
  Tags?: Tag[];
597
477
  }
598
- export declare namespace RequestCertificateRequest {
599
-
600
- const filterSensitiveLog: (obj: RequestCertificateRequest) => any;
601
- }
602
478
  export interface RequestCertificateResponse {
603
479
 
604
480
  CertificateArn?: string;
605
481
  }
606
- export declare namespace RequestCertificateResponse {
607
-
608
- const filterSensitiveLog: (obj: RequestCertificateResponse) => any;
609
- }
610
482
 
611
483
  export declare class InvalidStateException extends __BaseException {
612
484
  readonly name: "InvalidStateException";
@@ -622,17 +494,77 @@ export interface ResendValidationEmailRequest {
622
494
 
623
495
  ValidationDomain: string | undefined;
624
496
  }
625
- export declare namespace ResendValidationEmailRequest {
626
-
627
- const filterSensitiveLog: (obj: ResendValidationEmailRequest) => any;
628
- }
629
497
  export interface UpdateCertificateOptionsRequest {
630
498
 
631
499
  CertificateArn: string | undefined;
632
500
 
633
501
  Options: CertificateOptions | undefined;
634
502
  }
635
- export declare namespace UpdateCertificateOptionsRequest {
636
-
637
- const filterSensitiveLog: (obj: UpdateCertificateOptionsRequest) => any;
638
- }
503
+
504
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
505
+
506
+ export declare const AddTagsToCertificateRequestFilterSensitiveLog: (obj: AddTagsToCertificateRequest) => any;
507
+
508
+ export declare const ResourceRecordFilterSensitiveLog: (obj: ResourceRecord) => any;
509
+
510
+ export declare const DomainValidationFilterSensitiveLog: (obj: DomainValidation) => any;
511
+
512
+ export declare const ExtendedKeyUsageFilterSensitiveLog: (obj: ExtendedKeyUsage) => any;
513
+
514
+ export declare const KeyUsageFilterSensitiveLog: (obj: KeyUsage) => any;
515
+
516
+ export declare const CertificateOptionsFilterSensitiveLog: (obj: CertificateOptions) => any;
517
+
518
+ export declare const RenewalSummaryFilterSensitiveLog: (obj: RenewalSummary) => any;
519
+
520
+ export declare const CertificateDetailFilterSensitiveLog: (obj: CertificateDetail) => any;
521
+
522
+ export declare const DeleteCertificateRequestFilterSensitiveLog: (obj: DeleteCertificateRequest) => any;
523
+
524
+ export declare const DescribeCertificateRequestFilterSensitiveLog: (obj: DescribeCertificateRequest) => any;
525
+
526
+ export declare const DescribeCertificateResponseFilterSensitiveLog: (obj: DescribeCertificateResponse) => any;
527
+
528
+ export declare const ExportCertificateRequestFilterSensitiveLog: (obj: ExportCertificateRequest) => any;
529
+
530
+ export declare const ExportCertificateResponseFilterSensitiveLog: (obj: ExportCertificateResponse) => any;
531
+
532
+ export declare const ExpiryEventsConfigurationFilterSensitiveLog: (obj: ExpiryEventsConfiguration) => any;
533
+
534
+ export declare const GetAccountConfigurationResponseFilterSensitiveLog: (obj: GetAccountConfigurationResponse) => any;
535
+
536
+ export declare const GetCertificateRequestFilterSensitiveLog: (obj: GetCertificateRequest) => any;
537
+
538
+ export declare const GetCertificateResponseFilterSensitiveLog: (obj: GetCertificateResponse) => any;
539
+
540
+ export declare const ImportCertificateRequestFilterSensitiveLog: (obj: ImportCertificateRequest) => any;
541
+
542
+ export declare const ImportCertificateResponseFilterSensitiveLog: (obj: ImportCertificateResponse) => any;
543
+
544
+ export declare const FiltersFilterSensitiveLog: (obj: Filters) => any;
545
+
546
+ export declare const ListCertificatesRequestFilterSensitiveLog: (obj: ListCertificatesRequest) => any;
547
+
548
+ export declare const CertificateSummaryFilterSensitiveLog: (obj: CertificateSummary) => any;
549
+
550
+ export declare const ListCertificatesResponseFilterSensitiveLog: (obj: ListCertificatesResponse) => any;
551
+
552
+ export declare const ListTagsForCertificateRequestFilterSensitiveLog: (obj: ListTagsForCertificateRequest) => any;
553
+
554
+ export declare const ListTagsForCertificateResponseFilterSensitiveLog: (obj: ListTagsForCertificateResponse) => any;
555
+
556
+ export declare const PutAccountConfigurationRequestFilterSensitiveLog: (obj: PutAccountConfigurationRequest) => any;
557
+
558
+ export declare const RemoveTagsFromCertificateRequestFilterSensitiveLog: (obj: RemoveTagsFromCertificateRequest) => any;
559
+
560
+ export declare const RenewCertificateRequestFilterSensitiveLog: (obj: RenewCertificateRequest) => any;
561
+
562
+ export declare const DomainValidationOptionFilterSensitiveLog: (obj: DomainValidationOption) => any;
563
+
564
+ export declare const RequestCertificateRequestFilterSensitiveLog: (obj: RequestCertificateRequest) => any;
565
+
566
+ export declare const RequestCertificateResponseFilterSensitiveLog: (obj: RequestCertificateResponse) => any;
567
+
568
+ export declare const ResendValidationEmailRequestFilterSensitiveLog: (obj: ResendValidationEmailRequest) => any;
569
+
570
+ export declare const UpdateCertificateOptionsRequestFilterSensitiveLog: (obj: UpdateCertificateOptionsRequest) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-acm",
3
3
  "description": "AWS SDK for JavaScript Acm Client for Node.js, Browser and React Native",
4
- "version": "3.130.0",
4
+ "version": "3.141.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -18,10 +18,10 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.130.0",
21
+ "@aws-sdk/client-sts": "3.141.0",
22
22
  "@aws-sdk/config-resolver": "3.130.0",
23
- "@aws-sdk/credential-provider-node": "3.130.0",
24
- "@aws-sdk/fetch-http-handler": "3.127.0",
23
+ "@aws-sdk/credential-provider-node": "3.141.0",
24
+ "@aws-sdk/fetch-http-handler": "3.131.0",
25
25
  "@aws-sdk/hash-node": "3.127.0",
26
26
  "@aws-sdk/invalid-dependency": "3.127.0",
27
27
  "@aws-sdk/middleware-content-length": "3.127.0",
@@ -36,15 +36,15 @@
36
36
  "@aws-sdk/node-config-provider": "3.127.0",
37
37
  "@aws-sdk/node-http-handler": "3.127.0",
38
38
  "@aws-sdk/protocol-http": "3.127.0",
39
- "@aws-sdk/smithy-client": "3.127.0",
39
+ "@aws-sdk/smithy-client": "3.137.0",
40
40
  "@aws-sdk/types": "3.127.0",
41
41
  "@aws-sdk/url-parser": "3.127.0",
42
42
  "@aws-sdk/util-base64-browser": "3.109.0",
43
43
  "@aws-sdk/util-base64-node": "3.55.0",
44
44
  "@aws-sdk/util-body-length-browser": "3.55.0",
45
45
  "@aws-sdk/util-body-length-node": "3.55.0",
46
- "@aws-sdk/util-defaults-mode-browser": "3.127.0",
47
- "@aws-sdk/util-defaults-mode-node": "3.130.0",
46
+ "@aws-sdk/util-defaults-mode-browser": "3.137.0",
47
+ "@aws-sdk/util-defaults-mode-node": "3.137.0",
48
48
  "@aws-sdk/util-user-agent-browser": "3.127.0",
49
49
  "@aws-sdk/util-user-agent-node": "3.127.0",
50
50
  "@aws-sdk/util-utf8-browser": "3.109.0",