@aws-sdk/client-timestream-influxdb 3.952.0 → 3.954.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 +16 -0
- package/dist-cjs/index.js +375 -202
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/TimestreamInfluxDB.js +4 -0
- package/dist-es/commands/CreateDbClusterCommand.js +2 -2
- package/dist-es/commands/CreateDbInstanceCommand.js +2 -2
- package/dist-es/commands/CreateDbParameterGroupCommand.js +2 -2
- package/dist-es/commands/DeleteDbClusterCommand.js +2 -2
- package/dist-es/commands/DeleteDbInstanceCommand.js +2 -2
- package/dist-es/commands/GetDbClusterCommand.js +2 -2
- package/dist-es/commands/GetDbInstanceCommand.js +2 -2
- package/dist-es/commands/GetDbParameterGroupCommand.js +2 -2
- package/dist-es/commands/ListDbClustersCommand.js +2 -2
- package/dist-es/commands/ListDbInstancesCommand.js +2 -2
- package/dist-es/commands/ListDbInstancesForClusterCommand.js +2 -2
- package/dist-es/commands/ListDbParameterGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RebootDbClusterCommand.js +16 -0
- package/dist-es/commands/RebootDbInstanceCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateDbClusterCommand.js +2 -2
- package/dist-es/commands/UpdateDbInstanceCommand.js +2 -2
- package/dist-es/commands/index.js +2 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +237 -172
- package/dist-types/TimestreamInfluxDB.d.ts +14 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +5 -12
- package/dist-types/commands/CreateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/GetDbInstanceCommand.d.ts +1 -1
- 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 +95 -0
- package/dist-types/commands/RebootDbInstanceCommand.d.ts +124 -0
- package/dist-types/commands/UpdateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +150 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +76 -83
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +34 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +12 -4
- package/dist-types/ts3.4/commands/RebootDbClusterCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RebootDbInstanceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +75 -84
- package/package.json +34 -34
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsJson1_0Protocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -1,83 +1,76 @@
|
|
|
1
|
-
import type { StaticErrorSchema,
|
|
2
|
-
export declare var
|
|
3
|
-
export declare var
|
|
4
|
-
export declare var
|
|
5
|
-
export declare var
|
|
6
|
-
export declare var
|
|
7
|
-
export declare var
|
|
8
|
-
export declare var
|
|
9
|
-
export declare var
|
|
10
|
-
export declare var
|
|
11
|
-
export declare var
|
|
12
|
-
export declare var
|
|
13
|
-
export declare var
|
|
14
|
-
export declare var
|
|
15
|
-
export declare var
|
|
16
|
-
export declare var
|
|
17
|
-
export declare var
|
|
18
|
-
export declare var
|
|
19
|
-
export declare var
|
|
20
|
-
export declare var
|
|
21
|
-
export declare var
|
|
22
|
-
export declare var
|
|
23
|
-
export declare var
|
|
24
|
-
export declare var
|
|
25
|
-
export declare var
|
|
26
|
-
export declare var
|
|
27
|
-
export declare var
|
|
28
|
-
export declare var
|
|
29
|
-
export declare var
|
|
30
|
-
export declare var
|
|
31
|
-
export declare var
|
|
32
|
-
export declare var
|
|
33
|
-
export declare var
|
|
34
|
-
export declare var
|
|
35
|
-
export declare var
|
|
36
|
-
export declare var
|
|
37
|
-
export declare var
|
|
38
|
-
export declare var
|
|
39
|
-
export declare var
|
|
40
|
-
export declare var
|
|
41
|
-
export declare var
|
|
42
|
-
export declare var
|
|
43
|
-
export declare var
|
|
44
|
-
export declare var
|
|
45
|
-
export declare var
|
|
46
|
-
export declare var
|
|
47
|
-
export declare var
|
|
48
|
-
export declare var
|
|
49
|
-
export declare var
|
|
50
|
-
export declare var
|
|
51
|
-
export declare var
|
|
52
|
-
export declare var
|
|
53
|
-
export declare var
|
|
54
|
-
export declare var
|
|
55
|
-
export declare var
|
|
56
|
-
export declare var
|
|
57
|
-
export declare var
|
|
58
|
-
export declare var
|
|
59
|
-
export declare var
|
|
60
|
-
export declare var
|
|
61
|
-
export declare var
|
|
62
|
-
export declare var
|
|
63
|
-
export declare var
|
|
64
|
-
export declare var
|
|
65
|
-
export declare var
|
|
66
|
-
export declare var
|
|
67
|
-
export declare var
|
|
68
|
-
export declare var
|
|
69
|
-
export declare var
|
|
70
|
-
export declare var
|
|
71
|
-
export declare var
|
|
72
|
-
export declare var
|
|
73
|
-
export declare var
|
|
74
|
-
export declare var
|
|
75
|
-
export declare var
|
|
76
|
-
export declare var
|
|
77
|
-
export declare var ListDbInstancesForCluster: StaticOperationSchema;
|
|
78
|
-
export declare var ListDbParameterGroups: StaticOperationSchema;
|
|
79
|
-
export declare var ListTagsForResource: StaticOperationSchema;
|
|
80
|
-
export declare var TagResource: StaticOperationSchema;
|
|
81
|
-
export declare var UntagResource: StaticOperationSchema;
|
|
82
|
-
export declare var UpdateDbCluster: StaticOperationSchema;
|
|
83
|
-
export declare var UpdateDbInstance: StaticOperationSchema;
|
|
1
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
3
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
4
|
+
export declare var CreateDbClusterInput$: StaticStructureSchema;
|
|
5
|
+
export declare var CreateDbClusterOutput$: StaticStructureSchema;
|
|
6
|
+
export declare var CreateDbInstanceInput$: StaticStructureSchema;
|
|
7
|
+
export declare var CreateDbInstanceOutput$: StaticStructureSchema;
|
|
8
|
+
export declare var CreateDbParameterGroupInput$: StaticStructureSchema;
|
|
9
|
+
export declare var CreateDbParameterGroupOutput$: StaticStructureSchema;
|
|
10
|
+
export declare var DbClusterSummary$: StaticStructureSchema;
|
|
11
|
+
export declare var DbInstanceForClusterSummary$: StaticStructureSchema;
|
|
12
|
+
export declare var DbInstanceSummary$: StaticStructureSchema;
|
|
13
|
+
export declare var DbParameterGroupSummary$: StaticStructureSchema;
|
|
14
|
+
export declare var DeleteDbClusterInput$: StaticStructureSchema;
|
|
15
|
+
export declare var DeleteDbClusterOutput$: StaticStructureSchema;
|
|
16
|
+
export declare var DeleteDbInstanceInput$: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteDbInstanceOutput$: StaticStructureSchema;
|
|
18
|
+
export declare var Duration$: StaticStructureSchema;
|
|
19
|
+
export declare var GetDbClusterInput$: StaticStructureSchema;
|
|
20
|
+
export declare var GetDbClusterOutput$: StaticStructureSchema;
|
|
21
|
+
export declare var GetDbInstanceInput$: StaticStructureSchema;
|
|
22
|
+
export declare var GetDbInstanceOutput$: StaticStructureSchema;
|
|
23
|
+
export declare var GetDbParameterGroupInput$: StaticStructureSchema;
|
|
24
|
+
export declare var GetDbParameterGroupOutput$: StaticStructureSchema;
|
|
25
|
+
export declare var InfluxDBv2Parameters$: StaticStructureSchema;
|
|
26
|
+
export declare var InfluxDBv3CoreParameters$: StaticStructureSchema;
|
|
27
|
+
export declare var InfluxDBv3EnterpriseParameters$: StaticStructureSchema;
|
|
28
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
29
|
+
export declare var ListDbClustersInput$: StaticStructureSchema;
|
|
30
|
+
export declare var ListDbClustersOutput$: StaticStructureSchema;
|
|
31
|
+
export declare var ListDbInstancesForClusterInput$: StaticStructureSchema;
|
|
32
|
+
export declare var ListDbInstancesForClusterOutput$: StaticStructureSchema;
|
|
33
|
+
export declare var ListDbInstancesInput$: StaticStructureSchema;
|
|
34
|
+
export declare var ListDbInstancesOutput$: StaticStructureSchema;
|
|
35
|
+
export declare var ListDbParameterGroupsInput$: StaticStructureSchema;
|
|
36
|
+
export declare var ListDbParameterGroupsOutput$: StaticStructureSchema;
|
|
37
|
+
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
38
|
+
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
39
|
+
export declare var LogDeliveryConfiguration$: StaticStructureSchema;
|
|
40
|
+
export declare var RebootDbClusterInput$: StaticStructureSchema;
|
|
41
|
+
export declare var RebootDbClusterOutput$: StaticStructureSchema;
|
|
42
|
+
export declare var RebootDbInstanceInput$: StaticStructureSchema;
|
|
43
|
+
export declare var RebootDbInstanceOutput$: StaticStructureSchema;
|
|
44
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
45
|
+
export declare var S3Configuration$: StaticStructureSchema;
|
|
46
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
47
|
+
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
48
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
49
|
+
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
50
|
+
export declare var UpdateDbClusterInput$: StaticStructureSchema;
|
|
51
|
+
export declare var UpdateDbClusterOutput$: StaticStructureSchema;
|
|
52
|
+
export declare var UpdateDbInstanceInput$: StaticStructureSchema;
|
|
53
|
+
export declare var UpdateDbInstanceOutput$: StaticStructureSchema;
|
|
54
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
55
|
+
export declare var TimestreamInfluxDBServiceException$: StaticErrorSchema;
|
|
56
|
+
export declare var _Parameters$: StaticStructureSchema;
|
|
57
|
+
export declare var PercentOrAbsoluteLong$: StaticStructureSchema;
|
|
58
|
+
export declare var CreateDbCluster$: StaticOperationSchema;
|
|
59
|
+
export declare var CreateDbInstance$: StaticOperationSchema;
|
|
60
|
+
export declare var CreateDbParameterGroup$: StaticOperationSchema;
|
|
61
|
+
export declare var DeleteDbCluster$: StaticOperationSchema;
|
|
62
|
+
export declare var DeleteDbInstance$: StaticOperationSchema;
|
|
63
|
+
export declare var GetDbCluster$: StaticOperationSchema;
|
|
64
|
+
export declare var GetDbInstance$: StaticOperationSchema;
|
|
65
|
+
export declare var GetDbParameterGroup$: StaticOperationSchema;
|
|
66
|
+
export declare var ListDbClusters$: StaticOperationSchema;
|
|
67
|
+
export declare var ListDbInstances$: StaticOperationSchema;
|
|
68
|
+
export declare var ListDbInstancesForCluster$: StaticOperationSchema;
|
|
69
|
+
export declare var ListDbParameterGroups$: StaticOperationSchema;
|
|
70
|
+
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
71
|
+
export declare var RebootDbCluster$: StaticOperationSchema;
|
|
72
|
+
export declare var RebootDbInstance$: StaticOperationSchema;
|
|
73
|
+
export declare var TagResource$: StaticOperationSchema;
|
|
74
|
+
export declare var UntagResource$: StaticOperationSchema;
|
|
75
|
+
export declare var UpdateDbCluster$: StaticOperationSchema;
|
|
76
|
+
export declare var UpdateDbInstance$: StaticOperationSchema;
|
|
@@ -51,6 +51,14 @@ import {
|
|
|
51
51
|
ListTagsForResourceCommandInput,
|
|
52
52
|
ListTagsForResourceCommandOutput,
|
|
53
53
|
} from "./commands/ListTagsForResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
RebootDbClusterCommandInput,
|
|
56
|
+
RebootDbClusterCommandOutput,
|
|
57
|
+
} from "./commands/RebootDbClusterCommand";
|
|
58
|
+
import {
|
|
59
|
+
RebootDbInstanceCommandInput,
|
|
60
|
+
RebootDbInstanceCommandOutput,
|
|
61
|
+
} from "./commands/RebootDbInstanceCommand";
|
|
54
62
|
import {
|
|
55
63
|
TagResourceCommandInput,
|
|
56
64
|
TagResourceCommandOutput,
|
|
@@ -241,6 +249,32 @@ export interface TimestreamInfluxDB {
|
|
|
241
249
|
options: __HttpHandlerOptions,
|
|
242
250
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
243
251
|
): void;
|
|
252
|
+
rebootDbCluster(
|
|
253
|
+
args: RebootDbClusterCommandInput,
|
|
254
|
+
options?: __HttpHandlerOptions
|
|
255
|
+
): Promise<RebootDbClusterCommandOutput>;
|
|
256
|
+
rebootDbCluster(
|
|
257
|
+
args: RebootDbClusterCommandInput,
|
|
258
|
+
cb: (err: any, data?: RebootDbClusterCommandOutput) => void
|
|
259
|
+
): void;
|
|
260
|
+
rebootDbCluster(
|
|
261
|
+
args: RebootDbClusterCommandInput,
|
|
262
|
+
options: __HttpHandlerOptions,
|
|
263
|
+
cb: (err: any, data?: RebootDbClusterCommandOutput) => void
|
|
264
|
+
): void;
|
|
265
|
+
rebootDbInstance(
|
|
266
|
+
args: RebootDbInstanceCommandInput,
|
|
267
|
+
options?: __HttpHandlerOptions
|
|
268
|
+
): Promise<RebootDbInstanceCommandOutput>;
|
|
269
|
+
rebootDbInstance(
|
|
270
|
+
args: RebootDbInstanceCommandInput,
|
|
271
|
+
cb: (err: any, data?: RebootDbInstanceCommandOutput) => void
|
|
272
|
+
): void;
|
|
273
|
+
rebootDbInstance(
|
|
274
|
+
args: RebootDbInstanceCommandInput,
|
|
275
|
+
options: __HttpHandlerOptions,
|
|
276
|
+
cb: (err: any, data?: RebootDbInstanceCommandOutput) => void
|
|
277
|
+
): void;
|
|
244
278
|
tagResource(
|
|
245
279
|
args: TagResourceCommandInput,
|
|
246
280
|
options?: __HttpHandlerOptions
|
|
@@ -29,13 +29,10 @@ import {
|
|
|
29
29
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
30
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
31
|
ChecksumConstructor as __ChecksumConstructor,
|
|
32
|
-
ClientProtocol,
|
|
33
32
|
Decoder as __Decoder,
|
|
34
33
|
Encoder as __Encoder,
|
|
35
34
|
HashConstructor as __HashConstructor,
|
|
36
35
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
-
HttpRequest,
|
|
38
|
-
HttpResponse,
|
|
39
36
|
Logger as __Logger,
|
|
40
37
|
Provider as __Provider,
|
|
41
38
|
StreamCollector as __StreamCollector,
|
|
@@ -100,6 +97,14 @@ import {
|
|
|
100
97
|
ListTagsForResourceCommandInput,
|
|
101
98
|
ListTagsForResourceCommandOutput,
|
|
102
99
|
} from "./commands/ListTagsForResourceCommand";
|
|
100
|
+
import {
|
|
101
|
+
RebootDbClusterCommandInput,
|
|
102
|
+
RebootDbClusterCommandOutput,
|
|
103
|
+
} from "./commands/RebootDbClusterCommand";
|
|
104
|
+
import {
|
|
105
|
+
RebootDbInstanceCommandInput,
|
|
106
|
+
RebootDbInstanceCommandOutput,
|
|
107
|
+
} from "./commands/RebootDbInstanceCommand";
|
|
103
108
|
import {
|
|
104
109
|
TagResourceCommandInput,
|
|
105
110
|
TagResourceCommandOutput,
|
|
@@ -137,6 +142,8 @@ export type ServiceInputTypes =
|
|
|
137
142
|
| ListDbInstancesForClusterCommandInput
|
|
138
143
|
| ListDbParameterGroupsCommandInput
|
|
139
144
|
| ListTagsForResourceCommandInput
|
|
145
|
+
| RebootDbClusterCommandInput
|
|
146
|
+
| RebootDbInstanceCommandInput
|
|
140
147
|
| TagResourceCommandInput
|
|
141
148
|
| UntagResourceCommandInput
|
|
142
149
|
| UpdateDbClusterCommandInput
|
|
@@ -155,6 +162,8 @@ export type ServiceOutputTypes =
|
|
|
155
162
|
| ListDbInstancesForClusterCommandOutput
|
|
156
163
|
| ListDbParameterGroupsCommandOutput
|
|
157
164
|
| ListTagsForResourceCommandOutput
|
|
165
|
+
| RebootDbClusterCommandOutput
|
|
166
|
+
| RebootDbInstanceCommandOutput
|
|
158
167
|
| TagResourceCommandOutput
|
|
159
168
|
| UntagResourceCommandOutput
|
|
160
169
|
| UpdateDbClusterCommandOutput
|
|
@@ -183,7 +192,6 @@ export interface ClientDefaults
|
|
|
183
192
|
retryMode?: string | __Provider<string>;
|
|
184
193
|
logger?: __Logger;
|
|
185
194
|
extensions?: RuntimeExtension[];
|
|
186
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
187
195
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
188
196
|
}
|
|
189
197
|
export type TimestreamInfluxDBClientConfigType = Partial<
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RebootDbClusterInput,
|
|
5
|
+
RebootDbClusterOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RebootDbClusterCommandInput extends RebootDbClusterInput {}
|
|
15
|
+
export interface RebootDbClusterCommandOutput
|
|
16
|
+
extends RebootDbClusterOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const RebootDbClusterCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: RebootDbClusterCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
RebootDbClusterCommandInput,
|
|
23
|
+
RebootDbClusterCommandOutput,
|
|
24
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: RebootDbClusterCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
RebootDbClusterCommandInput,
|
|
32
|
+
RebootDbClusterCommandOutput,
|
|
33
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class RebootDbClusterCommand extends RebootDbClusterCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: RebootDbClusterInput;
|
|
43
|
+
output: RebootDbClusterOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: RebootDbClusterCommandInput;
|
|
47
|
+
output: RebootDbClusterCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RebootDbInstanceInput,
|
|
5
|
+
RebootDbInstanceOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
11
|
+
} from "../TimestreamInfluxDBClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RebootDbInstanceCommandInput extends RebootDbInstanceInput {}
|
|
15
|
+
export interface RebootDbInstanceCommandOutput
|
|
16
|
+
extends RebootDbInstanceOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const RebootDbInstanceCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: RebootDbInstanceCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
RebootDbInstanceCommandInput,
|
|
23
|
+
RebootDbInstanceCommandOutput,
|
|
24
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: RebootDbInstanceCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
RebootDbInstanceCommandInput,
|
|
32
|
+
RebootDbInstanceCommandOutput,
|
|
33
|
+
TimestreamInfluxDBClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class RebootDbInstanceCommand extends RebootDbInstanceCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: RebootDbInstanceInput;
|
|
43
|
+
output: RebootDbInstanceOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: RebootDbInstanceCommandInput;
|
|
47
|
+
output: RebootDbInstanceCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -11,6 +11,8 @@ export * from "./ListDbInstancesCommand";
|
|
|
11
11
|
export * from "./ListDbInstancesForClusterCommand";
|
|
12
12
|
export * from "./ListDbParameterGroupsCommand";
|
|
13
13
|
export * from "./ListTagsForResourceCommand";
|
|
14
|
+
export * from "./RebootDbClusterCommand";
|
|
15
|
+
export * from "./RebootDbInstanceCommand";
|
|
14
16
|
export * from "./TagResourceCommand";
|
|
15
17
|
export * from "./UntagResourceCommand";
|
|
16
18
|
export * from "./UpdateDbClusterCommand";
|
|
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
7
8
|
export * from "./pagination";
|
|
8
9
|
export * from "./models/enums";
|
|
9
10
|
export * from "./models/errors";
|
|
@@ -39,7 +39,11 @@ export declare const ClusterStatus: {
|
|
|
39
39
|
readonly DELETING: "DELETING";
|
|
40
40
|
readonly FAILED: "FAILED";
|
|
41
41
|
readonly MAINTENANCE: "MAINTENANCE";
|
|
42
|
+
readonly PARTIALLY_AVAILABLE: "PARTIALLY_AVAILABLE";
|
|
43
|
+
readonly REBOOTING: "REBOOTING";
|
|
44
|
+
readonly REBOOT_FAILED: "REBOOT_FAILED";
|
|
42
45
|
readonly UPDATING: "UPDATING";
|
|
46
|
+
readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
|
|
43
47
|
};
|
|
44
48
|
export type ClusterStatus = (typeof ClusterStatus)[keyof typeof ClusterStatus];
|
|
45
49
|
export declare const ValidationExceptionReason: {
|
|
@@ -78,6 +82,8 @@ export declare const Status: {
|
|
|
78
82
|
readonly FAILED: "FAILED";
|
|
79
83
|
readonly MAINTENANCE: "MAINTENANCE";
|
|
80
84
|
readonly MODIFYING: "MODIFYING";
|
|
85
|
+
readonly REBOOTING: "REBOOTING";
|
|
86
|
+
readonly REBOOT_FAILED: "REBOOT_FAILED";
|
|
81
87
|
readonly UPDATING: "UPDATING";
|
|
82
88
|
readonly UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE";
|
|
83
89
|
readonly UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE";
|
|
@@ -124,6 +124,13 @@ export interface ListDbInstancesForClusterOutput {
|
|
|
124
124
|
items: DbInstanceForClusterSummary[] | undefined;
|
|
125
125
|
nextToken?: string | undefined;
|
|
126
126
|
}
|
|
127
|
+
export interface RebootDbClusterInput {
|
|
128
|
+
dbClusterId: string | undefined;
|
|
129
|
+
instanceIds?: string[] | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface RebootDbClusterOutput {
|
|
132
|
+
dbClusterStatus?: ClusterStatus | undefined;
|
|
133
|
+
}
|
|
127
134
|
export interface UpdateDbClusterInput {
|
|
128
135
|
dbClusterId: string | undefined;
|
|
129
136
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
@@ -253,6 +260,33 @@ export interface ListDbInstancesOutput {
|
|
|
253
260
|
items: DbInstanceSummary[] | undefined;
|
|
254
261
|
nextToken?: string | undefined;
|
|
255
262
|
}
|
|
263
|
+
export interface RebootDbInstanceInput {
|
|
264
|
+
identifier: string | undefined;
|
|
265
|
+
}
|
|
266
|
+
export interface RebootDbInstanceOutput {
|
|
267
|
+
id: string | undefined;
|
|
268
|
+
name: string | undefined;
|
|
269
|
+
arn: string | undefined;
|
|
270
|
+
status?: Status | undefined;
|
|
271
|
+
endpoint?: string | undefined;
|
|
272
|
+
port?: number | undefined;
|
|
273
|
+
networkType?: NetworkType | undefined;
|
|
274
|
+
dbInstanceType?: DbInstanceType | undefined;
|
|
275
|
+
dbStorageType?: DbStorageType | undefined;
|
|
276
|
+
allocatedStorage?: number | undefined;
|
|
277
|
+
deploymentType?: DeploymentType | undefined;
|
|
278
|
+
vpcSubnetIds: string[] | undefined;
|
|
279
|
+
publiclyAccessible?: boolean | undefined;
|
|
280
|
+
vpcSecurityGroupIds?: string[] | undefined;
|
|
281
|
+
dbParameterGroupIdentifier?: string | undefined;
|
|
282
|
+
availabilityZone?: string | undefined;
|
|
283
|
+
secondaryAvailabilityZone?: string | undefined;
|
|
284
|
+
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
285
|
+
influxAuthParametersSecretArn?: string | undefined;
|
|
286
|
+
dbClusterId?: string | undefined;
|
|
287
|
+
instanceMode?: InstanceMode | undefined;
|
|
288
|
+
instanceModes?: InstanceMode[] | undefined;
|
|
289
|
+
}
|
|
256
290
|
export interface UpdateDbInstanceInput {
|
|
257
291
|
identifier: string | undefined;
|
|
258
292
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
@@ -28,8 +28,16 @@ export declare const getRuntimeConfig: (
|
|
|
28
28
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
29
29
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
30
30
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
31
|
-
apiVersion: string;
|
|
32
31
|
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
33
41
|
urlParser: import("@smithy/types").UrlParser;
|
|
34
42
|
base64Decoder: import("@smithy/types").Decoder;
|
|
35
43
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,10 +48,6 @@ export declare const getRuntimeConfig: (
|
|
|
40
48
|
profile?: string;
|
|
41
49
|
logger: import("@smithy/types").Logger;
|
|
42
50
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
-
import("@smithy/types").HttpRequest,
|
|
45
|
-
import("@smithy/types").HttpResponse
|
|
46
|
-
>;
|
|
47
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
52
|
userAgentAppId?:
|
|
49
53
|
| string
|
|
@@ -28,8 +28,16 @@ export declare const getRuntimeConfig: (
|
|
|
28
28
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
30
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
31
|
-
apiVersion: string;
|
|
32
31
|
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
protocol:
|
|
33
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
34
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
35
|
+
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
36
|
+
protocolSettings: {
|
|
37
|
+
defaultNamespace?: string;
|
|
38
|
+
[setting: string]: unknown;
|
|
39
|
+
};
|
|
40
|
+
apiVersion: string;
|
|
33
41
|
urlParser: import("@smithy/types").UrlParser;
|
|
34
42
|
base64Decoder: import("@smithy/types").Decoder;
|
|
35
43
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -40,10 +48,6 @@ export declare const getRuntimeConfig: (
|
|
|
40
48
|
profile?: string;
|
|
41
49
|
logger: import("@smithy/types").Logger;
|
|
42
50
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
-
import("@smithy/types").HttpRequest,
|
|
45
|
-
import("@smithy/types").HttpResponse
|
|
46
|
-
>;
|
|
47
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
48
52
|
retryStrategy?:
|
|
49
53
|
| import("@smithy/types").RetryStrategy
|
|
@@ -10,8 +10,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
10
|
| Record<string, unknown>
|
|
11
11
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
12
12
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
13
|
-
apiVersion: string;
|
|
14
13
|
cacheMiddleware?: boolean;
|
|
14
|
+
protocol:
|
|
15
|
+
| import("@smithy/types").ClientProtocol<any, any>
|
|
16
|
+
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
17
|
+
| typeof import("@aws-sdk/core").AwsJson1_0Protocol;
|
|
18
|
+
protocolSettings: {
|
|
19
|
+
defaultNamespace?: string;
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
};
|
|
22
|
+
apiVersion: string;
|
|
15
23
|
urlParser: import("@smithy/types").UrlParser;
|
|
16
24
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
17
25
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -39,10 +47,6 @@ export declare const getRuntimeConfig: (
|
|
|
39
47
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
48
|
logger: import("@smithy/types").Logger;
|
|
41
49
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
-
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
-
import("@smithy/types").HttpRequest,
|
|
44
|
-
import("@smithy/types").HttpResponse
|
|
45
|
-
>;
|
|
46
50
|
defaultsMode:
|
|
47
51
|
| import("@smithy/smithy-client").DefaultsMode
|
|
48
52
|
| import("@smithy/types").Provider<
|