@aws-sdk/client-dax 3.927.0 → 3.929.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 +1038 -1133
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/DAXClient.js +2 -0
- package/dist-es/commands/CreateClusterCommand.js +3 -9
- package/dist-es/commands/CreateParameterGroupCommand.js +3 -9
- package/dist-es/commands/CreateSubnetGroupCommand.js +3 -9
- package/dist-es/commands/DecreaseReplicationFactorCommand.js +3 -9
- package/dist-es/commands/DeleteClusterCommand.js +3 -9
- package/dist-es/commands/DeleteParameterGroupCommand.js +3 -9
- package/dist-es/commands/DeleteSubnetGroupCommand.js +3 -9
- package/dist-es/commands/DescribeClustersCommand.js +3 -9
- package/dist-es/commands/DescribeDefaultParametersCommand.js +3 -9
- package/dist-es/commands/DescribeEventsCommand.js +3 -9
- package/dist-es/commands/DescribeParameterGroupsCommand.js +3 -9
- package/dist-es/commands/DescribeParametersCommand.js +3 -9
- package/dist-es/commands/DescribeSubnetGroupsCommand.js +3 -9
- package/dist-es/commands/IncreaseReplicationFactorCommand.js +3 -9
- package/dist-es/commands/ListTagsCommand.js +3 -9
- package/dist-es/commands/RebootNodeCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateClusterCommand.js +3 -9
- package/dist-es/commands/UpdateParameterGroupCommand.js +3 -9
- package/dist-es/commands/UpdateSubnetGroupCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +920 -0
- package/dist-types/DAXClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +130 -0
- package/dist-types/ts3.4/DAXClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +135 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -906
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -191
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -257
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "../commands/CreateClusterCommand";
|
|
4
|
-
import { CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput } from "../commands/CreateParameterGroupCommand";
|
|
5
|
-
import { CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput } from "../commands/CreateSubnetGroupCommand";
|
|
6
|
-
import { DecreaseReplicationFactorCommandInput, DecreaseReplicationFactorCommandOutput } from "../commands/DecreaseReplicationFactorCommand";
|
|
7
|
-
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "../commands/DeleteClusterCommand";
|
|
8
|
-
import { DeleteParameterGroupCommandInput, DeleteParameterGroupCommandOutput } from "../commands/DeleteParameterGroupCommand";
|
|
9
|
-
import { DeleteSubnetGroupCommandInput, DeleteSubnetGroupCommandOutput } from "../commands/DeleteSubnetGroupCommand";
|
|
10
|
-
import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "../commands/DescribeClustersCommand";
|
|
11
|
-
import { DescribeDefaultParametersCommandInput, DescribeDefaultParametersCommandOutput } from "../commands/DescribeDefaultParametersCommand";
|
|
12
|
-
import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "../commands/DescribeEventsCommand";
|
|
13
|
-
import { DescribeParameterGroupsCommandInput, DescribeParameterGroupsCommandOutput } from "../commands/DescribeParameterGroupsCommand";
|
|
14
|
-
import { DescribeParametersCommandInput, DescribeParametersCommandOutput } from "../commands/DescribeParametersCommand";
|
|
15
|
-
import { DescribeSubnetGroupsCommandInput, DescribeSubnetGroupsCommandOutput } from "../commands/DescribeSubnetGroupsCommand";
|
|
16
|
-
import { IncreaseReplicationFactorCommandInput, IncreaseReplicationFactorCommandOutput } from "../commands/IncreaseReplicationFactorCommand";
|
|
17
|
-
import { ListTagsCommandInput, ListTagsCommandOutput } from "../commands/ListTagsCommand";
|
|
18
|
-
import { RebootNodeCommandInput, RebootNodeCommandOutput } from "../commands/RebootNodeCommand";
|
|
19
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
20
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
21
|
-
import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "../commands/UpdateClusterCommand";
|
|
22
|
-
import { UpdateParameterGroupCommandInput, UpdateParameterGroupCommandOutput } from "../commands/UpdateParameterGroupCommand";
|
|
23
|
-
import { UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput } from "../commands/UpdateSubnetGroupCommand";
|
|
24
|
-
/**
|
|
25
|
-
* serializeAws_json1_1CreateClusterCommand
|
|
26
|
-
*/
|
|
27
|
-
export declare const se_CreateClusterCommand: (input: CreateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
|
-
/**
|
|
29
|
-
* serializeAws_json1_1CreateParameterGroupCommand
|
|
30
|
-
*/
|
|
31
|
-
export declare const se_CreateParameterGroupCommand: (input: CreateParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
|
-
/**
|
|
33
|
-
* serializeAws_json1_1CreateSubnetGroupCommand
|
|
34
|
-
*/
|
|
35
|
-
export declare const se_CreateSubnetGroupCommand: (input: CreateSubnetGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
-
/**
|
|
37
|
-
* serializeAws_json1_1DecreaseReplicationFactorCommand
|
|
38
|
-
*/
|
|
39
|
-
export declare const se_DecreaseReplicationFactorCommand: (input: DecreaseReplicationFactorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
-
/**
|
|
41
|
-
* serializeAws_json1_1DeleteClusterCommand
|
|
42
|
-
*/
|
|
43
|
-
export declare const se_DeleteClusterCommand: (input: DeleteClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
-
/**
|
|
45
|
-
* serializeAws_json1_1DeleteParameterGroupCommand
|
|
46
|
-
*/
|
|
47
|
-
export declare const se_DeleteParameterGroupCommand: (input: DeleteParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
-
/**
|
|
49
|
-
* serializeAws_json1_1DeleteSubnetGroupCommand
|
|
50
|
-
*/
|
|
51
|
-
export declare const se_DeleteSubnetGroupCommand: (input: DeleteSubnetGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
-
/**
|
|
53
|
-
* serializeAws_json1_1DescribeClustersCommand
|
|
54
|
-
*/
|
|
55
|
-
export declare const se_DescribeClustersCommand: (input: DescribeClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
56
|
-
/**
|
|
57
|
-
* serializeAws_json1_1DescribeDefaultParametersCommand
|
|
58
|
-
*/
|
|
59
|
-
export declare const se_DescribeDefaultParametersCommand: (input: DescribeDefaultParametersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
-
/**
|
|
61
|
-
* serializeAws_json1_1DescribeEventsCommand
|
|
62
|
-
*/
|
|
63
|
-
export declare const se_DescribeEventsCommand: (input: DescribeEventsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
-
/**
|
|
65
|
-
* serializeAws_json1_1DescribeParameterGroupsCommand
|
|
66
|
-
*/
|
|
67
|
-
export declare const se_DescribeParameterGroupsCommand: (input: DescribeParameterGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
|
-
/**
|
|
69
|
-
* serializeAws_json1_1DescribeParametersCommand
|
|
70
|
-
*/
|
|
71
|
-
export declare const se_DescribeParametersCommand: (input: DescribeParametersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
72
|
-
/**
|
|
73
|
-
* serializeAws_json1_1DescribeSubnetGroupsCommand
|
|
74
|
-
*/
|
|
75
|
-
export declare const se_DescribeSubnetGroupsCommand: (input: DescribeSubnetGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
76
|
-
/**
|
|
77
|
-
* serializeAws_json1_1IncreaseReplicationFactorCommand
|
|
78
|
-
*/
|
|
79
|
-
export declare const se_IncreaseReplicationFactorCommand: (input: IncreaseReplicationFactorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
80
|
-
/**
|
|
81
|
-
* serializeAws_json1_1ListTagsCommand
|
|
82
|
-
*/
|
|
83
|
-
export declare const se_ListTagsCommand: (input: ListTagsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
84
|
-
/**
|
|
85
|
-
* serializeAws_json1_1RebootNodeCommand
|
|
86
|
-
*/
|
|
87
|
-
export declare const se_RebootNodeCommand: (input: RebootNodeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
-
/**
|
|
89
|
-
* serializeAws_json1_1TagResourceCommand
|
|
90
|
-
*/
|
|
91
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
-
/**
|
|
93
|
-
* serializeAws_json1_1UntagResourceCommand
|
|
94
|
-
*/
|
|
95
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
-
/**
|
|
97
|
-
* serializeAws_json1_1UpdateClusterCommand
|
|
98
|
-
*/
|
|
99
|
-
export declare const se_UpdateClusterCommand: (input: UpdateClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
-
/**
|
|
101
|
-
* serializeAws_json1_1UpdateParameterGroupCommand
|
|
102
|
-
*/
|
|
103
|
-
export declare const se_UpdateParameterGroupCommand: (input: UpdateParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
104
|
-
/**
|
|
105
|
-
* serializeAws_json1_1UpdateSubnetGroupCommand
|
|
106
|
-
*/
|
|
107
|
-
export declare const se_UpdateSubnetGroupCommand: (input: UpdateSubnetGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
108
|
-
/**
|
|
109
|
-
* deserializeAws_json1_1CreateClusterCommand
|
|
110
|
-
*/
|
|
111
|
-
export declare const de_CreateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateClusterCommandOutput>;
|
|
112
|
-
/**
|
|
113
|
-
* deserializeAws_json1_1CreateParameterGroupCommand
|
|
114
|
-
*/
|
|
115
|
-
export declare const de_CreateParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateParameterGroupCommandOutput>;
|
|
116
|
-
/**
|
|
117
|
-
* deserializeAws_json1_1CreateSubnetGroupCommand
|
|
118
|
-
*/
|
|
119
|
-
export declare const de_CreateSubnetGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSubnetGroupCommandOutput>;
|
|
120
|
-
/**
|
|
121
|
-
* deserializeAws_json1_1DecreaseReplicationFactorCommand
|
|
122
|
-
*/
|
|
123
|
-
export declare const de_DecreaseReplicationFactorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DecreaseReplicationFactorCommandOutput>;
|
|
124
|
-
/**
|
|
125
|
-
* deserializeAws_json1_1DeleteClusterCommand
|
|
126
|
-
*/
|
|
127
|
-
export declare const de_DeleteClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteClusterCommandOutput>;
|
|
128
|
-
/**
|
|
129
|
-
* deserializeAws_json1_1DeleteParameterGroupCommand
|
|
130
|
-
*/
|
|
131
|
-
export declare const de_DeleteParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteParameterGroupCommandOutput>;
|
|
132
|
-
/**
|
|
133
|
-
* deserializeAws_json1_1DeleteSubnetGroupCommand
|
|
134
|
-
*/
|
|
135
|
-
export declare const de_DeleteSubnetGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSubnetGroupCommandOutput>;
|
|
136
|
-
/**
|
|
137
|
-
* deserializeAws_json1_1DescribeClustersCommand
|
|
138
|
-
*/
|
|
139
|
-
export declare const de_DescribeClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeClustersCommandOutput>;
|
|
140
|
-
/**
|
|
141
|
-
* deserializeAws_json1_1DescribeDefaultParametersCommand
|
|
142
|
-
*/
|
|
143
|
-
export declare const de_DescribeDefaultParametersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDefaultParametersCommandOutput>;
|
|
144
|
-
/**
|
|
145
|
-
* deserializeAws_json1_1DescribeEventsCommand
|
|
146
|
-
*/
|
|
147
|
-
export declare const de_DescribeEventsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeEventsCommandOutput>;
|
|
148
|
-
/**
|
|
149
|
-
* deserializeAws_json1_1DescribeParameterGroupsCommand
|
|
150
|
-
*/
|
|
151
|
-
export declare const de_DescribeParameterGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeParameterGroupsCommandOutput>;
|
|
152
|
-
/**
|
|
153
|
-
* deserializeAws_json1_1DescribeParametersCommand
|
|
154
|
-
*/
|
|
155
|
-
export declare const de_DescribeParametersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeParametersCommandOutput>;
|
|
156
|
-
/**
|
|
157
|
-
* deserializeAws_json1_1DescribeSubnetGroupsCommand
|
|
158
|
-
*/
|
|
159
|
-
export declare const de_DescribeSubnetGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSubnetGroupsCommandOutput>;
|
|
160
|
-
/**
|
|
161
|
-
* deserializeAws_json1_1IncreaseReplicationFactorCommand
|
|
162
|
-
*/
|
|
163
|
-
export declare const de_IncreaseReplicationFactorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<IncreaseReplicationFactorCommandOutput>;
|
|
164
|
-
/**
|
|
165
|
-
* deserializeAws_json1_1ListTagsCommand
|
|
166
|
-
*/
|
|
167
|
-
export declare const de_ListTagsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsCommandOutput>;
|
|
168
|
-
/**
|
|
169
|
-
* deserializeAws_json1_1RebootNodeCommand
|
|
170
|
-
*/
|
|
171
|
-
export declare const de_RebootNodeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RebootNodeCommandOutput>;
|
|
172
|
-
/**
|
|
173
|
-
* deserializeAws_json1_1TagResourceCommand
|
|
174
|
-
*/
|
|
175
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
176
|
-
/**
|
|
177
|
-
* deserializeAws_json1_1UntagResourceCommand
|
|
178
|
-
*/
|
|
179
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
180
|
-
/**
|
|
181
|
-
* deserializeAws_json1_1UpdateClusterCommand
|
|
182
|
-
*/
|
|
183
|
-
export declare const de_UpdateClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateClusterCommandOutput>;
|
|
184
|
-
/**
|
|
185
|
-
* deserializeAws_json1_1UpdateParameterGroupCommand
|
|
186
|
-
*/
|
|
187
|
-
export declare const de_UpdateParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateParameterGroupCommandOutput>;
|
|
188
|
-
/**
|
|
189
|
-
* deserializeAws_json1_1UpdateSubnetGroupCommand
|
|
190
|
-
*/
|
|
191
|
-
export declare const de_UpdateSubnetGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSubnetGroupCommandOutput>;
|
|
@@ -1,257 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateClusterCommandInput,
|
|
8
|
-
CreateClusterCommandOutput,
|
|
9
|
-
} from "../commands/CreateClusterCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateParameterGroupCommandInput,
|
|
12
|
-
CreateParameterGroupCommandOutput,
|
|
13
|
-
} from "../commands/CreateParameterGroupCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateSubnetGroupCommandInput,
|
|
16
|
-
CreateSubnetGroupCommandOutput,
|
|
17
|
-
} from "../commands/CreateSubnetGroupCommand";
|
|
18
|
-
import {
|
|
19
|
-
DecreaseReplicationFactorCommandInput,
|
|
20
|
-
DecreaseReplicationFactorCommandOutput,
|
|
21
|
-
} from "../commands/DecreaseReplicationFactorCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteClusterCommandInput,
|
|
24
|
-
DeleteClusterCommandOutput,
|
|
25
|
-
} from "../commands/DeleteClusterCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteParameterGroupCommandInput,
|
|
28
|
-
DeleteParameterGroupCommandOutput,
|
|
29
|
-
} from "../commands/DeleteParameterGroupCommand";
|
|
30
|
-
import {
|
|
31
|
-
DeleteSubnetGroupCommandInput,
|
|
32
|
-
DeleteSubnetGroupCommandOutput,
|
|
33
|
-
} from "../commands/DeleteSubnetGroupCommand";
|
|
34
|
-
import {
|
|
35
|
-
DescribeClustersCommandInput,
|
|
36
|
-
DescribeClustersCommandOutput,
|
|
37
|
-
} from "../commands/DescribeClustersCommand";
|
|
38
|
-
import {
|
|
39
|
-
DescribeDefaultParametersCommandInput,
|
|
40
|
-
DescribeDefaultParametersCommandOutput,
|
|
41
|
-
} from "../commands/DescribeDefaultParametersCommand";
|
|
42
|
-
import {
|
|
43
|
-
DescribeEventsCommandInput,
|
|
44
|
-
DescribeEventsCommandOutput,
|
|
45
|
-
} from "../commands/DescribeEventsCommand";
|
|
46
|
-
import {
|
|
47
|
-
DescribeParameterGroupsCommandInput,
|
|
48
|
-
DescribeParameterGroupsCommandOutput,
|
|
49
|
-
} from "../commands/DescribeParameterGroupsCommand";
|
|
50
|
-
import {
|
|
51
|
-
DescribeParametersCommandInput,
|
|
52
|
-
DescribeParametersCommandOutput,
|
|
53
|
-
} from "../commands/DescribeParametersCommand";
|
|
54
|
-
import {
|
|
55
|
-
DescribeSubnetGroupsCommandInput,
|
|
56
|
-
DescribeSubnetGroupsCommandOutput,
|
|
57
|
-
} from "../commands/DescribeSubnetGroupsCommand";
|
|
58
|
-
import {
|
|
59
|
-
IncreaseReplicationFactorCommandInput,
|
|
60
|
-
IncreaseReplicationFactorCommandOutput,
|
|
61
|
-
} from "../commands/IncreaseReplicationFactorCommand";
|
|
62
|
-
import {
|
|
63
|
-
ListTagsCommandInput,
|
|
64
|
-
ListTagsCommandOutput,
|
|
65
|
-
} from "../commands/ListTagsCommand";
|
|
66
|
-
import {
|
|
67
|
-
RebootNodeCommandInput,
|
|
68
|
-
RebootNodeCommandOutput,
|
|
69
|
-
} from "../commands/RebootNodeCommand";
|
|
70
|
-
import {
|
|
71
|
-
TagResourceCommandInput,
|
|
72
|
-
TagResourceCommandOutput,
|
|
73
|
-
} from "../commands/TagResourceCommand";
|
|
74
|
-
import {
|
|
75
|
-
UntagResourceCommandInput,
|
|
76
|
-
UntagResourceCommandOutput,
|
|
77
|
-
} from "../commands/UntagResourceCommand";
|
|
78
|
-
import {
|
|
79
|
-
UpdateClusterCommandInput,
|
|
80
|
-
UpdateClusterCommandOutput,
|
|
81
|
-
} from "../commands/UpdateClusterCommand";
|
|
82
|
-
import {
|
|
83
|
-
UpdateParameterGroupCommandInput,
|
|
84
|
-
UpdateParameterGroupCommandOutput,
|
|
85
|
-
} from "../commands/UpdateParameterGroupCommand";
|
|
86
|
-
import {
|
|
87
|
-
UpdateSubnetGroupCommandInput,
|
|
88
|
-
UpdateSubnetGroupCommandOutput,
|
|
89
|
-
} from "../commands/UpdateSubnetGroupCommand";
|
|
90
|
-
export declare const se_CreateClusterCommand: (
|
|
91
|
-
input: CreateClusterCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_CreateParameterGroupCommand: (
|
|
95
|
-
input: CreateParameterGroupCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_CreateSubnetGroupCommand: (
|
|
99
|
-
input: CreateSubnetGroupCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_DecreaseReplicationFactorCommand: (
|
|
103
|
-
input: DecreaseReplicationFactorCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_DeleteClusterCommand: (
|
|
107
|
-
input: DeleteClusterCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_DeleteParameterGroupCommand: (
|
|
111
|
-
input: DeleteParameterGroupCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_DeleteSubnetGroupCommand: (
|
|
115
|
-
input: DeleteSubnetGroupCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_DescribeClustersCommand: (
|
|
119
|
-
input: DescribeClustersCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_DescribeDefaultParametersCommand: (
|
|
123
|
-
input: DescribeDefaultParametersCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_DescribeEventsCommand: (
|
|
127
|
-
input: DescribeEventsCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_DescribeParameterGroupsCommand: (
|
|
131
|
-
input: DescribeParameterGroupsCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_DescribeParametersCommand: (
|
|
135
|
-
input: DescribeParametersCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_DescribeSubnetGroupsCommand: (
|
|
139
|
-
input: DescribeSubnetGroupsCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_IncreaseReplicationFactorCommand: (
|
|
143
|
-
input: IncreaseReplicationFactorCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_ListTagsCommand: (
|
|
147
|
-
input: ListTagsCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_RebootNodeCommand: (
|
|
151
|
-
input: RebootNodeCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_TagResourceCommand: (
|
|
155
|
-
input: TagResourceCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const se_UntagResourceCommand: (
|
|
159
|
-
input: UntagResourceCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_UpdateClusterCommand: (
|
|
163
|
-
input: UpdateClusterCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_UpdateParameterGroupCommand: (
|
|
167
|
-
input: UpdateParameterGroupCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_UpdateSubnetGroupCommand: (
|
|
171
|
-
input: UpdateSubnetGroupCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const de_CreateClusterCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<CreateClusterCommandOutput>;
|
|
178
|
-
export declare const de_CreateParameterGroupCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<CreateParameterGroupCommandOutput>;
|
|
182
|
-
export declare const de_CreateSubnetGroupCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<CreateSubnetGroupCommandOutput>;
|
|
186
|
-
export declare const de_DecreaseReplicationFactorCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<DecreaseReplicationFactorCommandOutput>;
|
|
190
|
-
export declare const de_DeleteClusterCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<DeleteClusterCommandOutput>;
|
|
194
|
-
export declare const de_DeleteParameterGroupCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<DeleteParameterGroupCommandOutput>;
|
|
198
|
-
export declare const de_DeleteSubnetGroupCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<DeleteSubnetGroupCommandOutput>;
|
|
202
|
-
export declare const de_DescribeClustersCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<DescribeClustersCommandOutput>;
|
|
206
|
-
export declare const de_DescribeDefaultParametersCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<DescribeDefaultParametersCommandOutput>;
|
|
210
|
-
export declare const de_DescribeEventsCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<DescribeEventsCommandOutput>;
|
|
214
|
-
export declare const de_DescribeParameterGroupsCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<DescribeParameterGroupsCommandOutput>;
|
|
218
|
-
export declare const de_DescribeParametersCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<DescribeParametersCommandOutput>;
|
|
222
|
-
export declare const de_DescribeSubnetGroupsCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<DescribeSubnetGroupsCommandOutput>;
|
|
226
|
-
export declare const de_IncreaseReplicationFactorCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<IncreaseReplicationFactorCommandOutput>;
|
|
230
|
-
export declare const de_ListTagsCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<ListTagsCommandOutput>;
|
|
234
|
-
export declare const de_RebootNodeCommand: (
|
|
235
|
-
output: __HttpResponse,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<RebootNodeCommandOutput>;
|
|
238
|
-
export declare const de_TagResourceCommand: (
|
|
239
|
-
output: __HttpResponse,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<TagResourceCommandOutput>;
|
|
242
|
-
export declare const de_UntagResourceCommand: (
|
|
243
|
-
output: __HttpResponse,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
246
|
-
export declare const de_UpdateClusterCommand: (
|
|
247
|
-
output: __HttpResponse,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<UpdateClusterCommandOutput>;
|
|
250
|
-
export declare const de_UpdateParameterGroupCommand: (
|
|
251
|
-
output: __HttpResponse,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<UpdateParameterGroupCommandOutput>;
|
|
254
|
-
export declare const de_UpdateSubnetGroupCommand: (
|
|
255
|
-
output: __HttpResponse,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<UpdateSubnetGroupCommandOutput>;
|