@aws-sdk/client-dax 3.169.0 → 3.170.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 +8 -0
  2. package/dist-types/ts3.4/DAX.d.ts +382 -110
  3. package/dist-types/ts3.4/DAXClient.d.ts +254 -94
  4. package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateParameterGroupCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/CreateSubnetGroupCommand.d.ts +38 -17
  7. package/dist-types/ts3.4/commands/DecreaseReplicationFactorCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/DeleteClusterCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/DeleteParameterGroupCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/DeleteSubnetGroupCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/DescribeClustersCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DescribeDefaultParametersCommand.d.ts +41 -17
  13. package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +37 -17
  14. package/dist-types/ts3.4/commands/DescribeParameterGroupsCommand.d.ts +41 -17
  15. package/dist-types/ts3.4/commands/DescribeParametersCommand.d.ts +38 -17
  16. package/dist-types/ts3.4/commands/DescribeSubnetGroupsCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/IncreaseReplicationFactorCommand.d.ts +41 -17
  18. package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +34 -17
  19. package/dist-types/ts3.4/commands/RebootNodeCommand.d.ts +34 -17
  20. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  21. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/UpdateParameterGroupCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/UpdateSubnetGroupCommand.d.ts +38 -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 +8 -6
  29. package/dist-types/ts3.4/models/index.d.ts +1 -1
  30. package/dist-types/ts3.4/models/models_0.d.ts +888 -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 +66 -38
  33. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  34. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  35. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  36. package/package.json +34 -34
@@ -1,94 +1,254 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
10
- import { CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput } from "./commands/CreateParameterGroupCommand";
11
- import { CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput } from "./commands/CreateSubnetGroupCommand";
12
- import { DecreaseReplicationFactorCommandInput, DecreaseReplicationFactorCommandOutput } from "./commands/DecreaseReplicationFactorCommand";
13
- import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
14
- import { DeleteParameterGroupCommandInput, DeleteParameterGroupCommandOutput } from "./commands/DeleteParameterGroupCommand";
15
- import { DeleteSubnetGroupCommandInput, DeleteSubnetGroupCommandOutput } from "./commands/DeleteSubnetGroupCommand";
16
- import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
17
- import { DescribeDefaultParametersCommandInput, DescribeDefaultParametersCommandOutput } from "./commands/DescribeDefaultParametersCommand";
18
- import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "./commands/DescribeEventsCommand";
19
- import { DescribeParameterGroupsCommandInput, DescribeParameterGroupsCommandOutput } from "./commands/DescribeParameterGroupsCommand";
20
- import { DescribeParametersCommandInput, DescribeParametersCommandOutput } from "./commands/DescribeParametersCommand";
21
- import { DescribeSubnetGroupsCommandInput, DescribeSubnetGroupsCommandOutput } from "./commands/DescribeSubnetGroupsCommand";
22
- import { IncreaseReplicationFactorCommandInput, IncreaseReplicationFactorCommandOutput } from "./commands/IncreaseReplicationFactorCommand";
23
- import { ListTagsCommandInput, ListTagsCommandOutput } from "./commands/ListTagsCommand";
24
- import { RebootNodeCommandInput, RebootNodeCommandOutput } from "./commands/RebootNodeCommand";
25
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
26
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
27
- import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
28
- import { UpdateParameterGroupCommandInput, UpdateParameterGroupCommandOutput } from "./commands/UpdateParameterGroupCommand";
29
- import { UpdateSubnetGroupCommandInput, UpdateSubnetGroupCommandOutput } from "./commands/UpdateSubnetGroupCommand";
30
- export declare type ServiceInputTypes = CreateClusterCommandInput | CreateParameterGroupCommandInput | CreateSubnetGroupCommandInput | DecreaseReplicationFactorCommandInput | DeleteClusterCommandInput | DeleteParameterGroupCommandInput | DeleteSubnetGroupCommandInput | DescribeClustersCommandInput | DescribeDefaultParametersCommandInput | DescribeEventsCommandInput | DescribeParameterGroupsCommandInput | DescribeParametersCommandInput | DescribeSubnetGroupsCommandInput | IncreaseReplicationFactorCommandInput | ListTagsCommandInput | RebootNodeCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateClusterCommandInput | UpdateParameterGroupCommandInput | UpdateSubnetGroupCommandInput;
31
- export declare type ServiceOutputTypes = CreateClusterCommandOutput | CreateParameterGroupCommandOutput | CreateSubnetGroupCommandOutput | DecreaseReplicationFactorCommandOutput | DeleteClusterCommandOutput | DeleteParameterGroupCommandOutput | DeleteSubnetGroupCommandOutput | DescribeClustersCommandOutput | DescribeDefaultParametersCommandOutput | DescribeEventsCommandOutput | DescribeParameterGroupsCommandOutput | DescribeParametersCommandOutput | DescribeSubnetGroupsCommandOutput | IncreaseReplicationFactorCommandOutput | ListTagsCommandOutput | RebootNodeCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateClusterCommandOutput | UpdateParameterGroupCommandOutput | UpdateSubnetGroupCommandOutput;
32
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
33
-
34
- requestHandler?: __HttpHandler;
35
-
36
- sha256?: __HashConstructor;
37
-
38
- urlParser?: __UrlParser;
39
-
40
- bodyLengthChecker?: __BodyLengthCalculator;
41
-
42
- streamCollector?: __StreamCollector;
43
-
44
- base64Decoder?: __Decoder;
45
-
46
- base64Encoder?: __Encoder;
47
-
48
- utf8Decoder?: __Decoder;
49
-
50
- utf8Encoder?: __Encoder;
51
-
52
- runtime?: string;
53
-
54
- disableHostPrefix?: boolean;
55
-
56
- maxAttempts?: number | __Provider<number>;
57
-
58
- retryMode?: string | __Provider<string>;
59
-
60
- logger?: __Logger;
61
-
62
- useDualstackEndpoint?: boolean | __Provider<boolean>;
63
-
64
- useFipsEndpoint?: boolean | __Provider<boolean>;
65
-
66
- serviceId?: string;
67
-
68
- region?: string | __Provider<string>;
69
-
70
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
71
-
72
- regionInfoProvider?: RegionInfoProvider;
73
-
74
- defaultUserAgentProvider?: Provider<__UserAgent>;
75
-
76
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
77
- }
78
- declare type DAXClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
79
-
80
- export interface DAXClientConfig extends DAXClientConfigType {
81
- }
82
- declare type DAXClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
83
-
84
- export interface DAXClientResolvedConfig extends DAXClientResolvedConfigType {
85
- }
86
-
87
- export declare class DAXClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, DAXClientResolvedConfig> {
88
-
89
- readonly config: DAXClientResolvedConfig;
90
- constructor(configuration: DAXClientConfig);
91
-
92
- destroy(): void;
93
- }
94
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateClusterCommandInput,
47
+ CreateClusterCommandOutput,
48
+ } from "./commands/CreateClusterCommand";
49
+ import {
50
+ CreateParameterGroupCommandInput,
51
+ CreateParameterGroupCommandOutput,
52
+ } from "./commands/CreateParameterGroupCommand";
53
+ import {
54
+ CreateSubnetGroupCommandInput,
55
+ CreateSubnetGroupCommandOutput,
56
+ } from "./commands/CreateSubnetGroupCommand";
57
+ import {
58
+ DecreaseReplicationFactorCommandInput,
59
+ DecreaseReplicationFactorCommandOutput,
60
+ } from "./commands/DecreaseReplicationFactorCommand";
61
+ import {
62
+ DeleteClusterCommandInput,
63
+ DeleteClusterCommandOutput,
64
+ } from "./commands/DeleteClusterCommand";
65
+ import {
66
+ DeleteParameterGroupCommandInput,
67
+ DeleteParameterGroupCommandOutput,
68
+ } from "./commands/DeleteParameterGroupCommand";
69
+ import {
70
+ DeleteSubnetGroupCommandInput,
71
+ DeleteSubnetGroupCommandOutput,
72
+ } from "./commands/DeleteSubnetGroupCommand";
73
+ import {
74
+ DescribeClustersCommandInput,
75
+ DescribeClustersCommandOutput,
76
+ } from "./commands/DescribeClustersCommand";
77
+ import {
78
+ DescribeDefaultParametersCommandInput,
79
+ DescribeDefaultParametersCommandOutput,
80
+ } from "./commands/DescribeDefaultParametersCommand";
81
+ import {
82
+ DescribeEventsCommandInput,
83
+ DescribeEventsCommandOutput,
84
+ } from "./commands/DescribeEventsCommand";
85
+ import {
86
+ DescribeParameterGroupsCommandInput,
87
+ DescribeParameterGroupsCommandOutput,
88
+ } from "./commands/DescribeParameterGroupsCommand";
89
+ import {
90
+ DescribeParametersCommandInput,
91
+ DescribeParametersCommandOutput,
92
+ } from "./commands/DescribeParametersCommand";
93
+ import {
94
+ DescribeSubnetGroupsCommandInput,
95
+ DescribeSubnetGroupsCommandOutput,
96
+ } from "./commands/DescribeSubnetGroupsCommand";
97
+ import {
98
+ IncreaseReplicationFactorCommandInput,
99
+ IncreaseReplicationFactorCommandOutput,
100
+ } from "./commands/IncreaseReplicationFactorCommand";
101
+ import {
102
+ ListTagsCommandInput,
103
+ ListTagsCommandOutput,
104
+ } from "./commands/ListTagsCommand";
105
+ import {
106
+ RebootNodeCommandInput,
107
+ RebootNodeCommandOutput,
108
+ } from "./commands/RebootNodeCommand";
109
+ import {
110
+ TagResourceCommandInput,
111
+ TagResourceCommandOutput,
112
+ } from "./commands/TagResourceCommand";
113
+ import {
114
+ UntagResourceCommandInput,
115
+ UntagResourceCommandOutput,
116
+ } from "./commands/UntagResourceCommand";
117
+ import {
118
+ UpdateClusterCommandInput,
119
+ UpdateClusterCommandOutput,
120
+ } from "./commands/UpdateClusterCommand";
121
+ import {
122
+ UpdateParameterGroupCommandInput,
123
+ UpdateParameterGroupCommandOutput,
124
+ } from "./commands/UpdateParameterGroupCommand";
125
+ import {
126
+ UpdateSubnetGroupCommandInput,
127
+ UpdateSubnetGroupCommandOutput,
128
+ } from "./commands/UpdateSubnetGroupCommand";
129
+ export declare type ServiceInputTypes =
130
+ | CreateClusterCommandInput
131
+ | CreateParameterGroupCommandInput
132
+ | CreateSubnetGroupCommandInput
133
+ | DecreaseReplicationFactorCommandInput
134
+ | DeleteClusterCommandInput
135
+ | DeleteParameterGroupCommandInput
136
+ | DeleteSubnetGroupCommandInput
137
+ | DescribeClustersCommandInput
138
+ | DescribeDefaultParametersCommandInput
139
+ | DescribeEventsCommandInput
140
+ | DescribeParameterGroupsCommandInput
141
+ | DescribeParametersCommandInput
142
+ | DescribeSubnetGroupsCommandInput
143
+ | IncreaseReplicationFactorCommandInput
144
+ | ListTagsCommandInput
145
+ | RebootNodeCommandInput
146
+ | TagResourceCommandInput
147
+ | UntagResourceCommandInput
148
+ | UpdateClusterCommandInput
149
+ | UpdateParameterGroupCommandInput
150
+ | UpdateSubnetGroupCommandInput;
151
+ export declare type ServiceOutputTypes =
152
+ | CreateClusterCommandOutput
153
+ | CreateParameterGroupCommandOutput
154
+ | CreateSubnetGroupCommandOutput
155
+ | DecreaseReplicationFactorCommandOutput
156
+ | DeleteClusterCommandOutput
157
+ | DeleteParameterGroupCommandOutput
158
+ | DeleteSubnetGroupCommandOutput
159
+ | DescribeClustersCommandOutput
160
+ | DescribeDefaultParametersCommandOutput
161
+ | DescribeEventsCommandOutput
162
+ | DescribeParameterGroupsCommandOutput
163
+ | DescribeParametersCommandOutput
164
+ | DescribeSubnetGroupsCommandOutput
165
+ | IncreaseReplicationFactorCommandOutput
166
+ | ListTagsCommandOutput
167
+ | RebootNodeCommandOutput
168
+ | TagResourceCommandOutput
169
+ | UntagResourceCommandOutput
170
+ | UpdateClusterCommandOutput
171
+ | UpdateParameterGroupCommandOutput
172
+ | UpdateSubnetGroupCommandOutput;
173
+ export interface ClientDefaults
174
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
175
+ requestHandler?: __HttpHandler;
176
+
177
+ sha256?: __HashConstructor;
178
+
179
+ urlParser?: __UrlParser;
180
+
181
+ bodyLengthChecker?: __BodyLengthCalculator;
182
+
183
+ streamCollector?: __StreamCollector;
184
+
185
+ base64Decoder?: __Decoder;
186
+
187
+ base64Encoder?: __Encoder;
188
+
189
+ utf8Decoder?: __Decoder;
190
+
191
+ utf8Encoder?: __Encoder;
192
+
193
+ runtime?: string;
194
+
195
+ disableHostPrefix?: boolean;
196
+
197
+ maxAttempts?: number | __Provider<number>;
198
+
199
+ retryMode?: string | __Provider<string>;
200
+
201
+ logger?: __Logger;
202
+
203
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
204
+
205
+ useFipsEndpoint?: boolean | __Provider<boolean>;
206
+
207
+ serviceId?: string;
208
+
209
+ region?: string | __Provider<string>;
210
+
211
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
212
+
213
+ regionInfoProvider?: RegionInfoProvider;
214
+
215
+ defaultUserAgentProvider?: Provider<__UserAgent>;
216
+
217
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
218
+ }
219
+ declare type DAXClientConfigType = Partial<
220
+ __SmithyConfiguration<__HttpHandlerOptions>
221
+ > &
222
+ ClientDefaults &
223
+ RegionInputConfig &
224
+ EndpointsInputConfig &
225
+ RetryInputConfig &
226
+ HostHeaderInputConfig &
227
+ AwsAuthInputConfig &
228
+ UserAgentInputConfig;
229
+
230
+ export interface DAXClientConfig extends DAXClientConfigType {}
231
+ declare type DAXClientResolvedConfigType =
232
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
233
+ Required<ClientDefaults> &
234
+ RegionResolvedConfig &
235
+ EndpointsResolvedConfig &
236
+ RetryResolvedConfig &
237
+ HostHeaderResolvedConfig &
238
+ AwsAuthResolvedConfig &
239
+ UserAgentResolvedConfig;
240
+
241
+ export interface DAXClientResolvedConfig extends DAXClientResolvedConfigType {}
242
+
243
+ export declare class DAXClient extends __Client<
244
+ __HttpHandlerOptions,
245
+ ServiceInputTypes,
246
+ ServiceOutputTypes,
247
+ DAXClientResolvedConfig
248
+ > {
249
+ readonly config: DAXClientResolvedConfig;
250
+ constructor(configuration: DAXClientConfig);
251
+
252
+ destroy(): void;
253
+ }
254
+ export {};
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
4
- import { CreateClusterRequest, CreateClusterResponse } from "../models/models_0";
5
- export interface CreateClusterCommandInput extends CreateClusterRequest {
6
- }
7
- export interface CreateClusterCommandOutput extends CreateClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateClusterCommand extends $Command<CreateClusterCommandInput, CreateClusterCommandOutput, DAXClientResolvedConfig> {
11
- readonly input: CreateClusterCommandInput;
12
- constructor(input: CreateClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ CreateClusterRequest,
15
+ CreateClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateClusterCommandInput extends CreateClusterRequest {}
18
+ export interface CreateClusterCommandOutput
19
+ extends CreateClusterResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class CreateClusterCommand extends $Command<
23
+ CreateClusterCommandInput,
24
+ CreateClusterCommandOutput,
25
+ DAXClientResolvedConfig
26
+ > {
27
+ readonly input: CreateClusterCommandInput;
28
+ constructor(input: CreateClusterCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: DAXClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateClusterCommandInput, CreateClusterCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
4
- import { CreateParameterGroupRequest, CreateParameterGroupResponse } from "../models/models_0";
5
- export interface CreateParameterGroupCommandInput extends CreateParameterGroupRequest {
6
- }
7
- export interface CreateParameterGroupCommandOutput extends CreateParameterGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateParameterGroupCommand extends $Command<CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput, DAXClientResolvedConfig> {
11
- readonly input: CreateParameterGroupCommandInput;
12
- constructor(input: CreateParameterGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateParameterGroupCommandInput, CreateParameterGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ CreateParameterGroupRequest,
15
+ CreateParameterGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateParameterGroupCommandInput
18
+ extends CreateParameterGroupRequest {}
19
+ export interface CreateParameterGroupCommandOutput
20
+ extends CreateParameterGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateParameterGroupCommand extends $Command<
24
+ CreateParameterGroupCommandInput,
25
+ CreateParameterGroupCommandOutput,
26
+ DAXClientResolvedConfig
27
+ > {
28
+ readonly input: CreateParameterGroupCommandInput;
29
+ constructor(input: CreateParameterGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DAXClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ CreateParameterGroupCommandInput,
37
+ CreateParameterGroupCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
4
- import { CreateSubnetGroupRequest, CreateSubnetGroupResponse } from "../models/models_0";
5
- export interface CreateSubnetGroupCommandInput extends CreateSubnetGroupRequest {
6
- }
7
- export interface CreateSubnetGroupCommandOutput extends CreateSubnetGroupResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateSubnetGroupCommand extends $Command<CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput, DAXClientResolvedConfig> {
11
- readonly input: CreateSubnetGroupCommandInput;
12
- constructor(input: CreateSubnetGroupCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ CreateSubnetGroupRequest,
15
+ CreateSubnetGroupResponse,
16
+ } from "../models/models_0";
17
+ export interface CreateSubnetGroupCommandInput
18
+ extends CreateSubnetGroupRequest {}
19
+ export interface CreateSubnetGroupCommandOutput
20
+ extends CreateSubnetGroupResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class CreateSubnetGroupCommand extends $Command<
24
+ CreateSubnetGroupCommandInput,
25
+ CreateSubnetGroupCommandOutput,
26
+ DAXClientResolvedConfig
27
+ > {
28
+ readonly input: CreateSubnetGroupCommandInput;
29
+ constructor(input: CreateSubnetGroupCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DAXClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<CreateSubnetGroupCommandInput, CreateSubnetGroupCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
4
- import { DecreaseReplicationFactorRequest, DecreaseReplicationFactorResponse } from "../models/models_0";
5
- export interface DecreaseReplicationFactorCommandInput extends DecreaseReplicationFactorRequest {
6
- }
7
- export interface DecreaseReplicationFactorCommandOutput extends DecreaseReplicationFactorResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DecreaseReplicationFactorCommand extends $Command<DecreaseReplicationFactorCommandInput, DecreaseReplicationFactorCommandOutput, DAXClientResolvedConfig> {
11
- readonly input: DecreaseReplicationFactorCommandInput;
12
- constructor(input: DecreaseReplicationFactorCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DecreaseReplicationFactorCommandInput, DecreaseReplicationFactorCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DecreaseReplicationFactorRequest,
15
+ DecreaseReplicationFactorResponse,
16
+ } from "../models/models_0";
17
+ export interface DecreaseReplicationFactorCommandInput
18
+ extends DecreaseReplicationFactorRequest {}
19
+ export interface DecreaseReplicationFactorCommandOutput
20
+ extends DecreaseReplicationFactorResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DecreaseReplicationFactorCommand extends $Command<
24
+ DecreaseReplicationFactorCommandInput,
25
+ DecreaseReplicationFactorCommandOutput,
26
+ DAXClientResolvedConfig
27
+ > {
28
+ readonly input: DecreaseReplicationFactorCommandInput;
29
+ constructor(input: DecreaseReplicationFactorCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: DAXClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DecreaseReplicationFactorCommandInput,
37
+ DecreaseReplicationFactorCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient";
4
- import { DeleteClusterRequest, DeleteClusterResponse } from "../models/models_0";
5
- export interface DeleteClusterCommandInput extends DeleteClusterRequest {
6
- }
7
- export interface DeleteClusterCommandOutput extends DeleteClusterResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteClusterCommand extends $Command<DeleteClusterCommandInput, DeleteClusterCommandOutput, DAXClientResolvedConfig> {
11
- readonly input: DeleteClusterCommandInput;
12
- constructor(input: DeleteClusterCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: DAXClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
15
- private serialize;
16
- private deserialize;
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
+ DeleteClusterRequest,
15
+ DeleteClusterResponse,
16
+ } from "../models/models_0";
17
+ export interface DeleteClusterCommandInput extends DeleteClusterRequest {}
18
+ export interface DeleteClusterCommandOutput
19
+ extends DeleteClusterResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DeleteClusterCommand extends $Command<
23
+ DeleteClusterCommandInput,
24
+ DeleteClusterCommandOutput,
25
+ DAXClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteClusterCommandInput;
28
+ constructor(input: DeleteClusterCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: DAXClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteClusterCommandInput, DeleteClusterCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }