@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,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDbClustersCommandInput, ListDbClustersCommandOutput } from "../commands/ListDbClustersCommand";
3
+ import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDbClusters: (config: TimestreamInfluxDBPaginationConfiguration, input: ListDbClustersCommandInput, ...rest: any[]) => Paginator<ListDbClustersCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListDbInstancesForClusterCommandInput, ListDbInstancesForClusterCommandOutput } from "../commands/ListDbInstancesForClusterCommand";
3
+ import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListDbInstancesForCluster: (config: TimestreamInfluxDBPaginationConfiguration, input: ListDbInstancesForClusterCommandInput, ...rest: any[]) => 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";
@@ -1,16 +1,26 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateDbClusterCommandInput, CreateDbClusterCommandOutput } from "../commands/CreateDbClusterCommand";
3
4
  import { CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput } from "../commands/CreateDbInstanceCommand";
4
5
  import { CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput } from "../commands/CreateDbParameterGroupCommand";
6
+ import { DeleteDbClusterCommandInput, DeleteDbClusterCommandOutput } from "../commands/DeleteDbClusterCommand";
5
7
  import { DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput } from "../commands/DeleteDbInstanceCommand";
8
+ import { GetDbClusterCommandInput, GetDbClusterCommandOutput } from "../commands/GetDbClusterCommand";
6
9
  import { GetDbInstanceCommandInput, GetDbInstanceCommandOutput } from "../commands/GetDbInstanceCommand";
7
10
  import { GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput } from "../commands/GetDbParameterGroupCommand";
11
+ import { ListDbClustersCommandInput, ListDbClustersCommandOutput } from "../commands/ListDbClustersCommand";
8
12
  import { ListDbInstancesCommandInput, ListDbInstancesCommandOutput } from "../commands/ListDbInstancesCommand";
13
+ import { ListDbInstancesForClusterCommandInput, ListDbInstancesForClusterCommandOutput } from "../commands/ListDbInstancesForClusterCommand";
9
14
  import { ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput } from "../commands/ListDbParameterGroupsCommand";
10
15
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
11
16
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
12
17
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
18
+ import { UpdateDbClusterCommandInput, UpdateDbClusterCommandOutput } from "../commands/UpdateDbClusterCommand";
13
19
  import { UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput } from "../commands/UpdateDbInstanceCommand";
20
+ /**
21
+ * serializeAws_json1_0CreateDbClusterCommand
22
+ */
23
+ export declare const se_CreateDbClusterCommand: (input: CreateDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
14
24
  /**
15
25
  * serializeAws_json1_0CreateDbInstanceCommand
16
26
  */
@@ -19,10 +29,18 @@ export declare const se_CreateDbInstanceCommand: (input: CreateDbInstanceCommand
19
29
  * serializeAws_json1_0CreateDbParameterGroupCommand
20
30
  */
21
31
  export declare const se_CreateDbParameterGroupCommand: (input: CreateDbParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ /**
33
+ * serializeAws_json1_0DeleteDbClusterCommand
34
+ */
35
+ export declare const se_DeleteDbClusterCommand: (input: DeleteDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
36
  /**
23
37
  * serializeAws_json1_0DeleteDbInstanceCommand
24
38
  */
25
39
  export declare const se_DeleteDbInstanceCommand: (input: DeleteDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ /**
41
+ * serializeAws_json1_0GetDbClusterCommand
42
+ */
43
+ export declare const se_GetDbClusterCommand: (input: GetDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
44
  /**
27
45
  * serializeAws_json1_0GetDbInstanceCommand
28
46
  */
@@ -31,10 +49,18 @@ export declare const se_GetDbInstanceCommand: (input: GetDbInstanceCommandInput,
31
49
  * serializeAws_json1_0GetDbParameterGroupCommand
32
50
  */
33
51
  export declare const se_GetDbParameterGroupCommand: (input: GetDbParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
+ /**
53
+ * serializeAws_json1_0ListDbClustersCommand
54
+ */
55
+ export declare const se_ListDbClustersCommand: (input: ListDbClustersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
56
  /**
35
57
  * serializeAws_json1_0ListDbInstancesCommand
36
58
  */
37
59
  export declare const se_ListDbInstancesCommand: (input: ListDbInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
+ /**
61
+ * serializeAws_json1_0ListDbInstancesForClusterCommand
62
+ */
63
+ export declare const se_ListDbInstancesForClusterCommand: (input: ListDbInstancesForClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
64
  /**
39
65
  * serializeAws_json1_0ListDbParameterGroupsCommand
40
66
  */
@@ -51,10 +77,18 @@ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, con
51
77
  * serializeAws_json1_0UntagResourceCommand
52
78
  */
53
79
  export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
80
+ /**
81
+ * serializeAws_json1_0UpdateDbClusterCommand
82
+ */
83
+ export declare const se_UpdateDbClusterCommand: (input: UpdateDbClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
84
  /**
55
85
  * serializeAws_json1_0UpdateDbInstanceCommand
56
86
  */
57
87
  export declare const se_UpdateDbInstanceCommand: (input: UpdateDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
88
+ /**
89
+ * deserializeAws_json1_0CreateDbClusterCommand
90
+ */
91
+ export declare const de_CreateDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDbClusterCommandOutput>;
58
92
  /**
59
93
  * deserializeAws_json1_0CreateDbInstanceCommand
60
94
  */
@@ -63,10 +97,18 @@ export declare const de_CreateDbInstanceCommand: (output: __HttpResponse, contex
63
97
  * deserializeAws_json1_0CreateDbParameterGroupCommand
64
98
  */
65
99
  export declare const de_CreateDbParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDbParameterGroupCommandOutput>;
100
+ /**
101
+ * deserializeAws_json1_0DeleteDbClusterCommand
102
+ */
103
+ export declare const de_DeleteDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDbClusterCommandOutput>;
66
104
  /**
67
105
  * deserializeAws_json1_0DeleteDbInstanceCommand
68
106
  */
69
107
  export declare const de_DeleteDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDbInstanceCommandOutput>;
108
+ /**
109
+ * deserializeAws_json1_0GetDbClusterCommand
110
+ */
111
+ export declare const de_GetDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDbClusterCommandOutput>;
70
112
  /**
71
113
  * deserializeAws_json1_0GetDbInstanceCommand
72
114
  */
@@ -75,10 +117,18 @@ export declare const de_GetDbInstanceCommand: (output: __HttpResponse, context:
75
117
  * deserializeAws_json1_0GetDbParameterGroupCommand
76
118
  */
77
119
  export declare const de_GetDbParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDbParameterGroupCommandOutput>;
120
+ /**
121
+ * deserializeAws_json1_0ListDbClustersCommand
122
+ */
123
+ export declare const de_ListDbClustersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbClustersCommandOutput>;
78
124
  /**
79
125
  * deserializeAws_json1_0ListDbInstancesCommand
80
126
  */
81
127
  export declare const de_ListDbInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbInstancesCommandOutput>;
128
+ /**
129
+ * deserializeAws_json1_0ListDbInstancesForClusterCommand
130
+ */
131
+ export declare const de_ListDbInstancesForClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbInstancesForClusterCommandOutput>;
82
132
  /**
83
133
  * deserializeAws_json1_0ListDbParameterGroupsCommand
84
134
  */
@@ -95,6 +145,10 @@ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __
95
145
  * deserializeAws_json1_0UntagResourceCommand
96
146
  */
97
147
  export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
148
+ /**
149
+ * deserializeAws_json1_0UpdateDbClusterCommand
150
+ */
151
+ export declare const de_UpdateDbClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDbClusterCommandOutput>;
98
152
  /**
99
153
  * deserializeAws_json1_0UpdateDbInstanceCommand
100
154
  */
@@ -1,4 +1,8 @@
1
1
  import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateDbClusterCommandInput,
4
+ CreateDbClusterCommandOutput,
5
+ } from "./commands/CreateDbClusterCommand";
2
6
  import {
3
7
  CreateDbInstanceCommandInput,
4
8
  CreateDbInstanceCommandOutput,
@@ -7,10 +11,18 @@ import {
7
11
  CreateDbParameterGroupCommandInput,
8
12
  CreateDbParameterGroupCommandOutput,
9
13
  } from "./commands/CreateDbParameterGroupCommand";
14
+ import {
15
+ DeleteDbClusterCommandInput,
16
+ DeleteDbClusterCommandOutput,
17
+ } from "./commands/DeleteDbClusterCommand";
10
18
  import {
11
19
  DeleteDbInstanceCommandInput,
12
20
  DeleteDbInstanceCommandOutput,
13
21
  } from "./commands/DeleteDbInstanceCommand";
22
+ import {
23
+ GetDbClusterCommandInput,
24
+ GetDbClusterCommandOutput,
25
+ } from "./commands/GetDbClusterCommand";
14
26
  import {
15
27
  GetDbInstanceCommandInput,
16
28
  GetDbInstanceCommandOutput,
@@ -19,10 +31,18 @@ import {
19
31
  GetDbParameterGroupCommandInput,
20
32
  GetDbParameterGroupCommandOutput,
21
33
  } from "./commands/GetDbParameterGroupCommand";
34
+ import {
35
+ ListDbClustersCommandInput,
36
+ ListDbClustersCommandOutput,
37
+ } from "./commands/ListDbClustersCommand";
22
38
  import {
23
39
  ListDbInstancesCommandInput,
24
40
  ListDbInstancesCommandOutput,
25
41
  } from "./commands/ListDbInstancesCommand";
42
+ import {
43
+ ListDbInstancesForClusterCommandInput,
44
+ ListDbInstancesForClusterCommandOutput,
45
+ } from "./commands/ListDbInstancesForClusterCommand";
26
46
  import {
27
47
  ListDbParameterGroupsCommandInput,
28
48
  ListDbParameterGroupsCommandOutput,
@@ -39,12 +59,29 @@ import {
39
59
  UntagResourceCommandInput,
40
60
  UntagResourceCommandOutput,
41
61
  } from "./commands/UntagResourceCommand";
62
+ import {
63
+ UpdateDbClusterCommandInput,
64
+ UpdateDbClusterCommandOutput,
65
+ } from "./commands/UpdateDbClusterCommand";
42
66
  import {
43
67
  UpdateDbInstanceCommandInput,
44
68
  UpdateDbInstanceCommandOutput,
45
69
  } from "./commands/UpdateDbInstanceCommand";
46
70
  import { TimestreamInfluxDBClient } from "./TimestreamInfluxDBClient";
47
71
  export interface TimestreamInfluxDB {
72
+ createDbCluster(
73
+ args: CreateDbClusterCommandInput,
74
+ options?: __HttpHandlerOptions
75
+ ): Promise<CreateDbClusterCommandOutput>;
76
+ createDbCluster(
77
+ args: CreateDbClusterCommandInput,
78
+ cb: (err: any, data?: CreateDbClusterCommandOutput) => void
79
+ ): void;
80
+ createDbCluster(
81
+ args: CreateDbClusterCommandInput,
82
+ options: __HttpHandlerOptions,
83
+ cb: (err: any, data?: CreateDbClusterCommandOutput) => void
84
+ ): void;
48
85
  createDbInstance(
49
86
  args: CreateDbInstanceCommandInput,
50
87
  options?: __HttpHandlerOptions
@@ -71,6 +108,19 @@ export interface TimestreamInfluxDB {
71
108
  options: __HttpHandlerOptions,
72
109
  cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void
73
110
  ): void;
111
+ deleteDbCluster(
112
+ args: DeleteDbClusterCommandInput,
113
+ options?: __HttpHandlerOptions
114
+ ): Promise<DeleteDbClusterCommandOutput>;
115
+ deleteDbCluster(
116
+ args: DeleteDbClusterCommandInput,
117
+ cb: (err: any, data?: DeleteDbClusterCommandOutput) => void
118
+ ): void;
119
+ deleteDbCluster(
120
+ args: DeleteDbClusterCommandInput,
121
+ options: __HttpHandlerOptions,
122
+ cb: (err: any, data?: DeleteDbClusterCommandOutput) => void
123
+ ): void;
74
124
  deleteDbInstance(
75
125
  args: DeleteDbInstanceCommandInput,
76
126
  options?: __HttpHandlerOptions
@@ -84,6 +134,19 @@ export interface TimestreamInfluxDB {
84
134
  options: __HttpHandlerOptions,
85
135
  cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void
86
136
  ): void;
137
+ getDbCluster(
138
+ args: GetDbClusterCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<GetDbClusterCommandOutput>;
141
+ getDbCluster(
142
+ args: GetDbClusterCommandInput,
143
+ cb: (err: any, data?: GetDbClusterCommandOutput) => void
144
+ ): void;
145
+ getDbCluster(
146
+ args: GetDbClusterCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: GetDbClusterCommandOutput) => void
149
+ ): void;
87
150
  getDbInstance(
88
151
  args: GetDbInstanceCommandInput,
89
152
  options?: __HttpHandlerOptions
@@ -110,6 +173,20 @@ export interface TimestreamInfluxDB {
110
173
  options: __HttpHandlerOptions,
111
174
  cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void
112
175
  ): void;
176
+ listDbClusters(): Promise<ListDbClustersCommandOutput>;
177
+ listDbClusters(
178
+ args: ListDbClustersCommandInput,
179
+ options?: __HttpHandlerOptions
180
+ ): Promise<ListDbClustersCommandOutput>;
181
+ listDbClusters(
182
+ args: ListDbClustersCommandInput,
183
+ cb: (err: any, data?: ListDbClustersCommandOutput) => void
184
+ ): void;
185
+ listDbClusters(
186
+ args: ListDbClustersCommandInput,
187
+ options: __HttpHandlerOptions,
188
+ cb: (err: any, data?: ListDbClustersCommandOutput) => void
189
+ ): void;
113
190
  listDbInstances(): Promise<ListDbInstancesCommandOutput>;
114
191
  listDbInstances(
115
192
  args: ListDbInstancesCommandInput,
@@ -124,6 +201,19 @@ export interface TimestreamInfluxDB {
124
201
  options: __HttpHandlerOptions,
125
202
  cb: (err: any, data?: ListDbInstancesCommandOutput) => void
126
203
  ): void;
204
+ listDbInstancesForCluster(
205
+ args: ListDbInstancesForClusterCommandInput,
206
+ options?: __HttpHandlerOptions
207
+ ): Promise<ListDbInstancesForClusterCommandOutput>;
208
+ listDbInstancesForCluster(
209
+ args: ListDbInstancesForClusterCommandInput,
210
+ cb: (err: any, data?: ListDbInstancesForClusterCommandOutput) => void
211
+ ): void;
212
+ listDbInstancesForCluster(
213
+ args: ListDbInstancesForClusterCommandInput,
214
+ options: __HttpHandlerOptions,
215
+ cb: (err: any, data?: ListDbInstancesForClusterCommandOutput) => void
216
+ ): void;
127
217
  listDbParameterGroups(): Promise<ListDbParameterGroupsCommandOutput>;
128
218
  listDbParameterGroups(
129
219
  args: ListDbParameterGroupsCommandInput,
@@ -177,6 +267,19 @@ export interface TimestreamInfluxDB {
177
267
  options: __HttpHandlerOptions,
178
268
  cb: (err: any, data?: UntagResourceCommandOutput) => void
179
269
  ): void;
270
+ updateDbCluster(
271
+ args: UpdateDbClusterCommandInput,
272
+ options?: __HttpHandlerOptions
273
+ ): Promise<UpdateDbClusterCommandOutput>;
274
+ updateDbCluster(
275
+ args: UpdateDbClusterCommandInput,
276
+ cb: (err: any, data?: UpdateDbClusterCommandOutput) => void
277
+ ): void;
278
+ updateDbCluster(
279
+ args: UpdateDbClusterCommandInput,
280
+ options: __HttpHandlerOptions,
281
+ cb: (err: any, data?: UpdateDbClusterCommandOutput) => void
282
+ ): void;
180
283
  updateDbInstance(
181
284
  args: UpdateDbInstanceCommandInput,
182
285
  options?: __HttpHandlerOptions
@@ -45,6 +45,10 @@ import {
45
45
  HttpAuthSchemeInputConfig,
46
46
  HttpAuthSchemeResolvedConfig,
47
47
  } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateDbClusterCommandInput,
50
+ CreateDbClusterCommandOutput,
51
+ } from "./commands/CreateDbClusterCommand";
48
52
  import {
49
53
  CreateDbInstanceCommandInput,
50
54
  CreateDbInstanceCommandOutput,
@@ -53,10 +57,18 @@ import {
53
57
  CreateDbParameterGroupCommandInput,
54
58
  CreateDbParameterGroupCommandOutput,
55
59
  } from "./commands/CreateDbParameterGroupCommand";
60
+ import {
61
+ DeleteDbClusterCommandInput,
62
+ DeleteDbClusterCommandOutput,
63
+ } from "./commands/DeleteDbClusterCommand";
56
64
  import {
57
65
  DeleteDbInstanceCommandInput,
58
66
  DeleteDbInstanceCommandOutput,
59
67
  } from "./commands/DeleteDbInstanceCommand";
68
+ import {
69
+ GetDbClusterCommandInput,
70
+ GetDbClusterCommandOutput,
71
+ } from "./commands/GetDbClusterCommand";
60
72
  import {
61
73
  GetDbInstanceCommandInput,
62
74
  GetDbInstanceCommandOutput,
@@ -65,10 +77,18 @@ import {
65
77
  GetDbParameterGroupCommandInput,
66
78
  GetDbParameterGroupCommandOutput,
67
79
  } from "./commands/GetDbParameterGroupCommand";
80
+ import {
81
+ ListDbClustersCommandInput,
82
+ ListDbClustersCommandOutput,
83
+ } from "./commands/ListDbClustersCommand";
68
84
  import {
69
85
  ListDbInstancesCommandInput,
70
86
  ListDbInstancesCommandOutput,
71
87
  } from "./commands/ListDbInstancesCommand";
88
+ import {
89
+ ListDbInstancesForClusterCommandInput,
90
+ ListDbInstancesForClusterCommandOutput,
91
+ } from "./commands/ListDbInstancesForClusterCommand";
72
92
  import {
73
93
  ListDbParameterGroupsCommandInput,
74
94
  ListDbParameterGroupsCommandOutput,
@@ -85,6 +105,10 @@ import {
85
105
  UntagResourceCommandInput,
86
106
  UntagResourceCommandOutput,
87
107
  } from "./commands/UntagResourceCommand";
108
+ import {
109
+ UpdateDbClusterCommandInput,
110
+ UpdateDbClusterCommandOutput,
111
+ } from "./commands/UpdateDbClusterCommand";
88
112
  import {
89
113
  UpdateDbInstanceCommandInput,
90
114
  UpdateDbInstanceCommandOutput,
@@ -97,28 +121,40 @@ import {
97
121
  import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
98
122
  export { __Client };
99
123
  export type ServiceInputTypes =
124
+ | CreateDbClusterCommandInput
100
125
  | CreateDbInstanceCommandInput
101
126
  | CreateDbParameterGroupCommandInput
127
+ | DeleteDbClusterCommandInput
102
128
  | DeleteDbInstanceCommandInput
129
+ | GetDbClusterCommandInput
103
130
  | GetDbInstanceCommandInput
104
131
  | GetDbParameterGroupCommandInput
132
+ | ListDbClustersCommandInput
105
133
  | ListDbInstancesCommandInput
134
+ | ListDbInstancesForClusterCommandInput
106
135
  | ListDbParameterGroupsCommandInput
107
136
  | ListTagsForResourceCommandInput
108
137
  | TagResourceCommandInput
109
138
  | UntagResourceCommandInput
139
+ | UpdateDbClusterCommandInput
110
140
  | UpdateDbInstanceCommandInput;
111
141
  export type ServiceOutputTypes =
142
+ | CreateDbClusterCommandOutput
112
143
  | CreateDbInstanceCommandOutput
113
144
  | CreateDbParameterGroupCommandOutput
145
+ | DeleteDbClusterCommandOutput
114
146
  | DeleteDbInstanceCommandOutput
147
+ | GetDbClusterCommandOutput
115
148
  | GetDbInstanceCommandOutput
116
149
  | GetDbParameterGroupCommandOutput
150
+ | ListDbClustersCommandOutput
117
151
  | ListDbInstancesCommandOutput
152
+ | ListDbInstancesForClusterCommandOutput
118
153
  | ListDbParameterGroupsCommandOutput
119
154
  | ListTagsForResourceCommandOutput
120
155
  | TagResourceCommandOutput
121
156
  | UntagResourceCommandOutput
157
+ | UpdateDbClusterCommandOutput
122
158
  | UpdateDbInstanceCommandOutput;
123
159
  export interface ClientDefaults
124
160
  extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateDbClusterInput,
5
+ CreateDbClusterOutput,
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 CreateDbClusterCommandInput extends CreateDbClusterInput {}
15
+ export interface CreateDbClusterCommandOutput
16
+ extends CreateDbClusterOutput,
17
+ __MetadataBearer {}
18
+ declare const CreateDbClusterCommand_base: {
19
+ new (
20
+ input: CreateDbClusterCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateDbClusterCommandInput,
23
+ CreateDbClusterCommandOutput,
24
+ TimestreamInfluxDBClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateDbClusterCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateDbClusterCommandInput,
32
+ CreateDbClusterCommandOutput,
33
+ TimestreamInfluxDBClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateDbClusterCommand extends CreateDbClusterCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateDbClusterInput;
43
+ output: CreateDbClusterOutput;
44
+ };
45
+ sdk: {
46
+ input: CreateDbClusterCommandInput;
47
+ output: CreateDbClusterCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteDbClusterInput,
5
+ DeleteDbClusterOutput,
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 DeleteDbClusterCommandInput extends DeleteDbClusterInput {}
15
+ export interface DeleteDbClusterCommandOutput
16
+ extends DeleteDbClusterOutput,
17
+ __MetadataBearer {}
18
+ declare const DeleteDbClusterCommand_base: {
19
+ new (
20
+ input: DeleteDbClusterCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteDbClusterCommandInput,
23
+ DeleteDbClusterCommandOutput,
24
+ TimestreamInfluxDBClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteDbClusterCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteDbClusterCommandInput,
32
+ DeleteDbClusterCommandOutput,
33
+ TimestreamInfluxDBClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteDbClusterCommand extends DeleteDbClusterCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: DeleteDbClusterInput;
43
+ output: DeleteDbClusterOutput;
44
+ };
45
+ sdk: {
46
+ input: DeleteDbClusterCommandInput;
47
+ output: DeleteDbClusterCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetDbClusterInput, GetDbClusterOutput } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ TimestreamInfluxDBClientResolvedConfig,
8
+ } from "../TimestreamInfluxDBClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetDbClusterCommandInput extends GetDbClusterInput {}
12
+ export interface GetDbClusterCommandOutput
13
+ extends GetDbClusterOutput,
14
+ __MetadataBearer {}
15
+ declare const GetDbClusterCommand_base: {
16
+ new (
17
+ input: GetDbClusterCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetDbClusterCommandInput,
20
+ GetDbClusterCommandOutput,
21
+ TimestreamInfluxDBClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetDbClusterCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetDbClusterCommandInput,
29
+ GetDbClusterCommandOutput,
30
+ TimestreamInfluxDBClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetDbClusterCommand extends GetDbClusterCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetDbClusterInput;
40
+ output: GetDbClusterOutput;
41
+ };
42
+ sdk: {
43
+ input: GetDbClusterCommandInput;
44
+ output: GetDbClusterCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListDbClustersInput, ListDbClustersOutput } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ TimestreamInfluxDBClientResolvedConfig,
8
+ } from "../TimestreamInfluxDBClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface ListDbClustersCommandInput extends ListDbClustersInput {}
12
+ export interface ListDbClustersCommandOutput
13
+ extends ListDbClustersOutput,
14
+ __MetadataBearer {}
15
+ declare const ListDbClustersCommand_base: {
16
+ new (
17
+ input: ListDbClustersCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ ListDbClustersCommandInput,
20
+ ListDbClustersCommandOutput,
21
+ TimestreamInfluxDBClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [ListDbClustersCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ ListDbClustersCommandInput,
29
+ ListDbClustersCommandOutput,
30
+ TimestreamInfluxDBClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class ListDbClustersCommand extends ListDbClustersCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: ListDbClustersInput;
40
+ output: ListDbClustersOutput;
41
+ };
42
+ sdk: {
43
+ input: ListDbClustersCommandInput;
44
+ output: ListDbClustersCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListDbInstancesForClusterInput,
5
+ ListDbInstancesForClusterOutput,
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 ListDbInstancesForClusterCommandInput
15
+ extends ListDbInstancesForClusterInput {}
16
+ export interface ListDbInstancesForClusterCommandOutput
17
+ extends ListDbInstancesForClusterOutput,
18
+ __MetadataBearer {}
19
+ declare const ListDbInstancesForClusterCommand_base: {
20
+ new (
21
+ input: ListDbInstancesForClusterCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListDbInstancesForClusterCommandInput,
24
+ ListDbInstancesForClusterCommandOutput,
25
+ TimestreamInfluxDBClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListDbInstancesForClusterCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListDbInstancesForClusterCommandInput,
33
+ ListDbInstancesForClusterCommandOutput,
34
+ TimestreamInfluxDBClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListDbInstancesForClusterCommand extends ListDbInstancesForClusterCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListDbInstancesForClusterInput;
44
+ output: ListDbInstancesForClusterOutput;
45
+ };
46
+ sdk: {
47
+ input: ListDbInstancesForClusterCommandInput;
48
+ output: ListDbInstancesForClusterCommandOutput;
49
+ };
50
+ };
51
+ }