@aws-sdk/client-dax 3.1087.0 → 3.1089.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/DAX.d.ts +66 -78
- package/dist-types/ts3.4/DAXClient.d.ts +16 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/errors.d.ts +23 -93
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DecreaseReplicationFactorResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DecreaseReplicationFactorCommandInput
|
|
8
|
-
extends DecreaseReplicationFactorRequest {}
|
|
7
|
+
export interface DecreaseReplicationFactorCommandInput extends DecreaseReplicationFactorRequest {}
|
|
9
8
|
export interface DecreaseReplicationFactorCommandOutput
|
|
10
|
-
extends DecreaseReplicationFactorResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DecreaseReplicationFactorResponse, __MetadataBearer {}
|
|
12
10
|
declare const DecreaseReplicationFactorCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DecreaseReplicationFactorCommandInput
|
|
12
|
+
input: DecreaseReplicationFactorCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DecreaseReplicationFactorCommandInput,
|
|
17
15
|
DecreaseReplicationFactorCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DecreaseReplicationFactorCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DecreaseReplicationFactorCommandInput
|
|
21
|
+
input: DecreaseReplicationFactorCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DecreaseReplicationFactorCommandInput,
|
|
26
24
|
DecreaseReplicationFactorCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteClusterRequest,
|
|
4
|
-
DeleteClusterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteClusterCommandInput extends DeleteClusterRequest {}
|
|
8
|
-
export interface DeleteClusterCommandOutput
|
|
9
|
-
extends DeleteClusterResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {}
|
|
11
6
|
declare const DeleteClusterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteClusterCommandInput
|
|
8
|
+
input: DeleteClusterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteClusterCommandInput,
|
|
16
11
|
DeleteClusterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteClusterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteClusterCommandInput
|
|
17
|
+
input: DeleteClusterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteClusterCommandInput,
|
|
25
20
|
DeleteClusterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteParameterGroupRequest,
|
|
4
|
-
DeleteParameterGroupResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteParameterGroupRequest, DeleteParameterGroupResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteParameterGroupCommandInput
|
|
8
|
-
extends DeleteParameterGroupRequest {}
|
|
4
|
+
export interface DeleteParameterGroupCommandInput extends DeleteParameterGroupRequest {}
|
|
9
5
|
export interface DeleteParameterGroupCommandOutput
|
|
10
|
-
extends DeleteParameterGroupResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteParameterGroupResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteParameterGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteParameterGroupCommandInput
|
|
9
|
+
input: DeleteParameterGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteParameterGroupCommandInput,
|
|
17
12
|
DeleteParameterGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteParameterGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteParameterGroupCommandInput
|
|
18
|
+
input: DeleteParameterGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteParameterGroupCommandInput,
|
|
26
21
|
DeleteParameterGroupCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteSubnetGroupRequest,
|
|
4
|
-
DeleteSubnetGroupResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteSubnetGroupRequest, DeleteSubnetGroupResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeleteSubnetGroupCommandInput
|
|
8
|
-
extends DeleteSubnetGroupRequest {}
|
|
4
|
+
export interface DeleteSubnetGroupCommandInput extends DeleteSubnetGroupRequest {}
|
|
9
5
|
export interface DeleteSubnetGroupCommandOutput
|
|
10
|
-
extends DeleteSubnetGroupResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DeleteSubnetGroupResponse, __MetadataBearer {}
|
|
12
7
|
declare const DeleteSubnetGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DeleteSubnetGroupCommandInput
|
|
9
|
+
input: DeleteSubnetGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DeleteSubnetGroupCommandInput,
|
|
17
12
|
DeleteSubnetGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DeleteSubnetGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DeleteSubnetGroupCommandInput
|
|
18
|
+
input: DeleteSubnetGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DeleteSubnetGroupCommandInput,
|
|
26
21
|
DeleteSubnetGroupCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeClustersRequest,
|
|
4
|
-
DescribeClustersResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeClustersRequest, DescribeClustersResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeClustersCommandInput extends DescribeClustersRequest {}
|
|
8
|
-
export interface DescribeClustersCommandOutput
|
|
9
|
-
extends DescribeClustersResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeClustersCommandOutput extends DescribeClustersResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeClustersCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeClustersCommandInput
|
|
8
|
+
input: DescribeClustersCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeClustersCommandInput,
|
|
16
11
|
DescribeClustersCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeDefaultParametersResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeDefaultParametersCommandInput
|
|
8
|
-
extends DescribeDefaultParametersRequest {}
|
|
7
|
+
export interface DescribeDefaultParametersCommandInput extends DescribeDefaultParametersRequest {}
|
|
9
8
|
export interface DescribeDefaultParametersCommandOutput
|
|
10
|
-
extends DescribeDefaultParametersResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeDefaultParametersResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeDefaultParametersCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeDefaultParametersCommandInput
|
|
12
|
+
input: DescribeDefaultParametersCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeDefaultParametersCommandInput,
|
|
17
15
|
DescribeDefaultParametersCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeEventsRequest,
|
|
4
|
-
DescribeEventsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeEventsRequest, DescribeEventsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DescribeEventsCommandInput extends DescribeEventsRequest {}
|
|
8
|
-
export interface DescribeEventsCommandOutput
|
|
9
|
-
extends DescribeEventsResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DescribeEventsCommandOutput extends DescribeEventsResponse, __MetadataBearer {}
|
|
11
6
|
declare const DescribeEventsCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DescribeEventsCommandInput
|
|
8
|
+
input: DescribeEventsCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DescribeEventsCommandInput,
|
|
16
11
|
DescribeEventsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DescribeParameterGroupsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeParameterGroupsCommandInput
|
|
8
|
-
extends DescribeParameterGroupsRequest {}
|
|
7
|
+
export interface DescribeParameterGroupsCommandInput extends DescribeParameterGroupsRequest {}
|
|
9
8
|
export interface DescribeParameterGroupsCommandOutput
|
|
10
|
-
extends DescribeParameterGroupsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DescribeParameterGroupsResponse, __MetadataBearer {}
|
|
12
10
|
declare const DescribeParameterGroupsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DescribeParameterGroupsCommandInput
|
|
12
|
+
input: DescribeParameterGroupsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DescribeParameterGroupsCommandInput,
|
|
17
15
|
DescribeParameterGroupsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeParametersRequest,
|
|
4
|
-
DescribeParametersResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeParametersRequest, DescribeParametersResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeParametersCommandInput
|
|
8
|
-
extends DescribeParametersRequest {}
|
|
4
|
+
export interface DescribeParametersCommandInput extends DescribeParametersRequest {}
|
|
9
5
|
export interface DescribeParametersCommandOutput
|
|
10
|
-
extends DescribeParametersResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeParametersResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeParametersCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeParametersCommandInput
|
|
9
|
+
input: DescribeParametersCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeParametersCommandInput,
|
|
17
12
|
DescribeParametersCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const DescribeParametersCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: DescribeParametersCommandInput
|
|
18
|
+
input: DescribeParametersCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
DescribeParametersCommandInput,
|
|
26
21
|
DescribeParametersCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DescribeSubnetGroupsRequest,
|
|
4
|
-
DescribeSubnetGroupsResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DescribeSubnetGroupsRequest, DescribeSubnetGroupsResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface DescribeSubnetGroupsCommandInput
|
|
8
|
-
extends DescribeSubnetGroupsRequest {}
|
|
4
|
+
export interface DescribeSubnetGroupsCommandInput extends DescribeSubnetGroupsRequest {}
|
|
9
5
|
export interface DescribeSubnetGroupsCommandOutput
|
|
10
|
-
extends DescribeSubnetGroupsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends DescribeSubnetGroupsResponse, __MetadataBearer {}
|
|
12
7
|
declare const DescribeSubnetGroupsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: DescribeSubnetGroupsCommandInput
|
|
9
|
+
input: DescribeSubnetGroupsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
DescribeSubnetGroupsCommandInput,
|
|
17
12
|
DescribeSubnetGroupsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
IncreaseReplicationFactorResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface IncreaseReplicationFactorCommandInput
|
|
8
|
-
extends IncreaseReplicationFactorRequest {}
|
|
7
|
+
export interface IncreaseReplicationFactorCommandInput extends IncreaseReplicationFactorRequest {}
|
|
9
8
|
export interface IncreaseReplicationFactorCommandOutput
|
|
10
|
-
extends IncreaseReplicationFactorResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends IncreaseReplicationFactorResponse, __MetadataBearer {}
|
|
12
10
|
declare const IncreaseReplicationFactorCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: IncreaseReplicationFactorCommandInput
|
|
12
|
+
input: IncreaseReplicationFactorCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
IncreaseReplicationFactorCommandInput,
|
|
17
15
|
IncreaseReplicationFactorCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const IncreaseReplicationFactorCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: IncreaseReplicationFactorCommandInput
|
|
21
|
+
input: IncreaseReplicationFactorCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
IncreaseReplicationFactorCommandInput,
|
|
26
24
|
IncreaseReplicationFactorCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListTagsRequest, ListTagsResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListTagsCommandInput extends ListTagsRequest {}
|
|
5
|
-
export interface ListTagsCommandOutput
|
|
6
|
-
extends ListTagsResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListTagsCommandOutput extends ListTagsResponse, __MetadataBearer {}
|
|
8
6
|
declare const ListTagsCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: ListTagsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
ListTagsCommandInput,
|
|
11
11
|
ListTagsCommandOutput,
|
|
12
12
|
import("..").DAXClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: ListTagsCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
ListTagsCommandInput,
|
|
18
20
|
ListTagsCommandOutput,
|
|
19
21
|
import("..").DAXClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { RebootNodeRequest, RebootNodeResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface RebootNodeCommandInput extends RebootNodeRequest {}
|
|
5
|
-
export interface RebootNodeCommandOutput
|
|
6
|
-
extends RebootNodeResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RebootNodeCommandOutput extends RebootNodeResponse, __MetadataBearer {}
|
|
8
6
|
declare const RebootNodeCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: RebootNodeCommandInput
|
|
8
|
+
input: RebootNodeCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
RebootNodeCommandInput,
|
|
13
11
|
RebootNodeCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const RebootNodeCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: RebootNodeCommandInput
|
|
17
|
+
input: RebootNodeCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
RebootNodeCommandInput,
|
|
22
20
|
RebootNodeCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceRequest, TagResourceResponse } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceResponse,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UntagResourceRequest,
|
|
4
|
-
UntagResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
8
|
-
export interface UntagResourceCommandOutput
|
|
9
|
-
extends UntagResourceResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {}
|
|
11
6
|
declare const UntagResourceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UntagResourceCommandInput,
|
|
16
11
|
UntagResourceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UntagResourceCommandInput,
|
|
25
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateClusterRequest,
|
|
4
|
-
UpdateClusterResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateClusterRequest, UpdateClusterResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateClusterCommandInput extends UpdateClusterRequest {}
|
|
8
|
-
export interface UpdateClusterCommandOutput
|
|
9
|
-
extends UpdateClusterResponse,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateClusterCommandOutput extends UpdateClusterResponse, __MetadataBearer {}
|
|
11
6
|
declare const UpdateClusterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateClusterCommandInput
|
|
8
|
+
input: UpdateClusterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateClusterCommandInput,
|
|
16
11
|
UpdateClusterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateClusterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateClusterCommandInput
|
|
17
|
+
input: UpdateClusterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateClusterCommandInput,
|
|
25
20
|
UpdateClusterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateParameterGroupRequest,
|
|
4
|
-
UpdateParameterGroupResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateParameterGroupRequest, UpdateParameterGroupResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateParameterGroupCommandInput
|
|
8
|
-
extends UpdateParameterGroupRequest {}
|
|
4
|
+
export interface UpdateParameterGroupCommandInput extends UpdateParameterGroupRequest {}
|
|
9
5
|
export interface UpdateParameterGroupCommandOutput
|
|
10
|
-
extends UpdateParameterGroupResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateParameterGroupResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateParameterGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateParameterGroupCommandInput
|
|
9
|
+
input: UpdateParameterGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateParameterGroupCommandInput,
|
|
17
12
|
UpdateParameterGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateParameterGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateParameterGroupCommandInput
|
|
18
|
+
input: UpdateParameterGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateParameterGroupCommandInput,
|
|
26
21
|
UpdateParameterGroupCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateSubnetGroupRequest,
|
|
4
|
-
UpdateSubnetGroupResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateSubnetGroupRequest, UpdateSubnetGroupResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface UpdateSubnetGroupCommandInput
|
|
8
|
-
extends UpdateSubnetGroupRequest {}
|
|
4
|
+
export interface UpdateSubnetGroupCommandInput extends UpdateSubnetGroupRequest {}
|
|
9
5
|
export interface UpdateSubnetGroupCommandOutput
|
|
10
|
-
extends UpdateSubnetGroupResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends UpdateSubnetGroupResponse, __MetadataBearer {}
|
|
12
7
|
declare const UpdateSubnetGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: UpdateSubnetGroupCommandInput
|
|
9
|
+
input: UpdateSubnetGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
UpdateSubnetGroupCommandInput,
|
|
17
12
|
UpdateSubnetGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const UpdateSubnetGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: UpdateSubnetGroupCommandInput
|
|
18
|
+
input: UpdateSubnetGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
UpdateSubnetGroupCommandInput,
|
|
26
21
|
UpdateSubnetGroupCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface DAXExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|