@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.
Files changed (36) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/DAX.d.ts +361 -110
  3. package/dist-types/ts3.4/DAXClient.d.ts +229 -94
  4. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +39 -17
  6. package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +36 -17
  7. package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +35 -17
  9. package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +36 -17
  11. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +39 -17
  13. package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +35 -17
  14. package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +36 -17
  16. package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +39 -17
  17. package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +39 -17
  18. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +32 -17
  19. package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +36 -17
  25. package/dist-types/ts3.4/commands/index.d.ts +21 -21
  26. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  27. package/dist-types/ts3.4/index.d.ts +5 -5
  28. package/dist-types/ts3.4/models/DAXServiceException.d.ts +7 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +655 -774
  31. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +257 -65
  32. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  36. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-dax
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-dax
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-dax
@@ -1,110 +1,361 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
3
- import { CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput } from "./commands/CreateParameterGroupCommand";
4
- import { CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput } from "./commands/CreateSubnetGroupCommand";
5
- import { DecreaseReplicationFactorCommandInput, DecreaseReplicationFactorCommandOutput } from "./commands/DecreaseReplicationFactorCommand";
6
- import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
7
- import { DeleteParameterGroupCommandInput, DeleteParameterGroupCommandOutput } from "./commands/DeleteParameterGroupCommand";
8
- import { DeleteSubnetGroupCommandInput, DeleteSubnetGroupCommandOutput } from "./commands/DeleteSubnetGroupCommand";
9
- import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
10
- import { DescribeDefaultParametersCommandInput, DescribeDefaultParametersCommandOutput } from "./commands/DescribeDefaultParametersCommand";
11
- import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "./commands/DescribeEventsCommand";
12
- import { DescribeParameterGroupsCommandInput, DescribeParameterGroupsCommandOutput } from "./commands/DescribeParameterGroupsCommand";
13
- import { DescribeParametersCommandInput, DescribeParametersCommandOutput } from "./commands/DescribeParametersCommand";
14
- import { DescribeSubnetGroupsCommandInput, DescribeSubnetGroupsCommandOutput } from "./commands/DescribeSubnetGroupsCommand";
15
- import { IncreaseReplicationFactorCommandInput, IncreaseReplicationFactorCommandOutput } from "./commands/IncreaseReplicationFactorCommand";
16
- import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
17
- import { RebootNodeCommandInput, RebootNodeCommandOutput } from "./commands/RebootNodeCommand";
18
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
19
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
20
- import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
21
- import { UpdateParameterGroupCommandInput, UpdateParameterGroupCommandOutput } from "./commands/UpdateParameterGroupCommand";
22
- import { UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput } from "./commands/UpdateSubnetGroupCommand";
23
- import { DAXClient } from "./DAXClient";
24
-
25
- export declare class DAX extends DAXClient {
26
-
27
- createCluster(args: CreateClusterCommandInput, options?: __HttpHandlerOptions): Promise<CreateClusterCommandOutput>;
28
- createCluster(args: CreateClusterCommandInput, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
29
- createCluster(args: CreateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateClusterCommandOutput) => void): void;
30
-
31
- createParameterGroup(args: CreateParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateParameterGroupCommandOutput>;
32
- createParameterGroup(args: CreateParameterGroupCommandInput, cb: (err: any, data?: CreateParameterGroupCommandOutput) => void): void;
33
- createParameterGroup(args: CreateParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateParameterGroupCommandOutput) => void): void;
34
-
35
- createSubnetGroup(args: CreateSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateSubnetGroupCommandOutput>;
36
- createSubnetGroup(args: CreateSubnetGroupCommandInput, cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void): void;
37
- createSubnetGroup(args: CreateSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void): void;
38
-
39
- decreaseReplicationFactor(args: DecreaseReplicationFactorCommandInput, options?: __HttpHandlerOptions): Promise<DecreaseReplicationFactorCommandOutput>;
40
- decreaseReplicationFactor(args: DecreaseReplicationFactorCommandInput, cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void): void;
41
- decreaseReplicationFactor(args: DecreaseReplicationFactorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void): void;
42
-
43
- deleteCluster(args: DeleteClusterCommandInput, options?: __HttpHandlerOptions): Promise<DeleteClusterCommandOutput>;
44
- deleteCluster(args: DeleteClusterCommandInput, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
45
- deleteCluster(args: DeleteClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteClusterCommandOutput) => void): void;
46
-
47
- deleteParameterGroup(args: DeleteParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteParameterGroupCommandOutput>;
48
- deleteParameterGroup(args: DeleteParameterGroupCommandInput, cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void): void;
49
- deleteParameterGroup(args: DeleteParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void): void;
50
-
51
- deleteSubnetGroup(args: DeleteSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSubnetGroupCommandOutput>;
52
- deleteSubnetGroup(args: DeleteSubnetGroupCommandInput, cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void): void;
53
- deleteSubnetGroup(args: DeleteSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void): void;
54
-
55
- describeClusters(args: DescribeClustersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeClustersCommandOutput>;
56
- describeClusters(args: DescribeClustersCommandInput, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
57
- describeClusters(args: DescribeClustersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeClustersCommandOutput) => void): void;
58
-
59
- describeDefaultParameters(args: DescribeDefaultParametersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDefaultParametersCommandOutput>;
60
- describeDefaultParameters(args: DescribeDefaultParametersCommandInput, cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void): void;
61
- describeDefaultParameters(args: DescribeDefaultParametersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void): void;
62
-
63
- describeEvents(args: DescribeEventsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeEventsCommandOutput>;
64
- describeEvents(args: DescribeEventsCommandInput, cb: (err: any, data?: DescribeEventsCommandOutput) => void): void;
65
- describeEvents(args: DescribeEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeEventsCommandOutput) => void): void;
66
-
67
- describeParameterGroups(args: DescribeParameterGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeParameterGroupsCommandOutput>;
68
- describeParameterGroups(args: DescribeParameterGroupsCommandInput, cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void): void;
69
- describeParameterGroups(args: DescribeParameterGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void): void;
70
-
71
- describeParameters(args: DescribeParametersCommandInput, options?: __HttpHandlerOptions): Promise<DescribeParametersCommandOutput>;
72
- describeParameters(args: DescribeParametersCommandInput, cb: (err: any, data?: DescribeParametersCommandOutput) => void): void;
73
- describeParameters(args: DescribeParametersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeParametersCommandOutput) => void): void;
74
-
75
- describeSubnetGroups(args: DescribeSubnetGroupsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSubnetGroupsCommandOutput>;
76
- describeSubnetGroups(args: DescribeSubnetGroupsCommandInput, cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void): void;
77
- describeSubnetGroups(args: DescribeSubnetGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void): void;
78
-
79
- increaseReplicationFactor(args: IncreaseReplicationFactorCommandInput, options?: __HttpHandlerOptions): Promise<IncreaseReplicationFactorCommandOutput>;
80
- increaseReplicationFactor(args: IncreaseReplicationFactorCommandInput, cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void): void;
81
- increaseReplicationFactor(args: IncreaseReplicationFactorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void): void;
82
-
83
- listTags(args: ListTagsCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsCommandOutput>;
84
- listTags(args: ListTagsCommandInput, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
85
- listTags(args: ListTagsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsCommandOutput) => void): void;
86
-
87
- rebootNode(args: RebootNodeCommandInput, options?: __HttpHandlerOptions): Promise<RebootNodeCommandOutput>;
88
- rebootNode(args: RebootNodeCommandInput, cb: (err: any, data?: RebootNodeCommandOutput) => void): void;
89
- rebootNode(args: RebootNodeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RebootNodeCommandOutput) => void): void;
90
-
91
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
92
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
93
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
94
-
95
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
96
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
97
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
98
-
99
- updateCluster(args: UpdateClusterCommandInput, options?: __HttpHandlerOptions): Promise<UpdateClusterCommandOutput>;
100
- updateCluster(args: UpdateClusterCommandInput, cb: (err: any, data?: UpdateClusterCommandOutput) => void): void;
101
- updateCluster(args: UpdateClusterCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateClusterCommandOutput) => void): void;
102
-
103
- updateParameterGroup(args: UpdateParameterGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateParameterGroupCommandOutput>;
104
- updateParameterGroup(args: UpdateParameterGroupCommandInput, cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void): void;
105
- updateParameterGroup(args: UpdateParameterGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void): void;
106
-
107
- updateSubnetGroup(args: UpdateSubnetGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSubnetGroupCommandOutput>;
108
- updateSubnetGroup(args: UpdateSubnetGroupCommandInput, cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void): void;
109
- updateSubnetGroup(args: UpdateSubnetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void): void;
110
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ CreateClusterCommandInput,
4
+ CreateClusterCommandOutput,
5
+ } from "./commands/CreateClusterCommand";
6
+ import {
7
+ CreateParameterGroupCommandInput,
8
+ CreateParameterGroupCommandOutput,
9
+ } from "./commands/CreateParameterGroupCommand";
10
+ import {
11
+ CreateSubnetGroupCommandInput,
12
+ CreateSubnetGroupCommandOutput,
13
+ } from "./commands/CreateSubnetGroupCommand";
14
+ import {
15
+ DecreaseReplicationFactorCommandInput,
16
+ DecreaseReplicationFactorCommandOutput,
17
+ } from "./commands/DecreaseReplicationFactorCommand";
18
+ import {
19
+ DeleteClusterCommandInput,
20
+ DeleteClusterCommandOutput,
21
+ } from "./commands/DeleteClusterCommand";
22
+ import {
23
+ DeleteParameterGroupCommandInput,
24
+ DeleteParameterGroupCommandOutput,
25
+ } from "./commands/DeleteParameterGroupCommand";
26
+ import {
27
+ DeleteSubnetGroupCommandInput,
28
+ DeleteSubnetGroupCommandOutput,
29
+ } from "./commands/DeleteSubnetGroupCommand";
30
+ import {
31
+ DescribeClustersCommandInput,
32
+ DescribeClustersCommandOutput,
33
+ } from "./commands/DescribeClustersCommand";
34
+ import {
35
+ DescribeDefaultParametersCommandInput,
36
+ DescribeDefaultParametersCommandOutput,
37
+ } from "./commands/DescribeDefaultParametersCommand";
38
+ import {
39
+ DescribeEventsCommandInput,
40
+ DescribeEventsCommandOutput,
41
+ } from "./commands/DescribeEventsCommand";
42
+ import {
43
+ DescribeParameterGroupsCommandInput,
44
+ DescribeParameterGroupsCommandOutput,
45
+ } from "./commands/DescribeParameterGroupsCommand";
46
+ import {
47
+ DescribeParametersCommandInput,
48
+ DescribeParametersCommandOutput,
49
+ } from "./commands/DescribeParametersCommand";
50
+ import {
51
+ DescribeSubnetGroupsCommandInput,
52
+ DescribeSubnetGroupsCommandOutput,
53
+ } from "./commands/DescribeSubnetGroupsCommand";
54
+ import {
55
+ IncreaseReplicationFactorCommandInput,
56
+ IncreaseReplicationFactorCommandOutput,
57
+ } from "./commands/IncreaseReplicationFactorCommand";
58
+ import {
59
+ ListTagsCommandInput,
60
+ ListTagsCommandOutput,
61
+ } from "./commands/ListTagsCommand";
62
+ import {
63
+ RebootNodeCommandInput,
64
+ RebootNodeCommandOutput,
65
+ } from "./commands/RebootNodeCommand";
66
+ import {
67
+ TagResourceCommandInput,
68
+ TagResourceCommandOutput,
69
+ } from "./commands/TagResourceCommand";
70
+ import {
71
+ UntagResourceCommandInput,
72
+ UntagResourceCommandOutput,
73
+ } from "./commands/UntagResourceCommand";
74
+ import {
75
+ UpdateClusterCommandInput,
76
+ UpdateClusterCommandOutput,
77
+ } from "./commands/UpdateClusterCommand";
78
+ import {
79
+ UpdateParameterGroupCommandInput,
80
+ UpdateParameterGroupCommandOutput,
81
+ } from "./commands/UpdateParameterGroupCommand";
82
+ import {
83
+ UpdateSubnetGroupCommandInput,
84
+ UpdateSubnetGroupCommandOutput,
85
+ } from "./commands/UpdateSubnetGroupCommand";
86
+ import { DAXClient } from "./DAXClient";
87
+ export declare class DAX extends DAXClient {
88
+ createCluster(
89
+ args: CreateClusterCommandInput,
90
+ options?: __HttpHandlerOptions
91
+ ): Promise<CreateClusterCommandOutput>;
92
+ createCluster(
93
+ args: CreateClusterCommandInput,
94
+ cb: (err: any, data?: CreateClusterCommandOutput) => void
95
+ ): void;
96
+ createCluster(
97
+ args: CreateClusterCommandInput,
98
+ options: __HttpHandlerOptions,
99
+ cb: (err: any, data?: CreateClusterCommandOutput) => void
100
+ ): void;
101
+ createParameterGroup(
102
+ args: CreateParameterGroupCommandInput,
103
+ options?: __HttpHandlerOptions
104
+ ): Promise<CreateParameterGroupCommandOutput>;
105
+ createParameterGroup(
106
+ args: CreateParameterGroupCommandInput,
107
+ cb: (err: any, data?: CreateParameterGroupCommandOutput) => void
108
+ ): void;
109
+ createParameterGroup(
110
+ args: CreateParameterGroupCommandInput,
111
+ options: __HttpHandlerOptions,
112
+ cb: (err: any, data?: CreateParameterGroupCommandOutput) => void
113
+ ): void;
114
+ createSubnetGroup(
115
+ args: CreateSubnetGroupCommandInput,
116
+ options?: __HttpHandlerOptions
117
+ ): Promise<CreateSubnetGroupCommandOutput>;
118
+ createSubnetGroup(
119
+ args: CreateSubnetGroupCommandInput,
120
+ cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void
121
+ ): void;
122
+ createSubnetGroup(
123
+ args: CreateSubnetGroupCommandInput,
124
+ options: __HttpHandlerOptions,
125
+ cb: (err: any, data?: CreateSubnetGroupCommandOutput) => void
126
+ ): void;
127
+ decreaseReplicationFactor(
128
+ args: DecreaseReplicationFactorCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<DecreaseReplicationFactorCommandOutput>;
131
+ decreaseReplicationFactor(
132
+ args: DecreaseReplicationFactorCommandInput,
133
+ cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void
134
+ ): void;
135
+ decreaseReplicationFactor(
136
+ args: DecreaseReplicationFactorCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: DecreaseReplicationFactorCommandOutput) => void
139
+ ): void;
140
+ deleteCluster(
141
+ args: DeleteClusterCommandInput,
142
+ options?: __HttpHandlerOptions
143
+ ): Promise<DeleteClusterCommandOutput>;
144
+ deleteCluster(
145
+ args: DeleteClusterCommandInput,
146
+ cb: (err: any, data?: DeleteClusterCommandOutput) => void
147
+ ): void;
148
+ deleteCluster(
149
+ args: DeleteClusterCommandInput,
150
+ options: __HttpHandlerOptions,
151
+ cb: (err: any, data?: DeleteClusterCommandOutput) => void
152
+ ): void;
153
+ deleteParameterGroup(
154
+ args: DeleteParameterGroupCommandInput,
155
+ options?: __HttpHandlerOptions
156
+ ): Promise<DeleteParameterGroupCommandOutput>;
157
+ deleteParameterGroup(
158
+ args: DeleteParameterGroupCommandInput,
159
+ cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void
160
+ ): void;
161
+ deleteParameterGroup(
162
+ args: DeleteParameterGroupCommandInput,
163
+ options: __HttpHandlerOptions,
164
+ cb: (err: any, data?: DeleteParameterGroupCommandOutput) => void
165
+ ): void;
166
+ deleteSubnetGroup(
167
+ args: DeleteSubnetGroupCommandInput,
168
+ options?: __HttpHandlerOptions
169
+ ): Promise<DeleteSubnetGroupCommandOutput>;
170
+ deleteSubnetGroup(
171
+ args: DeleteSubnetGroupCommandInput,
172
+ cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void
173
+ ): void;
174
+ deleteSubnetGroup(
175
+ args: DeleteSubnetGroupCommandInput,
176
+ options: __HttpHandlerOptions,
177
+ cb: (err: any, data?: DeleteSubnetGroupCommandOutput) => void
178
+ ): void;
179
+ describeClusters(
180
+ args: DescribeClustersCommandInput,
181
+ options?: __HttpHandlerOptions
182
+ ): Promise<DescribeClustersCommandOutput>;
183
+ describeClusters(
184
+ args: DescribeClustersCommandInput,
185
+ cb: (err: any, data?: DescribeClustersCommandOutput) => void
186
+ ): void;
187
+ describeClusters(
188
+ args: DescribeClustersCommandInput,
189
+ options: __HttpHandlerOptions,
190
+ cb: (err: any, data?: DescribeClustersCommandOutput) => void
191
+ ): void;
192
+ describeDefaultParameters(
193
+ args: DescribeDefaultParametersCommandInput,
194
+ options?: __HttpHandlerOptions
195
+ ): Promise<DescribeDefaultParametersCommandOutput>;
196
+ describeDefaultParameters(
197
+ args: DescribeDefaultParametersCommandInput,
198
+ cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void
199
+ ): void;
200
+ describeDefaultParameters(
201
+ args: DescribeDefaultParametersCommandInput,
202
+ options: __HttpHandlerOptions,
203
+ cb: (err: any, data?: DescribeDefaultParametersCommandOutput) => void
204
+ ): void;
205
+ describeEvents(
206
+ args: DescribeEventsCommandInput,
207
+ options?: __HttpHandlerOptions
208
+ ): Promise<DescribeEventsCommandOutput>;
209
+ describeEvents(
210
+ args: DescribeEventsCommandInput,
211
+ cb: (err: any, data?: DescribeEventsCommandOutput) => void
212
+ ): void;
213
+ describeEvents(
214
+ args: DescribeEventsCommandInput,
215
+ options: __HttpHandlerOptions,
216
+ cb: (err: any, data?: DescribeEventsCommandOutput) => void
217
+ ): void;
218
+ describeParameterGroups(
219
+ args: DescribeParameterGroupsCommandInput,
220
+ options?: __HttpHandlerOptions
221
+ ): Promise<DescribeParameterGroupsCommandOutput>;
222
+ describeParameterGroups(
223
+ args: DescribeParameterGroupsCommandInput,
224
+ cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void
225
+ ): void;
226
+ describeParameterGroups(
227
+ args: DescribeParameterGroupsCommandInput,
228
+ options: __HttpHandlerOptions,
229
+ cb: (err: any, data?: DescribeParameterGroupsCommandOutput) => void
230
+ ): void;
231
+ describeParameters(
232
+ args: DescribeParametersCommandInput,
233
+ options?: __HttpHandlerOptions
234
+ ): Promise<DescribeParametersCommandOutput>;
235
+ describeParameters(
236
+ args: DescribeParametersCommandInput,
237
+ cb: (err: any, data?: DescribeParametersCommandOutput) => void
238
+ ): void;
239
+ describeParameters(
240
+ args: DescribeParametersCommandInput,
241
+ options: __HttpHandlerOptions,
242
+ cb: (err: any, data?: DescribeParametersCommandOutput) => void
243
+ ): void;
244
+ describeSubnetGroups(
245
+ args: DescribeSubnetGroupsCommandInput,
246
+ options?: __HttpHandlerOptions
247
+ ): Promise<DescribeSubnetGroupsCommandOutput>;
248
+ describeSubnetGroups(
249
+ args: DescribeSubnetGroupsCommandInput,
250
+ cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void
251
+ ): void;
252
+ describeSubnetGroups(
253
+ args: DescribeSubnetGroupsCommandInput,
254
+ options: __HttpHandlerOptions,
255
+ cb: (err: any, data?: DescribeSubnetGroupsCommandOutput) => void
256
+ ): void;
257
+ increaseReplicationFactor(
258
+ args: IncreaseReplicationFactorCommandInput,
259
+ options?: __HttpHandlerOptions
260
+ ): Promise<IncreaseReplicationFactorCommandOutput>;
261
+ increaseReplicationFactor(
262
+ args: IncreaseReplicationFactorCommandInput,
263
+ cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void
264
+ ): void;
265
+ increaseReplicationFactor(
266
+ args: IncreaseReplicationFactorCommandInput,
267
+ options: __HttpHandlerOptions,
268
+ cb: (err: any, data?: IncreaseReplicationFactorCommandOutput) => void
269
+ ): void;
270
+ listTags(
271
+ args: ListTagsCommandInput,
272
+ options?: __HttpHandlerOptions
273
+ ): Promise<ListTagsCommandOutput>;
274
+ listTags(
275
+ args: ListTagsCommandInput,
276
+ cb: (err: any, data?: ListTagsCommandOutput) => void
277
+ ): void;
278
+ listTags(
279
+ args: ListTagsCommandInput,
280
+ options: __HttpHandlerOptions,
281
+ cb: (err: any, data?: ListTagsCommandOutput) => void
282
+ ): void;
283
+ rebootNode(
284
+ args: RebootNodeCommandInput,
285
+ options?: __HttpHandlerOptions
286
+ ): Promise<RebootNodeCommandOutput>;
287
+ rebootNode(
288
+ args: RebootNodeCommandInput,
289
+ cb: (err: any, data?: RebootNodeCommandOutput) => void
290
+ ): void;
291
+ rebootNode(
292
+ args: RebootNodeCommandInput,
293
+ options: __HttpHandlerOptions,
294
+ cb: (err: any, data?: RebootNodeCommandOutput) => void
295
+ ): void;
296
+ tagResource(
297
+ args: TagResourceCommandInput,
298
+ options?: __HttpHandlerOptions
299
+ ): Promise<TagResourceCommandOutput>;
300
+ tagResource(
301
+ args: TagResourceCommandInput,
302
+ cb: (err: any, data?: TagResourceCommandOutput) => void
303
+ ): void;
304
+ tagResource(
305
+ args: TagResourceCommandInput,
306
+ options: __HttpHandlerOptions,
307
+ cb: (err: any, data?: TagResourceCommandOutput) => void
308
+ ): void;
309
+ untagResource(
310
+ args: UntagResourceCommandInput,
311
+ options?: __HttpHandlerOptions
312
+ ): Promise<UntagResourceCommandOutput>;
313
+ untagResource(
314
+ args: UntagResourceCommandInput,
315
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
316
+ ): void;
317
+ untagResource(
318
+ args: UntagResourceCommandInput,
319
+ options: __HttpHandlerOptions,
320
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
321
+ ): void;
322
+ updateCluster(
323
+ args: UpdateClusterCommandInput,
324
+ options?: __HttpHandlerOptions
325
+ ): Promise<UpdateClusterCommandOutput>;
326
+ updateCluster(
327
+ args: UpdateClusterCommandInput,
328
+ cb: (err: any, data?: UpdateClusterCommandOutput) => void
329
+ ): void;
330
+ updateCluster(
331
+ args: UpdateClusterCommandInput,
332
+ options: __HttpHandlerOptions,
333
+ cb: (err: any, data?: UpdateClusterCommandOutput) => void
334
+ ): void;
335
+ updateParameterGroup(
336
+ args: UpdateParameterGroupCommandInput,
337
+ options?: __HttpHandlerOptions
338
+ ): Promise<UpdateParameterGroupCommandOutput>;
339
+ updateParameterGroup(
340
+ args: UpdateParameterGroupCommandInput,
341
+ cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void
342
+ ): void;
343
+ updateParameterGroup(
344
+ args: UpdateParameterGroupCommandInput,
345
+ options: __HttpHandlerOptions,
346
+ cb: (err: any, data?: UpdateParameterGroupCommandOutput) => void
347
+ ): void;
348
+ updateSubnetGroup(
349
+ args: UpdateSubnetGroupCommandInput,
350
+ options?: __HttpHandlerOptions
351
+ ): Promise<UpdateSubnetGroupCommandOutput>;
352
+ updateSubnetGroup(
353
+ args: UpdateSubnetGroupCommandInput,
354
+ cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void
355
+ ): void;
356
+ updateSubnetGroup(
357
+ args: UpdateSubnetGroupCommandInput,
358
+ options: __HttpHandlerOptions,
359
+ cb: (err: any, data?: UpdateSubnetGroupCommandOutput) => void
360
+ ): void;
361
+ }