@aws-sdk/client-timestream-influxdb 3.534.0 → 3.540.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 (33) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +4 -2
  2. package/dist-cjs/index.js +0 -1
  3. package/dist-es/endpoint/endpointResolver.js +3 -1
  4. package/dist-es/index.js +0 -1
  5. package/dist-types/TimestreamInfluxDB.d.ts +3 -1
  6. package/dist-types/TimestreamInfluxDBClient.d.ts +1 -1
  7. package/dist-types/commands/CreateDbInstanceCommand.d.ts +2 -1
  8. package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +2 -1
  9. package/dist-types/commands/DeleteDbInstanceCommand.d.ts +2 -1
  10. package/dist-types/commands/GetDbInstanceCommand.d.ts +2 -1
  11. package/dist-types/commands/GetDbParameterGroupCommand.d.ts +2 -1
  12. package/dist-types/commands/ListDbInstancesCommand.d.ts +2 -1
  13. package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +2 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  15. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  16. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  17. package/dist-types/commands/UpdateDbInstanceCommand.d.ts +2 -1
  18. package/dist-types/index.d.ts +0 -1
  19. package/dist-types/models/models_0.d.ts +160 -160
  20. package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +2 -0
  21. package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +9 -0
  22. package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +9 -0
  23. package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +9 -0
  24. package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  31. package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/index.d.ts +0 -1
  33. package/package.json +40 -40
@@ -1,12 +1,14 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.defaultEndpointResolver = void 0;
4
- const util_endpoints_1 = require("@smithy/util-endpoints");
4
+ const util_endpoints_1 = require("@aws-sdk/util-endpoints");
5
+ const util_endpoints_2 = require("@smithy/util-endpoints");
5
6
  const ruleset_1 = require("./ruleset");
6
7
  const defaultEndpointResolver = (endpointParams, context = {}) => {
7
- return (0, util_endpoints_1.resolveEndpoint)(ruleset_1.ruleSet, {
8
+ return (0, util_endpoints_2.resolveEndpoint)(ruleset_1.ruleSet, {
8
9
  endpointParams: endpointParams,
9
10
  logger: context.logger,
10
11
  });
11
12
  };
12
13
  exports.defaultEndpointResolver = defaultEndpointResolver;
14
+ util_endpoints_2.customEndpointFunctions.aws = util_endpoints_1.awsEndpointFunctions;
package/dist-cjs/index.js CHANGED
@@ -7,6 +7,5 @@ tslib_1.__exportStar(require("./TimestreamInfluxDB"), exports);
7
7
  tslib_1.__exportStar(require("./commands"), exports);
8
8
  tslib_1.__exportStar(require("./pagination"), exports);
9
9
  tslib_1.__exportStar(require("./models"), exports);
10
- require("@aws-sdk/util-endpoints");
11
10
  var TimestreamInfluxDBServiceException_1 = require("./models/TimestreamInfluxDBServiceException");
12
11
  Object.defineProperty(exports, "TimestreamInfluxDBServiceException", { enumerable: true, get: function () { return TimestreamInfluxDBServiceException_1.TimestreamInfluxDBServiceException; } });
@@ -1,4 +1,5 @@
1
- import { resolveEndpoint } from "@smithy/util-endpoints";
1
+ import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
2
+ import { customEndpointFunctions, resolveEndpoint } from "@smithy/util-endpoints";
2
3
  import { ruleSet } from "./ruleset";
3
4
  export const defaultEndpointResolver = (endpointParams, context = {}) => {
4
5
  return resolveEndpoint(ruleSet, {
@@ -6,3 +7,4 @@ export const defaultEndpointResolver = (endpointParams, context = {}) => {
6
7
  logger: context.logger,
7
8
  });
8
9
  };
10
+ customEndpointFunctions.aws = awsEndpointFunctions;
package/dist-es/index.js CHANGED
@@ -3,5 +3,4 @@ export * from "./TimestreamInfluxDB";
3
3
  export * from "./commands";
4
4
  export * from "./pagination";
5
5
  export * from "./models";
6
- import "@aws-sdk/util-endpoints";
7
6
  export { TimestreamInfluxDBServiceException } from "./models/TimestreamInfluxDBServiceException";
@@ -45,12 +45,14 @@ export interface TimestreamInfluxDB {
45
45
  /**
46
46
  * @see {@link ListDbInstancesCommand}
47
47
  */
48
+ listDbInstances(): Promise<ListDbInstancesCommandOutput>;
48
49
  listDbInstances(args: ListDbInstancesCommandInput, options?: __HttpHandlerOptions): Promise<ListDbInstancesCommandOutput>;
49
50
  listDbInstances(args: ListDbInstancesCommandInput, cb: (err: any, data?: ListDbInstancesCommandOutput) => void): void;
50
51
  listDbInstances(args: ListDbInstancesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDbInstancesCommandOutput) => void): void;
51
52
  /**
52
53
  * @see {@link ListDbParameterGroupsCommand}
53
54
  */
55
+ listDbParameterGroups(): Promise<ListDbParameterGroupsCommandOutput>;
54
56
  listDbParameterGroups(args: ListDbParameterGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListDbParameterGroupsCommandOutput>;
55
57
  listDbParameterGroups(args: ListDbParameterGroupsCommandInput, cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void): void;
56
58
  listDbParameterGroups(args: ListDbParameterGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDbParameterGroupsCommandOutput) => void): void;
@@ -80,8 +82,8 @@ export interface TimestreamInfluxDB {
80
82
  updateDbInstance(args: UpdateDbInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void): void;
81
83
  }
82
84
  /**
83
- * @public
84
85
  * <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open-source APIs. With Amazon Timestream for InfluxDB, it is easy to set up, operate, and scale time-series workloads that can answer queries with single-digit millisecond query response time.</p>
86
+ * @public
85
87
  */
86
88
  export declare class TimestreamInfluxDB extends TimestreamInfluxDBClient implements TimestreamInfluxDB {
87
89
  }
@@ -162,8 +162,8 @@ export type TimestreamInfluxDBClientResolvedConfigType = __SmithyResolvedConfigu
162
162
  export interface TimestreamInfluxDBClientResolvedConfig extends TimestreamInfluxDBClientResolvedConfigType {
163
163
  }
164
164
  /**
165
- * @public
166
165
  * <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open-source APIs. With Amazon Timestream for InfluxDB, it is easy to set up, operate, and scale time-series workloads that can answer queries with single-digit millisecond query response time.</p>
166
+ * @public
167
167
  */
168
168
  export declare class TimestreamInfluxDBClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig> {
169
169
  /**
@@ -22,10 +22,10 @@ export interface CreateDbInstanceCommandOutput extends CreateDbInstanceOutput, _
22
22
  }
23
23
  declare const CreateDbInstanceCommand_base: {
24
24
  new (input: CreateDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a new Timestream for InfluxDB DB instance.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -124,6 +124,7 @@ declare const CreateDbInstanceCommand_base: {
124
124
  * @throws {@link TimestreamInfluxDBServiceException}
125
125
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
126
126
  *
127
+ * @public
127
128
  */
128
129
  export declare class CreateDbInstanceCommand extends CreateDbInstanceCommand_base {
129
130
  }
@@ -22,10 +22,10 @@ export interface CreateDbParameterGroupCommandOutput extends CreateDbParameterGr
22
22
  }
23
23
  declare const CreateDbParameterGroupCommand_base: {
24
24
  new (input: CreateDbParameterGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: CreateDbParameterGroupCommandInput): import("@smithy/smithy-client").CommandImpl<CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a new Timestream for InfluxDB DB parameter group to associate with DB instances.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -103,6 +103,7 @@ declare const CreateDbParameterGroupCommand_base: {
103
103
  * @throws {@link TimestreamInfluxDBServiceException}
104
104
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
105
105
  *
106
+ * @public
106
107
  */
107
108
  export declare class CreateDbParameterGroupCommand extends CreateDbParameterGroupCommand_base {
108
109
  }
@@ -22,10 +22,10 @@ export interface DeleteDbInstanceCommandOutput extends DeleteDbInstanceOutput, _
22
22
  }
23
23
  declare const DeleteDbInstanceCommand_base: {
24
24
  new (input: DeleteDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Deletes a Timestream for InfluxDB DB instance.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -96,6 +96,7 @@ declare const DeleteDbInstanceCommand_base: {
96
96
  * @throws {@link TimestreamInfluxDBServiceException}
97
97
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
98
98
  *
99
+ * @public
99
100
  */
100
101
  export declare class DeleteDbInstanceCommand extends DeleteDbInstanceCommand_base {
101
102
  }
@@ -22,10 +22,10 @@ export interface GetDbInstanceCommandOutput extends GetDbInstanceOutput, __Metad
22
22
  }
23
23
  declare const GetDbInstanceCommand_base: {
24
24
  new (input: GetDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<GetDbInstanceCommandInput, GetDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<GetDbInstanceCommandInput, GetDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a Timestream for InfluxDB DB instance.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -93,6 +93,7 @@ declare const GetDbInstanceCommand_base: {
93
93
  * @throws {@link TimestreamInfluxDBServiceException}
94
94
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
95
95
  *
96
+ * @public
96
97
  */
97
98
  export declare class GetDbInstanceCommand extends GetDbInstanceCommand_base {
98
99
  }
@@ -22,10 +22,10 @@ export interface GetDbParameterGroupCommandOutput extends GetDbParameterGroupOut
22
22
  }
23
23
  declare const GetDbParameterGroupCommand_base: {
24
24
  new (input: GetDbParameterGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetDbParameterGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a Timestream for InfluxDB DB parameter group.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -82,6 +82,7 @@ declare const GetDbParameterGroupCommand_base: {
82
82
  * @throws {@link TimestreamInfluxDBServiceException}
83
83
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
84
84
  *
85
+ * @public
85
86
  */
86
87
  export declare class GetDbParameterGroupCommand extends GetDbParameterGroupCommand_base {
87
88
  }
@@ -22,10 +22,10 @@ export interface ListDbInstancesCommandOutput extends ListDbInstancesOutput, __M
22
22
  }
23
23
  declare const ListDbInstancesCommand_base: {
24
24
  new (input: ListDbInstancesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDbInstancesCommandInput, ListDbInstancesCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListDbInstancesCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDbInstancesCommandInput, ListDbInstancesCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of Timestream for InfluxDB DB instances.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -82,6 +82,7 @@ declare const ListDbInstancesCommand_base: {
82
82
  * @throws {@link TimestreamInfluxDBServiceException}
83
83
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
84
84
  *
85
+ * @public
85
86
  */
86
87
  export declare class ListDbInstancesCommand extends ListDbInstancesCommand_base {
87
88
  }
@@ -22,10 +22,10 @@ export interface ListDbParameterGroupsCommandOutput extends ListDbParameterGroup
22
22
  }
23
23
  declare const ListDbParameterGroupsCommand_base: {
24
24
  new (input: ListDbParameterGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListDbParameterGroupsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Returns a list of Timestream for InfluxDB DB parameter groups.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -77,6 +77,7 @@ declare const ListDbParameterGroupsCommand_base: {
77
77
  * @throws {@link TimestreamInfluxDBServiceException}
78
78
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
79
79
  *
80
+ * @public
80
81
  */
81
82
  export declare class ListDbParameterGroupsCommand extends ListDbParameterGroupsCommand_base {
82
83
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>A list of tags applied to the resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -58,6 +58,7 @@ declare const ListTagsForResourceCommand_base: {
58
58
  * @throws {@link TimestreamInfluxDBServiceException}
59
59
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
60
60
  *
61
+ * @public
61
62
  */
62
63
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
63
64
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Tags are composed of a Key/Value pairs. You can use tags to categorize and track your Timestream for InfluxDB resources.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -57,6 +57,7 @@ declare const TagResourceCommand_base: {
57
57
  * @throws {@link TimestreamInfluxDBServiceException}
58
58
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
59
59
  *
60
+ * @public
60
61
  */
61
62
  export declare class TagResourceCommand extends TagResourceCommand_base {
62
63
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Removes the tag from the specified resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -57,6 +57,7 @@ declare const UntagResourceCommand_base: {
57
57
  * @throws {@link TimestreamInfluxDBServiceException}
58
58
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
59
59
  *
60
+ * @public
60
61
  */
61
62
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
62
63
  }
@@ -22,10 +22,10 @@ export interface UpdateDbInstanceCommandOutput extends UpdateDbInstanceOutput, _
22
22
  }
23
23
  declare const UpdateDbInstanceCommand_base: {
24
24
  new (input: UpdateDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UpdateDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Updates a Timestream for InfluxDB DB instance.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -103,6 +103,7 @@ declare const UpdateDbInstanceCommand_base: {
103
103
  * @throws {@link TimestreamInfluxDBServiceException}
104
104
  * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
105
105
  *
106
+ * @public
106
107
  */
107
108
  export declare class UpdateDbInstanceCommand extends UpdateDbInstanceCommand_base {
108
109
  }
@@ -11,5 +11,4 @@ export { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfigurati
11
11
  export * from "./commands";
12
12
  export * from "./pagination";
13
13
  export * from "./models";
14
- import "@aws-sdk/util-endpoints";
15
14
  export { TimestreamInfluxDBServiceException } from "./models/TimestreamInfluxDBServiceException";