@aws-sdk/client-timestream-influxdb 3.534.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/LICENSE +201 -0
- package/README.md +293 -0
- package/dist-cjs/TimestreamInfluxDB.js +33 -0
- package/dist-cjs/TimestreamInfluxDBClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateDbInstanceCommand.js +29 -0
- package/dist-cjs/commands/CreateDbParameterGroupCommand.js +28 -0
- package/dist-cjs/commands/DeleteDbInstanceCommand.js +28 -0
- package/dist-cjs/commands/GetDbInstanceCommand.js +28 -0
- package/dist-cjs/commands/GetDbParameterGroupCommand.js +28 -0
- package/dist-cjs/commands/ListDbInstancesCommand.js +28 -0
- package/dist-cjs/commands/ListDbParameterGroupsCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +28 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/UpdateDbInstanceCommand.js +28 -0
- package/dist-cjs/commands/index.js +14 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/TimestreamInfluxDBServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +159 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListDbInstancesPaginator.js +7 -0
- package/dist-cjs/pagination/ListDbParameterGroupsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_json1_0.js +365 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/TimestreamInfluxDB.js +29 -0
- package/dist-es/TimestreamInfluxDBClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateDbInstanceCommand.js +25 -0
- package/dist-es/commands/CreateDbParameterGroupCommand.js +24 -0
- package/dist-es/commands/DeleteDbInstanceCommand.js +24 -0
- package/dist-es/commands/GetDbInstanceCommand.js +24 -0
- package/dist-es/commands/GetDbParameterGroupCommand.js +24 -0
- package/dist-es/commands/ListDbInstancesCommand.js +24 -0
- package/dist-es/commands/ListDbParameterGroupsCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/UpdateDbInstanceCommand.js +24 -0
- package/dist-es/commands/index.js +11 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/TimestreamInfluxDBServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +148 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListDbInstancesPaginator.js +4 -0
- package/dist-es/pagination/ListDbParameterGroupsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_0.js +340 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/TimestreamInfluxDB.d.ts +87 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +182 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +129 -0
- package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +108 -0
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +101 -0
- package/dist-types/commands/GetDbInstanceCommand.d.ts +98 -0
- package/dist-types/commands/GetDbParameterGroupCommand.d.ts +87 -0
- package/dist-types/commands/ListDbInstancesCommand.d.ts +87 -0
- package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +82 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +63 -0
- package/dist-types/commands/TagResourceCommand.d.ts +62 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +62 -0
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +108 -0
- package/dist-types/commands/index.d.ts +11 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +15 -0
- package/dist-types/models/TimestreamInfluxDBServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1099 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListDbInstancesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListDbParameterGroupsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +101 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +194 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +189 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +26 -0
- package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
- package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +29 -0
- package/dist-types/ts3.4/commands/index.d.ts +11 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/TimestreamInfluxDBServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +319 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListDbInstancesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListDbParameterGroupsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +137 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +101 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./TimestreamInfluxDBClient";
|
|
2
|
+
export * from "./TimestreamInfluxDB";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
import "@aws-sdk/util-endpoints";
|
|
10
|
+
export { TimestreamInfluxDBServiceException } from "./models/TimestreamInfluxDBServiceException";
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceException, __ServiceExceptionOptions };
|
|
6
|
+
export declare class TimestreamInfluxDBServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { TimestreamInfluxDBServiceException as __BaseException } from "./TimestreamInfluxDBServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class ConflictException extends __BaseException {
|
|
11
|
+
readonly name: "ConflictException";
|
|
12
|
+
readonly $fault: "client";
|
|
13
|
+
resourceId: string | undefined;
|
|
14
|
+
resourceType: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare const DbInstanceType: {
|
|
18
|
+
readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
|
|
19
|
+
readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
|
|
20
|
+
readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
|
|
21
|
+
readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
|
|
22
|
+
readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
|
|
23
|
+
readonly DB_INFLUX_LARGE: "db.influx.large";
|
|
24
|
+
readonly DB_INFLUX_MEDIUM: "db.influx.medium";
|
|
25
|
+
readonly DB_INFLUX_XLARGE: "db.influx.xlarge";
|
|
26
|
+
};
|
|
27
|
+
export type DbInstanceType =
|
|
28
|
+
(typeof DbInstanceType)[keyof typeof DbInstanceType];
|
|
29
|
+
export declare const DbStorageType: {
|
|
30
|
+
readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1";
|
|
31
|
+
readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2";
|
|
32
|
+
readonly INFLUX_IO_INCLUDED_T3: "InfluxIOIncludedT3";
|
|
33
|
+
};
|
|
34
|
+
export type DbStorageType = (typeof DbStorageType)[keyof typeof DbStorageType];
|
|
35
|
+
export declare const DeploymentType: {
|
|
36
|
+
readonly SINGLE_AZ: "SINGLE_AZ";
|
|
37
|
+
readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
|
|
38
|
+
};
|
|
39
|
+
export type DeploymentType =
|
|
40
|
+
(typeof DeploymentType)[keyof typeof DeploymentType];
|
|
41
|
+
export interface S3Configuration {
|
|
42
|
+
bucketName: string | undefined;
|
|
43
|
+
enabled: boolean | undefined;
|
|
44
|
+
}
|
|
45
|
+
export interface LogDeliveryConfiguration {
|
|
46
|
+
s3Configuration: S3Configuration | undefined;
|
|
47
|
+
}
|
|
48
|
+
export interface CreateDbInstanceInput {
|
|
49
|
+
name: string | undefined;
|
|
50
|
+
username?: string;
|
|
51
|
+
password: string | undefined;
|
|
52
|
+
organization?: string;
|
|
53
|
+
bucket?: string;
|
|
54
|
+
dbInstanceType: DbInstanceType | undefined;
|
|
55
|
+
vpcSubnetIds: string[] | undefined;
|
|
56
|
+
vpcSecurityGroupIds: string[] | undefined;
|
|
57
|
+
publiclyAccessible?: boolean;
|
|
58
|
+
dbStorageType?: DbStorageType;
|
|
59
|
+
allocatedStorage: number | undefined;
|
|
60
|
+
dbParameterGroupIdentifier?: string;
|
|
61
|
+
deploymentType?: DeploymentType;
|
|
62
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
63
|
+
tags?: Record<string, string>;
|
|
64
|
+
}
|
|
65
|
+
export declare const Status: {
|
|
66
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
67
|
+
readonly CREATING: "CREATING";
|
|
68
|
+
readonly DELETED: "DELETED";
|
|
69
|
+
readonly DELETING: "DELETING";
|
|
70
|
+
readonly FAILED: "FAILED";
|
|
71
|
+
readonly MODIFYING: "MODIFYING";
|
|
72
|
+
readonly UPDATING: "UPDATING";
|
|
73
|
+
};
|
|
74
|
+
export type Status = (typeof Status)[keyof typeof Status];
|
|
75
|
+
export interface CreateDbInstanceOutput {
|
|
76
|
+
id: string | undefined;
|
|
77
|
+
name: string | undefined;
|
|
78
|
+
arn: string | undefined;
|
|
79
|
+
status?: Status;
|
|
80
|
+
endpoint?: string;
|
|
81
|
+
dbInstanceType?: DbInstanceType;
|
|
82
|
+
dbStorageType?: DbStorageType;
|
|
83
|
+
allocatedStorage?: number;
|
|
84
|
+
deploymentType?: DeploymentType;
|
|
85
|
+
vpcSubnetIds: string[] | undefined;
|
|
86
|
+
publiclyAccessible?: boolean;
|
|
87
|
+
vpcSecurityGroupIds?: string[];
|
|
88
|
+
dbParameterGroupIdentifier?: string;
|
|
89
|
+
availabilityZone?: string;
|
|
90
|
+
secondaryAvailabilityZone?: string;
|
|
91
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
92
|
+
influxAuthParametersSecretArn?: string;
|
|
93
|
+
}
|
|
94
|
+
export declare class InternalServerException extends __BaseException {
|
|
95
|
+
readonly name: "InternalServerException";
|
|
96
|
+
readonly $fault: "server";
|
|
97
|
+
$retryable: {};
|
|
98
|
+
constructor(
|
|
99
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
103
|
+
readonly name: "ResourceNotFoundException";
|
|
104
|
+
readonly $fault: "client";
|
|
105
|
+
resourceId: string | undefined;
|
|
106
|
+
resourceType: string | undefined;
|
|
107
|
+
constructor(
|
|
108
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
112
|
+
readonly name: "ServiceQuotaExceededException";
|
|
113
|
+
readonly $fault: "client";
|
|
114
|
+
constructor(
|
|
115
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
116
|
+
);
|
|
117
|
+
}
|
|
118
|
+
export declare class ThrottlingException extends __BaseException {
|
|
119
|
+
readonly name: "ThrottlingException";
|
|
120
|
+
readonly $fault: "client";
|
|
121
|
+
$retryable: {};
|
|
122
|
+
retryAfterSeconds?: number;
|
|
123
|
+
constructor(
|
|
124
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
125
|
+
);
|
|
126
|
+
}
|
|
127
|
+
export declare const ValidationExceptionReason: {
|
|
128
|
+
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
129
|
+
readonly OTHER: "OTHER";
|
|
130
|
+
};
|
|
131
|
+
export type ValidationExceptionReason =
|
|
132
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
133
|
+
export declare class ValidationException extends __BaseException {
|
|
134
|
+
readonly name: "ValidationException";
|
|
135
|
+
readonly $fault: "client";
|
|
136
|
+
reason: ValidationExceptionReason | undefined;
|
|
137
|
+
constructor(
|
|
138
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
139
|
+
);
|
|
140
|
+
}
|
|
141
|
+
export interface DeleteDbInstanceInput {
|
|
142
|
+
identifier: string | undefined;
|
|
143
|
+
}
|
|
144
|
+
export interface DeleteDbInstanceOutput {
|
|
145
|
+
id: string | undefined;
|
|
146
|
+
name: string | undefined;
|
|
147
|
+
arn: string | undefined;
|
|
148
|
+
status?: Status;
|
|
149
|
+
endpoint?: string;
|
|
150
|
+
dbInstanceType?: DbInstanceType;
|
|
151
|
+
dbStorageType?: DbStorageType;
|
|
152
|
+
allocatedStorage?: number;
|
|
153
|
+
deploymentType?: DeploymentType;
|
|
154
|
+
vpcSubnetIds: string[] | undefined;
|
|
155
|
+
publiclyAccessible?: boolean;
|
|
156
|
+
vpcSecurityGroupIds?: string[];
|
|
157
|
+
dbParameterGroupIdentifier?: string;
|
|
158
|
+
availabilityZone?: string;
|
|
159
|
+
secondaryAvailabilityZone?: string;
|
|
160
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
161
|
+
influxAuthParametersSecretArn?: string;
|
|
162
|
+
}
|
|
163
|
+
export interface GetDbInstanceInput {
|
|
164
|
+
identifier: string | undefined;
|
|
165
|
+
}
|
|
166
|
+
export interface GetDbInstanceOutput {
|
|
167
|
+
id: string | undefined;
|
|
168
|
+
name: string | undefined;
|
|
169
|
+
arn: string | undefined;
|
|
170
|
+
status?: Status;
|
|
171
|
+
endpoint?: string;
|
|
172
|
+
dbInstanceType?: DbInstanceType;
|
|
173
|
+
dbStorageType?: DbStorageType;
|
|
174
|
+
allocatedStorage?: number;
|
|
175
|
+
deploymentType?: DeploymentType;
|
|
176
|
+
vpcSubnetIds: string[] | undefined;
|
|
177
|
+
publiclyAccessible?: boolean;
|
|
178
|
+
vpcSecurityGroupIds?: string[];
|
|
179
|
+
dbParameterGroupIdentifier?: string;
|
|
180
|
+
availabilityZone?: string;
|
|
181
|
+
secondaryAvailabilityZone?: string;
|
|
182
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
183
|
+
influxAuthParametersSecretArn?: string;
|
|
184
|
+
}
|
|
185
|
+
export interface ListDbInstancesInput {
|
|
186
|
+
nextToken?: string;
|
|
187
|
+
maxResults?: number;
|
|
188
|
+
}
|
|
189
|
+
export interface DbInstanceSummary {
|
|
190
|
+
id: string | undefined;
|
|
191
|
+
name: string | undefined;
|
|
192
|
+
arn: string | undefined;
|
|
193
|
+
status?: Status;
|
|
194
|
+
endpoint?: string;
|
|
195
|
+
dbInstanceType?: DbInstanceType;
|
|
196
|
+
dbStorageType?: DbStorageType;
|
|
197
|
+
allocatedStorage?: number;
|
|
198
|
+
deploymentType?: DeploymentType;
|
|
199
|
+
}
|
|
200
|
+
export interface ListDbInstancesOutput {
|
|
201
|
+
items: DbInstanceSummary[] | undefined;
|
|
202
|
+
nextToken?: string;
|
|
203
|
+
}
|
|
204
|
+
export interface UpdateDbInstanceInput {
|
|
205
|
+
identifier: string | undefined;
|
|
206
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
207
|
+
dbParameterGroupIdentifier?: string;
|
|
208
|
+
}
|
|
209
|
+
export interface UpdateDbInstanceOutput {
|
|
210
|
+
id: string | undefined;
|
|
211
|
+
name: string | undefined;
|
|
212
|
+
arn: string | undefined;
|
|
213
|
+
status?: Status;
|
|
214
|
+
endpoint?: string;
|
|
215
|
+
dbInstanceType?: DbInstanceType;
|
|
216
|
+
dbStorageType?: DbStorageType;
|
|
217
|
+
allocatedStorage?: number;
|
|
218
|
+
deploymentType?: DeploymentType;
|
|
219
|
+
vpcSubnetIds: string[] | undefined;
|
|
220
|
+
publiclyAccessible?: boolean;
|
|
221
|
+
vpcSecurityGroupIds?: string[];
|
|
222
|
+
dbParameterGroupIdentifier?: string;
|
|
223
|
+
availabilityZone?: string;
|
|
224
|
+
secondaryAvailabilityZone?: string;
|
|
225
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration;
|
|
226
|
+
influxAuthParametersSecretArn?: string;
|
|
227
|
+
}
|
|
228
|
+
export declare const LogLevel: {
|
|
229
|
+
readonly DEBUG: "debug";
|
|
230
|
+
readonly ERROR: "error";
|
|
231
|
+
readonly INFO: "info";
|
|
232
|
+
};
|
|
233
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
234
|
+
export declare const TracingType: {
|
|
235
|
+
readonly JAEGER: "jaeger";
|
|
236
|
+
readonly LOG: "log";
|
|
237
|
+
};
|
|
238
|
+
export type TracingType = (typeof TracingType)[keyof typeof TracingType];
|
|
239
|
+
export interface InfluxDBv2Parameters {
|
|
240
|
+
fluxLogEnabled?: boolean;
|
|
241
|
+
logLevel?: LogLevel;
|
|
242
|
+
noTasks?: boolean;
|
|
243
|
+
queryConcurrency?: number;
|
|
244
|
+
queryQueueSize?: number;
|
|
245
|
+
tracingType?: TracingType;
|
|
246
|
+
metricsDisabled?: boolean;
|
|
247
|
+
}
|
|
248
|
+
export type _Parameters =
|
|
249
|
+
| _Parameters.InfluxDBv2Member
|
|
250
|
+
| _Parameters.$UnknownMember;
|
|
251
|
+
export declare namespace _Parameters {
|
|
252
|
+
interface InfluxDBv2Member {
|
|
253
|
+
InfluxDBv2: InfluxDBv2Parameters;
|
|
254
|
+
$unknown?: never;
|
|
255
|
+
}
|
|
256
|
+
interface $UnknownMember {
|
|
257
|
+
InfluxDBv2?: never;
|
|
258
|
+
$unknown: [string, any];
|
|
259
|
+
}
|
|
260
|
+
interface Visitor<T> {
|
|
261
|
+
InfluxDBv2: (value: InfluxDBv2Parameters) => T;
|
|
262
|
+
_: (name: string, value: any) => T;
|
|
263
|
+
}
|
|
264
|
+
const visit: <T>(value: _Parameters, visitor: Visitor<T>) => T;
|
|
265
|
+
}
|
|
266
|
+
export interface CreateDbParameterGroupInput {
|
|
267
|
+
name: string | undefined;
|
|
268
|
+
description?: string;
|
|
269
|
+
parameters?: _Parameters;
|
|
270
|
+
tags?: Record<string, string>;
|
|
271
|
+
}
|
|
272
|
+
export interface CreateDbParameterGroupOutput {
|
|
273
|
+
id: string | undefined;
|
|
274
|
+
name: string | undefined;
|
|
275
|
+
arn: string | undefined;
|
|
276
|
+
description?: string;
|
|
277
|
+
parameters?: _Parameters;
|
|
278
|
+
}
|
|
279
|
+
export interface GetDbParameterGroupInput {
|
|
280
|
+
identifier: string | undefined;
|
|
281
|
+
}
|
|
282
|
+
export interface GetDbParameterGroupOutput {
|
|
283
|
+
id: string | undefined;
|
|
284
|
+
name: string | undefined;
|
|
285
|
+
arn: string | undefined;
|
|
286
|
+
description?: string;
|
|
287
|
+
parameters?: _Parameters;
|
|
288
|
+
}
|
|
289
|
+
export interface ListDbParameterGroupsInput {
|
|
290
|
+
nextToken?: string;
|
|
291
|
+
maxResults?: number;
|
|
292
|
+
}
|
|
293
|
+
export interface DbParameterGroupSummary {
|
|
294
|
+
id: string | undefined;
|
|
295
|
+
name: string | undefined;
|
|
296
|
+
arn: string | undefined;
|
|
297
|
+
description?: string;
|
|
298
|
+
}
|
|
299
|
+
export interface ListDbParameterGroupsOutput {
|
|
300
|
+
items: DbParameterGroupSummary[] | undefined;
|
|
301
|
+
nextToken?: string;
|
|
302
|
+
}
|
|
303
|
+
export interface ListTagsForResourceRequest {
|
|
304
|
+
resourceArn: string | undefined;
|
|
305
|
+
}
|
|
306
|
+
export interface ListTagsForResourceResponse {
|
|
307
|
+
tags?: Record<string, string>;
|
|
308
|
+
}
|
|
309
|
+
export interface TagResourceRequest {
|
|
310
|
+
resourceArn: string | undefined;
|
|
311
|
+
tags: Record<string, string> | undefined;
|
|
312
|
+
}
|
|
313
|
+
export interface UntagResourceRequest {
|
|
314
|
+
resourceArn: string | undefined;
|
|
315
|
+
tagKeys: string[] | undefined;
|
|
316
|
+
}
|
|
317
|
+
export declare const CreateDbInstanceInputFilterSensitiveLog: (
|
|
318
|
+
obj: CreateDbInstanceInput
|
|
319
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDbInstancesCommandInput,
|
|
4
|
+
ListDbInstancesCommandOutput,
|
|
5
|
+
} from "../commands/ListDbInstancesCommand";
|
|
6
|
+
import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDbInstances: (
|
|
8
|
+
config: TimestreamInfluxDBPaginationConfiguration,
|
|
9
|
+
input: ListDbInstancesCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDbInstancesCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListDbParameterGroupsCommandInput,
|
|
4
|
+
ListDbParameterGroupsCommandOutput,
|
|
5
|
+
} from "../commands/ListDbParameterGroupsCommand";
|
|
6
|
+
import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListDbParameterGroups: (
|
|
8
|
+
config: TimestreamInfluxDBPaginationConfiguration,
|
|
9
|
+
input: ListDbParameterGroupsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDbParameterGroupsCommandOutput>;
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateDbInstanceCommandInput,
|
|
8
|
+
CreateDbInstanceCommandOutput,
|
|
9
|
+
} from "../commands/CreateDbInstanceCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateDbParameterGroupCommandInput,
|
|
12
|
+
CreateDbParameterGroupCommandOutput,
|
|
13
|
+
} from "../commands/CreateDbParameterGroupCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteDbInstanceCommandInput,
|
|
16
|
+
DeleteDbInstanceCommandOutput,
|
|
17
|
+
} from "../commands/DeleteDbInstanceCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetDbInstanceCommandInput,
|
|
20
|
+
GetDbInstanceCommandOutput,
|
|
21
|
+
} from "../commands/GetDbInstanceCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetDbParameterGroupCommandInput,
|
|
24
|
+
GetDbParameterGroupCommandOutput,
|
|
25
|
+
} from "../commands/GetDbParameterGroupCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListDbInstancesCommandInput,
|
|
28
|
+
ListDbInstancesCommandOutput,
|
|
29
|
+
} from "../commands/ListDbInstancesCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListDbParameterGroupsCommandInput,
|
|
32
|
+
ListDbParameterGroupsCommandOutput,
|
|
33
|
+
} from "../commands/ListDbParameterGroupsCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListTagsForResourceCommandInput,
|
|
36
|
+
ListTagsForResourceCommandOutput,
|
|
37
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
38
|
+
import {
|
|
39
|
+
TagResourceCommandInput,
|
|
40
|
+
TagResourceCommandOutput,
|
|
41
|
+
} from "../commands/TagResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
UntagResourceCommandInput,
|
|
44
|
+
UntagResourceCommandOutput,
|
|
45
|
+
} from "../commands/UntagResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
UpdateDbInstanceCommandInput,
|
|
48
|
+
UpdateDbInstanceCommandOutput,
|
|
49
|
+
} from "../commands/UpdateDbInstanceCommand";
|
|
50
|
+
export declare const se_CreateDbInstanceCommand: (
|
|
51
|
+
input: CreateDbInstanceCommandInput,
|
|
52
|
+
context: __SerdeContext
|
|
53
|
+
) => Promise<__HttpRequest>;
|
|
54
|
+
export declare const se_CreateDbParameterGroupCommand: (
|
|
55
|
+
input: CreateDbParameterGroupCommandInput,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const se_DeleteDbInstanceCommand: (
|
|
59
|
+
input: DeleteDbInstanceCommandInput,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const se_GetDbInstanceCommand: (
|
|
63
|
+
input: GetDbInstanceCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const se_GetDbParameterGroupCommand: (
|
|
67
|
+
input: GetDbParameterGroupCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_ListDbInstancesCommand: (
|
|
71
|
+
input: ListDbInstancesCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_ListDbParameterGroupsCommand: (
|
|
75
|
+
input: ListDbParameterGroupsCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
79
|
+
input: ListTagsForResourceCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_TagResourceCommand: (
|
|
83
|
+
input: TagResourceCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_UntagResourceCommand: (
|
|
87
|
+
input: UntagResourceCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_UpdateDbInstanceCommand: (
|
|
91
|
+
input: UpdateDbInstanceCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const de_CreateDbInstanceCommand: (
|
|
95
|
+
output: __HttpResponse,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<CreateDbInstanceCommandOutput>;
|
|
98
|
+
export declare const de_CreateDbParameterGroupCommand: (
|
|
99
|
+
output: __HttpResponse,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<CreateDbParameterGroupCommandOutput>;
|
|
102
|
+
export declare const de_DeleteDbInstanceCommand: (
|
|
103
|
+
output: __HttpResponse,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<DeleteDbInstanceCommandOutput>;
|
|
106
|
+
export declare const de_GetDbInstanceCommand: (
|
|
107
|
+
output: __HttpResponse,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<GetDbInstanceCommandOutput>;
|
|
110
|
+
export declare const de_GetDbParameterGroupCommand: (
|
|
111
|
+
output: __HttpResponse,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<GetDbParameterGroupCommandOutput>;
|
|
114
|
+
export declare const de_ListDbInstancesCommand: (
|
|
115
|
+
output: __HttpResponse,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<ListDbInstancesCommandOutput>;
|
|
118
|
+
export declare const de_ListDbParameterGroupsCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<ListDbParameterGroupsCommandOutput>;
|
|
122
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
126
|
+
export declare const de_TagResourceCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<TagResourceCommandOutput>;
|
|
130
|
+
export declare const de_UntagResourceCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
134
|
+
export declare const de_UpdateDbInstanceCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<UpdateDbInstanceCommandOutput>;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: TimestreamInfluxDBClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: (
|
|
12
|
+
input: any
|
|
13
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
14
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<
|
|
15
|
+
import("@smithy/types").UserAgent
|
|
16
|
+
>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
21
|
+
| RequestHandler;
|
|
22
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
+
apiVersion: string;
|
|
28
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
29
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
30
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
31
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
32
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
33
|
+
disableHostPrefix: boolean;
|
|
34
|
+
serviceId: string;
|
|
35
|
+
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
endpoint?:
|
|
38
|
+
| ((
|
|
39
|
+
| string
|
|
40
|
+
| import("@smithy/types").Endpoint
|
|
41
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
42
|
+
| import("@smithy/types").EndpointV2
|
|
43
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
44
|
+
) &
|
|
45
|
+
(
|
|
46
|
+
| string
|
|
47
|
+
| import("@smithy/types").Provider<string>
|
|
48
|
+
| import("@smithy/types").Endpoint
|
|
49
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
50
|
+
| import("@smithy/types").EndpointV2
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
52
|
+
))
|
|
53
|
+
| undefined;
|
|
54
|
+
endpointProvider: (
|
|
55
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
56
|
+
context?: {
|
|
57
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
58
|
+
}
|
|
59
|
+
) => import("@smithy/types").EndpointV2;
|
|
60
|
+
tls?: boolean | undefined;
|
|
61
|
+
retryStrategy?:
|
|
62
|
+
| import("@smithy/types").RetryStrategy
|
|
63
|
+
| import("@smithy/types").RetryStrategyV2
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
66
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
68
|
+
credentials?:
|
|
69
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
70
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
71
|
+
| undefined;
|
|
72
|
+
signer?:
|
|
73
|
+
| import("@smithy/types").RequestSigner
|
|
74
|
+
| ((
|
|
75
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
76
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
77
|
+
| undefined;
|
|
78
|
+
signingEscapePath?: boolean | undefined;
|
|
79
|
+
systemClockOffset?: number | undefined;
|
|
80
|
+
signingRegion?: string | undefined;
|
|
81
|
+
signerConstructor?:
|
|
82
|
+
| (new (
|
|
83
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
84
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
85
|
+
) => import("@smithy/types").RequestSigner)
|
|
86
|
+
| undefined;
|
|
87
|
+
};
|