@aws-sdk/client-docdb-elastic 3.296.0 → 3.298.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 (50) hide show
  1. package/dist-cjs/commands/CreateClusterCommand.js +1 -1
  2. package/dist-cjs/commands/CreateClusterSnapshotCommand.js +2 -3
  3. package/dist-cjs/commands/DeleteClusterCommand.js +2 -3
  4. package/dist-cjs/commands/DeleteClusterSnapshotCommand.js +2 -3
  5. package/dist-cjs/commands/GetClusterCommand.js +2 -3
  6. package/dist-cjs/commands/GetClusterSnapshotCommand.js +2 -3
  7. package/dist-cjs/commands/ListClusterSnapshotsCommand.js +2 -3
  8. package/dist-cjs/commands/ListClustersCommand.js +2 -3
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  10. package/dist-cjs/commands/RestoreClusterFromSnapshotCommand.js +2 -3
  11. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  12. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  13. package/dist-cjs/commands/UpdateClusterCommand.js +1 -1
  14. package/dist-cjs/models/models_0.js +1 -117
  15. package/dist-es/commands/CreateClusterCommand.js +2 -2
  16. package/dist-es/commands/CreateClusterSnapshotCommand.js +2 -3
  17. package/dist-es/commands/DeleteClusterCommand.js +2 -3
  18. package/dist-es/commands/DeleteClusterSnapshotCommand.js +2 -3
  19. package/dist-es/commands/GetClusterCommand.js +2 -3
  20. package/dist-es/commands/GetClusterSnapshotCommand.js +2 -3
  21. package/dist-es/commands/ListClusterSnapshotsCommand.js +2 -3
  22. package/dist-es/commands/ListClustersCommand.js +2 -3
  23. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  24. package/dist-es/commands/RestoreClusterFromSnapshotCommand.js +2 -3
  25. package/dist-es/commands/TagResourceCommand.js +2 -3
  26. package/dist-es/commands/UntagResourceCommand.js +2 -3
  27. package/dist-es/commands/UpdateClusterCommand.js +2 -2
  28. package/dist-es/models/models_0.js +0 -87
  29. package/dist-types/DocDBElastic.d.ts +14 -0
  30. package/dist-types/DocDBElasticClient.d.ts +24 -4
  31. package/dist-types/commands/CreateClusterCommand.d.ts +16 -0
  32. package/dist-types/commands/CreateClusterSnapshotCommand.d.ts +16 -0
  33. package/dist-types/commands/DeleteClusterCommand.d.ts +16 -0
  34. package/dist-types/commands/DeleteClusterSnapshotCommand.d.ts +16 -0
  35. package/dist-types/commands/GetClusterCommand.d.ts +16 -0
  36. package/dist-types/commands/GetClusterSnapshotCommand.d.ts +16 -0
  37. package/dist-types/commands/ListClusterSnapshotsCommand.d.ts +16 -0
  38. package/dist-types/commands/ListClustersCommand.d.ts +16 -0
  39. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  40. package/dist-types/commands/RestoreClusterFromSnapshotCommand.d.ts +16 -0
  41. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  42. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateClusterCommand.d.ts +16 -0
  44. package/dist-types/models/DocDBElasticServiceException.d.ts +2 -0
  45. package/dist-types/models/models_0.d.ts +99 -116
  46. package/dist-types/pagination/Interfaces.d.ts +3 -0
  47. package/dist-types/pagination/ListClusterSnapshotsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListClustersPaginator.d.ts +3 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +0 -85
  50. package/package.json +4 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { DocDBElasticServiceException as __BaseException } from "./DocDBElasticServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>An exception that occurs when there are not sufficient permissions to perform an action.</p>
5
6
  */
6
7
  export declare class AccessDeniedException extends __BaseException {
@@ -11,11 +12,15 @@ export declare class AccessDeniedException extends __BaseException {
11
12
  */
12
13
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
13
14
  }
15
+ /**
16
+ * @public
17
+ */
14
18
  export declare enum Auth {
15
19
  PLAIN_TEXT = "PLAIN_TEXT",
16
20
  SECRET_ARN = "SECRET_ARN"
17
21
  }
18
22
  /**
23
+ * @public
19
24
  * <p>There was an access conflict.</p>
20
25
  */
21
26
  export declare class ConflictException extends __BaseException {
@@ -34,6 +39,9 @@ export declare class ConflictException extends __BaseException {
34
39
  */
35
40
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
36
41
  }
42
+ /**
43
+ * @public
44
+ */
37
45
  export interface CreateClusterInput {
38
46
  /**
39
47
  * <p>The name of the new Elastic DocumentDB cluster. This parameter is stored as
@@ -143,6 +151,9 @@ export interface CreateClusterInput {
143
151
  */
144
152
  tags?: Record<string, string>;
145
153
  }
154
+ /**
155
+ * @public
156
+ */
146
157
  export declare enum Status {
147
158
  ACTIVE = "ACTIVE",
148
159
  CREATING = "CREATING",
@@ -155,6 +166,7 @@ export declare enum Status {
155
166
  VPC_ENDPOINT_LIMIT_EXCEEDED = "VPC_ENDPOINT_LIMIT_EXCEEDED"
156
167
  }
157
168
  /**
169
+ * @public
158
170
  * <p>Returns information about a specific Elastic DocumentDB cluster.</p>
159
171
  */
160
172
  export interface Cluster {
@@ -215,6 +227,9 @@ export interface Cluster {
215
227
  */
216
228
  kmsKeyId: string | undefined;
217
229
  }
230
+ /**
231
+ * @public
232
+ */
218
233
  export interface CreateClusterOutput {
219
234
  /**
220
235
  * <p>The new Elastic DocumentDB cluster that has been created.</p>
@@ -222,6 +237,7 @@ export interface CreateClusterOutput {
222
237
  cluster: Cluster | undefined;
223
238
  }
224
239
  /**
240
+ * @public
225
241
  * <p>There was an internal server error.</p>
226
242
  */
227
243
  export declare class InternalServerException extends __BaseException {
@@ -234,6 +250,7 @@ export declare class InternalServerException extends __BaseException {
234
250
  constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
235
251
  }
236
252
  /**
253
+ * @public
237
254
  * <p>The service quota for the action was exceeded.</p>
238
255
  */
239
256
  export declare class ServiceQuotaExceededException extends __BaseException {
@@ -245,6 +262,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
245
262
  constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
246
263
  }
247
264
  /**
265
+ * @public
248
266
  * <p>ThrottlingException will be thrown when request was denied due to request throttling.</p>
249
267
  */
250
268
  export declare class ThrottlingException extends __BaseException {
@@ -261,6 +279,7 @@ export declare class ThrottlingException extends __BaseException {
261
279
  constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
262
280
  }
263
281
  /**
282
+ * @public
264
283
  * <p>A specific field in which a given validation exception occurred.</p>
265
284
  */
266
285
  export interface ValidationExceptionField {
@@ -273,6 +292,9 @@ export interface ValidationExceptionField {
273
292
  */
274
293
  message: string | undefined;
275
294
  }
295
+ /**
296
+ * @public
297
+ */
276
298
  export declare enum ValidationExceptionReason {
277
299
  CANNOT_PARSE = "cannotParse",
278
300
  FIELD_VALIDATION_FAILED = "fieldValidationFailed",
@@ -280,6 +302,7 @@ export declare enum ValidationExceptionReason {
280
302
  UNKNOWN_OPERATION = "unknownOperation"
281
303
  }
282
304
  /**
305
+ * @public
283
306
  * <p>A structure defining a validation exception.</p>
284
307
  */
285
308
  export declare class ValidationException extends __BaseException {
@@ -299,6 +322,9 @@ export declare class ValidationException extends __BaseException {
299
322
  */
300
323
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
301
324
  }
325
+ /**
326
+ * @public
327
+ */
302
328
  export interface CreateClusterSnapshotInput {
303
329
  /**
304
330
  * <p>The arn of the Elastic DocumentDB cluster that the snapshot will be taken from.</p>
@@ -314,6 +340,7 @@ export interface CreateClusterSnapshotInput {
314
340
  tags?: Record<string, string>;
315
341
  }
316
342
  /**
343
+ * @public
317
344
  * <p>Returns information about a specific Elastic DocumentDB snapshot.</p>
318
345
  */
319
346
  export interface ClusterSnapshot {
@@ -358,6 +385,9 @@ export interface ClusterSnapshot {
358
385
  */
359
386
  kmsKeyId: string | undefined;
360
387
  }
388
+ /**
389
+ * @public
390
+ */
361
391
  export interface CreateClusterSnapshotOutput {
362
392
  /**
363
393
  * <p>Returns information about the new Elastic DocumentDB snapshot.</p>
@@ -365,6 +395,7 @@ export interface CreateClusterSnapshotOutput {
365
395
  snapshot: ClusterSnapshot | undefined;
366
396
  }
367
397
  /**
398
+ * @public
368
399
  * <p>The specified resource could not be located.</p>
369
400
  */
370
401
  export declare class ResourceNotFoundException extends __BaseException {
@@ -383,54 +414,81 @@ export declare class ResourceNotFoundException extends __BaseException {
383
414
  */
384
415
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
385
416
  }
417
+ /**
418
+ * @public
419
+ */
386
420
  export interface DeleteClusterInput {
387
421
  /**
388
422
  * <p>The arn of the Elastic DocumentDB cluster that is to be deleted.</p>
389
423
  */
390
424
  clusterArn: string | undefined;
391
425
  }
426
+ /**
427
+ * @public
428
+ */
392
429
  export interface DeleteClusterOutput {
393
430
  /**
394
431
  * <p>Returns information about the newly deleted Elastic DocumentDB cluster.</p>
395
432
  */
396
433
  cluster: Cluster | undefined;
397
434
  }
435
+ /**
436
+ * @public
437
+ */
398
438
  export interface DeleteClusterSnapshotInput {
399
439
  /**
400
440
  * <p>The arn of the Elastic DocumentDB snapshot that is to be deleted.</p>
401
441
  */
402
442
  snapshotArn: string | undefined;
403
443
  }
444
+ /**
445
+ * @public
446
+ */
404
447
  export interface DeleteClusterSnapshotOutput {
405
448
  /**
406
449
  * <p>Returns information about the newly deleted Elastic DocumentDB snapshot.</p>
407
450
  */
408
451
  snapshot: ClusterSnapshot | undefined;
409
452
  }
453
+ /**
454
+ * @public
455
+ */
410
456
  export interface GetClusterInput {
411
457
  /**
412
458
  * <p>The arn of the Elastic DocumentDB cluster.</p>
413
459
  */
414
460
  clusterArn: string | undefined;
415
461
  }
462
+ /**
463
+ * @public
464
+ */
416
465
  export interface GetClusterOutput {
417
466
  /**
418
467
  * <p>Returns information about a specific Elastic DocumentDB cluster.</p>
419
468
  */
420
469
  cluster: Cluster | undefined;
421
470
  }
471
+ /**
472
+ * @public
473
+ */
422
474
  export interface GetClusterSnapshotInput {
423
475
  /**
424
476
  * <p>The arn of the Elastic DocumentDB snapshot.</p>
425
477
  */
426
478
  snapshotArn: string | undefined;
427
479
  }
480
+ /**
481
+ * @public
482
+ */
428
483
  export interface GetClusterSnapshotOutput {
429
484
  /**
430
485
  * <p>Returns information about a specific Elastic DocumentDB snapshot.</p>
431
486
  */
432
487
  snapshot: ClusterSnapshot | undefined;
433
488
  }
489
+ /**
490
+ * @public
491
+ */
434
492
  export interface ListClustersInput {
435
493
  /**
436
494
  * <p>The nextToken which is used the get the next page of data.</p>
@@ -442,6 +500,7 @@ export interface ListClustersInput {
442
500
  maxResults?: number;
443
501
  }
444
502
  /**
503
+ * @public
445
504
  * <p>A list of Elastic DocumentDB cluster.</p>
446
505
  */
447
506
  export interface ClusterInList {
@@ -458,6 +517,9 @@ export interface ClusterInList {
458
517
  */
459
518
  status: Status | string | undefined;
460
519
  }
520
+ /**
521
+ * @public
522
+ */
461
523
  export interface ListClustersOutput {
462
524
  /**
463
525
  * <p>A list of Elastic DocumentDB cluster.</p>
@@ -469,6 +531,9 @@ export interface ListClustersOutput {
469
531
  */
470
532
  nextToken?: string;
471
533
  }
534
+ /**
535
+ * @public
536
+ */
472
537
  export interface ListClusterSnapshotsInput {
473
538
  /**
474
539
  * <p>The arn of the Elastic DocumentDB cluster.</p>
@@ -484,6 +549,7 @@ export interface ListClusterSnapshotsInput {
484
549
  maxResults?: number;
485
550
  }
486
551
  /**
552
+ * @public
487
553
  * <p>A list of Elastic DocumentDB snapshots.</p>
488
554
  */
489
555
  export interface ClusterSnapshotInList {
@@ -508,6 +574,9 @@ export interface ClusterSnapshotInList {
508
574
  */
509
575
  snapshotCreationTime: string | undefined;
510
576
  }
577
+ /**
578
+ * @public
579
+ */
511
580
  export interface ListClusterSnapshotsOutput {
512
581
  /**
513
582
  * <p>A list of Elastic DocumentDB snapshots for a specified cluster.</p>
@@ -519,18 +588,27 @@ export interface ListClusterSnapshotsOutput {
519
588
  */
520
589
  nextToken?: string;
521
590
  }
591
+ /**
592
+ * @public
593
+ */
522
594
  export interface ListTagsForResourceRequest {
523
595
  /**
524
596
  * <p>The arn of the Elastic DocumentDB resource.</p>
525
597
  */
526
598
  resourceArn: string | undefined;
527
599
  }
600
+ /**
601
+ * @public
602
+ */
528
603
  export interface ListTagsForResourceResponse {
529
604
  /**
530
605
  * <p>The list of tags for the specified Elastic DocumentDB resource.</p>
531
606
  */
532
607
  tags?: Record<string, string>;
533
608
  }
609
+ /**
610
+ * @public
611
+ */
534
612
  export interface RestoreClusterFromSnapshotInput {
535
613
  /**
536
614
  * <p>The name of the Elastic DocumentDB cluster.</p>
@@ -567,12 +645,18 @@ export interface RestoreClusterFromSnapshotInput {
567
645
  */
568
646
  tags?: Record<string, string>;
569
647
  }
648
+ /**
649
+ * @public
650
+ */
570
651
  export interface RestoreClusterFromSnapshotOutput {
571
652
  /**
572
653
  * <p>Returns information about a the restored Elastic DocumentDB cluster.</p>
573
654
  */
574
655
  cluster: Cluster | undefined;
575
656
  }
657
+ /**
658
+ * @public
659
+ */
576
660
  export interface TagResourceRequest {
577
661
  /**
578
662
  * <p>The arn of the Elastic DocumentDB resource.</p>
@@ -583,8 +667,14 @@ export interface TagResourceRequest {
583
667
  */
584
668
  tags: Record<string, string> | undefined;
585
669
  }
670
+ /**
671
+ * @public
672
+ */
586
673
  export interface TagResourceResponse {
587
674
  }
675
+ /**
676
+ * @public
677
+ */
588
678
  export interface UntagResourceRequest {
589
679
  /**
590
680
  * <p>The arn of the Elastic DocumentDB resource.</p>
@@ -595,8 +685,14 @@ export interface UntagResourceRequest {
595
685
  */
596
686
  tagKeys: string[] | undefined;
597
687
  }
688
+ /**
689
+ * @public
690
+ */
598
691
  export interface UntagResourceResponse {
599
692
  }
693
+ /**
694
+ * @public
695
+ */
600
696
  export interface UpdateClusterInput {
601
697
  /**
602
698
  * <p>The arn of the Elastic DocumentDB cluster.</p>
@@ -650,6 +746,9 @@ export interface UpdateClusterInput {
650
746
  */
651
747
  preferredMaintenanceWindow?: string;
652
748
  }
749
+ /**
750
+ * @public
751
+ */
653
752
  export interface UpdateClusterOutput {
654
753
  /**
655
754
  * <p>Returns information about the updated Elastic DocumentDB cluster.</p>
@@ -660,123 +759,7 @@ export interface UpdateClusterOutput {
660
759
  * @internal
661
760
  */
662
761
  export declare const CreateClusterInputFilterSensitiveLog: (obj: CreateClusterInput) => any;
663
- /**
664
- * @internal
665
- */
666
- export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
667
- /**
668
- * @internal
669
- */
670
- export declare const CreateClusterOutputFilterSensitiveLog: (obj: CreateClusterOutput) => any;
671
- /**
672
- * @internal
673
- */
674
- export declare const ValidationExceptionFieldFilterSensitiveLog: (obj: ValidationExceptionField) => any;
675
- /**
676
- * @internal
677
- */
678
- export declare const CreateClusterSnapshotInputFilterSensitiveLog: (obj: CreateClusterSnapshotInput) => any;
679
- /**
680
- * @internal
681
- */
682
- export declare const ClusterSnapshotFilterSensitiveLog: (obj: ClusterSnapshot) => any;
683
- /**
684
- * @internal
685
- */
686
- export declare const CreateClusterSnapshotOutputFilterSensitiveLog: (obj: CreateClusterSnapshotOutput) => any;
687
- /**
688
- * @internal
689
- */
690
- export declare const DeleteClusterInputFilterSensitiveLog: (obj: DeleteClusterInput) => any;
691
- /**
692
- * @internal
693
- */
694
- export declare const DeleteClusterOutputFilterSensitiveLog: (obj: DeleteClusterOutput) => any;
695
- /**
696
- * @internal
697
- */
698
- export declare const DeleteClusterSnapshotInputFilterSensitiveLog: (obj: DeleteClusterSnapshotInput) => any;
699
- /**
700
- * @internal
701
- */
702
- export declare const DeleteClusterSnapshotOutputFilterSensitiveLog: (obj: DeleteClusterSnapshotOutput) => any;
703
- /**
704
- * @internal
705
- */
706
- export declare const GetClusterInputFilterSensitiveLog: (obj: GetClusterInput) => any;
707
- /**
708
- * @internal
709
- */
710
- export declare const GetClusterOutputFilterSensitiveLog: (obj: GetClusterOutput) => any;
711
- /**
712
- * @internal
713
- */
714
- export declare const GetClusterSnapshotInputFilterSensitiveLog: (obj: GetClusterSnapshotInput) => any;
715
- /**
716
- * @internal
717
- */
718
- export declare const GetClusterSnapshotOutputFilterSensitiveLog: (obj: GetClusterSnapshotOutput) => any;
719
- /**
720
- * @internal
721
- */
722
- export declare const ListClustersInputFilterSensitiveLog: (obj: ListClustersInput) => any;
723
- /**
724
- * @internal
725
- */
726
- export declare const ClusterInListFilterSensitiveLog: (obj: ClusterInList) => any;
727
- /**
728
- * @internal
729
- */
730
- export declare const ListClustersOutputFilterSensitiveLog: (obj: ListClustersOutput) => any;
731
- /**
732
- * @internal
733
- */
734
- export declare const ListClusterSnapshotsInputFilterSensitiveLog: (obj: ListClusterSnapshotsInput) => any;
735
- /**
736
- * @internal
737
- */
738
- export declare const ClusterSnapshotInListFilterSensitiveLog: (obj: ClusterSnapshotInList) => any;
739
- /**
740
- * @internal
741
- */
742
- export declare const ListClusterSnapshotsOutputFilterSensitiveLog: (obj: ListClusterSnapshotsOutput) => any;
743
- /**
744
- * @internal
745
- */
746
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
747
- /**
748
- * @internal
749
- */
750
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
751
- /**
752
- * @internal
753
- */
754
- export declare const RestoreClusterFromSnapshotInputFilterSensitiveLog: (obj: RestoreClusterFromSnapshotInput) => any;
755
- /**
756
- * @internal
757
- */
758
- export declare const RestoreClusterFromSnapshotOutputFilterSensitiveLog: (obj: RestoreClusterFromSnapshotOutput) => any;
759
- /**
760
- * @internal
761
- */
762
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
763
- /**
764
- * @internal
765
- */
766
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
767
- /**
768
- * @internal
769
- */
770
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
771
- /**
772
- * @internal
773
- */
774
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
775
762
  /**
776
763
  * @internal
777
764
  */
778
765
  export declare const UpdateClusterInputFilterSensitiveLog: (obj: UpdateClusterInput) => any;
779
- /**
780
- * @internal
781
- */
782
- export declare const UpdateClusterOutputFilterSensitiveLog: (obj: UpdateClusterOutput) => any;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { DocDBElasticClient } from "../DocDBElasticClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface DocDBElasticPaginationConfiguration extends PaginationConfiguration {
4
7
  client: DocDBElasticClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListClusterSnapshotsCommandInput, ListClusterSnapshotsCommandOutput } from "../commands/ListClusterSnapshotsCommand";
3
3
  import { DocDBElasticPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListClusterSnapshots(config: DocDBElasticPaginationConfiguration, input: ListClusterSnapshotsCommandInput, ...additionalArguments: any): Paginator<ListClusterSnapshotsCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
3
3
  import { DocDBElasticPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListClusters(config: DocDBElasticPaginationConfiguration, input: ListClustersCommandInput, ...additionalArguments: any): Paginator<ListClustersCommandOutput>;
@@ -230,91 +230,6 @@ export interface UpdateClusterOutput {
230
230
  export declare const CreateClusterInputFilterSensitiveLog: (
231
231
  obj: CreateClusterInput
232
232
  ) => any;
233
- export declare const ClusterFilterSensitiveLog: (obj: Cluster) => any;
234
- export declare const CreateClusterOutputFilterSensitiveLog: (
235
- obj: CreateClusterOutput
236
- ) => any;
237
- export declare const ValidationExceptionFieldFilterSensitiveLog: (
238
- obj: ValidationExceptionField
239
- ) => any;
240
- export declare const CreateClusterSnapshotInputFilterSensitiveLog: (
241
- obj: CreateClusterSnapshotInput
242
- ) => any;
243
- export declare const ClusterSnapshotFilterSensitiveLog: (
244
- obj: ClusterSnapshot
245
- ) => any;
246
- export declare const CreateClusterSnapshotOutputFilterSensitiveLog: (
247
- obj: CreateClusterSnapshotOutput
248
- ) => any;
249
- export declare const DeleteClusterInputFilterSensitiveLog: (
250
- obj: DeleteClusterInput
251
- ) => any;
252
- export declare const DeleteClusterOutputFilterSensitiveLog: (
253
- obj: DeleteClusterOutput
254
- ) => any;
255
- export declare const DeleteClusterSnapshotInputFilterSensitiveLog: (
256
- obj: DeleteClusterSnapshotInput
257
- ) => any;
258
- export declare const DeleteClusterSnapshotOutputFilterSensitiveLog: (
259
- obj: DeleteClusterSnapshotOutput
260
- ) => any;
261
- export declare const GetClusterInputFilterSensitiveLog: (
262
- obj: GetClusterInput
263
- ) => any;
264
- export declare const GetClusterOutputFilterSensitiveLog: (
265
- obj: GetClusterOutput
266
- ) => any;
267
- export declare const GetClusterSnapshotInputFilterSensitiveLog: (
268
- obj: GetClusterSnapshotInput
269
- ) => any;
270
- export declare const GetClusterSnapshotOutputFilterSensitiveLog: (
271
- obj: GetClusterSnapshotOutput
272
- ) => any;
273
- export declare const ListClustersInputFilterSensitiveLog: (
274
- obj: ListClustersInput
275
- ) => any;
276
- export declare const ClusterInListFilterSensitiveLog: (
277
- obj: ClusterInList
278
- ) => any;
279
- export declare const ListClustersOutputFilterSensitiveLog: (
280
- obj: ListClustersOutput
281
- ) => any;
282
- export declare const ListClusterSnapshotsInputFilterSensitiveLog: (
283
- obj: ListClusterSnapshotsInput
284
- ) => any;
285
- export declare const ClusterSnapshotInListFilterSensitiveLog: (
286
- obj: ClusterSnapshotInList
287
- ) => any;
288
- export declare const ListClusterSnapshotsOutputFilterSensitiveLog: (
289
- obj: ListClusterSnapshotsOutput
290
- ) => any;
291
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (
292
- obj: ListTagsForResourceRequest
293
- ) => any;
294
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (
295
- obj: ListTagsForResourceResponse
296
- ) => any;
297
- export declare const RestoreClusterFromSnapshotInputFilterSensitiveLog: (
298
- obj: RestoreClusterFromSnapshotInput
299
- ) => any;
300
- export declare const RestoreClusterFromSnapshotOutputFilterSensitiveLog: (
301
- obj: RestoreClusterFromSnapshotOutput
302
- ) => any;
303
- export declare const TagResourceRequestFilterSensitiveLog: (
304
- obj: TagResourceRequest
305
- ) => any;
306
- export declare const TagResourceResponseFilterSensitiveLog: (
307
- obj: TagResourceResponse
308
- ) => any;
309
- export declare const UntagResourceRequestFilterSensitiveLog: (
310
- obj: UntagResourceRequest
311
- ) => any;
312
- export declare const UntagResourceResponseFilterSensitiveLog: (
313
- obj: UntagResourceResponse
314
- ) => any;
315
233
  export declare const UpdateClusterInputFilterSensitiveLog: (
316
234
  obj: UpdateClusterInput
317
235
  ) => any;
318
- export declare const UpdateClusterOutputFilterSensitiveLog: (
319
- obj: UpdateClusterOutput
320
- ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-docdb-elastic",
3
3
  "description": "AWS SDK for JavaScript Docdb Elastic Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.298.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",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo docdb-elastic"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",