@aws-sdk/client-docdb-elastic 3.477.0 → 3.481.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 (65) hide show
  1. package/dist-cjs/commands/CreateClusterCommand.js +18 -41
  2. package/dist-cjs/commands/CreateClusterSnapshotCommand.js +18 -41
  3. package/dist-cjs/commands/DeleteClusterCommand.js +18 -41
  4. package/dist-cjs/commands/DeleteClusterSnapshotCommand.js +18 -41
  5. package/dist-cjs/commands/GetClusterCommand.js +18 -41
  6. package/dist-cjs/commands/GetClusterSnapshotCommand.js +18 -41
  7. package/dist-cjs/commands/ListClusterSnapshotsCommand.js +18 -41
  8. package/dist-cjs/commands/ListClustersCommand.js +18 -41
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +18 -41
  10. package/dist-cjs/commands/RestoreClusterFromSnapshotCommand.js +18 -41
  11. package/dist-cjs/commands/TagResourceCommand.js +18 -41
  12. package/dist-cjs/commands/UntagResourceCommand.js +18 -41
  13. package/dist-cjs/commands/UpdateClusterCommand.js +18 -41
  14. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  15. package/dist-cjs/pagination/ListClusterSnapshotsPaginator.js +2 -24
  16. package/dist-cjs/pagination/ListClustersPaginator.js +2 -24
  17. package/dist-es/commands/CreateClusterCommand.js +18 -41
  18. package/dist-es/commands/CreateClusterSnapshotCommand.js +18 -41
  19. package/dist-es/commands/DeleteClusterCommand.js +18 -41
  20. package/dist-es/commands/DeleteClusterSnapshotCommand.js +18 -41
  21. package/dist-es/commands/GetClusterCommand.js +18 -41
  22. package/dist-es/commands/GetClusterSnapshotCommand.js +18 -41
  23. package/dist-es/commands/ListClusterSnapshotsCommand.js +18 -41
  24. package/dist-es/commands/ListClustersCommand.js +18 -41
  25. package/dist-es/commands/ListTagsForResourceCommand.js +18 -41
  26. package/dist-es/commands/RestoreClusterFromSnapshotCommand.js +18 -41
  27. package/dist-es/commands/TagResourceCommand.js +18 -41
  28. package/dist-es/commands/UntagResourceCommand.js +18 -41
  29. package/dist-es/commands/UpdateClusterCommand.js +18 -41
  30. package/dist-es/endpoint/EndpointParameters.js +6 -0
  31. package/dist-es/pagination/ListClusterSnapshotsPaginator.js +2 -23
  32. package/dist-es/pagination/ListClustersPaginator.js +2 -23
  33. package/dist-types/commands/CreateClusterCommand.d.ts +6 -21
  34. package/dist-types/commands/CreateClusterSnapshotCommand.d.ts +6 -21
  35. package/dist-types/commands/DeleteClusterCommand.d.ts +6 -21
  36. package/dist-types/commands/DeleteClusterSnapshotCommand.d.ts +6 -21
  37. package/dist-types/commands/GetClusterCommand.d.ts +6 -21
  38. package/dist-types/commands/GetClusterSnapshotCommand.d.ts +6 -21
  39. package/dist-types/commands/ListClusterSnapshotsCommand.d.ts +6 -21
  40. package/dist-types/commands/ListClustersCommand.d.ts +6 -21
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -21
  42. package/dist-types/commands/RestoreClusterFromSnapshotCommand.d.ts +6 -21
  43. package/dist-types/commands/TagResourceCommand.d.ts +6 -21
  44. package/dist-types/commands/UntagResourceCommand.d.ts +6 -21
  45. package/dist-types/commands/UpdateClusterCommand.d.ts +6 -21
  46. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  47. package/dist-types/pagination/ListClusterSnapshotsPaginator.d.ts +1 -1
  48. package/dist-types/pagination/ListClustersPaginator.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +14 -23
  50. package/dist-types/ts3.4/commands/CreateClusterSnapshotCommand.d.ts +12 -24
  51. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +14 -23
  52. package/dist-types/ts3.4/commands/DeleteClusterSnapshotCommand.d.ts +12 -24
  53. package/dist-types/ts3.4/commands/GetClusterCommand.d.ts +14 -23
  54. package/dist-types/ts3.4/commands/GetClusterSnapshotCommand.d.ts +14 -23
  55. package/dist-types/ts3.4/commands/ListClusterSnapshotsCommand.d.ts +12 -24
  56. package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +14 -23
  57. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +14 -23
  58. package/dist-types/ts3.4/commands/RestoreClusterFromSnapshotCommand.d.ts +12 -24
  59. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +14 -23
  60. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +14 -23
  61. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +14 -23
  62. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  63. package/dist-types/ts3.4/pagination/ListClusterSnapshotsPaginator.d.ts +3 -3
  64. package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +3 -3
  65. package/package.json +11 -11
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface CreateClusterCommandInput extends CreateClusterInput {}
17
11
  export interface CreateClusterCommandOutput
18
12
  extends CreateClusterOutput,
19
13
  __MetadataBearer {}
20
- export declare class CreateClusterCommand extends $Command<
21
- CreateClusterCommandInput,
22
- CreateClusterCommandOutput,
23
- DocDBElasticClientResolvedConfig
24
- > {
25
- readonly input: CreateClusterCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: CreateClusterCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: DocDBElasticClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const CreateClusterCommand_base: {
15
+ new (
16
+ input: CreateClusterCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateClusterCommandInput,
19
+ CreateClusterCommandOutput,
20
+ DocDBElasticClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class CreateClusterCommand extends CreateClusterCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface CreateClusterSnapshotCommandInput
21
15
  export interface CreateClusterSnapshotCommandOutput
22
16
  extends CreateClusterSnapshotOutput,
23
17
  __MetadataBearer {}
24
- export declare class CreateClusterSnapshotCommand extends $Command<
25
- CreateClusterSnapshotCommandInput,
26
- CreateClusterSnapshotCommandOutput,
27
- DocDBElasticClientResolvedConfig
28
- > {
29
- readonly input: CreateClusterSnapshotCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: CreateClusterSnapshotCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: DocDBElasticClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const CreateClusterSnapshotCommand_base: {
19
+ new (
20
+ input: CreateClusterSnapshotCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  CreateClusterSnapshotCommandInput,
38
- CreateClusterSnapshotCommandOutput
23
+ CreateClusterSnapshotCommandOutput,
24
+ DocDBElasticClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class CreateClusterSnapshotCommand extends CreateClusterSnapshotCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface DeleteClusterCommandInput extends DeleteClusterInput {}
17
11
  export interface DeleteClusterCommandOutput
18
12
  extends DeleteClusterOutput,
19
13
  __MetadataBearer {}
20
- export declare class DeleteClusterCommand extends $Command<
21
- DeleteClusterCommandInput,
22
- DeleteClusterCommandOutput,
23
- DocDBElasticClientResolvedConfig
24
- > {
25
- readonly input: DeleteClusterCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: DeleteClusterCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: DocDBElasticClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const DeleteClusterCommand_base: {
15
+ new (
16
+ input: DeleteClusterCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteClusterCommandInput,
19
+ DeleteClusterCommandOutput,
20
+ DocDBElasticClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class DeleteClusterCommand extends DeleteClusterCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface DeleteClusterSnapshotCommandInput
21
15
  export interface DeleteClusterSnapshotCommandOutput
22
16
  extends DeleteClusterSnapshotOutput,
23
17
  __MetadataBearer {}
24
- export declare class DeleteClusterSnapshotCommand extends $Command<
25
- DeleteClusterSnapshotCommandInput,
26
- DeleteClusterSnapshotCommandOutput,
27
- DocDBElasticClientResolvedConfig
28
- > {
29
- readonly input: DeleteClusterSnapshotCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: DeleteClusterSnapshotCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: DocDBElasticClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const DeleteClusterSnapshotCommand_base: {
19
+ new (
20
+ input: DeleteClusterSnapshotCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  DeleteClusterSnapshotCommandInput,
38
- DeleteClusterSnapshotCommandOutput
23
+ DeleteClusterSnapshotCommandOutput,
24
+ DocDBElasticClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class DeleteClusterSnapshotCommand extends DeleteClusterSnapshotCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface GetClusterCommandInput extends GetClusterInput {}
17
11
  export interface GetClusterCommandOutput
18
12
  extends GetClusterOutput,
19
13
  __MetadataBearer {}
20
- export declare class GetClusterCommand extends $Command<
21
- GetClusterCommandInput,
22
- GetClusterCommandOutput,
23
- DocDBElasticClientResolvedConfig
24
- > {
25
- readonly input: GetClusterCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: GetClusterCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: DocDBElasticClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<GetClusterCommandInput, GetClusterCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const GetClusterCommand_base: {
15
+ new (
16
+ input: GetClusterCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetClusterCommandInput,
19
+ GetClusterCommandOutput,
20
+ DocDBElasticClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetClusterCommand extends GetClusterCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,19 +15,16 @@ export interface GetClusterSnapshotCommandInput
21
15
  export interface GetClusterSnapshotCommandOutput
22
16
  extends GetClusterSnapshotOutput,
23
17
  __MetadataBearer {}
24
- export declare class GetClusterSnapshotCommand extends $Command<
25
- GetClusterSnapshotCommandInput,
26
- GetClusterSnapshotCommandOutput,
27
- DocDBElasticClientResolvedConfig
28
- > {
29
- readonly input: GetClusterSnapshotCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: GetClusterSnapshotCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: DocDBElasticClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<GetClusterSnapshotCommandInput, GetClusterSnapshotCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const GetClusterSnapshotCommand_base: {
19
+ new (
20
+ input: GetClusterSnapshotCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetClusterSnapshotCommandInput,
23
+ GetClusterSnapshotCommandOutput,
24
+ DocDBElasticClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class GetClusterSnapshotCommand extends GetClusterSnapshotCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface ListClusterSnapshotsCommandInput
21
15
  export interface ListClusterSnapshotsCommandOutput
22
16
  extends ListClusterSnapshotsOutput,
23
17
  __MetadataBearer {}
24
- export declare class ListClusterSnapshotsCommand extends $Command<
25
- ListClusterSnapshotsCommandInput,
26
- ListClusterSnapshotsCommandOutput,
27
- DocDBElasticClientResolvedConfig
28
- > {
29
- readonly input: ListClusterSnapshotsCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListClusterSnapshotsCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: DocDBElasticClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const ListClusterSnapshotsCommand_base: {
19
+ new (
20
+ input: ListClusterSnapshotsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  ListClusterSnapshotsCommandInput,
38
- ListClusterSnapshotsCommandOutput
23
+ ListClusterSnapshotsCommandOutput,
24
+ DocDBElasticClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListClusterSnapshotsCommand extends ListClusterSnapshotsCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface ListClustersCommandInput extends ListClustersInput {}
17
11
  export interface ListClustersCommandOutput
18
12
  extends ListClustersOutput,
19
13
  __MetadataBearer {}
20
- export declare class ListClustersCommand extends $Command<
21
- ListClustersCommandInput,
22
- ListClustersCommandOutput,
23
- DocDBElasticClientResolvedConfig
24
- > {
25
- readonly input: ListClustersCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: ListClustersCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: DocDBElasticClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const ListClustersCommand_base: {
15
+ new (
16
+ input: ListClustersCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ ListClustersCommandInput,
19
+ ListClustersCommandOutput,
20
+ DocDBElasticClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class ListClustersCommand extends ListClustersCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,19 +15,16 @@ export interface ListTagsForResourceCommandInput
21
15
  export interface ListTagsForResourceCommandOutput
22
16
  extends ListTagsForResourceResponse,
23
17
  __MetadataBearer {}
24
- export declare class ListTagsForResourceCommand extends $Command<
25
- ListTagsForResourceCommandInput,
26
- ListTagsForResourceCommandOutput,
27
- DocDBElasticClientResolvedConfig
28
- > {
29
- readonly input: ListTagsForResourceCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: ListTagsForResourceCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: DocDBElasticClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
- private serialize;
38
- private deserialize;
39
- }
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ DocDBElasticClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -21,22 +15,16 @@ export interface RestoreClusterFromSnapshotCommandInput
21
15
  export interface RestoreClusterFromSnapshotCommandOutput
22
16
  extends RestoreClusterFromSnapshotOutput,
23
17
  __MetadataBearer {}
24
- export declare class RestoreClusterFromSnapshotCommand extends $Command<
25
- RestoreClusterFromSnapshotCommandInput,
26
- RestoreClusterFromSnapshotCommandOutput,
27
- DocDBElasticClientResolvedConfig
28
- > {
29
- readonly input: RestoreClusterFromSnapshotCommandInput;
30
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
- constructor(input: RestoreClusterFromSnapshotCommandInput);
32
- resolveMiddleware(
33
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
- configuration: DocDBElasticClientResolvedConfig,
35
- options?: __HttpHandlerOptions
36
- ): Handler<
18
+ declare const RestoreClusterFromSnapshotCommand_base: {
19
+ new (
20
+ input: RestoreClusterFromSnapshotCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
37
22
  RestoreClusterFromSnapshotCommandInput,
38
- RestoreClusterFromSnapshotCommandOutput
23
+ RestoreClusterFromSnapshotCommandOutput,
24
+ DocDBElasticClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
39
27
  >;
40
- private serialize;
41
- private deserialize;
42
- }
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class RestoreClusterFromSnapshotCommand extends RestoreClusterFromSnapshotCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
17
11
  export interface TagResourceCommandOutput
18
12
  extends TagResourceResponse,
19
13
  __MetadataBearer {}
20
- export declare class TagResourceCommand extends $Command<
21
- TagResourceCommandInput,
22
- TagResourceCommandOutput,
23
- DocDBElasticClientResolvedConfig
24
- > {
25
- readonly input: TagResourceCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: TagResourceCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: DocDBElasticClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const TagResourceCommand_base: {
15
+ new (
16
+ input: TagResourceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ TagResourceCommandInput,
19
+ TagResourceCommandOutput,
20
+ DocDBElasticClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -20,19 +14,16 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
20
14
  export interface UntagResourceCommandOutput
21
15
  extends UntagResourceResponse,
22
16
  __MetadataBearer {}
23
- export declare class UntagResourceCommand extends $Command<
24
- UntagResourceCommandInput,
25
- UntagResourceCommandOutput,
26
- DocDBElasticClientResolvedConfig
27
- > {
28
- readonly input: UntagResourceCommandInput;
29
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
- constructor(input: UntagResourceCommandInput);
31
- resolveMiddleware(
32
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
- configuration: DocDBElasticClientResolvedConfig,
34
- options?: __HttpHandlerOptions
35
- ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
36
- private serialize;
37
- private deserialize;
38
- }
17
+ declare const UntagResourceCommand_base: {
18
+ new (
19
+ input: UntagResourceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ DocDBElasticClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -1,11 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import {
4
- Handler,
5
- HttpHandlerOptions as __HttpHandlerOptions,
6
- MetadataBearer as __MetadataBearer,
7
- MiddlewareStack,
8
- } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
9
3
  import {
10
4
  DocDBElasticClientResolvedConfig,
11
5
  ServiceInputTypes,
@@ -17,19 +11,16 @@ export interface UpdateClusterCommandInput extends UpdateClusterInput {}
17
11
  export interface UpdateClusterCommandOutput
18
12
  extends UpdateClusterOutput,
19
13
  __MetadataBearer {}
20
- export declare class UpdateClusterCommand extends $Command<
21
- UpdateClusterCommandInput,
22
- UpdateClusterCommandOutput,
23
- DocDBElasticClientResolvedConfig
24
- > {
25
- readonly input: UpdateClusterCommandInput;
26
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
- constructor(input: UpdateClusterCommandInput);
28
- resolveMiddleware(
29
- clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
- configuration: DocDBElasticClientResolvedConfig,
31
- options?: __HttpHandlerOptions
32
- ): Handler<UpdateClusterCommandInput, UpdateClusterCommandOutput>;
33
- private serialize;
34
- private deserialize;
35
- }
14
+ declare const UpdateClusterCommand_base: {
15
+ new (
16
+ input: UpdateClusterCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ UpdateClusterCommandInput,
19
+ UpdateClusterCommandOutput,
20
+ DocDBElasticClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class UpdateClusterCommand extends UpdateClusterCommand_base {}
@@ -25,6 +25,24 @@ export declare const resolveClientEndpointParameters: <T>(
25
25
  ClientInputEndpointParameters & {
26
26
  defaultSigningName: string;
27
27
  };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
28
46
  export interface EndpointParameters extends __EndpointParameters {
29
47
  Region?: string;
30
48
  UseDualStack?: boolean;
@@ -4,8 +4,8 @@ import {
4
4
  ListClusterSnapshotsCommandOutput,
5
5
  } from "../commands/ListClusterSnapshotsCommand";
6
6
  import { DocDBElasticPaginationConfiguration } from "./Interfaces";
7
- export declare function paginateListClusterSnapshots(
7
+ export declare const paginateListClusterSnapshots: (
8
8
  config: DocDBElasticPaginationConfiguration,
9
9
  input: ListClusterSnapshotsCommandInput,
10
- ...additionalArguments: any
11
- ): Paginator<ListClusterSnapshotsCommandOutput>;
10
+ ...rest: any[]
11
+ ) => Paginator<ListClusterSnapshotsCommandOutput>;