@aws-sdk/client-docdb-elastic 3.221.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +205 -0
- package/dist-cjs/DocDBElastic.js +202 -0
- package/dist-cjs/DocDBElasticClient.js +40 -0
- package/dist-cjs/commands/CreateClusterCommand.js +46 -0
- package/dist-cjs/commands/CreateClusterSnapshotCommand.js +46 -0
- package/dist-cjs/commands/DeleteClusterCommand.js +46 -0
- package/dist-cjs/commands/DeleteClusterSnapshotCommand.js +46 -0
- package/dist-cjs/commands/GetClusterCommand.js +46 -0
- package/dist-cjs/commands/GetClusterSnapshotCommand.js +46 -0
- package/dist-cjs/commands/ListClusterSnapshotsCommand.js +46 -0
- package/dist-cjs/commands/ListClustersCommand.js +46 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
- package/dist-cjs/commands/RestoreClusterFromSnapshotCommand.js +46 -0
- package/dist-cjs/commands/TagResourceCommand.js +46 -0
- package/dist-cjs/commands/UntagResourceCommand.js +46 -0
- package/dist-cjs/commands/UpdateClusterCommand.js +46 -0
- package/dist-cjs/commands/index.js +16 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +312 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/DocDBElasticServiceException.js +11 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +255 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListClusterSnapshotsPaginator.js +36 -0
- package/dist-cjs/pagination/ListClustersPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1197 -0
- package/dist-cjs/runtimeConfig.browser.js +42 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +18 -0
- package/dist-es/DocDBElastic.js +198 -0
- package/dist-es/DocDBElasticClient.js +36 -0
- package/dist-es/commands/CreateClusterCommand.js +42 -0
- package/dist-es/commands/CreateClusterSnapshotCommand.js +42 -0
- package/dist-es/commands/DeleteClusterCommand.js +42 -0
- package/dist-es/commands/DeleteClusterSnapshotCommand.js +42 -0
- package/dist-es/commands/GetClusterCommand.js +42 -0
- package/dist-es/commands/GetClusterSnapshotCommand.js +42 -0
- package/dist-es/commands/ListClusterSnapshotsCommand.js +42 -0
- package/dist-es/commands/ListClustersCommand.js +42 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
- package/dist-es/commands/RestoreClusterFromSnapshotCommand.js +42 -0
- package/dist-es/commands/TagResourceCommand.js +42 -0
- package/dist-es/commands/UntagResourceCommand.js +42 -0
- package/dist-es/commands/UpdateClusterCommand.js +42 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +309 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/DocDBElasticServiceException.js +7 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +214 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListClusterSnapshotsPaginator.js +32 -0
- package/dist-es/pagination/ListClustersPaginator.js +32 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +1168 -0
- package/dist-es/runtimeConfig.browser.js +37 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +14 -0
- package/dist-types/DocDBElastic.d.ts +99 -0
- package/dist-types/DocDBElasticClient.d.ts +154 -0
- package/dist-types/commands/CreateClusterCommand.d.ts +37 -0
- package/dist-types/commands/CreateClusterSnapshotCommand.d.ts +37 -0
- package/dist-types/commands/DeleteClusterCommand.d.ts +37 -0
- package/dist-types/commands/DeleteClusterSnapshotCommand.d.ts +37 -0
- package/dist-types/commands/GetClusterCommand.d.ts +37 -0
- package/dist-types/commands/GetClusterSnapshotCommand.d.ts +37 -0
- package/dist-types/commands/ListClusterSnapshotsCommand.d.ts +37 -0
- package/dist-types/commands/ListClustersCommand.d.ts +37 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
- package/dist-types/commands/RestoreClusterFromSnapshotCommand.d.ts +37 -0
- package/dist-types/commands/TagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/commands/UpdateClusterCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/models/DocDBElasticServiceException.d.ts +10 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +782 -0
- package/dist-types/pagination/Interfaces.d.ts +6 -0
- package/dist-types/pagination/ListClusterSnapshotsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListClustersPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +41 -0
- package/dist-types/runtimeConfig.browser.d.ts +42 -0
- package/dist-types/runtimeConfig.d.ts +42 -0
- package/dist-types/runtimeConfig.native.d.ts +41 -0
- package/dist-types/runtimeConfig.shared.d.ts +16 -0
- package/dist-types/ts3.4/DocDBElastic.d.ts +225 -0
- package/dist-types/ts3.4/DocDBElasticClient.d.ts +190 -0
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/CreateClusterSnapshotCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteClusterSnapshotCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetClusterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetClusterSnapshotCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListClusterSnapshotsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RestoreClusterFromSnapshotCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/DocDBElasticServiceException.d.ts +7 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +320 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
- package/dist-types/ts3.4/pagination/ListClusterSnapshotsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListClustersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +161 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +77 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +16 -0
- package/package.json +103 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import { CreateClusterInput, CreateClusterOutput } from "../models/models_0";
|
|
15
|
+
export interface CreateClusterCommandInput extends CreateClusterInput {}
|
|
16
|
+
export interface CreateClusterCommandOutput
|
|
17
|
+
extends CreateClusterOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class CreateClusterCommand extends $Command<
|
|
20
|
+
CreateClusterCommandInput,
|
|
21
|
+
CreateClusterCommandOutput,
|
|
22
|
+
DocDBElasticClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: CreateClusterCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: CreateClusterCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateClusterSnapshotInput,
|
|
16
|
+
CreateClusterSnapshotOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface CreateClusterSnapshotCommandInput
|
|
19
|
+
extends CreateClusterSnapshotInput {}
|
|
20
|
+
export interface CreateClusterSnapshotCommandOutput
|
|
21
|
+
extends CreateClusterSnapshotOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateClusterSnapshotCommand extends $Command<
|
|
24
|
+
CreateClusterSnapshotCommandInput,
|
|
25
|
+
CreateClusterSnapshotCommandOutput,
|
|
26
|
+
DocDBElasticClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateClusterSnapshotCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateClusterSnapshotCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
CreateClusterSnapshotCommandInput,
|
|
37
|
+
CreateClusterSnapshotCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import { DeleteClusterInput, DeleteClusterOutput } from "../models/models_0";
|
|
15
|
+
export interface DeleteClusterCommandInput extends DeleteClusterInput {}
|
|
16
|
+
export interface DeleteClusterCommandOutput
|
|
17
|
+
extends DeleteClusterOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class DeleteClusterCommand extends $Command<
|
|
20
|
+
DeleteClusterCommandInput,
|
|
21
|
+
DeleteClusterCommandOutput,
|
|
22
|
+
DocDBElasticClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteClusterCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteClusterCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import {
|
|
15
|
+
DeleteClusterSnapshotInput,
|
|
16
|
+
DeleteClusterSnapshotOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface DeleteClusterSnapshotCommandInput
|
|
19
|
+
extends DeleteClusterSnapshotInput {}
|
|
20
|
+
export interface DeleteClusterSnapshotCommandOutput
|
|
21
|
+
extends DeleteClusterSnapshotOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class DeleteClusterSnapshotCommand extends $Command<
|
|
24
|
+
DeleteClusterSnapshotCommandInput,
|
|
25
|
+
DeleteClusterSnapshotCommandOutput,
|
|
26
|
+
DocDBElasticClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: DeleteClusterSnapshotCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: DeleteClusterSnapshotCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
DeleteClusterSnapshotCommandInput,
|
|
37
|
+
DeleteClusterSnapshotCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import { GetClusterInput, GetClusterOutput } from "../models/models_0";
|
|
15
|
+
export interface GetClusterCommandInput extends GetClusterInput {}
|
|
16
|
+
export interface GetClusterCommandOutput
|
|
17
|
+
extends GetClusterOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class GetClusterCommand extends $Command<
|
|
20
|
+
GetClusterCommandInput,
|
|
21
|
+
GetClusterCommandOutput,
|
|
22
|
+
DocDBElasticClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetClusterCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: GetClusterCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetClusterCommandInput, GetClusterCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import {
|
|
15
|
+
GetClusterSnapshotInput,
|
|
16
|
+
GetClusterSnapshotOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface GetClusterSnapshotCommandInput
|
|
19
|
+
extends GetClusterSnapshotInput {}
|
|
20
|
+
export interface GetClusterSnapshotCommandOutput
|
|
21
|
+
extends GetClusterSnapshotOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetClusterSnapshotCommand extends $Command<
|
|
24
|
+
GetClusterSnapshotCommandInput,
|
|
25
|
+
GetClusterSnapshotCommandOutput,
|
|
26
|
+
DocDBElasticClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetClusterSnapshotCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetClusterSnapshotCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetClusterSnapshotCommandInput, GetClusterSnapshotCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import {
|
|
15
|
+
ListClusterSnapshotsInput,
|
|
16
|
+
ListClusterSnapshotsOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListClusterSnapshotsCommandInput
|
|
19
|
+
extends ListClusterSnapshotsInput {}
|
|
20
|
+
export interface ListClusterSnapshotsCommandOutput
|
|
21
|
+
extends ListClusterSnapshotsOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListClusterSnapshotsCommand extends $Command<
|
|
24
|
+
ListClusterSnapshotsCommandInput,
|
|
25
|
+
ListClusterSnapshotsCommandOutput,
|
|
26
|
+
DocDBElasticClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListClusterSnapshotsCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListClusterSnapshotsCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
ListClusterSnapshotsCommandInput,
|
|
37
|
+
ListClusterSnapshotsCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import { ListClustersInput, ListClustersOutput } from "../models/models_0";
|
|
15
|
+
export interface ListClustersCommandInput extends ListClustersInput {}
|
|
16
|
+
export interface ListClustersCommandOutput
|
|
17
|
+
extends ListClustersOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class ListClustersCommand extends $Command<
|
|
20
|
+
ListClustersCommandInput,
|
|
21
|
+
ListClustersCommandOutput,
|
|
22
|
+
DocDBElasticClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListClustersCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: ListClustersCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListClustersCommandInput, ListClustersCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import {
|
|
15
|
+
ListTagsForResourceRequest,
|
|
16
|
+
ListTagsForResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface ListTagsForResourceCommandInput
|
|
19
|
+
extends ListTagsForResourceRequest {}
|
|
20
|
+
export interface ListTagsForResourceCommandOutput
|
|
21
|
+
extends ListTagsForResourceResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListTagsForResourceCommand extends $Command<
|
|
24
|
+
ListTagsForResourceCommandInput,
|
|
25
|
+
ListTagsForResourceCommandOutput,
|
|
26
|
+
DocDBElasticClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListTagsForResourceCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListTagsForResourceCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import {
|
|
15
|
+
RestoreClusterFromSnapshotInput,
|
|
16
|
+
RestoreClusterFromSnapshotOutput,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface RestoreClusterFromSnapshotCommandInput
|
|
19
|
+
extends RestoreClusterFromSnapshotInput {}
|
|
20
|
+
export interface RestoreClusterFromSnapshotCommandOutput
|
|
21
|
+
extends RestoreClusterFromSnapshotOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class RestoreClusterFromSnapshotCommand extends $Command<
|
|
24
|
+
RestoreClusterFromSnapshotCommandInput,
|
|
25
|
+
RestoreClusterFromSnapshotCommandOutput,
|
|
26
|
+
DocDBElasticClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: RestoreClusterFromSnapshotCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: RestoreClusterFromSnapshotCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
RestoreClusterFromSnapshotCommandInput,
|
|
37
|
+
RestoreClusterFromSnapshotCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
15
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
16
|
+
export interface TagResourceCommandOutput
|
|
17
|
+
extends TagResourceResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class TagResourceCommand extends $Command<
|
|
20
|
+
TagResourceCommandInput,
|
|
21
|
+
TagResourceCommandOutput,
|
|
22
|
+
DocDBElasticClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: TagResourceCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: TagResourceCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import {
|
|
15
|
+
UntagResourceRequest,
|
|
16
|
+
UntagResourceResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
19
|
+
export interface UntagResourceCommandOutput
|
|
20
|
+
extends UntagResourceResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class UntagResourceCommand extends $Command<
|
|
23
|
+
UntagResourceCommandInput,
|
|
24
|
+
UntagResourceCommandOutput,
|
|
25
|
+
DocDBElasticClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UntagResourceCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: UntagResourceCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
DocDBElasticClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../DocDBElasticClient";
|
|
14
|
+
import { UpdateClusterInput, UpdateClusterOutput } from "../models/models_0";
|
|
15
|
+
export interface UpdateClusterCommandInput extends UpdateClusterInput {}
|
|
16
|
+
export interface UpdateClusterCommandOutput
|
|
17
|
+
extends UpdateClusterOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
export declare class UpdateClusterCommand extends $Command<
|
|
20
|
+
UpdateClusterCommandInput,
|
|
21
|
+
UpdateClusterCommandOutput,
|
|
22
|
+
DocDBElasticClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: UpdateClusterCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: UpdateClusterCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: DocDBElasticClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<UpdateClusterCommandInput, UpdateClusterCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from "./CreateClusterCommand";
|
|
2
|
+
export * from "./CreateClusterSnapshotCommand";
|
|
3
|
+
export * from "./DeleteClusterCommand";
|
|
4
|
+
export * from "./DeleteClusterSnapshotCommand";
|
|
5
|
+
export * from "./GetClusterCommand";
|
|
6
|
+
export * from "./GetClusterSnapshotCommand";
|
|
7
|
+
export * from "./ListClusterSnapshotsCommand";
|
|
8
|
+
export * from "./ListClustersCommand";
|
|
9
|
+
export * from "./ListTagsForResourceCommand";
|
|
10
|
+
export * from "./RestoreClusterFromSnapshotCommand";
|
|
11
|
+
export * from "./TagResourceCommand";
|
|
12
|
+
export * from "./UntagResourceCommand";
|
|
13
|
+
export * from "./UpdateClusterCommand";
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@aws-sdk/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export declare type ClientResolvedEndpointParameters =
|
|
20
|
+
ClientInputEndpointParameters & {
|
|
21
|
+
defaultSigningName: string;
|
|
22
|
+
};
|
|
23
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
24
|
+
options: T & ClientInputEndpointParameters
|
|
25
|
+
) => T &
|
|
26
|
+
ClientInputEndpointParameters & {
|
|
27
|
+
defaultSigningName: string;
|
|
28
|
+
};
|
|
29
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
30
|
+
Region: string;
|
|
31
|
+
UseDualStack?: boolean;
|
|
32
|
+
UseFIPS?: boolean;
|
|
33
|
+
Endpoint?: string;
|
|
34
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
export declare class DocDBElasticServiceException extends __ServiceException {
|
|
6
|
+
constructor(options: __ServiceExceptionOptions);
|
|
7
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|