@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.
Files changed (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/TimestreamInfluxDB.js +33 -0
  4. package/dist-cjs/TimestreamInfluxDBClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateDbInstanceCommand.js +29 -0
  8. package/dist-cjs/commands/CreateDbParameterGroupCommand.js +28 -0
  9. package/dist-cjs/commands/DeleteDbInstanceCommand.js +28 -0
  10. package/dist-cjs/commands/GetDbInstanceCommand.js +28 -0
  11. package/dist-cjs/commands/GetDbParameterGroupCommand.js +28 -0
  12. package/dist-cjs/commands/ListDbInstancesCommand.js +28 -0
  13. package/dist-cjs/commands/ListDbParameterGroupsCommand.js +28 -0
  14. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  15. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  16. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  17. package/dist-cjs/commands/UpdateDbInstanceCommand.js +28 -0
  18. package/dist-cjs/commands/index.js +14 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  21. package/dist-cjs/endpoint/ruleset.js +7 -0
  22. package/dist-cjs/extensionConfiguration.js +2 -0
  23. package/dist-cjs/index.js +12 -0
  24. package/dist-cjs/models/TimestreamInfluxDBServiceException.js +12 -0
  25. package/dist-cjs/models/index.js +4 -0
  26. package/dist-cjs/models/models_0.js +159 -0
  27. package/dist-cjs/pagination/Interfaces.js +2 -0
  28. package/dist-cjs/pagination/ListDbInstancesPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListDbParameterGroupsPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +6 -0
  31. package/dist-cjs/protocols/Aws_json1_0.js +365 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +49 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/TimestreamInfluxDB.js +29 -0
  38. package/dist-es/TimestreamInfluxDBClient.js +52 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateDbInstanceCommand.js +25 -0
  42. package/dist-es/commands/CreateDbParameterGroupCommand.js +24 -0
  43. package/dist-es/commands/DeleteDbInstanceCommand.js +24 -0
  44. package/dist-es/commands/GetDbInstanceCommand.js +24 -0
  45. package/dist-es/commands/GetDbParameterGroupCommand.js +24 -0
  46. package/dist-es/commands/ListDbInstancesCommand.js +24 -0
  47. package/dist-es/commands/ListDbParameterGroupsCommand.js +24 -0
  48. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  49. package/dist-es/commands/TagResourceCommand.js +24 -0
  50. package/dist-es/commands/UntagResourceCommand.js +24 -0
  51. package/dist-es/commands/UpdateDbInstanceCommand.js +24 -0
  52. package/dist-es/commands/index.js +11 -0
  53. package/dist-es/endpoint/EndpointParameters.js +14 -0
  54. package/dist-es/endpoint/endpointResolver.js +8 -0
  55. package/dist-es/endpoint/ruleset.js +4 -0
  56. package/dist-es/extensionConfiguration.js +1 -0
  57. package/dist-es/index.js +7 -0
  58. package/dist-es/models/TimestreamInfluxDBServiceException.js +8 -0
  59. package/dist-es/models/index.js +1 -0
  60. package/dist-es/models/models_0.js +148 -0
  61. package/dist-es/pagination/Interfaces.js +1 -0
  62. package/dist-es/pagination/ListDbInstancesPaginator.js +4 -0
  63. package/dist-es/pagination/ListDbParameterGroupsPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +3 -0
  65. package/dist-es/protocols/Aws_json1_0.js +340 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +44 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/TimestreamInfluxDB.d.ts +87 -0
  72. package/dist-types/TimestreamInfluxDBClient.d.ts +182 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateDbInstanceCommand.d.ts +129 -0
  76. package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +108 -0
  77. package/dist-types/commands/DeleteDbInstanceCommand.d.ts +101 -0
  78. package/dist-types/commands/GetDbInstanceCommand.d.ts +98 -0
  79. package/dist-types/commands/GetDbParameterGroupCommand.d.ts +87 -0
  80. package/dist-types/commands/ListDbInstancesCommand.d.ts +87 -0
  81. package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +82 -0
  82. package/dist-types/commands/ListTagsForResourceCommand.d.ts +63 -0
  83. package/dist-types/commands/TagResourceCommand.d.ts +62 -0
  84. package/dist-types/commands/UntagResourceCommand.d.ts +62 -0
  85. package/dist-types/commands/UpdateDbInstanceCommand.d.ts +108 -0
  86. package/dist-types/commands/index.d.ts +11 -0
  87. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  88. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  89. package/dist-types/endpoint/ruleset.d.ts +2 -0
  90. package/dist-types/extensionConfiguration.d.ts +9 -0
  91. package/dist-types/index.d.ts +15 -0
  92. package/dist-types/models/TimestreamInfluxDBServiceException.d.ts +13 -0
  93. package/dist-types/models/index.d.ts +1 -0
  94. package/dist-types/models/models_0.d.ts +1099 -0
  95. package/dist-types/pagination/Interfaces.d.ts +8 -0
  96. package/dist-types/pagination/ListDbInstancesPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListDbParameterGroupsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +3 -0
  99. package/dist-types/protocols/Aws_json1_0.d.ts +101 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  101. package/dist-types/runtimeConfig.d.ts +45 -0
  102. package/dist-types/runtimeConfig.native.d.ts +44 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +194 -0
  106. package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +189 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +29 -0
  110. package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +30 -0
  111. package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +29 -0
  112. package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +26 -0
  113. package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +30 -0
  114. package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +29 -0
  115. package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +30 -0
  116. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
  117. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
  118. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
  119. package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +29 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  121. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  122. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  123. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  124. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  125. package/dist-types/ts3.4/index.d.ts +10 -0
  126. package/dist-types/ts3.4/models/TimestreamInfluxDBServiceException.d.ts +8 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +319 -0
  129. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  130. package/dist-types/ts3.4/pagination/ListDbInstancesPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListDbParameterGroupsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  133. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +137 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  139. package/package.json +101 -0
@@ -0,0 +1,189 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateDbInstanceCommandInput,
50
+ CreateDbInstanceCommandOutput,
51
+ } from "./commands/CreateDbInstanceCommand";
52
+ import {
53
+ CreateDbParameterGroupCommandInput,
54
+ CreateDbParameterGroupCommandOutput,
55
+ } from "./commands/CreateDbParameterGroupCommand";
56
+ import {
57
+ DeleteDbInstanceCommandInput,
58
+ DeleteDbInstanceCommandOutput,
59
+ } from "./commands/DeleteDbInstanceCommand";
60
+ import {
61
+ GetDbInstanceCommandInput,
62
+ GetDbInstanceCommandOutput,
63
+ } from "./commands/GetDbInstanceCommand";
64
+ import {
65
+ GetDbParameterGroupCommandInput,
66
+ GetDbParameterGroupCommandOutput,
67
+ } from "./commands/GetDbParameterGroupCommand";
68
+ import {
69
+ ListDbInstancesCommandInput,
70
+ ListDbInstancesCommandOutput,
71
+ } from "./commands/ListDbInstancesCommand";
72
+ import {
73
+ ListDbParameterGroupsCommandInput,
74
+ ListDbParameterGroupsCommandOutput,
75
+ } from "./commands/ListDbParameterGroupsCommand";
76
+ import {
77
+ ListTagsForResourceCommandInput,
78
+ ListTagsForResourceCommandOutput,
79
+ } from "./commands/ListTagsForResourceCommand";
80
+ import {
81
+ TagResourceCommandInput,
82
+ TagResourceCommandOutput,
83
+ } from "./commands/TagResourceCommand";
84
+ import {
85
+ UntagResourceCommandInput,
86
+ UntagResourceCommandOutput,
87
+ } from "./commands/UntagResourceCommand";
88
+ import {
89
+ UpdateDbInstanceCommandInput,
90
+ UpdateDbInstanceCommandOutput,
91
+ } from "./commands/UpdateDbInstanceCommand";
92
+ import {
93
+ ClientInputEndpointParameters,
94
+ ClientResolvedEndpointParameters,
95
+ EndpointParameters,
96
+ } from "./endpoint/EndpointParameters";
97
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
98
+ export { __Client };
99
+ export type ServiceInputTypes =
100
+ | CreateDbInstanceCommandInput
101
+ | CreateDbParameterGroupCommandInput
102
+ | DeleteDbInstanceCommandInput
103
+ | GetDbInstanceCommandInput
104
+ | GetDbParameterGroupCommandInput
105
+ | ListDbInstancesCommandInput
106
+ | ListDbParameterGroupsCommandInput
107
+ | ListTagsForResourceCommandInput
108
+ | TagResourceCommandInput
109
+ | UntagResourceCommandInput
110
+ | UpdateDbInstanceCommandInput;
111
+ export type ServiceOutputTypes =
112
+ | CreateDbInstanceCommandOutput
113
+ | CreateDbParameterGroupCommandOutput
114
+ | DeleteDbInstanceCommandOutput
115
+ | GetDbInstanceCommandOutput
116
+ | GetDbParameterGroupCommandOutput
117
+ | ListDbInstancesCommandOutput
118
+ | ListDbParameterGroupsCommandOutput
119
+ | ListTagsForResourceCommandOutput
120
+ | TagResourceCommandOutput
121
+ | UntagResourceCommandOutput
122
+ | UpdateDbInstanceCommandOutput;
123
+ export interface ClientDefaults
124
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
125
+ requestHandler?: __HttpHandlerUserInput;
126
+ sha256?: __ChecksumConstructor | __HashConstructor;
127
+ urlParser?: __UrlParser;
128
+ bodyLengthChecker?: __BodyLengthCalculator;
129
+ streamCollector?: __StreamCollector;
130
+ base64Decoder?: __Decoder;
131
+ base64Encoder?: __Encoder;
132
+ utf8Decoder?: __Decoder;
133
+ utf8Encoder?: __Encoder;
134
+ runtime?: string;
135
+ disableHostPrefix?: boolean;
136
+ serviceId?: string;
137
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
138
+ useFipsEndpoint?: boolean | __Provider<boolean>;
139
+ defaultUserAgentProvider?: Provider<__UserAgent>;
140
+ region?: string | __Provider<string>;
141
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
142
+ maxAttempts?: number | __Provider<number>;
143
+ retryMode?: string | __Provider<string>;
144
+ logger?: __Logger;
145
+ extensions?: RuntimeExtension[];
146
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
147
+ }
148
+ export type TimestreamInfluxDBClientConfigType = Partial<
149
+ __SmithyConfiguration<__HttpHandlerOptions>
150
+ > &
151
+ ClientDefaults &
152
+ RegionInputConfig &
153
+ EndpointInputConfig<EndpointParameters> &
154
+ RetryInputConfig &
155
+ HostHeaderInputConfig &
156
+ UserAgentInputConfig &
157
+ HttpAuthSchemeInputConfig &
158
+ ClientInputEndpointParameters;
159
+ export interface TimestreamInfluxDBClientConfig
160
+ extends TimestreamInfluxDBClientConfigType {}
161
+ export type TimestreamInfluxDBClientResolvedConfigType =
162
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
163
+ Required<ClientDefaults> &
164
+ RuntimeExtensionsConfig &
165
+ RegionResolvedConfig &
166
+ EndpointResolvedConfig<EndpointParameters> &
167
+ RetryResolvedConfig &
168
+ HostHeaderResolvedConfig &
169
+ UserAgentResolvedConfig &
170
+ HttpAuthSchemeResolvedConfig &
171
+ ClientResolvedEndpointParameters;
172
+ export interface TimestreamInfluxDBClientResolvedConfig
173
+ extends TimestreamInfluxDBClientResolvedConfigType {}
174
+ export declare class TimestreamInfluxDBClient extends __Client<
175
+ __HttpHandlerOptions,
176
+ ServiceInputTypes,
177
+ ServiceOutputTypes,
178
+ TimestreamInfluxDBClientResolvedConfig
179
+ > {
180
+ readonly config: TimestreamInfluxDBClientResolvedConfig;
181
+ constructor(
182
+ ...[
183
+ configuration,
184
+ ]: __CheckOptionalClientConfig<TimestreamInfluxDBClientConfig>
185
+ );
186
+ destroy(): void;
187
+ private getDefaultHttpAuthSchemeParametersProvider;
188
+ private getIdentityProviderConfigProvider;
189
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { TimestreamInfluxDBHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): TimestreamInfluxDBHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,44 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ } from "@smithy/types";
13
+ import { TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
14
+ export interface TimestreamInfluxDBHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface TimestreamInfluxDBHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ TimestreamInfluxDBClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ TimestreamInfluxDBHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultTimestreamInfluxDBHttpAuthSchemeParametersProvider: (
26
+ config: TimestreamInfluxDBClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<TimestreamInfluxDBHttpAuthSchemeParameters>;
30
+ export interface TimestreamInfluxDBHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<TimestreamInfluxDBHttpAuthSchemeParameters> {}
32
+ export declare const defaultTimestreamInfluxDBHttpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: TimestreamInfluxDBHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: TimestreamInfluxDBHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,29 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateDbInstanceInput,
5
+ CreateDbInstanceOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateDbInstanceCommandInput extends CreateDbInstanceInput {}
14
+ export interface CreateDbInstanceCommandOutput
15
+ extends CreateDbInstanceOutput,
16
+ __MetadataBearer {}
17
+ declare const CreateDbInstanceCommand_base: {
18
+ new (
19
+ input: CreateDbInstanceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ CreateDbInstanceCommandInput,
22
+ CreateDbInstanceCommandOutput,
23
+ TimestreamInfluxDBClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class CreateDbInstanceCommand extends CreateDbInstanceCommand_base {}
@@ -0,0 +1,30 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateDbParameterGroupInput,
5
+ CreateDbParameterGroupOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateDbParameterGroupCommandInput
14
+ extends CreateDbParameterGroupInput {}
15
+ export interface CreateDbParameterGroupCommandOutput
16
+ extends CreateDbParameterGroupOutput,
17
+ __MetadataBearer {}
18
+ declare const CreateDbParameterGroupCommand_base: {
19
+ new (
20
+ input: CreateDbParameterGroupCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateDbParameterGroupCommandInput,
23
+ CreateDbParameterGroupCommandOutput,
24
+ TimestreamInfluxDBClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class CreateDbParameterGroupCommand extends CreateDbParameterGroupCommand_base {}
@@ -0,0 +1,29 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteDbInstanceInput,
5
+ DeleteDbInstanceOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteDbInstanceCommandInput extends DeleteDbInstanceInput {}
14
+ export interface DeleteDbInstanceCommandOutput
15
+ extends DeleteDbInstanceOutput,
16
+ __MetadataBearer {}
17
+ declare const DeleteDbInstanceCommand_base: {
18
+ new (
19
+ input: DeleteDbInstanceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ DeleteDbInstanceCommandInput,
22
+ DeleteDbInstanceCommandOutput,
23
+ TimestreamInfluxDBClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class DeleteDbInstanceCommand extends DeleteDbInstanceCommand_base {}
@@ -0,0 +1,26 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetDbInstanceInput, GetDbInstanceOutput } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ TimestreamInfluxDBClientResolvedConfig,
8
+ } from "../TimestreamInfluxDBClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface GetDbInstanceCommandInput extends GetDbInstanceInput {}
11
+ export interface GetDbInstanceCommandOutput
12
+ extends GetDbInstanceOutput,
13
+ __MetadataBearer {}
14
+ declare const GetDbInstanceCommand_base: {
15
+ new (
16
+ input: GetDbInstanceCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ GetDbInstanceCommandInput,
19
+ GetDbInstanceCommandOutput,
20
+ TimestreamInfluxDBClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
25
+ };
26
+ export declare class GetDbInstanceCommand extends GetDbInstanceCommand_base {}
@@ -0,0 +1,30 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetDbParameterGroupInput,
5
+ GetDbParameterGroupOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface GetDbParameterGroupCommandInput
14
+ extends GetDbParameterGroupInput {}
15
+ export interface GetDbParameterGroupCommandOutput
16
+ extends GetDbParameterGroupOutput,
17
+ __MetadataBearer {}
18
+ declare const GetDbParameterGroupCommand_base: {
19
+ new (
20
+ input: GetDbParameterGroupCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetDbParameterGroupCommandInput,
23
+ GetDbParameterGroupCommandOutput,
24
+ TimestreamInfluxDBClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class GetDbParameterGroupCommand extends GetDbParameterGroupCommand_base {}
@@ -0,0 +1,29 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListDbInstancesInput,
5
+ ListDbInstancesOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListDbInstancesCommandInput extends ListDbInstancesInput {}
14
+ export interface ListDbInstancesCommandOutput
15
+ extends ListDbInstancesOutput,
16
+ __MetadataBearer {}
17
+ declare const ListDbInstancesCommand_base: {
18
+ new (
19
+ input: ListDbInstancesCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ ListDbInstancesCommandInput,
22
+ ListDbInstancesCommandOutput,
23
+ TimestreamInfluxDBClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class ListDbInstancesCommand extends ListDbInstancesCommand_base {}
@@ -0,0 +1,30 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListDbParameterGroupsInput,
5
+ ListDbParameterGroupsOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListDbParameterGroupsCommandInput
14
+ extends ListDbParameterGroupsInput {}
15
+ export interface ListDbParameterGroupsCommandOutput
16
+ extends ListDbParameterGroupsOutput,
17
+ __MetadataBearer {}
18
+ declare const ListDbParameterGroupsCommand_base: {
19
+ new (
20
+ input: ListDbParameterGroupsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListDbParameterGroupsCommandInput,
23
+ ListDbParameterGroupsCommandOutput,
24
+ TimestreamInfluxDBClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListDbParameterGroupsCommand extends ListDbParameterGroupsCommand_base {}
@@ -0,0 +1,30 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTagsForResourceRequest,
5
+ ListTagsForResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface ListTagsForResourceCommandInput
14
+ extends ListTagsForResourceRequest {}
15
+ export interface ListTagsForResourceCommandOutput
16
+ extends ListTagsForResourceResponse,
17
+ __MetadataBearer {}
18
+ declare const ListTagsForResourceCommand_base: {
19
+ new (
20
+ input: ListTagsForResourceCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListTagsForResourceCommandInput,
23
+ ListTagsForResourceCommandOutput,
24
+ TimestreamInfluxDBClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
29
+ };
30
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}
@@ -0,0 +1,24 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { TagResourceRequest } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ TimestreamInfluxDBClientResolvedConfig,
8
+ } from "../TimestreamInfluxDBClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface TagResourceCommandInput extends TagResourceRequest {}
11
+ export interface TagResourceCommandOutput extends __MetadataBearer {}
12
+ declare const TagResourceCommand_base: {
13
+ new (
14
+ input: TagResourceCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ TagResourceCommandInput,
17
+ TagResourceCommandOutput,
18
+ TimestreamInfluxDBClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class TagResourceCommand extends TagResourceCommand_base {}
@@ -0,0 +1,24 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UntagResourceRequest } from "../models/models_0";
4
+ import {
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ TimestreamInfluxDBClientResolvedConfig,
8
+ } from "../TimestreamInfluxDBClient";
9
+ export { __MetadataBearer, $Command };
10
+ export interface UntagResourceCommandInput extends UntagResourceRequest {}
11
+ export interface UntagResourceCommandOutput extends __MetadataBearer {}
12
+ declare const UntagResourceCommand_base: {
13
+ new (
14
+ input: UntagResourceCommandInput
15
+ ): import("@smithy/smithy-client").CommandImpl<
16
+ UntagResourceCommandInput,
17
+ UntagResourceCommandOutput,
18
+ TimestreamInfluxDBClientResolvedConfig,
19
+ ServiceInputTypes,
20
+ ServiceOutputTypes
21
+ >;
22
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
23
+ };
24
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {}
@@ -0,0 +1,29 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateDbInstanceInput,
5
+ UpdateDbInstanceOutput,
6
+ } from "../models/models_0";
7
+ import {
8
+ ServiceInputTypes,
9
+ ServiceOutputTypes,
10
+ TimestreamInfluxDBClientResolvedConfig,
11
+ } from "../TimestreamInfluxDBClient";
12
+ export { __MetadataBearer, $Command };
13
+ export interface UpdateDbInstanceCommandInput extends UpdateDbInstanceInput {}
14
+ export interface UpdateDbInstanceCommandOutput
15
+ extends UpdateDbInstanceOutput,
16
+ __MetadataBearer {}
17
+ declare const UpdateDbInstanceCommand_base: {
18
+ new (
19
+ input: UpdateDbInstanceCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ UpdateDbInstanceCommandInput,
22
+ UpdateDbInstanceCommandOutput,
23
+ TimestreamInfluxDBClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ export declare class UpdateDbInstanceCommand extends UpdateDbInstanceCommand_base {}
@@ -0,0 +1,11 @@
1
+ export * from "./CreateDbInstanceCommand";
2
+ export * from "./CreateDbParameterGroupCommand";
3
+ export * from "./DeleteDbInstanceCommand";
4
+ export * from "./GetDbInstanceCommand";
5
+ export * from "./GetDbParameterGroupCommand";
6
+ export * from "./ListDbInstancesCommand";
7
+ export * from "./ListDbParameterGroupsCommand";
8
+ export * from "./ListTagsForResourceCommand";
9
+ export * from "./TagResourceCommand";
10
+ export * from "./UntagResourceCommand";
11
+ export * from "./UpdateDbInstanceCommand";
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
22
+ export declare const resolveClientEndpointParameters: <T>(
23
+ options: T & ClientInputEndpointParameters
24
+ ) => T &
25
+ ClientInputEndpointParameters & {
26
+ defaultSigningName: string;
27
+ };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ Region?: string;
48
+ UseDualStack?: boolean;
49
+ UseFIPS?: boolean;
50
+ Endpoint?: string;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface TimestreamInfluxDBExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}