@aws-sdk/client-timestream-influxdb 3.1101.0 → 3.1102.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +42 -7
- package/dist-cjs/index.js +269 -45
- package/dist-es/TimestreamInfluxDB.js +12 -0
- package/dist-es/commands/CreateDbBackupCommand.js +4 -0
- package/dist-es/commands/DeleteDbBackupCommand.js +4 -0
- package/dist-es/commands/GetDbBackupCommand.js +4 -0
- package/dist-es/commands/ListDbBackupsCommand.js +4 -0
- package/dist-es/commands/RestoreFromDbBackupCommand.js +4 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/enums.js +54 -10
- package/dist-es/pagination/ListDbBackupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +160 -34
- package/dist-types/TimestreamInfluxDB.d.ts +43 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +7 -2
- package/dist-types/commands/CreateDbBackupCommand.d.ts +137 -0
- package/dist-types/commands/CreateDbClusterCommand.d.ts +10 -1
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +20 -1
- package/dist-types/commands/DeleteDbBackupCommand.d.ts +129 -0
- package/dist-types/commands/DeleteDbClusterCommand.d.ts +2 -1
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +12 -1
- package/dist-types/commands/GetDbBackupCommand.d.ts +126 -0
- package/dist-types/commands/GetDbClusterCommand.d.ts +11 -1
- package/dist-types/commands/GetDbInstanceCommand.d.ts +11 -1
- package/dist-types/commands/ListDbBackupsCommand.d.ts +103 -0
- package/dist-types/commands/ListDbClustersCommand.d.ts +1 -1
- package/dist-types/commands/ListDbInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListDbInstancesForClusterCommand.d.ts +1 -1
- package/dist-types/commands/RebootDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/RebootDbInstanceCommand.d.ts +11 -1
- package/dist-types/commands/RestoreFromDbBackupCommand.d.ts +131 -0
- package/dist-types/commands/UpdateDbClusterCommand.d.ts +9 -1
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +19 -1
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/enums.d.ts +117 -17
- package/dist-types/models/models_0.d.ts +822 -24
- package/dist-types/pagination/ListDbBackupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +18 -0
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +90 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +27 -0
- package/dist-types/ts3.4/commands/CreateDbBackupCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteDbBackupCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetDbBackupCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListDbBackupsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/RestoreFromDbBackupCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/enums.d.ts +68 -15
- package/dist-types/ts3.4/models/models_0.d.ts +183 -4
- package/dist-types/ts3.4/pagination/ListDbBackupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +18 -0
- package/package.json +3 -3
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDbBackupsCommandInput, ListDbBackupsCommandOutput } from "../commands/ListDbBackupsCommand";
|
|
3
|
+
import type { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDbBackups: (config: TimestreamInfluxDBPaginationConfiguration, input: ListDbBackupsCommandInput, ...rest: any[]) => Paginator<ListDbBackupsCommandOutput>;
|
|
@@ -15,21 +15,30 @@ export declare var ValidationException$: StaticErrorSchema;
|
|
|
15
15
|
*/
|
|
16
16
|
export declare const errorTypeRegistries: TypeRegistry[];
|
|
17
17
|
export declare var ClusterConfiguration$: StaticStructureSchema;
|
|
18
|
+
export declare var CreateDbBackupInput$: StaticStructureSchema;
|
|
19
|
+
export declare var CreateDbBackupOutput$: StaticStructureSchema;
|
|
18
20
|
export declare var CreateDbClusterInput$: StaticStructureSchema;
|
|
19
21
|
export declare var CreateDbClusterOutput$: StaticStructureSchema;
|
|
20
22
|
export declare var CreateDbInstanceInput$: StaticStructureSchema;
|
|
21
23
|
export declare var CreateDbInstanceOutput$: StaticStructureSchema;
|
|
22
24
|
export declare var CreateDbParameterGroupInput$: StaticStructureSchema;
|
|
23
25
|
export declare var CreateDbParameterGroupOutput$: StaticStructureSchema;
|
|
26
|
+
export declare var DbBackupConfiguration$: StaticStructureSchema;
|
|
27
|
+
export declare var DbBackupConfigurationOutput$: StaticStructureSchema;
|
|
28
|
+
export declare var DbBackupSummary$: StaticStructureSchema;
|
|
24
29
|
export declare var DbClusterSummary$: StaticStructureSchema;
|
|
25
30
|
export declare var DbInstanceForClusterSummary$: StaticStructureSchema;
|
|
26
31
|
export declare var DbInstanceSummary$: StaticStructureSchema;
|
|
27
32
|
export declare var DbParameterGroupSummary$: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteDbBackupInput$: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteDbBackupOutput$: StaticStructureSchema;
|
|
28
35
|
export declare var DeleteDbClusterInput$: StaticStructureSchema;
|
|
29
36
|
export declare var DeleteDbClusterOutput$: StaticStructureSchema;
|
|
30
37
|
export declare var DeleteDbInstanceInput$: StaticStructureSchema;
|
|
31
38
|
export declare var DeleteDbInstanceOutput$: StaticStructureSchema;
|
|
32
39
|
export declare var Duration$: StaticStructureSchema;
|
|
40
|
+
export declare var GetDbBackupInput$: StaticStructureSchema;
|
|
41
|
+
export declare var GetDbBackupOutput$: StaticStructureSchema;
|
|
33
42
|
export declare var GetDbClusterInput$: StaticStructureSchema;
|
|
34
43
|
export declare var GetDbClusterOutput$: StaticStructureSchema;
|
|
35
44
|
export declare var GetDbInstanceInput$: StaticStructureSchema;
|
|
@@ -39,6 +48,8 @@ export declare var GetDbParameterGroupOutput$: StaticStructureSchema;
|
|
|
39
48
|
export declare var InfluxDBv2Parameters$: StaticStructureSchema;
|
|
40
49
|
export declare var InfluxDBv3CoreParameters$: StaticStructureSchema;
|
|
41
50
|
export declare var InfluxDBv3EnterpriseParameters$: StaticStructureSchema;
|
|
51
|
+
export declare var ListDbBackupsInput$: StaticStructureSchema;
|
|
52
|
+
export declare var ListDbBackupsOutput$: StaticStructureSchema;
|
|
42
53
|
export declare var ListDbClustersInput$: StaticStructureSchema;
|
|
43
54
|
export declare var ListDbClustersOutput$: StaticStructureSchema;
|
|
44
55
|
export declare var ListDbInstancesForClusterInput$: StaticStructureSchema;
|
|
@@ -55,6 +66,8 @@ export declare var RebootDbClusterInput$: StaticStructureSchema;
|
|
|
55
66
|
export declare var RebootDbClusterOutput$: StaticStructureSchema;
|
|
56
67
|
export declare var RebootDbInstanceInput$: StaticStructureSchema;
|
|
57
68
|
export declare var RebootDbInstanceOutput$: StaticStructureSchema;
|
|
69
|
+
export declare var RestoreFromDbBackupInput$: StaticStructureSchema;
|
|
70
|
+
export declare var RestoreFromDbBackupOutput$: StaticStructureSchema;
|
|
58
71
|
export declare var S3Configuration$: StaticStructureSchema;
|
|
59
72
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
60
73
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
@@ -64,14 +77,18 @@ export declare var UpdateDbInstanceInput$: StaticStructureSchema;
|
|
|
64
77
|
export declare var UpdateDbInstanceOutput$: StaticStructureSchema;
|
|
65
78
|
export declare var _Parameters$: StaticUnionSchema;
|
|
66
79
|
export declare var PercentOrAbsoluteLong$: StaticUnionSchema;
|
|
80
|
+
export declare var CreateDbBackup$: StaticOperationSchema;
|
|
67
81
|
export declare var CreateDbCluster$: StaticOperationSchema;
|
|
68
82
|
export declare var CreateDbInstance$: StaticOperationSchema;
|
|
69
83
|
export declare var CreateDbParameterGroup$: StaticOperationSchema;
|
|
84
|
+
export declare var DeleteDbBackup$: StaticOperationSchema;
|
|
70
85
|
export declare var DeleteDbCluster$: StaticOperationSchema;
|
|
71
86
|
export declare var DeleteDbInstance$: StaticOperationSchema;
|
|
87
|
+
export declare var GetDbBackup$: StaticOperationSchema;
|
|
72
88
|
export declare var GetDbCluster$: StaticOperationSchema;
|
|
73
89
|
export declare var GetDbInstance$: StaticOperationSchema;
|
|
74
90
|
export declare var GetDbParameterGroup$: StaticOperationSchema;
|
|
91
|
+
export declare var ListDbBackups$: StaticOperationSchema;
|
|
75
92
|
export declare var ListDbClusters$: StaticOperationSchema;
|
|
76
93
|
export declare var ListDbInstances$: StaticOperationSchema;
|
|
77
94
|
export declare var ListDbInstancesForCluster$: StaticOperationSchema;
|
|
@@ -79,6 +96,7 @@ export declare var ListDbParameterGroups$: StaticOperationSchema;
|
|
|
79
96
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
80
97
|
export declare var RebootDbCluster$: StaticOperationSchema;
|
|
81
98
|
export declare var RebootDbInstance$: StaticOperationSchema;
|
|
99
|
+
export declare var RestoreFromDbBackup$: StaticOperationSchema;
|
|
82
100
|
export declare var TagResource$: StaticOperationSchema;
|
|
83
101
|
export declare var UntagResource$: StaticOperationSchema;
|
|
84
102
|
export declare var UpdateDbCluster$: StaticOperationSchema;
|
|
@@ -3,6 +3,10 @@ import {
|
|
|
3
3
|
PaginationConfiguration,
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateDbBackupCommandInput,
|
|
8
|
+
CreateDbBackupCommandOutput,
|
|
9
|
+
} from "./commands/CreateDbBackupCommand";
|
|
6
10
|
import {
|
|
7
11
|
CreateDbClusterCommandInput,
|
|
8
12
|
CreateDbClusterCommandOutput,
|
|
@@ -15,6 +19,10 @@ import {
|
|
|
15
19
|
CreateDbParameterGroupCommandInput,
|
|
16
20
|
CreateDbParameterGroupCommandOutput,
|
|
17
21
|
} from "./commands/CreateDbParameterGroupCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteDbBackupCommandInput,
|
|
24
|
+
DeleteDbBackupCommandOutput,
|
|
25
|
+
} from "./commands/DeleteDbBackupCommand";
|
|
18
26
|
import {
|
|
19
27
|
DeleteDbClusterCommandInput,
|
|
20
28
|
DeleteDbClusterCommandOutput,
|
|
@@ -23,6 +31,7 @@ import {
|
|
|
23
31
|
DeleteDbInstanceCommandInput,
|
|
24
32
|
DeleteDbInstanceCommandOutput,
|
|
25
33
|
} from "./commands/DeleteDbInstanceCommand";
|
|
34
|
+
import { GetDbBackupCommandInput, GetDbBackupCommandOutput } from "./commands/GetDbBackupCommand";
|
|
26
35
|
import {
|
|
27
36
|
GetDbClusterCommandInput,
|
|
28
37
|
GetDbClusterCommandOutput,
|
|
@@ -35,6 +44,10 @@ import {
|
|
|
35
44
|
GetDbParameterGroupCommandInput,
|
|
36
45
|
GetDbParameterGroupCommandOutput,
|
|
37
46
|
} from "./commands/GetDbParameterGroupCommand";
|
|
47
|
+
import {
|
|
48
|
+
ListDbBackupsCommandInput,
|
|
49
|
+
ListDbBackupsCommandOutput,
|
|
50
|
+
} from "./commands/ListDbBackupsCommand";
|
|
38
51
|
import {
|
|
39
52
|
ListDbClustersCommandInput,
|
|
40
53
|
ListDbClustersCommandOutput,
|
|
@@ -63,6 +76,10 @@ import {
|
|
|
63
76
|
RebootDbInstanceCommandInput,
|
|
64
77
|
RebootDbInstanceCommandOutput,
|
|
65
78
|
} from "./commands/RebootDbInstanceCommand";
|
|
79
|
+
import {
|
|
80
|
+
RestoreFromDbBackupCommandInput,
|
|
81
|
+
RestoreFromDbBackupCommandOutput,
|
|
82
|
+
} from "./commands/RestoreFromDbBackupCommand";
|
|
66
83
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
67
84
|
import {
|
|
68
85
|
UntagResourceCommandInput,
|
|
@@ -78,6 +95,19 @@ import {
|
|
|
78
95
|
} from "./commands/UpdateDbInstanceCommand";
|
|
79
96
|
import { TimestreamInfluxDBClient } from "./TimestreamInfluxDBClient";
|
|
80
97
|
export interface TimestreamInfluxDB {
|
|
98
|
+
createDbBackup(
|
|
99
|
+
args: CreateDbBackupCommandInput,
|
|
100
|
+
options?: __HttpHandlerOptions,
|
|
101
|
+
): Promise<CreateDbBackupCommandOutput>;
|
|
102
|
+
createDbBackup(
|
|
103
|
+
args: CreateDbBackupCommandInput,
|
|
104
|
+
cb: (err: any, data?: CreateDbBackupCommandOutput) => void,
|
|
105
|
+
): void;
|
|
106
|
+
createDbBackup(
|
|
107
|
+
args: CreateDbBackupCommandInput,
|
|
108
|
+
options: __HttpHandlerOptions,
|
|
109
|
+
cb: (err: any, data?: CreateDbBackupCommandOutput) => void,
|
|
110
|
+
): void;
|
|
81
111
|
createDbCluster(
|
|
82
112
|
args: CreateDbClusterCommandInput,
|
|
83
113
|
options?: __HttpHandlerOptions,
|
|
@@ -117,6 +147,19 @@ export interface TimestreamInfluxDB {
|
|
|
117
147
|
options: __HttpHandlerOptions,
|
|
118
148
|
cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void,
|
|
119
149
|
): void;
|
|
150
|
+
deleteDbBackup(
|
|
151
|
+
args: DeleteDbBackupCommandInput,
|
|
152
|
+
options?: __HttpHandlerOptions,
|
|
153
|
+
): Promise<DeleteDbBackupCommandOutput>;
|
|
154
|
+
deleteDbBackup(
|
|
155
|
+
args: DeleteDbBackupCommandInput,
|
|
156
|
+
cb: (err: any, data?: DeleteDbBackupCommandOutput) => void,
|
|
157
|
+
): void;
|
|
158
|
+
deleteDbBackup(
|
|
159
|
+
args: DeleteDbBackupCommandInput,
|
|
160
|
+
options: __HttpHandlerOptions,
|
|
161
|
+
cb: (err: any, data?: DeleteDbBackupCommandOutput) => void,
|
|
162
|
+
): void;
|
|
120
163
|
deleteDbCluster(
|
|
121
164
|
args: DeleteDbClusterCommandInput,
|
|
122
165
|
options?: __HttpHandlerOptions,
|
|
@@ -143,6 +186,19 @@ export interface TimestreamInfluxDB {
|
|
|
143
186
|
options: __HttpHandlerOptions,
|
|
144
187
|
cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void,
|
|
145
188
|
): void;
|
|
189
|
+
getDbBackup(
|
|
190
|
+
args: GetDbBackupCommandInput,
|
|
191
|
+
options?: __HttpHandlerOptions,
|
|
192
|
+
): Promise<GetDbBackupCommandOutput>;
|
|
193
|
+
getDbBackup(
|
|
194
|
+
args: GetDbBackupCommandInput,
|
|
195
|
+
cb: (err: any, data?: GetDbBackupCommandOutput) => void,
|
|
196
|
+
): void;
|
|
197
|
+
getDbBackup(
|
|
198
|
+
args: GetDbBackupCommandInput,
|
|
199
|
+
options: __HttpHandlerOptions,
|
|
200
|
+
cb: (err: any, data?: GetDbBackupCommandOutput) => void,
|
|
201
|
+
): void;
|
|
146
202
|
getDbCluster(
|
|
147
203
|
args: GetDbClusterCommandInput,
|
|
148
204
|
options?: __HttpHandlerOptions,
|
|
@@ -182,6 +238,20 @@ export interface TimestreamInfluxDB {
|
|
|
182
238
|
options: __HttpHandlerOptions,
|
|
183
239
|
cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void,
|
|
184
240
|
): void;
|
|
241
|
+
listDbBackups(): Promise<ListDbBackupsCommandOutput>;
|
|
242
|
+
listDbBackups(
|
|
243
|
+
args: ListDbBackupsCommandInput,
|
|
244
|
+
options?: __HttpHandlerOptions,
|
|
245
|
+
): Promise<ListDbBackupsCommandOutput>;
|
|
246
|
+
listDbBackups(
|
|
247
|
+
args: ListDbBackupsCommandInput,
|
|
248
|
+
cb: (err: any, data?: ListDbBackupsCommandOutput) => void,
|
|
249
|
+
): void;
|
|
250
|
+
listDbBackups(
|
|
251
|
+
args: ListDbBackupsCommandInput,
|
|
252
|
+
options: __HttpHandlerOptions,
|
|
253
|
+
cb: (err: any, data?: ListDbBackupsCommandOutput) => void,
|
|
254
|
+
): void;
|
|
185
255
|
listDbClusters(): Promise<ListDbClustersCommandOutput>;
|
|
186
256
|
listDbClusters(
|
|
187
257
|
args: ListDbClustersCommandInput,
|
|
@@ -276,6 +346,19 @@ export interface TimestreamInfluxDB {
|
|
|
276
346
|
options: __HttpHandlerOptions,
|
|
277
347
|
cb: (err: any, data?: RebootDbInstanceCommandOutput) => void,
|
|
278
348
|
): void;
|
|
349
|
+
restoreFromDbBackup(
|
|
350
|
+
args: RestoreFromDbBackupCommandInput,
|
|
351
|
+
options?: __HttpHandlerOptions,
|
|
352
|
+
): Promise<RestoreFromDbBackupCommandOutput>;
|
|
353
|
+
restoreFromDbBackup(
|
|
354
|
+
args: RestoreFromDbBackupCommandInput,
|
|
355
|
+
cb: (err: any, data?: RestoreFromDbBackupCommandOutput) => void,
|
|
356
|
+
): void;
|
|
357
|
+
restoreFromDbBackup(
|
|
358
|
+
args: RestoreFromDbBackupCommandInput,
|
|
359
|
+
options: __HttpHandlerOptions,
|
|
360
|
+
cb: (err: any, data?: RestoreFromDbBackupCommandOutput) => void,
|
|
361
|
+
): void;
|
|
279
362
|
tagResource(
|
|
280
363
|
args: TagResourceCommandInput,
|
|
281
364
|
options?: __HttpHandlerOptions,
|
|
@@ -328,6 +411,13 @@ export interface TimestreamInfluxDB {
|
|
|
328
411
|
options: __HttpHandlerOptions,
|
|
329
412
|
cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void,
|
|
330
413
|
): void;
|
|
414
|
+
paginateListDbBackups(
|
|
415
|
+
args?: ListDbBackupsCommandInput,
|
|
416
|
+
paginationConfig?: Pick<
|
|
417
|
+
PaginationConfiguration,
|
|
418
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
419
|
+
>,
|
|
420
|
+
): Paginator<ListDbBackupsCommandOutput>;
|
|
331
421
|
paginateListDbClusters(
|
|
332
422
|
args?: ListDbClustersCommandInput,
|
|
333
423
|
paginationConfig?: Pick<
|
|
@@ -33,6 +33,10 @@ import {
|
|
|
33
33
|
HttpAuthSchemeInputConfig,
|
|
34
34
|
HttpAuthSchemeResolvedConfig,
|
|
35
35
|
} from "./auth/httpAuthSchemeProvider";
|
|
36
|
+
import {
|
|
37
|
+
CreateDbBackupCommandInput,
|
|
38
|
+
CreateDbBackupCommandOutput,
|
|
39
|
+
} from "./commands/CreateDbBackupCommand";
|
|
36
40
|
import {
|
|
37
41
|
CreateDbClusterCommandInput,
|
|
38
42
|
CreateDbClusterCommandOutput,
|
|
@@ -45,6 +49,10 @@ import {
|
|
|
45
49
|
CreateDbParameterGroupCommandInput,
|
|
46
50
|
CreateDbParameterGroupCommandOutput,
|
|
47
51
|
} from "./commands/CreateDbParameterGroupCommand";
|
|
52
|
+
import {
|
|
53
|
+
DeleteDbBackupCommandInput,
|
|
54
|
+
DeleteDbBackupCommandOutput,
|
|
55
|
+
} from "./commands/DeleteDbBackupCommand";
|
|
48
56
|
import {
|
|
49
57
|
DeleteDbClusterCommandInput,
|
|
50
58
|
DeleteDbClusterCommandOutput,
|
|
@@ -53,6 +61,7 @@ import {
|
|
|
53
61
|
DeleteDbInstanceCommandInput,
|
|
54
62
|
DeleteDbInstanceCommandOutput,
|
|
55
63
|
} from "./commands/DeleteDbInstanceCommand";
|
|
64
|
+
import { GetDbBackupCommandInput, GetDbBackupCommandOutput } from "./commands/GetDbBackupCommand";
|
|
56
65
|
import {
|
|
57
66
|
GetDbClusterCommandInput,
|
|
58
67
|
GetDbClusterCommandOutput,
|
|
@@ -65,6 +74,10 @@ import {
|
|
|
65
74
|
GetDbParameterGroupCommandInput,
|
|
66
75
|
GetDbParameterGroupCommandOutput,
|
|
67
76
|
} from "./commands/GetDbParameterGroupCommand";
|
|
77
|
+
import {
|
|
78
|
+
ListDbBackupsCommandInput,
|
|
79
|
+
ListDbBackupsCommandOutput,
|
|
80
|
+
} from "./commands/ListDbBackupsCommand";
|
|
68
81
|
import {
|
|
69
82
|
ListDbClustersCommandInput,
|
|
70
83
|
ListDbClustersCommandOutput,
|
|
@@ -93,6 +106,10 @@ import {
|
|
|
93
106
|
RebootDbInstanceCommandInput,
|
|
94
107
|
RebootDbInstanceCommandOutput,
|
|
95
108
|
} from "./commands/RebootDbInstanceCommand";
|
|
109
|
+
import {
|
|
110
|
+
RestoreFromDbBackupCommandInput,
|
|
111
|
+
RestoreFromDbBackupCommandOutput,
|
|
112
|
+
} from "./commands/RestoreFromDbBackupCommand";
|
|
96
113
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
97
114
|
import {
|
|
98
115
|
UntagResourceCommandInput,
|
|
@@ -114,14 +131,18 @@ import {
|
|
|
114
131
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
115
132
|
export { __Client };
|
|
116
133
|
export type ServiceInputTypes =
|
|
134
|
+
| CreateDbBackupCommandInput
|
|
117
135
|
| CreateDbClusterCommandInput
|
|
118
136
|
| CreateDbInstanceCommandInput
|
|
119
137
|
| CreateDbParameterGroupCommandInput
|
|
138
|
+
| DeleteDbBackupCommandInput
|
|
120
139
|
| DeleteDbClusterCommandInput
|
|
121
140
|
| DeleteDbInstanceCommandInput
|
|
141
|
+
| GetDbBackupCommandInput
|
|
122
142
|
| GetDbClusterCommandInput
|
|
123
143
|
| GetDbInstanceCommandInput
|
|
124
144
|
| GetDbParameterGroupCommandInput
|
|
145
|
+
| ListDbBackupsCommandInput
|
|
125
146
|
| ListDbClustersCommandInput
|
|
126
147
|
| ListDbInstancesCommandInput
|
|
127
148
|
| ListDbInstancesForClusterCommandInput
|
|
@@ -129,19 +150,24 @@ export type ServiceInputTypes =
|
|
|
129
150
|
| ListTagsForResourceCommandInput
|
|
130
151
|
| RebootDbClusterCommandInput
|
|
131
152
|
| RebootDbInstanceCommandInput
|
|
153
|
+
| RestoreFromDbBackupCommandInput
|
|
132
154
|
| TagResourceCommandInput
|
|
133
155
|
| UntagResourceCommandInput
|
|
134
156
|
| UpdateDbClusterCommandInput
|
|
135
157
|
| UpdateDbInstanceCommandInput;
|
|
136
158
|
export type ServiceOutputTypes =
|
|
159
|
+
| CreateDbBackupCommandOutput
|
|
137
160
|
| CreateDbClusterCommandOutput
|
|
138
161
|
| CreateDbInstanceCommandOutput
|
|
139
162
|
| CreateDbParameterGroupCommandOutput
|
|
163
|
+
| DeleteDbBackupCommandOutput
|
|
140
164
|
| DeleteDbClusterCommandOutput
|
|
141
165
|
| DeleteDbInstanceCommandOutput
|
|
166
|
+
| GetDbBackupCommandOutput
|
|
142
167
|
| GetDbClusterCommandOutput
|
|
143
168
|
| GetDbInstanceCommandOutput
|
|
144
169
|
| GetDbParameterGroupCommandOutput
|
|
170
|
+
| ListDbBackupsCommandOutput
|
|
145
171
|
| ListDbClustersCommandOutput
|
|
146
172
|
| ListDbInstancesCommandOutput
|
|
147
173
|
| ListDbInstancesForClusterCommandOutput
|
|
@@ -149,6 +175,7 @@ export type ServiceOutputTypes =
|
|
|
149
175
|
| ListTagsForResourceCommandOutput
|
|
150
176
|
| RebootDbClusterCommandOutput
|
|
151
177
|
| RebootDbInstanceCommandOutput
|
|
178
|
+
| RestoreFromDbBackupCommandOutput
|
|
152
179
|
| TagResourceCommandOutput
|
|
153
180
|
| UntagResourceCommandOutput
|
|
154
181
|
| UpdateDbClusterCommandOutput
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { CreateDbBackupInput, CreateDbBackupOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface CreateDbBackupCommandInput extends CreateDbBackupInput {}
|
|
5
|
+
export interface CreateDbBackupCommandOutput extends CreateDbBackupOutput, __MetadataBearer {}
|
|
6
|
+
declare const CreateDbBackupCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: CreateDbBackupCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
CreateDbBackupCommandInput,
|
|
11
|
+
CreateDbBackupCommandOutput,
|
|
12
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: CreateDbBackupCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
CreateDbBackupCommandInput,
|
|
20
|
+
CreateDbBackupCommandOutput,
|
|
21
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class CreateDbBackupCommand extends CreateDbBackupCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: CreateDbBackupInput;
|
|
31
|
+
output: CreateDbBackupOutput;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: CreateDbBackupCommandInput;
|
|
35
|
+
output: CreateDbBackupCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { DeleteDbBackupInput, DeleteDbBackupOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface DeleteDbBackupCommandInput extends DeleteDbBackupInput {}
|
|
5
|
+
export interface DeleteDbBackupCommandOutput extends DeleteDbBackupOutput, __MetadataBearer {}
|
|
6
|
+
declare const DeleteDbBackupCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: DeleteDbBackupCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
DeleteDbBackupCommandInput,
|
|
11
|
+
DeleteDbBackupCommandOutput,
|
|
12
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteDbBackupCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
DeleteDbBackupCommandInput,
|
|
20
|
+
DeleteDbBackupCommandOutput,
|
|
21
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class DeleteDbBackupCommand extends DeleteDbBackupCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: DeleteDbBackupInput;
|
|
31
|
+
output: DeleteDbBackupOutput;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: DeleteDbBackupCommandInput;
|
|
35
|
+
output: DeleteDbBackupCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { GetDbBackupInput, GetDbBackupOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface GetDbBackupCommandInput extends GetDbBackupInput {}
|
|
5
|
+
export interface GetDbBackupCommandOutput extends GetDbBackupOutput, __MetadataBearer {}
|
|
6
|
+
declare const GetDbBackupCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: GetDbBackupCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
GetDbBackupCommandInput,
|
|
11
|
+
GetDbBackupCommandOutput,
|
|
12
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
input: GetDbBackupCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
GetDbBackupCommandInput,
|
|
20
|
+
GetDbBackupCommandOutput,
|
|
21
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class GetDbBackupCommand extends GetDbBackupCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: GetDbBackupInput;
|
|
31
|
+
output: GetDbBackupOutput;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: GetDbBackupCommandInput;
|
|
35
|
+
output: GetDbBackupCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { ListDbBackupsInput, ListDbBackupsOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface ListDbBackupsCommandInput extends ListDbBackupsInput {}
|
|
5
|
+
export interface ListDbBackupsCommandOutput extends ListDbBackupsOutput, __MetadataBearer {}
|
|
6
|
+
declare const ListDbBackupsCommand_base: {
|
|
7
|
+
new (
|
|
8
|
+
input: ListDbBackupsCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
|
+
ListDbBackupsCommandInput,
|
|
11
|
+
ListDbBackupsCommandOutput,
|
|
12
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
13
|
+
import("..").ServiceInputTypes,
|
|
14
|
+
import("..").ServiceOutputTypes
|
|
15
|
+
>;
|
|
16
|
+
new (
|
|
17
|
+
...[input]: [] | [ListDbBackupsCommandInput]
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
19
|
+
ListDbBackupsCommandInput,
|
|
20
|
+
ListDbBackupsCommandOutput,
|
|
21
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
22
|
+
import("..").ServiceInputTypes,
|
|
23
|
+
import("..").ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
26
|
+
};
|
|
27
|
+
export declare class ListDbBackupsCommand extends ListDbBackupsCommand_base {
|
|
28
|
+
protected static __types: {
|
|
29
|
+
api: {
|
|
30
|
+
input: ListDbBackupsInput;
|
|
31
|
+
output: ListDbBackupsOutput;
|
|
32
|
+
};
|
|
33
|
+
sdk: {
|
|
34
|
+
input: ListDbBackupsCommandInput;
|
|
35
|
+
output: ListDbBackupsCommandOutput;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
+
import { RestoreFromDbBackupInput, RestoreFromDbBackupOutput } from "../models/models_0";
|
|
3
|
+
export { __MetadataBearer };
|
|
4
|
+
export interface RestoreFromDbBackupCommandInput extends RestoreFromDbBackupInput {}
|
|
5
|
+
export interface RestoreFromDbBackupCommandOutput
|
|
6
|
+
extends RestoreFromDbBackupOutput, __MetadataBearer {}
|
|
7
|
+
declare const RestoreFromDbBackupCommand_base: {
|
|
8
|
+
new (
|
|
9
|
+
input: RestoreFromDbBackupCommandInput,
|
|
10
|
+
): import("@smithy/core/client").CommandImpl<
|
|
11
|
+
RestoreFromDbBackupCommandInput,
|
|
12
|
+
RestoreFromDbBackupCommandOutput,
|
|
13
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
14
|
+
import("..").ServiceInputTypes,
|
|
15
|
+
import("..").ServiceOutputTypes
|
|
16
|
+
>;
|
|
17
|
+
new (
|
|
18
|
+
input: RestoreFromDbBackupCommandInput,
|
|
19
|
+
): import("@smithy/core/client").CommandImpl<
|
|
20
|
+
RestoreFromDbBackupCommandInput,
|
|
21
|
+
RestoreFromDbBackupCommandOutput,
|
|
22
|
+
import("..").TimestreamInfluxDBClientResolvedConfig,
|
|
23
|
+
import("..").ServiceInputTypes,
|
|
24
|
+
import("..").ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
export declare class RestoreFromDbBackupCommand extends RestoreFromDbBackupCommand_base {
|
|
29
|
+
protected static __types: {
|
|
30
|
+
api: {
|
|
31
|
+
input: RestoreFromDbBackupInput;
|
|
32
|
+
output: RestoreFromDbBackupOutput;
|
|
33
|
+
};
|
|
34
|
+
sdk: {
|
|
35
|
+
input: RestoreFromDbBackupCommandInput;
|
|
36
|
+
output: RestoreFromDbBackupCommandOutput;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
|
+
export * from "./CreateDbBackupCommand";
|
|
1
2
|
export * from "./CreateDbClusterCommand";
|
|
2
3
|
export * from "./CreateDbInstanceCommand";
|
|
3
4
|
export * from "./CreateDbParameterGroupCommand";
|
|
5
|
+
export * from "./DeleteDbBackupCommand";
|
|
4
6
|
export * from "./DeleteDbClusterCommand";
|
|
5
7
|
export * from "./DeleteDbInstanceCommand";
|
|
8
|
+
export * from "./GetDbBackupCommand";
|
|
6
9
|
export * from "./GetDbClusterCommand";
|
|
7
10
|
export * from "./GetDbInstanceCommand";
|
|
8
11
|
export * from "./GetDbParameterGroupCommand";
|
|
12
|
+
export * from "./ListDbBackupsCommand";
|
|
9
13
|
export * from "./ListDbClustersCommand";
|
|
10
14
|
export * from "./ListDbInstancesCommand";
|
|
11
15
|
export * from "./ListDbInstancesForClusterCommand";
|
|
@@ -13,6 +17,7 @@ export * from "./ListDbParameterGroupsCommand";
|
|
|
13
17
|
export * from "./ListTagsForResourceCommand";
|
|
14
18
|
export * from "./RebootDbClusterCommand";
|
|
15
19
|
export * from "./RebootDbInstanceCommand";
|
|
20
|
+
export * from "./RestoreFromDbBackupCommand";
|
|
16
21
|
export * from "./TagResourceCommand";
|
|
17
22
|
export * from "./UntagResourceCommand";
|
|
18
23
|
export * from "./UpdateDbClusterCommand";
|