@aws-sdk/client-timestream-influxdb 3.1077.0 → 3.1078.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/dist-cjs/index.js +27 -193
- package/dist-es/commandBuilder.js +6 -0
- package/dist-es/commands/CreateDbClusterCommand.js +2 -14
- package/dist-es/commands/CreateDbInstanceCommand.js +2 -14
- package/dist-es/commands/CreateDbParameterGroupCommand.js +2 -14
- package/dist-es/commands/DeleteDbClusterCommand.js +2 -14
- package/dist-es/commands/DeleteDbInstanceCommand.js +2 -14
- package/dist-es/commands/GetDbClusterCommand.js +2 -14
- package/dist-es/commands/GetDbInstanceCommand.js +2 -14
- package/dist-es/commands/GetDbParameterGroupCommand.js +2 -14
- package/dist-es/commands/ListDbClustersCommand.js +2 -14
- package/dist-es/commands/ListDbInstancesCommand.js +2 -14
- package/dist-es/commands/ListDbInstancesForClusterCommand.js +2 -14
- package/dist-es/commands/ListDbParameterGroupsCommand.js +2 -14
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -14
- package/dist-es/commands/RebootDbClusterCommand.js +2 -14
- package/dist-es/commands/RebootDbInstanceCommand.js +2 -14
- package/dist-es/commands/TagResourceCommand.js +2 -14
- package/dist-es/commands/UntagResourceCommand.js +2 -14
- package/dist-es/commands/UpdateDbClusterCommand.js +2 -14
- package/dist-es/commands/UpdateDbInstanceCommand.js +2 -14
- package/dist-es/index.js +1 -0
- package/dist-types/commandBuilder.d.ts +18 -0
- package/dist-types/commands/CreateDbClusterCommand.d.ts +3 -8
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +3 -8
- package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +3 -8
- package/dist-types/commands/DeleteDbClusterCommand.d.ts +3 -8
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +3 -8
- package/dist-types/commands/GetDbClusterCommand.d.ts +3 -8
- package/dist-types/commands/GetDbInstanceCommand.d.ts +3 -8
- package/dist-types/commands/GetDbParameterGroupCommand.d.ts +3 -8
- package/dist-types/commands/ListDbClustersCommand.d.ts +3 -8
- package/dist-types/commands/ListDbInstancesCommand.d.ts +3 -8
- package/dist-types/commands/ListDbInstancesForClusterCommand.d.ts +3 -8
- package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +3 -8
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -8
- package/dist-types/commands/RebootDbClusterCommand.d.ts +3 -8
- package/dist-types/commands/RebootDbInstanceCommand.d.ts +3 -8
- package/dist-types/commands/TagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -8
- package/dist-types/commands/UpdateDbClusterCommand.d.ts +3 -8
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +3 -8
- package/dist-types/index.d.ts +1 -0
- package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
- package/dist-types/ts3.4/commands/CreateDbClusterCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteDbClusterCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetDbClusterCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDbClustersCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDbInstancesForClusterCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RebootDbClusterCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/RebootDbInstanceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateDbClusterCommand.d.ts +7 -16
- package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +7 -16
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -1,16 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { getEndpointPlugin } from "@smithy/core/endpoints";
|
|
3
|
-
import { commonParams } from "../endpoint/EndpointParameters";
|
|
1
|
+
import { _ep0, _mw0, command } from "../commandBuilder";
|
|
4
2
|
import { UpdateDbInstance$ } from "../schemas/schemas_0";
|
|
5
|
-
export
|
|
6
|
-
export class UpdateDbInstanceCommand extends $Command
|
|
7
|
-
.classBuilder()
|
|
8
|
-
.ep(commonParams)
|
|
9
|
-
.m(function (Command, cs, config, o) {
|
|
10
|
-
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
-
})
|
|
12
|
-
.s("AmazonTimestreamInfluxDB", "UpdateDbInstance", {})
|
|
13
|
-
.n("TimestreamInfluxDBClient", "UpdateDbInstanceCommand")
|
|
14
|
-
.sc(UpdateDbInstance$)
|
|
15
|
-
.build() {
|
|
3
|
+
export class UpdateDbInstanceCommand extends command(_ep0, _mw0, "UpdateDbInstance", UpdateDbInstance$) {
|
|
16
4
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./TimestreamInfluxDBClient";
|
|
2
2
|
export * from "./TimestreamInfluxDB";
|
|
3
3
|
export * from "./commands";
|
|
4
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
4
5
|
export * from "./schemas/schemas_0";
|
|
5
6
|
export * from "./pagination";
|
|
6
7
|
export * from "./models/enums";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
+
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "./TimestreamInfluxDBClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
|
|
7
|
+
new (input: I): import("@smithy/core/client").CommandImpl<I, O, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
8
|
+
new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
9
|
+
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* @internal
|
|
13
|
+
*/
|
|
14
|
+
export declare const _ep0: EndpointParameterInstructions;
|
|
15
|
+
/**
|
|
16
|
+
* @internal
|
|
17
|
+
*/
|
|
18
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateDbClusterInput, CreateDbClusterOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateDbClusterCommandInput extends CreateDbClusterInput {
|
|
|
22
19
|
export interface CreateDbClusterCommandOutput extends CreateDbClusterOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateDbClusterCommand_base: {
|
|
25
|
-
new (input: CreateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<CreateDbClusterCommandInput, CreateDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<CreateDbClusterCommandInput, CreateDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<CreateDbClusterCommandInput, CreateDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<CreateDbClusterCommandInput, CreateDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates a new Timestream for InfluxDB cluster.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateDbInstanceInput, CreateDbInstanceOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateDbInstanceCommandInput extends CreateDbInstanceInput {
|
|
|
22
19
|
export interface CreateDbInstanceCommandOutput extends CreateDbInstanceOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateDbInstanceCommand_base: {
|
|
25
|
-
new (input: CreateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates a new Timestream for InfluxDB DB instance.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { CreateDbParameterGroupInput, CreateDbParameterGroupOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface CreateDbParameterGroupCommandInput extends CreateDbParameterGro
|
|
|
22
19
|
export interface CreateDbParameterGroupCommandOutput extends CreateDbParameterGroupOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const CreateDbParameterGroupCommand_base: {
|
|
25
|
-
new (input: CreateDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: CreateDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: CreateDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: CreateDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<CreateDbParameterGroupCommandInput, CreateDbParameterGroupCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Creates a new Timestream for InfluxDB DB parameter group to associate with DB instances.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DeleteDbClusterInput, DeleteDbClusterOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteDbClusterCommandInput extends DeleteDbClusterInput {
|
|
|
22
19
|
export interface DeleteDbClusterCommandOutput extends DeleteDbClusterOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteDbClusterCommand_base: {
|
|
25
|
-
new (input: DeleteDbClusterCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbClusterCommandInput, DeleteDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteDbClusterCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbClusterCommandInput, DeleteDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteDbClusterCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbClusterCommandInput, DeleteDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteDbClusterCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbClusterCommandInput, DeleteDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Deletes a Timestream for InfluxDB cluster.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { DeleteDbInstanceInput, DeleteDbInstanceOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface DeleteDbInstanceCommandInput extends DeleteDbInstanceInput {
|
|
|
22
19
|
export interface DeleteDbInstanceCommandOutput extends DeleteDbInstanceOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const DeleteDbInstanceCommand_base: {
|
|
25
|
-
new (input: DeleteDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: DeleteDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: DeleteDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: DeleteDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<DeleteDbInstanceCommandInput, DeleteDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Deletes a Timestream for InfluxDB DB instance.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetDbClusterInput, GetDbClusterOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetDbClusterCommandInput extends GetDbClusterInput {
|
|
|
22
19
|
export interface GetDbClusterCommandOutput extends GetDbClusterOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetDbClusterCommand_base: {
|
|
25
|
-
new (input: GetDbClusterCommandInput): import("@smithy/core/client").CommandImpl<GetDbClusterCommandInput, GetDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetDbClusterCommandInput): import("@smithy/core/client").CommandImpl<GetDbClusterCommandInput, GetDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetDbClusterCommandInput): import("@smithy/core/client").CommandImpl<GetDbClusterCommandInput, GetDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetDbClusterCommandInput): import("@smithy/core/client").CommandImpl<GetDbClusterCommandInput, GetDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Retrieves information about a Timestream for InfluxDB cluster.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetDbInstanceInput, GetDbInstanceOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetDbInstanceCommandInput extends GetDbInstanceInput {
|
|
|
22
19
|
export interface GetDbInstanceCommandOutput extends GetDbInstanceOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetDbInstanceCommand_base: {
|
|
25
|
-
new (input: GetDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<GetDbInstanceCommandInput, GetDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<GetDbInstanceCommandInput, GetDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<GetDbInstanceCommandInput, GetDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<GetDbInstanceCommandInput, GetDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a Timestream for InfluxDB DB instance.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { GetDbParameterGroupInput, GetDbParameterGroupOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface GetDbParameterGroupCommandInput extends GetDbParameterGroupInpu
|
|
|
22
19
|
export interface GetDbParameterGroupCommandOutput extends GetDbParameterGroupOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const GetDbParameterGroupCommand_base: {
|
|
25
|
-
new (input: GetDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: GetDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: GetDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: GetDbParameterGroupCommandInput): import("@smithy/core/client").CommandImpl<GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a Timestream for InfluxDB DB parameter group.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListDbClustersInput, ListDbClustersOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListDbClustersCommandInput extends ListDbClustersInput {
|
|
|
22
19
|
export interface ListDbClustersCommandOutput extends ListDbClustersOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListDbClustersCommand_base: {
|
|
25
|
-
new (input: ListDbClustersCommandInput): import("@smithy/core/client").CommandImpl<ListDbClustersCommandInput, ListDbClustersCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListDbClustersCommandInput]): import("@smithy/core/client").CommandImpl<ListDbClustersCommandInput, ListDbClustersCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListDbClustersCommandInput): import("@smithy/core/client").CommandImpl<ListDbClustersCommandInput, ListDbClustersCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListDbClustersCommandInput]): import("@smithy/core/client").CommandImpl<ListDbClustersCommandInput, ListDbClustersCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of Timestream for InfluxDB DB clusters.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListDbInstancesInput, ListDbInstancesOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListDbInstancesCommandInput extends ListDbInstancesInput {
|
|
|
22
19
|
export interface ListDbInstancesCommandOutput extends ListDbInstancesOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListDbInstancesCommand_base: {
|
|
25
|
-
new (input: ListDbInstancesCommandInput): import("@smithy/core/client").CommandImpl<ListDbInstancesCommandInput, ListDbInstancesCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListDbInstancesCommandInput]): import("@smithy/core/client").CommandImpl<ListDbInstancesCommandInput, ListDbInstancesCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListDbInstancesCommandInput): import("@smithy/core/client").CommandImpl<ListDbInstancesCommandInput, ListDbInstancesCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListDbInstancesCommandInput]): import("@smithy/core/client").CommandImpl<ListDbInstancesCommandInput, ListDbInstancesCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of Timestream for InfluxDB DB instances.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListDbInstancesForClusterInput, ListDbInstancesForClusterOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListDbInstancesForClusterCommandInput extends ListDbInstancesFo
|
|
|
22
19
|
export interface ListDbInstancesForClusterCommandOutput extends ListDbInstancesForClusterOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListDbInstancesForClusterCommand_base: {
|
|
25
|
-
new (input: ListDbInstancesForClusterCommandInput): import("@smithy/core/client").CommandImpl<ListDbInstancesForClusterCommandInput, ListDbInstancesForClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListDbInstancesForClusterCommandInput): import("@smithy/core/client").CommandImpl<ListDbInstancesForClusterCommandInput, ListDbInstancesForClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListDbInstancesForClusterCommandInput): import("@smithy/core/client").CommandImpl<ListDbInstancesForClusterCommandInput, ListDbInstancesForClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListDbInstancesForClusterCommandInput): import("@smithy/core/client").CommandImpl<ListDbInstancesForClusterCommandInput, ListDbInstancesForClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of Timestream for InfluxDB clusters.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListDbParameterGroupsInput, ListDbParameterGroupsOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListDbParameterGroupsCommandInput extends ListDbParameterGroups
|
|
|
22
19
|
export interface ListDbParameterGroupsCommandOutput extends ListDbParameterGroupsOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListDbParameterGroupsCommand_base: {
|
|
25
|
-
new (input: ListDbParameterGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (...[input]: [] | [ListDbParameterGroupsCommandInput]): import("@smithy/core/client").CommandImpl<ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListDbParameterGroupsCommandInput): import("@smithy/core/client").CommandImpl<ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (...[input]: [] | [ListDbParameterGroupsCommandInput]): import("@smithy/core/client").CommandImpl<ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Returns a list of Timestream for InfluxDB DB parameter groups.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequ
|
|
|
22
19
|
export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const ListTagsForResourceCommand_base: {
|
|
25
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: ListTagsForResourceCommandInput): import("@smithy/core/client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>A list of tags applied to the resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { RebootDbClusterInput, RebootDbClusterOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface RebootDbClusterCommandInput extends RebootDbClusterInput {
|
|
|
22
19
|
export interface RebootDbClusterCommandOutput extends RebootDbClusterOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const RebootDbClusterCommand_base: {
|
|
25
|
-
new (input: RebootDbClusterCommandInput): import("@smithy/core/client").CommandImpl<RebootDbClusterCommandInput, RebootDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: RebootDbClusterCommandInput): import("@smithy/core/client").CommandImpl<RebootDbClusterCommandInput, RebootDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: RebootDbClusterCommandInput): import("@smithy/core/client").CommandImpl<RebootDbClusterCommandInput, RebootDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: RebootDbClusterCommandInput): import("@smithy/core/client").CommandImpl<RebootDbClusterCommandInput, RebootDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Reboots a Timestream for InfluxDB cluster.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { RebootDbInstanceInput, RebootDbInstanceOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface RebootDbInstanceCommandInput extends RebootDbInstanceInput {
|
|
|
22
19
|
export interface RebootDbInstanceCommandOutput extends RebootDbInstanceOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const RebootDbInstanceCommand_base: {
|
|
25
|
-
new (input: RebootDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<RebootDbInstanceCommandInput, RebootDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: RebootDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<RebootDbInstanceCommandInput, RebootDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: RebootDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<RebootDbInstanceCommandInput, RebootDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: RebootDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<RebootDbInstanceCommandInput, RebootDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Reboots a Timestream for InfluxDB instance.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { TagResourceRequest } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface TagResourceCommandInput extends TagResourceRequest {
|
|
|
22
19
|
export interface TagResourceCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const TagResourceCommand_base: {
|
|
25
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: TagResourceCommandInput): import("@smithy/core/client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Tags are composed of a Key/Value pairs. You can use tags to categorize and track your Timestream for InfluxDB resources.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UntagResourceRequest } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {
|
|
|
22
19
|
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UntagResourceCommand_base: {
|
|
25
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UntagResourceCommandInput): import("@smithy/core/client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Removes the tag from the specified resource.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateDbClusterInput, UpdateDbClusterOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateDbClusterCommandInput extends UpdateDbClusterInput {
|
|
|
22
19
|
export interface UpdateDbClusterCommandOutput extends UpdateDbClusterOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateDbClusterCommand_base: {
|
|
25
|
-
new (input: UpdateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbClusterCommandInput, UpdateDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbClusterCommandInput, UpdateDbClusterCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbClusterCommandInput, UpdateDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateDbClusterCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbClusterCommandInput, UpdateDbClusterCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates a Timestream for InfluxDB cluster.</p>
|
|
@@ -1,12 +1,9 @@
|
|
|
1
|
-
import { Command as $Command } from "@smithy/core/client";
|
|
2
1
|
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
2
|
import type { UpdateDbInstanceInput, UpdateDbInstanceOutput } from "../models/models_0";
|
|
4
|
-
import type { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
|
|
5
3
|
/**
|
|
6
4
|
* @public
|
|
7
5
|
*/
|
|
8
6
|
export type { __MetadataBearer };
|
|
9
|
-
export { $Command };
|
|
10
7
|
/**
|
|
11
8
|
* @public
|
|
12
9
|
*
|
|
@@ -22,11 +19,9 @@ export interface UpdateDbInstanceCommandInput extends UpdateDbInstanceInput {
|
|
|
22
19
|
export interface UpdateDbInstanceCommandOutput extends UpdateDbInstanceOutput, __MetadataBearer {
|
|
23
20
|
}
|
|
24
21
|
declare const UpdateDbInstanceCommand_base: {
|
|
25
|
-
new (input: UpdateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
-
new (input: UpdateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
-
getEndpointParameterInstructions():
|
|
28
|
-
[x: string]: unknown;
|
|
29
|
-
};
|
|
22
|
+
new (input: UpdateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
23
|
+
new (input: UpdateDbInstanceCommandInput): import("@smithy/core/client").CommandImpl<UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, import("..").TimestreamInfluxDBClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
|
|
24
|
+
getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
|
|
30
25
|
};
|
|
31
26
|
/**
|
|
32
27
|
* <p>Updates a Timestream for InfluxDB DB instance.</p>
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
|
|
|
10
10
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
11
11
|
export type { TimestreamInfluxDBExtensionConfiguration } from "./extensionConfiguration";
|
|
12
12
|
export * from "./commands";
|
|
13
|
+
export { Command as $Command } from "@smithy/core/client";
|
|
13
14
|
export * from "./schemas/schemas_0";
|
|
14
15
|
export * from "./pagination";
|
|
15
16
|
export * from "./models/enums";
|