@aws-sdk/client-timestream-influxdb 3.749.0 → 3.750.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 (60) hide show
  1. package/README.md +55 -7
  2. package/dist-cjs/TimestreamInfluxDB.js +12 -0
  3. package/dist-cjs/commands/CreateDbClusterCommand.js +27 -0
  4. package/dist-cjs/commands/DeleteDbClusterCommand.js +26 -0
  5. package/dist-cjs/commands/GetDbClusterCommand.js +26 -0
  6. package/dist-cjs/commands/ListDbClustersCommand.js +26 -0
  7. package/dist-cjs/commands/ListDbInstancesForClusterCommand.js +26 -0
  8. package/dist-cjs/commands/UpdateDbClusterCommand.js +26 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/models/models_0.js +34 -8
  11. package/dist-cjs/pagination/ListDbClustersPaginator.js +7 -0
  12. package/dist-cjs/pagination/ListDbInstancesForClusterPaginator.js +7 -0
  13. package/dist-cjs/pagination/index.js +2 -0
  14. package/dist-cjs/protocols/Aws_json1_0.js +127 -1
  15. package/dist-es/TimestreamInfluxDB.js +12 -0
  16. package/dist-es/commands/CreateDbClusterCommand.js +23 -0
  17. package/dist-es/commands/DeleteDbClusterCommand.js +22 -0
  18. package/dist-es/commands/GetDbClusterCommand.js +22 -0
  19. package/dist-es/commands/ListDbClustersCommand.js +22 -0
  20. package/dist-es/commands/ListDbInstancesForClusterCommand.js +22 -0
  21. package/dist-es/commands/UpdateDbClusterCommand.js +22 -0
  22. package/dist-es/commands/index.js +6 -0
  23. package/dist-es/models/models_0.js +32 -7
  24. package/dist-es/pagination/ListDbClustersPaginator.js +4 -0
  25. package/dist-es/pagination/ListDbInstancesForClusterPaginator.js +4 -0
  26. package/dist-es/pagination/index.js +2 -0
  27. package/dist-es/protocols/Aws_json1_0.js +114 -0
  28. package/dist-types/TimestreamInfluxDB.d.ts +43 -0
  29. package/dist-types/TimestreamInfluxDBClient.d.ts +8 -2
  30. package/dist-types/commands/CreateDbClusterCommand.d.ts +121 -0
  31. package/dist-types/commands/CreateDbInstanceCommand.d.ts +2 -0
  32. package/dist-types/commands/DeleteDbClusterCommand.d.ts +89 -0
  33. package/dist-types/commands/DeleteDbInstanceCommand.d.ts +2 -0
  34. package/dist-types/commands/GetDbClusterCommand.d.ts +113 -0
  35. package/dist-types/commands/GetDbInstanceCommand.d.ts +2 -0
  36. package/dist-types/commands/ListDbClustersCommand.d.ts +103 -0
  37. package/dist-types/commands/ListDbInstancesForClusterCommand.d.ts +104 -0
  38. package/dist-types/commands/UpdateDbClusterCommand.d.ts +99 -0
  39. package/dist-types/commands/UpdateDbInstanceCommand.d.ts +2 -0
  40. package/dist-types/commands/index.d.ts +6 -0
  41. package/dist-types/models/models_0.d.ts +718 -123
  42. package/dist-types/pagination/ListDbClustersPaginator.d.ts +7 -0
  43. package/dist-types/pagination/ListDbInstancesForClusterPaginator.d.ts +7 -0
  44. package/dist-types/pagination/index.d.ts +2 -0
  45. package/dist-types/protocols/Aws_json1_0.d.ts +54 -0
  46. package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +103 -0
  47. package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +36 -0
  48. package/dist-types/ts3.4/commands/CreateDbClusterCommand.d.ts +50 -0
  49. package/dist-types/ts3.4/commands/DeleteDbClusterCommand.d.ts +50 -0
  50. package/dist-types/ts3.4/commands/GetDbClusterCommand.d.ts +47 -0
  51. package/dist-types/ts3.4/commands/ListDbClustersCommand.d.ts +47 -0
  52. package/dist-types/ts3.4/commands/ListDbInstancesForClusterCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/UpdateDbClusterCommand.d.ts +50 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +184 -38
  56. package/dist-types/ts3.4/pagination/ListDbClustersPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/ListDbInstancesForClusterPaginator.d.ts +11 -0
  58. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  59. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +72 -0
  60. package/package.json +11 -11
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateDbClusterInput,
5
+ UpdateDbClusterOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateDbClusterCommandInput extends UpdateDbClusterInput {}
15
+ export interface UpdateDbClusterCommandOutput
16
+ extends UpdateDbClusterOutput,
17
+ __MetadataBearer {}
18
+ declare const UpdateDbClusterCommand_base: {
19
+ new (
20
+ input: UpdateDbClusterCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ UpdateDbClusterCommandInput,
23
+ UpdateDbClusterCommandOutput,
24
+ TimestreamInfluxDBClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: UpdateDbClusterCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ UpdateDbClusterCommandInput,
32
+ UpdateDbClusterCommandOutput,
33
+ TimestreamInfluxDBClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class UpdateDbClusterCommand extends UpdateDbClusterCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: UpdateDbClusterInput;
43
+ output: UpdateDbClusterOutput;
44
+ };
45
+ sdk: {
46
+ input: UpdateDbClusterCommandInput;
47
+ output: UpdateDbClusterCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -1,11 +1,17 @@
1
+ export * from "./CreateDbClusterCommand";
1
2
  export * from "./CreateDbInstanceCommand";
2
3
  export * from "./CreateDbParameterGroupCommand";
4
+ export * from "./DeleteDbClusterCommand";
3
5
  export * from "./DeleteDbInstanceCommand";
6
+ export * from "./GetDbClusterCommand";
4
7
  export * from "./GetDbInstanceCommand";
5
8
  export * from "./GetDbParameterGroupCommand";
9
+ export * from "./ListDbClustersCommand";
6
10
  export * from "./ListDbInstancesCommand";
11
+ export * from "./ListDbInstancesForClusterCommand";
7
12
  export * from "./ListDbParameterGroupsCommand";
8
13
  export * from "./ListTagsForResourceCommand";
9
14
  export * from "./TagResourceCommand";
10
15
  export * from "./UntagResourceCommand";
16
+ export * from "./UpdateDbClusterCommand";
11
17
  export * from "./UpdateDbInstanceCommand";
@@ -32,12 +32,16 @@ export declare const DbStorageType: {
32
32
  readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
33
33
  };
34
34
  export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
35
- export declare const DeploymentType: {
36
- readonly SINGLE_AZ: "SINGLE_AZ";
37
- readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
35
+ export declare const ClusterDeploymentType: {
36
+ readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS";
38
37
  };
39
- export type DeploymentType =
40
- (typeof DeploymentType)[keyof typeof DeploymentType];
38
+ export type ClusterDeploymentType =
39
+ (typeof ClusterDeploymentType)[keyof typeof ClusterDeploymentType];
40
+ export declare const FailoverMode: {
41
+ readonly AUTOMATIC: "AUTOMATIC";
42
+ readonly NO_FAILOVER: "NO_FAILOVER";
43
+ };
44
+ export type FailoverMode = (typeof FailoverMode)[keyof typeof FailoverMode];
41
45
  export interface S3Configuration {
42
46
  bucketName: string | undefined;
43
47
  enabled: boolean | undefined;
@@ -50,57 +54,38 @@ export declare const NetworkType: {
50
54
  readonly IPV4: "IPV4";
51
55
  };
52
56
  export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
53
- export interface CreateDbInstanceInput {
57
+ export interface CreateDbClusterInput {
54
58
  name: string | undefined;
55
59
  username?: string | undefined;
56
60
  password: string | undefined;
57
61
  organization?: string | undefined;
58
62
  bucket?: string | undefined;
63
+ port?: number | undefined;
64
+ dbParameterGroupIdentifier?: string | undefined;
59
65
  dbInstanceType: DbInstanceType | undefined;
60
- vpcSubnetIds: string[] | undefined;
61
- vpcSecurityGroupIds: string[] | undefined;
62
- publiclyAccessible?: boolean | undefined;
63
66
  dbStorageType?: DbStorageType | undefined;
64
67
  allocatedStorage: number | undefined;
65
- dbParameterGroupIdentifier?: string | undefined;
66
- deploymentType?: DeploymentType | undefined;
68
+ networkType?: NetworkType | undefined;
69
+ publiclyAccessible?: boolean | undefined;
70
+ vpcSubnetIds: string[] | undefined;
71
+ vpcSecurityGroupIds: string[] | undefined;
72
+ deploymentType: ClusterDeploymentType | undefined;
73
+ failoverMode?: FailoverMode | undefined;
67
74
  logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
68
75
  tags?: Record<string, string> | undefined;
69
- port?: number | undefined;
70
- networkType?: NetworkType | undefined;
71
76
  }
72
- export declare const Status: {
77
+ export declare const ClusterStatus: {
73
78
  readonly AVAILABLE: "AVAILABLE";
74
79
  readonly CREATING: "CREATING";
75
80
  readonly DELETED: "DELETED";
76
81
  readonly DELETING: "DELETING";
77
82
  readonly FAILED: "FAILED";
78
- readonly MODIFYING: "MODIFYING";
79
83
  readonly UPDATING: "UPDATING";
80
- readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
81
- readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
82
84
  };
83
- export type Status = (typeof Status)[keyof typeof Status];
84
- export interface CreateDbInstanceOutput {
85
- id: string | undefined;
86
- name: string | undefined;
87
- arn: string | undefined;
88
- status?: Status | undefined;
89
- endpoint?: string | undefined;
90
- port?: number | undefined;
91
- networkType?: NetworkType | undefined;
92
- dbInstanceType?: DbInstanceType | undefined;
93
- dbStorageType?: DbStorageType | undefined;
94
- allocatedStorage?: number | undefined;
95
- deploymentType?: DeploymentType | undefined;
96
- vpcSubnetIds: string[] | undefined;
97
- publiclyAccessible?: boolean | undefined;
98
- vpcSecurityGroupIds?: string[] | undefined;
99
- dbParameterGroupIdentifier?: string | undefined;
100
- availabilityZone?: string | undefined;
101
- secondaryAvailabilityZone?: string | undefined;
102
- logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
103
- influxAuthParametersSecretArn?: string | undefined;
85
+ export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
86
+ export interface CreateDbClusterOutput {
87
+ dbClusterId?: string | undefined;
88
+ dbClusterStatus?: ClusterStatus | undefined;
104
89
  }
105
90
  export declare class InternalServerException extends __BaseException {
106
91
  readonly name: "InternalServerException";
@@ -149,6 +134,158 @@ export declare class ValidationException extends __BaseException {
149
134
  opts: __ExceptionOptionType<ValidationException, __BaseException>
150
135
  );
151
136
  }
137
+ export interface DeleteDbClusterInput {
138
+ dbClusterId: string | undefined;
139
+ }
140
+ export interface DeleteDbClusterOutput {
141
+ dbClusterStatus?: ClusterStatus | undefined;
142
+ }
143
+ export interface GetDbClusterInput {
144
+ dbClusterId: string | undefined;
145
+ }
146
+ export interface GetDbClusterOutput {
147
+ id: string | undefined;
148
+ name: string | undefined;
149
+ arn: string | undefined;
150
+ status?: ClusterStatus | undefined;
151
+ endpoint?: string | undefined;
152
+ readerEndpoint?: string | undefined;
153
+ port?: number | undefined;
154
+ deploymentType?: ClusterDeploymentType | undefined;
155
+ dbInstanceType?: DbInstanceType | undefined;
156
+ networkType?: NetworkType | undefined;
157
+ dbStorageType?: DbStorageType | undefined;
158
+ allocatedStorage?: number | undefined;
159
+ publiclyAccessible?: boolean | undefined;
160
+ dbParameterGroupIdentifier?: string | undefined;
161
+ logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
162
+ influxAuthParametersSecretArn?: string | undefined;
163
+ vpcSubnetIds?: string[] | undefined;
164
+ vpcSecurityGroupIds?: string[] | undefined;
165
+ failoverMode?: FailoverMode | undefined;
166
+ }
167
+ export interface ListDbClustersInput {
168
+ nextToken?: string | undefined;
169
+ maxResults?: number | undefined;
170
+ }
171
+ export interface DbClusterSummary {
172
+ id: string | undefined;
173
+ name: string | undefined;
174
+ arn: string | undefined;
175
+ status?: ClusterStatus | undefined;
176
+ endpoint?: string | undefined;
177
+ readerEndpoint?: string | undefined;
178
+ port?: number | undefined;
179
+ deploymentType?: ClusterDeploymentType | undefined;
180
+ dbInstanceType?: DbInstanceType | undefined;
181
+ networkType?: NetworkType | undefined;
182
+ dbStorageType?: DbStorageType | undefined;
183
+ allocatedStorage?: number | undefined;
184
+ }
185
+ export interface ListDbClustersOutput {
186
+ items: DbClusterSummary[] | undefined;
187
+ nextToken?: string | undefined;
188
+ }
189
+ export interface ListDbInstancesForClusterInput {
190
+ dbClusterId: string | undefined;
191
+ nextToken?: string | undefined;
192
+ maxResults?: number | undefined;
193
+ }
194
+ export declare const DeploymentType: {
195
+ readonly SINGLE_AZ: "SINGLE_AZ";
196
+ readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
197
+ };
198
+ export type DeploymentType =
199
+ (typeof DeploymentType)[keyof typeof DeploymentType];
200
+ export declare const InstanceMode: {
201
+ readonly PRIMARY: "PRIMARY";
202
+ readonly REPLICA: "REPLICA";
203
+ readonly STANDBY: "STANDBY";
204
+ };
205
+ export type InstanceMode = (typeof InstanceMode)[keyof typeof InstanceMode];
206
+ export declare const Status: {
207
+ readonly AVAILABLE: "AVAILABLE";
208
+ readonly CREATING: "CREATING";
209
+ readonly DELETED: "DELETED";
210
+ readonly DELETING: "DELETING";
211
+ readonly FAILED: "FAILED";
212
+ readonly MODIFYING: "MODIFYING";
213
+ readonly UPDATING: "UPDATING";
214
+ readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
215
+ readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
216
+ };
217
+ export type Status = (typeof Status)[keyof typeof Status];
218
+ export interface DbInstanceForClusterSummary {
219
+ id: string | undefined;
220
+ name: string | undefined;
221
+ arn: string | undefined;
222
+ status?: Status | undefined;
223
+ endpoint?: string | undefined;
224
+ port?: number | undefined;
225
+ networkType?: NetworkType | undefined;
226
+ dbInstanceType?: DbInstanceType | undefined;
227
+ dbStorageType?: DbStorageType | undefined;
228
+ allocatedStorage?: number | undefined;
229
+ deploymentType?: DeploymentType | undefined;
230
+ instanceMode?: InstanceMode | undefined;
231
+ }
232
+ export interface ListDbInstancesForClusterOutput {
233
+ items: DbInstanceForClusterSummary[] | undefined;
234
+ nextToken?: string | undefined;
235
+ }
236
+ export interface UpdateDbClusterInput {
237
+ dbClusterId: string | undefined;
238
+ logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
239
+ dbParameterGroupIdentifier?: string | undefined;
240
+ port?: number | undefined;
241
+ dbInstanceType?: DbInstanceType | undefined;
242
+ failoverMode?: FailoverMode | undefined;
243
+ }
244
+ export interface UpdateDbClusterOutput {
245
+ dbClusterStatus?: ClusterStatus | undefined;
246
+ }
247
+ export interface CreateDbInstanceInput {
248
+ name: string | undefined;
249
+ username?: string | undefined;
250
+ password: string | undefined;
251
+ organization?: string | undefined;
252
+ bucket?: string | undefined;
253
+ dbInstanceType: DbInstanceType | undefined;
254
+ vpcSubnetIds: string[] | undefined;
255
+ vpcSecurityGroupIds: string[] | undefined;
256
+ publiclyAccessible?: boolean | undefined;
257
+ dbStorageType?: DbStorageType | undefined;
258
+ allocatedStorage: number | undefined;
259
+ dbParameterGroupIdentifier?: string | undefined;
260
+ deploymentType?: DeploymentType | undefined;
261
+ logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
262
+ tags?: Record<string, string> | undefined;
263
+ port?: number | undefined;
264
+ networkType?: NetworkType | undefined;
265
+ }
266
+ export interface CreateDbInstanceOutput {
267
+ id: string | undefined;
268
+ name: string | undefined;
269
+ arn: string | undefined;
270
+ status?: Status | undefined;
271
+ endpoint?: string | undefined;
272
+ port?: number | undefined;
273
+ networkType?: NetworkType | undefined;
274
+ dbInstanceType?: DbInstanceType | undefined;
275
+ dbStorageType?: DbStorageType | undefined;
276
+ allocatedStorage?: number | undefined;
277
+ deploymentType?: DeploymentType | undefined;
278
+ vpcSubnetIds: string[] | undefined;
279
+ publiclyAccessible?: boolean | undefined;
280
+ vpcSecurityGroupIds?: string[] | undefined;
281
+ dbParameterGroupIdentifier?: string | undefined;
282
+ availabilityZone?: string | undefined;
283
+ secondaryAvailabilityZone?: string | undefined;
284
+ logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
285
+ influxAuthParametersSecretArn?: string | undefined;
286
+ dbClusterId?: string | undefined;
287
+ instanceMode?: InstanceMode | undefined;
288
+ }
152
289
  export interface DeleteDbInstanceInput {
153
290
  identifier: string | undefined;
154
291
  }
@@ -172,6 +309,8 @@ export interface DeleteDbInstanceOutput {
172
309
  secondaryAvailabilityZone?: string | undefined;
173
310
  logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
174
311
  influxAuthParametersSecretArn?: string | undefined;
312
+ dbClusterId?: string | undefined;
313
+ instanceMode?: InstanceMode | undefined;
175
314
  }
176
315
  export interface GetDbInstanceInput {
177
316
  identifier: string | undefined;
@@ -196,6 +335,8 @@ export interface GetDbInstanceOutput {
196
335
  secondaryAvailabilityZone?: string | undefined;
197
336
  logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
198
337
  influxAuthParametersSecretArn?: string | undefined;
338
+ dbClusterId?: string | undefined;
339
+ instanceMode?: InstanceMode | undefined;
199
340
  }
200
341
  export interface ListDbInstancesInput {
201
342
  nextToken?: string | undefined;
@@ -248,6 +389,8 @@ export interface UpdateDbInstanceOutput {
248
389
  secondaryAvailabilityZone?: string | undefined;
249
390
  logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
250
391
  influxAuthParametersSecretArn?: string | undefined;
392
+ dbClusterId?: string | undefined;
393
+ instanceMode?: InstanceMode | undefined;
251
394
  }
252
395
  export declare const DurationType: {
253
396
  readonly HOURS: "hours";
@@ -376,6 +519,9 @@ export interface UntagResourceRequest {
376
519
  resourceArn: string | undefined;
377
520
  tagKeys: string[] | undefined;
378
521
  }
522
+ export declare const CreateDbClusterInputFilterSensitiveLog: (
523
+ obj: CreateDbClusterInput
524
+ ) => any;
379
525
  export declare const CreateDbInstanceInputFilterSensitiveLog: (
380
526
  obj: CreateDbInstanceInput
381
527
  ) => any;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDbClustersCommandInput,
4
+ ListDbClustersCommandOutput,
5
+ } from "../commands/ListDbClustersCommand";
6
+ import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDbClusters: (
8
+ config: TimestreamInfluxDBPaginationConfiguration,
9
+ input: ListDbClustersCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDbClustersCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListDbInstancesForClusterCommandInput,
4
+ ListDbInstancesForClusterCommandOutput,
5
+ } from "../commands/ListDbInstancesForClusterCommand";
6
+ import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListDbInstancesForCluster: (
8
+ config: TimestreamInfluxDBPaginationConfiguration,
9
+ input: ListDbInstancesForClusterCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListDbInstancesForClusterCommandOutput>;
@@ -1,3 +1,5 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListDbClustersPaginator";
3
+ export * from "./ListDbInstancesForClusterPaginator";
2
4
  export * from "./ListDbInstancesPaginator";
3
5
  export * from "./ListDbParameterGroupsPaginator";
@@ -3,6 +3,10 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateDbClusterCommandInput,
8
+ CreateDbClusterCommandOutput,
9
+ } from "../commands/CreateDbClusterCommand";
6
10
  import {
7
11
  CreateDbInstanceCommandInput,
8
12
  CreateDbInstanceCommandOutput,
@@ -11,10 +15,18 @@ import {
11
15
  CreateDbParameterGroupCommandInput,
12
16
  CreateDbParameterGroupCommandOutput,
13
17
  } from "../commands/CreateDbParameterGroupCommand";
18
+ import {
19
+ DeleteDbClusterCommandInput,
20
+ DeleteDbClusterCommandOutput,
21
+ } from "../commands/DeleteDbClusterCommand";
14
22
  import {
15
23
  DeleteDbInstanceCommandInput,
16
24
  DeleteDbInstanceCommandOutput,
17
25
  } from "../commands/DeleteDbInstanceCommand";
26
+ import {
27
+ GetDbClusterCommandInput,
28
+ GetDbClusterCommandOutput,
29
+ } from "../commands/GetDbClusterCommand";
18
30
  import {
19
31
  GetDbInstanceCommandInput,
20
32
  GetDbInstanceCommandOutput,
@@ -23,10 +35,18 @@ import {
23
35
  GetDbParameterGroupCommandInput,
24
36
  GetDbParameterGroupCommandOutput,
25
37
  } from "../commands/GetDbParameterGroupCommand";
38
+ import {
39
+ ListDbClustersCommandInput,
40
+ ListDbClustersCommandOutput,
41
+ } from "../commands/ListDbClustersCommand";
26
42
  import {
27
43
  ListDbInstancesCommandInput,
28
44
  ListDbInstancesCommandOutput,
29
45
  } from "../commands/ListDbInstancesCommand";
46
+ import {
47
+ ListDbInstancesForClusterCommandInput,
48
+ ListDbInstancesForClusterCommandOutput,
49
+ } from "../commands/ListDbInstancesForClusterCommand";
30
50
  import {
31
51
  ListDbParameterGroupsCommandInput,
32
52
  ListDbParameterGroupsCommandOutput,
@@ -43,10 +63,18 @@ import {
43
63
  UntagResourceCommandInput,
44
64
  UntagResourceCommandOutput,
45
65
  } from "../commands/UntagResourceCommand";
66
+ import {
67
+ UpdateDbClusterCommandInput,
68
+ UpdateDbClusterCommandOutput,
69
+ } from "../commands/UpdateDbClusterCommand";
46
70
  import {
47
71
  UpdateDbInstanceCommandInput,
48
72
  UpdateDbInstanceCommandOutput,
49
73
  } from "../commands/UpdateDbInstanceCommand";
74
+ export declare const se_CreateDbClusterCommand: (
75
+ input: CreateDbClusterCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
50
78
  export declare const se_CreateDbInstanceCommand: (
51
79
  input: CreateDbInstanceCommandInput,
52
80
  context: __SerdeContext
@@ -55,10 +83,18 @@ export declare const se_CreateDbParameterGroupCommand: (
55
83
  input: CreateDbParameterGroupCommandInput,
56
84
  context: __SerdeContext
57
85
  ) => Promise<__HttpRequest>;
86
+ export declare const se_DeleteDbClusterCommand: (
87
+ input: DeleteDbClusterCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
58
90
  export declare const se_DeleteDbInstanceCommand: (
59
91
  input: DeleteDbInstanceCommandInput,
60
92
  context: __SerdeContext
61
93
  ) => Promise<__HttpRequest>;
94
+ export declare const se_GetDbClusterCommand: (
95
+ input: GetDbClusterCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
62
98
  export declare const se_GetDbInstanceCommand: (
63
99
  input: GetDbInstanceCommandInput,
64
100
  context: __SerdeContext
@@ -67,10 +103,18 @@ export declare const se_GetDbParameterGroupCommand: (
67
103
  input: GetDbParameterGroupCommandInput,
68
104
  context: __SerdeContext
69
105
  ) => Promise<__HttpRequest>;
106
+ export declare const se_ListDbClustersCommand: (
107
+ input: ListDbClustersCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
70
110
  export declare const se_ListDbInstancesCommand: (
71
111
  input: ListDbInstancesCommandInput,
72
112
  context: __SerdeContext
73
113
  ) => Promise<__HttpRequest>;
114
+ export declare const se_ListDbInstancesForClusterCommand: (
115
+ input: ListDbInstancesForClusterCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
74
118
  export declare const se_ListDbParameterGroupsCommand: (
75
119
  input: ListDbParameterGroupsCommandInput,
76
120
  context: __SerdeContext
@@ -87,10 +131,18 @@ export declare const se_UntagResourceCommand: (
87
131
  input: UntagResourceCommandInput,
88
132
  context: __SerdeContext
89
133
  ) => Promise<__HttpRequest>;
134
+ export declare const se_UpdateDbClusterCommand: (
135
+ input: UpdateDbClusterCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
90
138
  export declare const se_UpdateDbInstanceCommand: (
91
139
  input: UpdateDbInstanceCommandInput,
92
140
  context: __SerdeContext
93
141
  ) => Promise<__HttpRequest>;
142
+ export declare const de_CreateDbClusterCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<CreateDbClusterCommandOutput>;
94
146
  export declare const de_CreateDbInstanceCommand: (
95
147
  output: __HttpResponse,
96
148
  context: __SerdeContext
@@ -99,10 +151,18 @@ export declare const de_CreateDbParameterGroupCommand: (
99
151
  output: __HttpResponse,
100
152
  context: __SerdeContext
101
153
  ) => Promise<CreateDbParameterGroupCommandOutput>;
154
+ export declare const de_DeleteDbClusterCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<DeleteDbClusterCommandOutput>;
102
158
  export declare const de_DeleteDbInstanceCommand: (
103
159
  output: __HttpResponse,
104
160
  context: __SerdeContext
105
161
  ) => Promise<DeleteDbInstanceCommandOutput>;
162
+ export declare const de_GetDbClusterCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<GetDbClusterCommandOutput>;
106
166
  export declare const de_GetDbInstanceCommand: (
107
167
  output: __HttpResponse,
108
168
  context: __SerdeContext
@@ -111,10 +171,18 @@ export declare const de_GetDbParameterGroupCommand: (
111
171
  output: __HttpResponse,
112
172
  context: __SerdeContext
113
173
  ) => Promise<GetDbParameterGroupCommandOutput>;
174
+ export declare const de_ListDbClustersCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<ListDbClustersCommandOutput>;
114
178
  export declare const de_ListDbInstancesCommand: (
115
179
  output: __HttpResponse,
116
180
  context: __SerdeContext
117
181
  ) => Promise<ListDbInstancesCommandOutput>;
182
+ export declare const de_ListDbInstancesForClusterCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<ListDbInstancesForClusterCommandOutput>;
118
186
  export declare const de_ListDbParameterGroupsCommand: (
119
187
  output: __HttpResponse,
120
188
  context: __SerdeContext
@@ -131,6 +199,10 @@ export declare const de_UntagResourceCommand: (
131
199
  output: __HttpResponse,
132
200
  context: __SerdeContext
133
201
  ) => Promise<UntagResourceCommandOutput>;
202
+ export declare const de_UpdateDbClusterCommand: (
203
+ output: __HttpResponse,
204
+ context: __SerdeContext
205
+ ) => Promise<UpdateDbClusterCommandOutput>;
134
206
  export declare const de_UpdateDbInstanceCommand: (
135
207
  output: __HttpResponse,
136
208
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-timestream-influxdb",
3
3
  "description": "AWS SDK for JavaScript Timestream Influxdb Client for Node.js, Browser and React Native",
4
- "version": "3.749.0",
4
+ "version": "3.750.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,38 +20,38 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.749.0",
24
- "@aws-sdk/credential-provider-node": "3.749.0",
23
+ "@aws-sdk/core": "3.750.0",
24
+ "@aws-sdk/credential-provider-node": "3.750.0",
25
25
  "@aws-sdk/middleware-host-header": "3.734.0",
26
26
  "@aws-sdk/middleware-logger": "3.734.0",
27
27
  "@aws-sdk/middleware-recursion-detection": "3.734.0",
28
- "@aws-sdk/middleware-user-agent": "3.749.0",
28
+ "@aws-sdk/middleware-user-agent": "3.750.0",
29
29
  "@aws-sdk/region-config-resolver": "3.734.0",
30
30
  "@aws-sdk/types": "3.734.0",
31
31
  "@aws-sdk/util-endpoints": "3.743.0",
32
32
  "@aws-sdk/util-user-agent-browser": "3.734.0",
33
- "@aws-sdk/util-user-agent-node": "3.749.0",
33
+ "@aws-sdk/util-user-agent-node": "3.750.0",
34
34
  "@smithy/config-resolver": "^4.0.1",
35
- "@smithy/core": "^3.1.3",
35
+ "@smithy/core": "^3.1.4",
36
36
  "@smithy/fetch-http-handler": "^5.0.1",
37
37
  "@smithy/hash-node": "^4.0.1",
38
38
  "@smithy/invalid-dependency": "^4.0.1",
39
39
  "@smithy/middleware-content-length": "^4.0.1",
40
- "@smithy/middleware-endpoint": "^4.0.4",
41
- "@smithy/middleware-retry": "^4.0.5",
40
+ "@smithy/middleware-endpoint": "^4.0.5",
41
+ "@smithy/middleware-retry": "^4.0.6",
42
42
  "@smithy/middleware-serde": "^4.0.2",
43
43
  "@smithy/middleware-stack": "^4.0.1",
44
44
  "@smithy/node-config-provider": "^4.0.1",
45
45
  "@smithy/node-http-handler": "^4.0.2",
46
46
  "@smithy/protocol-http": "^5.0.1",
47
- "@smithy/smithy-client": "^4.1.4",
47
+ "@smithy/smithy-client": "^4.1.5",
48
48
  "@smithy/types": "^4.1.0",
49
49
  "@smithy/url-parser": "^4.0.1",
50
50
  "@smithy/util-base64": "^4.0.0",
51
51
  "@smithy/util-body-length-browser": "^4.0.0",
52
52
  "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.5",
54
- "@smithy/util-defaults-mode-node": "^4.0.5",
53
+ "@smithy/util-defaults-mode-browser": "^4.0.6",
54
+ "@smithy/util-defaults-mode-node": "^4.0.6",
55
55
  "@smithy/util-endpoints": "^3.0.1",
56
56
  "@smithy/util-middleware": "^4.0.1",
57
57
  "@smithy/util-retry": "^4.0.1",