@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
|
@@ -16,11 +16,19 @@ export declare const DbStorageType: {
|
|
|
16
16
|
readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
|
|
17
17
|
};
|
|
18
18
|
export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
|
|
19
|
-
export declare const
|
|
19
|
+
export declare const ResourceDeploymentType: {
|
|
20
20
|
readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS";
|
|
21
|
+
readonly SINGLE_AZ: "SINGLE_AZ";
|
|
22
|
+
readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
|
|
21
23
|
};
|
|
22
|
-
export type
|
|
23
|
-
(typeof
|
|
24
|
+
export type ResourceDeploymentType =
|
|
25
|
+
(typeof ResourceDeploymentType)[keyof typeof ResourceDeploymentType];
|
|
26
|
+
export declare const EngineType: {
|
|
27
|
+
readonly INFLUXDB_V2: "INFLUXDB_V2";
|
|
28
|
+
readonly INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE";
|
|
29
|
+
readonly INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE";
|
|
30
|
+
};
|
|
31
|
+
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
24
32
|
export declare const FailoverMode: {
|
|
25
33
|
readonly AUTOMATIC: "AUTOMATIC";
|
|
26
34
|
readonly NO_FAILOVER: "NO_FAILOVER";
|
|
@@ -31,6 +39,59 @@ export declare const NetworkType: {
|
|
|
31
39
|
readonly IPV4: "IPV4";
|
|
32
40
|
};
|
|
33
41
|
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
42
|
+
export declare const DbBackupStatus: {
|
|
43
|
+
readonly COMPLETED: "COMPLETED";
|
|
44
|
+
readonly DELETED: "DELETED";
|
|
45
|
+
readonly DELETING: "DELETING";
|
|
46
|
+
readonly FAILED: "FAILED";
|
|
47
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
48
|
+
};
|
|
49
|
+
export type DbBackupStatus = (typeof DbBackupStatus)[keyof typeof DbBackupStatus];
|
|
50
|
+
export declare const DbBackupType: {
|
|
51
|
+
readonly CONTINUOUS: "CONTINUOUS";
|
|
52
|
+
readonly CUSTOM_SCHEDULE: "CUSTOM_SCHEDULE";
|
|
53
|
+
readonly DAILY: "DAILY";
|
|
54
|
+
readonly HOURLY: "HOURLY";
|
|
55
|
+
readonly MONTHLY: "MONTHLY";
|
|
56
|
+
readonly ON_DEMAND: "ON_DEMAND";
|
|
57
|
+
readonly WEEKLY: "WEEKLY";
|
|
58
|
+
};
|
|
59
|
+
export type DbBackupType = (typeof DbBackupType)[keyof typeof DbBackupType];
|
|
60
|
+
export declare const ValidationExceptionReason: {
|
|
61
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
62
|
+
readonly OTHER: "OTHER";
|
|
63
|
+
};
|
|
64
|
+
export type ValidationExceptionReason =
|
|
65
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
66
|
+
export declare const AutomatedDbBackupType: {
|
|
67
|
+
readonly CONTINUOUS: "CONTINUOUS";
|
|
68
|
+
readonly CUSTOM_SCHEDULE: "CUSTOM_SCHEDULE";
|
|
69
|
+
readonly DAILY: "DAILY";
|
|
70
|
+
readonly HOURLY: "HOURLY";
|
|
71
|
+
readonly MONTHLY: "MONTHLY";
|
|
72
|
+
readonly WEEKLY: "WEEKLY";
|
|
73
|
+
};
|
|
74
|
+
export type AutomatedDbBackupType =
|
|
75
|
+
(typeof AutomatedDbBackupType)[keyof typeof AutomatedDbBackupType];
|
|
76
|
+
export declare const RestoreMode: {
|
|
77
|
+
readonly NEW_RESOURCE: "NEW_RESOURCE";
|
|
78
|
+
readonly REPLACE_EXISTING: "REPLACE_EXISTING";
|
|
79
|
+
};
|
|
80
|
+
export type RestoreMode = (typeof RestoreMode)[keyof typeof RestoreMode];
|
|
81
|
+
export declare const ResourceType: {
|
|
82
|
+
readonly DB_CLUSTER: "DB_CLUSTER";
|
|
83
|
+
readonly DB_INSTANCE: "DB_INSTANCE";
|
|
84
|
+
};
|
|
85
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
86
|
+
export declare const RestoreStatus: {
|
|
87
|
+
readonly RESTORING: "RESTORING";
|
|
88
|
+
};
|
|
89
|
+
export type RestoreStatus = (typeof RestoreStatus)[keyof typeof RestoreStatus];
|
|
90
|
+
export declare const ClusterDeploymentType: {
|
|
91
|
+
readonly MULTI_NODE_READ_REPLICAS: "MULTI_NODE_READ_REPLICAS";
|
|
92
|
+
};
|
|
93
|
+
export type ClusterDeploymentType =
|
|
94
|
+
(typeof ClusterDeploymentType)[keyof typeof ClusterDeploymentType];
|
|
34
95
|
export declare const ClusterStatus: {
|
|
35
96
|
readonly AVAILABLE: "AVAILABLE";
|
|
36
97
|
readonly CREATING: "CREATING";
|
|
@@ -41,22 +102,12 @@ export declare const ClusterStatus: {
|
|
|
41
102
|
readonly PARTIALLY_AVAILABLE: "PARTIALLY_AVAILABLE";
|
|
42
103
|
readonly REBOOTING: "REBOOTING";
|
|
43
104
|
readonly REBOOT_FAILED: "REBOOT_FAILED";
|
|
105
|
+
readonly RESTORE_FAILED: "RESTORE_FAILED";
|
|
106
|
+
readonly RESTORING: "RESTORING";
|
|
44
107
|
readonly UPDATING: "UPDATING";
|
|
45
108
|
readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
|
|
46
109
|
};
|
|
47
110
|
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
48
|
-
export declare const ValidationExceptionReason: {
|
|
49
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
50
|
-
readonly OTHER: "OTHER";
|
|
51
|
-
};
|
|
52
|
-
export type ValidationExceptionReason =
|
|
53
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
54
|
-
export declare const EngineType: {
|
|
55
|
-
readonly INFLUXDB_V2: "INFLUXDB_V2";
|
|
56
|
-
readonly INFLUXDB_V3_CORE: "INFLUXDB_V3_CORE";
|
|
57
|
-
readonly INFLUXDB_V3_ENTERPRISE: "INFLUXDB_V3_ENTERPRISE";
|
|
58
|
-
};
|
|
59
|
-
export type EngineType = (typeof EngineType)[keyof typeof EngineType];
|
|
60
111
|
export declare const DeploymentType: {
|
|
61
112
|
readonly SINGLE_AZ: "SINGLE_AZ";
|
|
62
113
|
readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
|
|
@@ -82,6 +133,8 @@ export declare const Status: {
|
|
|
82
133
|
readonly MODIFYING: "MODIFYING";
|
|
83
134
|
readonly REBOOTING: "REBOOTING";
|
|
84
135
|
readonly REBOOT_FAILED: "REBOOT_FAILED";
|
|
136
|
+
readonly RESTORE_FAILED: "RESTORE_FAILED";
|
|
137
|
+
readonly RESTORING: "RESTORING";
|
|
85
138
|
readonly UPDATING: "UPDATING";
|
|
86
139
|
readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
|
|
87
140
|
readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
|
+
AutomatedDbBackupType,
|
|
2
3
|
ClusterDeploymentType,
|
|
3
4
|
ClusterStatus,
|
|
4
5
|
DataFusionRuntimeType,
|
|
6
|
+
DbBackupStatus,
|
|
7
|
+
DbBackupType,
|
|
5
8
|
DbInstanceType,
|
|
6
9
|
DbStorageType,
|
|
7
10
|
DeploymentType,
|
|
@@ -12,9 +15,24 @@ import {
|
|
|
12
15
|
LogFormats,
|
|
13
16
|
LogLevel,
|
|
14
17
|
NetworkType,
|
|
18
|
+
ResourceDeploymentType,
|
|
19
|
+
ResourceType,
|
|
20
|
+
RestoreMode,
|
|
21
|
+
RestoreStatus,
|
|
15
22
|
Status,
|
|
16
23
|
TracingType,
|
|
17
24
|
} from "./enums";
|
|
25
|
+
export interface CreateDbBackupInput {
|
|
26
|
+
name: string | undefined;
|
|
27
|
+
dbResourceId: string | undefined;
|
|
28
|
+
retentionDays?: number | undefined;
|
|
29
|
+
tags?: Record<string, string> | undefined;
|
|
30
|
+
}
|
|
31
|
+
export interface ClusterConfiguration {
|
|
32
|
+
ingestQueryInstances?: number | undefined;
|
|
33
|
+
queryOnlyInstances?: number | undefined;
|
|
34
|
+
dedicatedCompactor?: boolean | undefined;
|
|
35
|
+
}
|
|
18
36
|
export interface S3Configuration {
|
|
19
37
|
bucketName: string | undefined;
|
|
20
38
|
enabled: boolean | undefined;
|
|
@@ -26,6 +44,145 @@ export interface MaintenanceSchedule {
|
|
|
26
44
|
timezone: string | undefined;
|
|
27
45
|
preferredMaintenanceWindow: string | undefined;
|
|
28
46
|
}
|
|
47
|
+
export interface CreateDbBackupOutput {
|
|
48
|
+
id: string | undefined;
|
|
49
|
+
name?: string | undefined;
|
|
50
|
+
arn: string | undefined;
|
|
51
|
+
status?: DbBackupStatus | undefined;
|
|
52
|
+
createdAt?: Date | undefined;
|
|
53
|
+
expiresAfter?: string | undefined;
|
|
54
|
+
dbResourceId?: string | undefined;
|
|
55
|
+
type?: DbBackupType | undefined;
|
|
56
|
+
engineType?: EngineType | undefined;
|
|
57
|
+
deploymentType?: ResourceDeploymentType | undefined;
|
|
58
|
+
kmsKeyId?: string | undefined;
|
|
59
|
+
clusterConfiguration?: ClusterConfiguration | undefined;
|
|
60
|
+
dbParameterGroupId?: string | undefined;
|
|
61
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
62
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
63
|
+
failoverMode?: FailoverMode | undefined;
|
|
64
|
+
dbStorageType?: DbStorageType | undefined;
|
|
65
|
+
allocatedStorage?: number | undefined;
|
|
66
|
+
vpcSubnetIds?: string[] | undefined;
|
|
67
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
68
|
+
publiclyAccessible?: boolean | undefined;
|
|
69
|
+
port?: number | undefined;
|
|
70
|
+
networkType?: NetworkType | undefined;
|
|
71
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
72
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface DeleteDbBackupInput {
|
|
75
|
+
identifier: string | undefined;
|
|
76
|
+
}
|
|
77
|
+
export interface DeleteDbBackupOutput {
|
|
78
|
+
id: string | undefined;
|
|
79
|
+
name?: string | undefined;
|
|
80
|
+
arn: string | undefined;
|
|
81
|
+
status?: DbBackupStatus | undefined;
|
|
82
|
+
createdAt?: Date | undefined;
|
|
83
|
+
expiresAfter?: string | undefined;
|
|
84
|
+
dbResourceId?: string | undefined;
|
|
85
|
+
type?: DbBackupType | undefined;
|
|
86
|
+
engineType?: EngineType | undefined;
|
|
87
|
+
deploymentType?: ResourceDeploymentType | undefined;
|
|
88
|
+
kmsKeyId?: string | undefined;
|
|
89
|
+
clusterConfiguration?: ClusterConfiguration | undefined;
|
|
90
|
+
dbParameterGroupId?: string | undefined;
|
|
91
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
92
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
93
|
+
failoverMode?: FailoverMode | undefined;
|
|
94
|
+
dbStorageType?: DbStorageType | undefined;
|
|
95
|
+
allocatedStorage?: number | undefined;
|
|
96
|
+
vpcSubnetIds?: string[] | undefined;
|
|
97
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
98
|
+
publiclyAccessible?: boolean | undefined;
|
|
99
|
+
port?: number | undefined;
|
|
100
|
+
networkType?: NetworkType | undefined;
|
|
101
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
102
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
103
|
+
}
|
|
104
|
+
export interface GetDbBackupInput {
|
|
105
|
+
identifier: string | undefined;
|
|
106
|
+
}
|
|
107
|
+
export interface GetDbBackupOutput {
|
|
108
|
+
id: string | undefined;
|
|
109
|
+
name?: string | undefined;
|
|
110
|
+
arn: string | undefined;
|
|
111
|
+
status?: DbBackupStatus | undefined;
|
|
112
|
+
createdAt?: Date | undefined;
|
|
113
|
+
expiresAfter?: string | undefined;
|
|
114
|
+
dbResourceId?: string | undefined;
|
|
115
|
+
type?: DbBackupType | undefined;
|
|
116
|
+
engineType?: EngineType | undefined;
|
|
117
|
+
deploymentType?: ResourceDeploymentType | undefined;
|
|
118
|
+
kmsKeyId?: string | undefined;
|
|
119
|
+
clusterConfiguration?: ClusterConfiguration | undefined;
|
|
120
|
+
dbParameterGroupId?: string | undefined;
|
|
121
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
122
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
123
|
+
failoverMode?: FailoverMode | undefined;
|
|
124
|
+
dbStorageType?: DbStorageType | undefined;
|
|
125
|
+
allocatedStorage?: number | undefined;
|
|
126
|
+
vpcSubnetIds?: string[] | undefined;
|
|
127
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
128
|
+
publiclyAccessible?: boolean | undefined;
|
|
129
|
+
port?: number | undefined;
|
|
130
|
+
networkType?: NetworkType | undefined;
|
|
131
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
132
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
133
|
+
}
|
|
134
|
+
export interface ListDbBackupsInput {
|
|
135
|
+
dbResourceId?: string | undefined;
|
|
136
|
+
nextToken?: string | undefined;
|
|
137
|
+
maxResults?: number | undefined;
|
|
138
|
+
}
|
|
139
|
+
export interface DbBackupSummary {
|
|
140
|
+
id: string | undefined;
|
|
141
|
+
name?: string | undefined;
|
|
142
|
+
arn: string | undefined;
|
|
143
|
+
status?: DbBackupStatus | undefined;
|
|
144
|
+
createdAt?: Date | undefined;
|
|
145
|
+
expiresAfter?: string | undefined;
|
|
146
|
+
dbResourceId?: string | undefined;
|
|
147
|
+
type?: DbBackupType | undefined;
|
|
148
|
+
engineType?: EngineType | undefined;
|
|
149
|
+
deploymentType?: ResourceDeploymentType | undefined;
|
|
150
|
+
kmsKeyId?: string | undefined;
|
|
151
|
+
}
|
|
152
|
+
export interface ListDbBackupsOutput {
|
|
153
|
+
items: DbBackupSummary[] | undefined;
|
|
154
|
+
nextToken?: string | undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface DbBackupConfiguration {
|
|
157
|
+
type: AutomatedDbBackupType | undefined;
|
|
158
|
+
retentionDays: number | undefined;
|
|
159
|
+
enabled: boolean | undefined;
|
|
160
|
+
customSchedule?: string | undefined;
|
|
161
|
+
}
|
|
162
|
+
export interface RestoreFromDbBackupInput {
|
|
163
|
+
name: string | undefined;
|
|
164
|
+
dbBackupId: string | undefined;
|
|
165
|
+
restoreToTime?: Date | undefined;
|
|
166
|
+
restoreMode?: RestoreMode | undefined;
|
|
167
|
+
vpcSubnetIds?: string[] | undefined;
|
|
168
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
169
|
+
publiclyAccessible?: boolean | undefined;
|
|
170
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
171
|
+
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
172
|
+
tags?: Record<string, string> | undefined;
|
|
173
|
+
port?: number | undefined;
|
|
174
|
+
networkType?: NetworkType | undefined;
|
|
175
|
+
deploymentType?: ResourceDeploymentType | undefined;
|
|
176
|
+
dbBackupConfigurations?: DbBackupConfiguration[] | undefined;
|
|
177
|
+
kmsKeyId?: string | undefined;
|
|
178
|
+
}
|
|
179
|
+
export interface RestoreFromDbBackupOutput {
|
|
180
|
+
restoredDbResourceId?: string | undefined;
|
|
181
|
+
restoreStatus?: RestoreStatus | undefined;
|
|
182
|
+
resourceType?: ResourceType | undefined;
|
|
183
|
+
engineType?: EngineType | undefined;
|
|
184
|
+
deploymentType?: ResourceDeploymentType | undefined;
|
|
185
|
+
}
|
|
29
186
|
export interface CreateDbClusterInput {
|
|
30
187
|
name: string | undefined;
|
|
31
188
|
username?: string | undefined;
|
|
@@ -45,6 +202,8 @@ export interface CreateDbClusterInput {
|
|
|
45
202
|
failoverMode?: FailoverMode | undefined;
|
|
46
203
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
47
204
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
205
|
+
dbBackupConfigurations?: DbBackupConfiguration[] | undefined;
|
|
206
|
+
kmsKeyId?: string | undefined;
|
|
48
207
|
tags?: Record<string, string> | undefined;
|
|
49
208
|
}
|
|
50
209
|
export interface CreateDbClusterOutput {
|
|
@@ -53,6 +212,7 @@ export interface CreateDbClusterOutput {
|
|
|
53
212
|
}
|
|
54
213
|
export interface DeleteDbClusterInput {
|
|
55
214
|
dbClusterId: string | undefined;
|
|
215
|
+
retainAutomatedBackups?: boolean | undefined;
|
|
56
216
|
}
|
|
57
217
|
export interface DeleteDbClusterOutput {
|
|
58
218
|
dbClusterStatus?: ClusterStatus | undefined;
|
|
@@ -60,10 +220,12 @@ export interface DeleteDbClusterOutput {
|
|
|
60
220
|
export interface GetDbClusterInput {
|
|
61
221
|
dbClusterId: string | undefined;
|
|
62
222
|
}
|
|
63
|
-
export interface
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
223
|
+
export interface DbBackupConfigurationOutput {
|
|
224
|
+
type: AutomatedDbBackupType | undefined;
|
|
225
|
+
retentionDays: number | undefined;
|
|
226
|
+
enabled: boolean | undefined;
|
|
227
|
+
customSchedule?: string | undefined;
|
|
228
|
+
nextAutomatedBackupTime?: Date | undefined;
|
|
67
229
|
}
|
|
68
230
|
export interface GetDbClusterOutput {
|
|
69
231
|
id: string | undefined;
|
|
@@ -90,6 +252,8 @@ export interface GetDbClusterOutput {
|
|
|
90
252
|
vpcSecurityGroupIds?: string[] | undefined;
|
|
91
253
|
failoverMode?: FailoverMode | undefined;
|
|
92
254
|
clusterConfiguration?: ClusterConfiguration | undefined;
|
|
255
|
+
dbBackupConfigurations?: DbBackupConfigurationOutput[] | undefined;
|
|
256
|
+
kmsKeyId?: string | undefined;
|
|
93
257
|
}
|
|
94
258
|
export interface ListDbClustersInput {
|
|
95
259
|
nextToken?: string | undefined;
|
|
@@ -153,6 +317,7 @@ export interface UpdateDbClusterInput {
|
|
|
153
317
|
dbInstanceType?: DbInstanceType | undefined;
|
|
154
318
|
failoverMode?: FailoverMode | undefined;
|
|
155
319
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
320
|
+
dbBackupConfigurations?: DbBackupConfiguration[] | undefined;
|
|
156
321
|
}
|
|
157
322
|
export interface UpdateDbClusterOutput {
|
|
158
323
|
dbClusterStatus?: ClusterStatus | undefined;
|
|
@@ -176,6 +341,8 @@ export interface CreateDbInstanceInput {
|
|
|
176
341
|
tags?: Record<string, string> | undefined;
|
|
177
342
|
port?: number | undefined;
|
|
178
343
|
networkType?: NetworkType | undefined;
|
|
344
|
+
dbBackupConfigurations?: DbBackupConfiguration[] | undefined;
|
|
345
|
+
kmsKeyId?: string | undefined;
|
|
179
346
|
}
|
|
180
347
|
export interface CreateDbInstanceOutput {
|
|
181
348
|
id: string | undefined;
|
|
@@ -203,9 +370,12 @@ export interface CreateDbInstanceOutput {
|
|
|
203
370
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
204
371
|
lastMaintenanceTime?: Date | undefined;
|
|
205
372
|
nextMaintenanceTime?: Date | undefined;
|
|
373
|
+
dbBackupConfigurations?: DbBackupConfigurationOutput[] | undefined;
|
|
374
|
+
kmsKeyId?: string | undefined;
|
|
206
375
|
}
|
|
207
376
|
export interface DeleteDbInstanceInput {
|
|
208
377
|
identifier: string | undefined;
|
|
378
|
+
retainAutomatedBackups?: boolean | undefined;
|
|
209
379
|
}
|
|
210
380
|
export interface DeleteDbInstanceOutput {
|
|
211
381
|
id: string | undefined;
|
|
@@ -233,6 +403,8 @@ export interface DeleteDbInstanceOutput {
|
|
|
233
403
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
234
404
|
lastMaintenanceTime?: Date | undefined;
|
|
235
405
|
nextMaintenanceTime?: Date | undefined;
|
|
406
|
+
dbBackupConfigurations?: DbBackupConfigurationOutput[] | undefined;
|
|
407
|
+
kmsKeyId?: string | undefined;
|
|
236
408
|
}
|
|
237
409
|
export interface GetDbInstanceInput {
|
|
238
410
|
identifier: string | undefined;
|
|
@@ -263,6 +435,8 @@ export interface GetDbInstanceOutput {
|
|
|
263
435
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
264
436
|
lastMaintenanceTime?: Date | undefined;
|
|
265
437
|
nextMaintenanceTime?: Date | undefined;
|
|
438
|
+
dbBackupConfigurations?: DbBackupConfigurationOutput[] | undefined;
|
|
439
|
+
kmsKeyId?: string | undefined;
|
|
266
440
|
}
|
|
267
441
|
export interface ListDbInstancesInput {
|
|
268
442
|
nextToken?: string | undefined;
|
|
@@ -314,6 +488,8 @@ export interface RebootDbInstanceOutput {
|
|
|
314
488
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
315
489
|
lastMaintenanceTime?: Date | undefined;
|
|
316
490
|
nextMaintenanceTime?: Date | undefined;
|
|
491
|
+
dbBackupConfigurations?: DbBackupConfigurationOutput[] | undefined;
|
|
492
|
+
kmsKeyId?: string | undefined;
|
|
317
493
|
}
|
|
318
494
|
export interface UpdateDbInstanceInput {
|
|
319
495
|
identifier: string | undefined;
|
|
@@ -325,6 +501,7 @@ export interface UpdateDbInstanceInput {
|
|
|
325
501
|
dbStorageType?: DbStorageType | undefined;
|
|
326
502
|
allocatedStorage?: number | undefined;
|
|
327
503
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
504
|
+
dbBackupConfigurations?: DbBackupConfiguration[] | undefined;
|
|
328
505
|
}
|
|
329
506
|
export interface UpdateDbInstanceOutput {
|
|
330
507
|
id: string | undefined;
|
|
@@ -352,6 +529,8 @@ export interface UpdateDbInstanceOutput {
|
|
|
352
529
|
maintenanceSchedule?: MaintenanceSchedule | undefined;
|
|
353
530
|
lastMaintenanceTime?: Date | undefined;
|
|
354
531
|
nextMaintenanceTime?: Date | undefined;
|
|
532
|
+
dbBackupConfigurations?: DbBackupConfigurationOutput[] | undefined;
|
|
533
|
+
kmsKeyId?: string | undefined;
|
|
355
534
|
}
|
|
356
535
|
export interface Duration {
|
|
357
536
|
durationType: DurationType | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDbBackupsCommandInput,
|
|
4
|
+
ListDbBackupsCommandOutput,
|
|
5
|
+
} from "../commands/ListDbBackupsCommand";
|
|
6
|
+
import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDbBackups: (
|
|
8
|
+
config: TimestreamInfluxDBPaginationConfiguration,
|
|
9
|
+
input: ListDbBackupsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDbBackupsCommandOutput>;
|
|
@@ -15,21 +15,30 @@ export declare var ThrottlingException$: StaticErrorSchema;
|
|
|
15
15
|
export declare var ValidationException$: StaticErrorSchema;
|
|
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;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-influxdb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1102.0",
|
|
4
4
|
"description": "AWS SDK for JavaScript Timestream Influxdb Client for Node.js, Browser and React Native",
|
|
5
5
|
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-timestream-influxdb",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@aws-sdk/core": "^3.977.
|
|
50
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
49
|
+
"@aws-sdk/core": "^3.977.5",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.77",
|
|
51
51
|
"@aws-sdk/types": "^3.974.2",
|
|
52
52
|
"@smithy/core": "^3.31.1",
|
|
53
53
|
"@smithy/fetch-http-handler": "^5.6.13",
|