@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,8 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { TimestreamInfluxDBClient } from "../TimestreamInfluxDBClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface TimestreamInfluxDBPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: TimestreamInfluxDBClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDbInstancesCommandInput, ListDbInstancesCommandOutput } from "../commands/ListDbInstancesCommand";
|
|
3
|
+
import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDbInstances: (config: TimestreamInfluxDBPaginationConfiguration, input: ListDbInstancesCommandInput, ...rest: any[]) => Paginator<ListDbInstancesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput } from "../commands/ListDbParameterGroupsCommand";
|
|
3
|
+
import { TimestreamInfluxDBPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListDbParameterGroups: (config: TimestreamInfluxDBPaginationConfiguration, input: ListDbParameterGroupsCommandInput, ...rest: any[]) => Paginator<ListDbParameterGroupsCommandOutput>;
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput } from "../commands/CreateDbInstanceCommand";
|
|
4
|
+
import { CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput } from "../commands/CreateDbParameterGroupCommand";
|
|
5
|
+
import { DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput } from "../commands/DeleteDbInstanceCommand";
|
|
6
|
+
import { GetDbInstanceCommandInput, GetDbInstanceCommandOutput } from "../commands/GetDbInstanceCommand";
|
|
7
|
+
import { GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput } from "../commands/GetDbParameterGroupCommand";
|
|
8
|
+
import { ListDbInstancesCommandInput, ListDbInstancesCommandOutput } from "../commands/ListDbInstancesCommand";
|
|
9
|
+
import { ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput } from "../commands/ListDbParameterGroupsCommand";
|
|
10
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
11
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
12
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
13
|
+
import { UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput } from "../commands/UpdateDbInstanceCommand";
|
|
14
|
+
/**
|
|
15
|
+
* serializeAws_json1_0CreateDbInstanceCommand
|
|
16
|
+
*/
|
|
17
|
+
export declare const se_CreateDbInstanceCommand: (input: CreateDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
18
|
+
/**
|
|
19
|
+
* serializeAws_json1_0CreateDbParameterGroupCommand
|
|
20
|
+
*/
|
|
21
|
+
export declare const se_CreateDbParameterGroupCommand: (input: CreateDbParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
22
|
+
/**
|
|
23
|
+
* serializeAws_json1_0DeleteDbInstanceCommand
|
|
24
|
+
*/
|
|
25
|
+
export declare const se_DeleteDbInstanceCommand: (input: DeleteDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
+
/**
|
|
27
|
+
* serializeAws_json1_0GetDbInstanceCommand
|
|
28
|
+
*/
|
|
29
|
+
export declare const se_GetDbInstanceCommand: (input: GetDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
+
/**
|
|
31
|
+
* serializeAws_json1_0GetDbParameterGroupCommand
|
|
32
|
+
*/
|
|
33
|
+
export declare const se_GetDbParameterGroupCommand: (input: GetDbParameterGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
+
/**
|
|
35
|
+
* serializeAws_json1_0ListDbInstancesCommand
|
|
36
|
+
*/
|
|
37
|
+
export declare const se_ListDbInstancesCommand: (input: ListDbInstancesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_json1_0ListDbParameterGroupsCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_ListDbParameterGroupsCommand: (input: ListDbParameterGroupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
+
/**
|
|
43
|
+
* serializeAws_json1_0ListTagsForResourceCommand
|
|
44
|
+
*/
|
|
45
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
/**
|
|
47
|
+
* serializeAws_json1_0TagResourceCommand
|
|
48
|
+
*/
|
|
49
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
+
/**
|
|
51
|
+
* serializeAws_json1_0UntagResourceCommand
|
|
52
|
+
*/
|
|
53
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
+
/**
|
|
55
|
+
* serializeAws_json1_0UpdateDbInstanceCommand
|
|
56
|
+
*/
|
|
57
|
+
export declare const se_UpdateDbInstanceCommand: (input: UpdateDbInstanceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
+
/**
|
|
59
|
+
* deserializeAws_json1_0CreateDbInstanceCommand
|
|
60
|
+
*/
|
|
61
|
+
export declare const de_CreateDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDbInstanceCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* deserializeAws_json1_0CreateDbParameterGroupCommand
|
|
64
|
+
*/
|
|
65
|
+
export declare const de_CreateDbParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDbParameterGroupCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* deserializeAws_json1_0DeleteDbInstanceCommand
|
|
68
|
+
*/
|
|
69
|
+
export declare const de_DeleteDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDbInstanceCommandOutput>;
|
|
70
|
+
/**
|
|
71
|
+
* deserializeAws_json1_0GetDbInstanceCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const de_GetDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDbInstanceCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* deserializeAws_json1_0GetDbParameterGroupCommand
|
|
76
|
+
*/
|
|
77
|
+
export declare const de_GetDbParameterGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDbParameterGroupCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* deserializeAws_json1_0ListDbInstancesCommand
|
|
80
|
+
*/
|
|
81
|
+
export declare const de_ListDbInstancesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbInstancesCommandOutput>;
|
|
82
|
+
/**
|
|
83
|
+
* deserializeAws_json1_0ListDbParameterGroupsCommand
|
|
84
|
+
*/
|
|
85
|
+
export declare const de_ListDbParameterGroupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDbParameterGroupsCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
88
|
+
*/
|
|
89
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
90
|
+
/**
|
|
91
|
+
* deserializeAws_json1_0TagResourceCommand
|
|
92
|
+
*/
|
|
93
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
94
|
+
/**
|
|
95
|
+
* deserializeAws_json1_0UntagResourceCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
98
|
+
/**
|
|
99
|
+
* deserializeAws_json1_0UpdateDbInstanceCommand
|
|
100
|
+
*/
|
|
101
|
+
export declare const de_UpdateDbInstanceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDbInstanceCommandOutput>;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
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;
|
|
31
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
33
|
+
}) => import("@smithy/types").EndpointV2;
|
|
34
|
+
tls?: boolean | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
|
|
11
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
14
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
19
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
apiVersion: string;
|
|
21
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
22
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
23
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
24
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
25
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
26
|
+
disableHostPrefix: boolean;
|
|
27
|
+
serviceId: string;
|
|
28
|
+
logger: import("@smithy/types").Logger;
|
|
29
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
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;
|
|
31
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
33
|
+
}) => import("@smithy/types").EndpointV2;
|
|
34
|
+
tls?: boolean | undefined;
|
|
35
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
39
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
40
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
41
|
+
signingEscapePath?: boolean | undefined;
|
|
42
|
+
systemClockOffset?: number | undefined;
|
|
43
|
+
signingRegion?: string | undefined;
|
|
44
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
45
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
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
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
11
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
12
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
13
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
14
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
15
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
16
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
17
|
+
disableHostPrefix: boolean;
|
|
18
|
+
serviceId: string;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
|
|
22
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
23
|
+
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
24
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
25
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
|
+
logger: import("@smithy/types").Logger;
|
|
27
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
|
+
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> | undefined;
|
|
30
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
32
|
+
}) => import("@smithy/types").EndpointV2;
|
|
33
|
+
tls?: boolean | undefined;
|
|
34
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
38
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
39
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
|
|
40
|
+
signingEscapePath?: boolean | undefined;
|
|
41
|
+
systemClockOffset?: number | undefined;
|
|
42
|
+
signingRegion?: string | undefined;
|
|
43
|
+
signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
|
|
44
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
11
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
12
|
+
}) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configure(extensionConfiguration: TimestreamInfluxDBExtensionConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateDbInstanceCommandInput,
|
|
4
|
+
CreateDbInstanceCommandOutput,
|
|
5
|
+
} from "./commands/CreateDbInstanceCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateDbParameterGroupCommandInput,
|
|
8
|
+
CreateDbParameterGroupCommandOutput,
|
|
9
|
+
} from "./commands/CreateDbParameterGroupCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteDbInstanceCommandInput,
|
|
12
|
+
DeleteDbInstanceCommandOutput,
|
|
13
|
+
} from "./commands/DeleteDbInstanceCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetDbInstanceCommandInput,
|
|
16
|
+
GetDbInstanceCommandOutput,
|
|
17
|
+
} from "./commands/GetDbInstanceCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetDbParameterGroupCommandInput,
|
|
20
|
+
GetDbParameterGroupCommandOutput,
|
|
21
|
+
} from "./commands/GetDbParameterGroupCommand";
|
|
22
|
+
import {
|
|
23
|
+
ListDbInstancesCommandInput,
|
|
24
|
+
ListDbInstancesCommandOutput,
|
|
25
|
+
} from "./commands/ListDbInstancesCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListDbParameterGroupsCommandInput,
|
|
28
|
+
ListDbParameterGroupsCommandOutput,
|
|
29
|
+
} from "./commands/ListDbParameterGroupsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListTagsForResourceCommandInput,
|
|
32
|
+
ListTagsForResourceCommandOutput,
|
|
33
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
34
|
+
import {
|
|
35
|
+
TagResourceCommandInput,
|
|
36
|
+
TagResourceCommandOutput,
|
|
37
|
+
} from "./commands/TagResourceCommand";
|
|
38
|
+
import {
|
|
39
|
+
UntagResourceCommandInput,
|
|
40
|
+
UntagResourceCommandOutput,
|
|
41
|
+
} from "./commands/UntagResourceCommand";
|
|
42
|
+
import {
|
|
43
|
+
UpdateDbInstanceCommandInput,
|
|
44
|
+
UpdateDbInstanceCommandOutput,
|
|
45
|
+
} from "./commands/UpdateDbInstanceCommand";
|
|
46
|
+
import { TimestreamInfluxDBClient } from "./TimestreamInfluxDBClient";
|
|
47
|
+
export interface TimestreamInfluxDB {
|
|
48
|
+
createDbInstance(
|
|
49
|
+
args: CreateDbInstanceCommandInput,
|
|
50
|
+
options?: __HttpHandlerOptions
|
|
51
|
+
): Promise<CreateDbInstanceCommandOutput>;
|
|
52
|
+
createDbInstance(
|
|
53
|
+
args: CreateDbInstanceCommandInput,
|
|
54
|
+
cb: (err: any, data?: CreateDbInstanceCommandOutput) => void
|
|
55
|
+
): void;
|
|
56
|
+
createDbInstance(
|
|
57
|
+
args: CreateDbInstanceCommandInput,
|
|
58
|
+
options: __HttpHandlerOptions,
|
|
59
|
+
cb: (err: any, data?: CreateDbInstanceCommandOutput) => void
|
|
60
|
+
): void;
|
|
61
|
+
createDbParameterGroup(
|
|
62
|
+
args: CreateDbParameterGroupCommandInput,
|
|
63
|
+
options?: __HttpHandlerOptions
|
|
64
|
+
): Promise<CreateDbParameterGroupCommandOutput>;
|
|
65
|
+
createDbParameterGroup(
|
|
66
|
+
args: CreateDbParameterGroupCommandInput,
|
|
67
|
+
cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void
|
|
68
|
+
): void;
|
|
69
|
+
createDbParameterGroup(
|
|
70
|
+
args: CreateDbParameterGroupCommandInput,
|
|
71
|
+
options: __HttpHandlerOptions,
|
|
72
|
+
cb: (err: any, data?: CreateDbParameterGroupCommandOutput) => void
|
|
73
|
+
): void;
|
|
74
|
+
deleteDbInstance(
|
|
75
|
+
args: DeleteDbInstanceCommandInput,
|
|
76
|
+
options?: __HttpHandlerOptions
|
|
77
|
+
): Promise<DeleteDbInstanceCommandOutput>;
|
|
78
|
+
deleteDbInstance(
|
|
79
|
+
args: DeleteDbInstanceCommandInput,
|
|
80
|
+
cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void
|
|
81
|
+
): void;
|
|
82
|
+
deleteDbInstance(
|
|
83
|
+
args: DeleteDbInstanceCommandInput,
|
|
84
|
+
options: __HttpHandlerOptions,
|
|
85
|
+
cb: (err: any, data?: DeleteDbInstanceCommandOutput) => void
|
|
86
|
+
): void;
|
|
87
|
+
getDbInstance(
|
|
88
|
+
args: GetDbInstanceCommandInput,
|
|
89
|
+
options?: __HttpHandlerOptions
|
|
90
|
+
): Promise<GetDbInstanceCommandOutput>;
|
|
91
|
+
getDbInstance(
|
|
92
|
+
args: GetDbInstanceCommandInput,
|
|
93
|
+
cb: (err: any, data?: GetDbInstanceCommandOutput) => void
|
|
94
|
+
): void;
|
|
95
|
+
getDbInstance(
|
|
96
|
+
args: GetDbInstanceCommandInput,
|
|
97
|
+
options: __HttpHandlerOptions,
|
|
98
|
+
cb: (err: any, data?: GetDbInstanceCommandOutput) => void
|
|
99
|
+
): void;
|
|
100
|
+
getDbParameterGroup(
|
|
101
|
+
args: GetDbParameterGroupCommandInput,
|
|
102
|
+
options?: __HttpHandlerOptions
|
|
103
|
+
): Promise<GetDbParameterGroupCommandOutput>;
|
|
104
|
+
getDbParameterGroup(
|
|
105
|
+
args: GetDbParameterGroupCommandInput,
|
|
106
|
+
cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void
|
|
107
|
+
): void;
|
|
108
|
+
getDbParameterGroup(
|
|
109
|
+
args: GetDbParameterGroupCommandInput,
|
|
110
|
+
options: __HttpHandlerOptions,
|
|
111
|
+
cb: (err: any, data?: GetDbParameterGroupCommandOutput) => void
|
|
112
|
+
): void;
|
|
113
|
+
listDbInstances(
|
|
114
|
+
args: ListDbInstancesCommandInput,
|
|
115
|
+
options?: __HttpHandlerOptions
|
|
116
|
+
): Promise<ListDbInstancesCommandOutput>;
|
|
117
|
+
listDbInstances(
|
|
118
|
+
args: ListDbInstancesCommandInput,
|
|
119
|
+
cb: (err: any, data?: ListDbInstancesCommandOutput) => void
|
|
120
|
+
): void;
|
|
121
|
+
listDbInstances(
|
|
122
|
+
args: ListDbInstancesCommandInput,
|
|
123
|
+
options: __HttpHandlerOptions,
|
|
124
|
+
cb: (err: any, data?: ListDbInstancesCommandOutput) => void
|
|
125
|
+
): void;
|
|
126
|
+
listDbParameterGroups(
|
|
127
|
+
args: ListDbParameterGroupsCommandInput,
|
|
128
|
+
options?: __HttpHandlerOptions
|
|
129
|
+
): Promise<ListDbParameterGroupsCommandOutput>;
|
|
130
|
+
listDbParameterGroups(
|
|
131
|
+
args: ListDbParameterGroupsCommandInput,
|
|
132
|
+
cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void
|
|
133
|
+
): void;
|
|
134
|
+
listDbParameterGroups(
|
|
135
|
+
args: ListDbParameterGroupsCommandInput,
|
|
136
|
+
options: __HttpHandlerOptions,
|
|
137
|
+
cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
listTagsForResource(
|
|
140
|
+
args: ListTagsForResourceCommandInput,
|
|
141
|
+
options?: __HttpHandlerOptions
|
|
142
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
143
|
+
listTagsForResource(
|
|
144
|
+
args: ListTagsForResourceCommandInput,
|
|
145
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
146
|
+
): void;
|
|
147
|
+
listTagsForResource(
|
|
148
|
+
args: ListTagsForResourceCommandInput,
|
|
149
|
+
options: __HttpHandlerOptions,
|
|
150
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
151
|
+
): void;
|
|
152
|
+
tagResource(
|
|
153
|
+
args: TagResourceCommandInput,
|
|
154
|
+
options?: __HttpHandlerOptions
|
|
155
|
+
): Promise<TagResourceCommandOutput>;
|
|
156
|
+
tagResource(
|
|
157
|
+
args: TagResourceCommandInput,
|
|
158
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
159
|
+
): void;
|
|
160
|
+
tagResource(
|
|
161
|
+
args: TagResourceCommandInput,
|
|
162
|
+
options: __HttpHandlerOptions,
|
|
163
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
untagResource(
|
|
166
|
+
args: UntagResourceCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<UntagResourceCommandOutput>;
|
|
169
|
+
untagResource(
|
|
170
|
+
args: UntagResourceCommandInput,
|
|
171
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
untagResource(
|
|
174
|
+
args: UntagResourceCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
177
|
+
): void;
|
|
178
|
+
updateDbInstance(
|
|
179
|
+
args: UpdateDbInstanceCommandInput,
|
|
180
|
+
options?: __HttpHandlerOptions
|
|
181
|
+
): Promise<UpdateDbInstanceCommandOutput>;
|
|
182
|
+
updateDbInstance(
|
|
183
|
+
args: UpdateDbInstanceCommandInput,
|
|
184
|
+
cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void
|
|
185
|
+
): void;
|
|
186
|
+
updateDbInstance(
|
|
187
|
+
args: UpdateDbInstanceCommandInput,
|
|
188
|
+
options: __HttpHandlerOptions,
|
|
189
|
+
cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
}
|
|
192
|
+
export declare class TimestreamInfluxDB
|
|
193
|
+
extends TimestreamInfluxDBClient
|
|
194
|
+
implements TimestreamInfluxDB {}
|