@aws-sdk/client-dax 3.169.0 → 3.171.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/CHANGELOG.md +16 -0
- package/dist-types/ts3.4/DAX.d.ts +361 -110
- package/dist-types/ts3.4/DAXClient.d.ts +229 -94
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +35 -17
- package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +39 -17
- package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +5 -5
- package/dist-types/ts3.4/models/DAXServiceException.d.ts +7 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +655 -774
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +257 -65
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
- package/package.json +34 -34
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteParameterGroupRequest,
|
|
15
|
+
DeleteParameterGroupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteParameterGroupCommandInput
|
|
18
|
+
extends DeleteParameterGroupRequest {}
|
|
19
|
+
export interface DeleteParameterGroupCommandOutput
|
|
20
|
+
extends DeleteParameterGroupResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteParameterGroupCommand extends $Command<
|
|
23
|
+
DeleteParameterGroupCommandInput,
|
|
24
|
+
DeleteParameterGroupCommandOutput,
|
|
25
|
+
DAXClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteParameterGroupCommandInput;
|
|
28
|
+
constructor(input: DeleteParameterGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DAXClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DeleteParameterGroupCommandInput,
|
|
35
|
+
DeleteParameterGroupCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DeleteSubnetGroupRequest,
|
|
15
|
+
DeleteSubnetGroupResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DeleteSubnetGroupCommandInput
|
|
18
|
+
extends DeleteSubnetGroupRequest {}
|
|
19
|
+
export interface DeleteSubnetGroupCommandOutput
|
|
20
|
+
extends DeleteSubnetGroupResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DeleteSubnetGroupCommand extends $Command<
|
|
23
|
+
DeleteSubnetGroupCommandInput,
|
|
24
|
+
DeleteSubnetGroupCommandOutput,
|
|
25
|
+
DAXClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DeleteSubnetGroupCommandInput;
|
|
28
|
+
constructor(input: DeleteSubnetGroupCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DAXClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DeleteSubnetGroupCommandInput, DeleteSubnetGroupCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeClustersRequest,
|
|
15
|
+
DescribeClustersResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeClustersCommandInput extends DescribeClustersRequest {}
|
|
18
|
+
export interface DescribeClustersCommandOutput
|
|
19
|
+
extends DescribeClustersResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeClustersCommand extends $Command<
|
|
22
|
+
DescribeClustersCommandInput,
|
|
23
|
+
DescribeClustersCommandOutput,
|
|
24
|
+
DAXClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeClustersCommandInput;
|
|
27
|
+
constructor(input: DescribeClustersCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: DAXClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeClustersCommandInput, DescribeClustersCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeDefaultParametersRequest,
|
|
15
|
+
DescribeDefaultParametersResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeDefaultParametersCommandInput
|
|
18
|
+
extends DescribeDefaultParametersRequest {}
|
|
19
|
+
export interface DescribeDefaultParametersCommandOutput
|
|
20
|
+
extends DescribeDefaultParametersResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeDefaultParametersCommand extends $Command<
|
|
23
|
+
DescribeDefaultParametersCommandInput,
|
|
24
|
+
DescribeDefaultParametersCommandOutput,
|
|
25
|
+
DAXClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeDefaultParametersCommandInput;
|
|
28
|
+
constructor(input: DescribeDefaultParametersCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DAXClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeDefaultParametersCommandInput,
|
|
35
|
+
DescribeDefaultParametersCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,35 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeEventsRequest,
|
|
15
|
+
DescribeEventsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeEventsCommandInput extends DescribeEventsRequest {}
|
|
18
|
+
export interface DescribeEventsCommandOutput
|
|
19
|
+
extends DescribeEventsResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
export declare class DescribeEventsCommand extends $Command<
|
|
22
|
+
DescribeEventsCommandInput,
|
|
23
|
+
DescribeEventsCommandOutput,
|
|
24
|
+
DAXClientResolvedConfig
|
|
25
|
+
> {
|
|
26
|
+
readonly input: DescribeEventsCommandInput;
|
|
27
|
+
constructor(input: DescribeEventsCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: DAXClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<DescribeEventsCommandInput, DescribeEventsCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeParameterGroupsRequest,
|
|
15
|
+
DescribeParameterGroupsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeParameterGroupsCommandInput
|
|
18
|
+
extends DescribeParameterGroupsRequest {}
|
|
19
|
+
export interface DescribeParameterGroupsCommandOutput
|
|
20
|
+
extends DescribeParameterGroupsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeParameterGroupsCommand extends $Command<
|
|
23
|
+
DescribeParameterGroupsCommandInput,
|
|
24
|
+
DescribeParameterGroupsCommandOutput,
|
|
25
|
+
DAXClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeParameterGroupsCommandInput;
|
|
28
|
+
constructor(input: DescribeParameterGroupsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DAXClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeParameterGroupsCommandInput,
|
|
35
|
+
DescribeParameterGroupsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,36 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeParametersRequest,
|
|
15
|
+
DescribeParametersResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeParametersCommandInput
|
|
18
|
+
extends DescribeParametersRequest {}
|
|
19
|
+
export interface DescribeParametersCommandOutput
|
|
20
|
+
extends DescribeParametersResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeParametersCommand extends $Command<
|
|
23
|
+
DescribeParametersCommandInput,
|
|
24
|
+
DescribeParametersCommandOutput,
|
|
25
|
+
DAXClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeParametersCommandInput;
|
|
28
|
+
constructor(input: DescribeParametersCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DAXClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<DescribeParametersCommandInput, DescribeParametersCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeSubnetGroupsRequest,
|
|
15
|
+
DescribeSubnetGroupsResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeSubnetGroupsCommandInput
|
|
18
|
+
extends DescribeSubnetGroupsRequest {}
|
|
19
|
+
export interface DescribeSubnetGroupsCommandOutput
|
|
20
|
+
extends DescribeSubnetGroupsResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class DescribeSubnetGroupsCommand extends $Command<
|
|
23
|
+
DescribeSubnetGroupsCommandInput,
|
|
24
|
+
DescribeSubnetGroupsCommandOutput,
|
|
25
|
+
DAXClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeSubnetGroupsCommandInput;
|
|
28
|
+
constructor(input: DescribeSubnetGroupsCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DAXClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
DescribeSubnetGroupsCommandInput,
|
|
35
|
+
DescribeSubnetGroupsCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,39 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import {
|
|
14
|
+
IncreaseReplicationFactorRequest,
|
|
15
|
+
IncreaseReplicationFactorResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface IncreaseReplicationFactorCommandInput
|
|
18
|
+
extends IncreaseReplicationFactorRequest {}
|
|
19
|
+
export interface IncreaseReplicationFactorCommandOutput
|
|
20
|
+
extends IncreaseReplicationFactorResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class IncreaseReplicationFactorCommand extends $Command<
|
|
23
|
+
IncreaseReplicationFactorCommandInput,
|
|
24
|
+
IncreaseReplicationFactorCommandOutput,
|
|
25
|
+
DAXClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: IncreaseReplicationFactorCommandInput;
|
|
28
|
+
constructor(input: IncreaseReplicationFactorCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: DAXClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<
|
|
34
|
+
IncreaseReplicationFactorCommandInput,
|
|
35
|
+
IncreaseReplicationFactorCommandOutput
|
|
36
|
+
>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListTagsCommandInput extends ListTagsRequest {}
|
|
15
|
+
export interface ListTagsCommandOutput
|
|
16
|
+
extends ListTagsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class ListTagsCommand extends $Command<
|
|
19
|
+
ListTagsCommandInput,
|
|
20
|
+
ListTagsCommandOutput,
|
|
21
|
+
DAXClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: ListTagsCommandInput;
|
|
24
|
+
constructor(input: ListTagsCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: DAXClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<ListTagsCommandInput, ListTagsCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
DAXClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../DAXClient";
|
|
13
|
+
import { RebootNodeRequest, RebootNodeResponse } from "../models/models_0";
|
|
14
|
+
export interface RebootNodeCommandInput extends RebootNodeRequest {}
|
|
15
|
+
export interface RebootNodeCommandOutput
|
|
16
|
+
extends RebootNodeResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
export declare class RebootNodeCommand extends $Command<
|
|
19
|
+
RebootNodeCommandInput,
|
|
20
|
+
RebootNodeCommandOutput,
|
|
21
|
+
DAXClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: RebootNodeCommandInput;
|
|
24
|
+
constructor(input: RebootNodeCommandInput);
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: DAXClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<RebootNodeCommandInput, RebootNodeCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|