@aws-sdk/client-timestream-influxdb 3.1087.0 → 3.1089.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 +1 -1
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +62 -65
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +6 -19
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDbClusterCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListDbClustersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDbInstancesForClusterCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RebootDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/RebootDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdateDbClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +4 -9
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +2 -4
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
DeleteDbInstanceInput,
|
|
4
|
-
DeleteDbInstanceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { DeleteDbInstanceInput, DeleteDbInstanceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface DeleteDbInstanceCommandInput extends DeleteDbInstanceInput {}
|
|
8
|
-
export interface DeleteDbInstanceCommandOutput
|
|
9
|
-
extends DeleteDbInstanceOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface DeleteDbInstanceCommandOutput extends DeleteDbInstanceOutput, __MetadataBearer {}
|
|
11
6
|
declare const DeleteDbInstanceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: DeleteDbInstanceCommandInput
|
|
8
|
+
input: DeleteDbInstanceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
DeleteDbInstanceCommandInput,
|
|
16
11
|
DeleteDbInstanceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const DeleteDbInstanceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: DeleteDbInstanceCommandInput
|
|
17
|
+
input: DeleteDbInstanceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
DeleteDbInstanceCommandInput,
|
|
25
20
|
DeleteDbInstanceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetDbClusterInput, GetDbClusterOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDbClusterCommandInput extends GetDbClusterInput {}
|
|
5
|
-
export interface GetDbClusterCommandOutput
|
|
6
|
-
extends GetDbClusterOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetDbClusterCommandOutput extends GetDbClusterOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetDbClusterCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetDbClusterCommandInput
|
|
8
|
+
input: GetDbClusterCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetDbClusterCommandInput,
|
|
13
11
|
GetDbClusterCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetDbClusterCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetDbClusterCommandInput
|
|
17
|
+
input: GetDbClusterCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetDbClusterCommandInput,
|
|
22
20
|
GetDbClusterCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetDbInstanceInput, GetDbInstanceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetDbInstanceCommandInput extends GetDbInstanceInput {}
|
|
5
|
-
export interface GetDbInstanceCommandOutput
|
|
6
|
-
extends GetDbInstanceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetDbInstanceCommandOutput extends GetDbInstanceOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetDbInstanceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetDbInstanceCommandInput
|
|
8
|
+
input: GetDbInstanceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetDbInstanceCommandInput,
|
|
13
11
|
GetDbInstanceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetDbInstanceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetDbInstanceCommandInput
|
|
17
|
+
input: GetDbInstanceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetDbInstanceCommandInput,
|
|
22
20
|
GetDbInstanceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetDbParameterGroupInput,
|
|
4
|
-
GetDbParameterGroupOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetDbParameterGroupInput, GetDbParameterGroupOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetDbParameterGroupCommandInput
|
|
8
|
-
extends GetDbParameterGroupInput {}
|
|
4
|
+
export interface GetDbParameterGroupCommandInput extends GetDbParameterGroupInput {}
|
|
9
5
|
export interface GetDbParameterGroupCommandOutput
|
|
10
|
-
extends GetDbParameterGroupOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetDbParameterGroupOutput, __MetadataBearer {}
|
|
12
7
|
declare const GetDbParameterGroupCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetDbParameterGroupCommandInput
|
|
9
|
+
input: GetDbParameterGroupCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetDbParameterGroupCommandInput,
|
|
17
12
|
GetDbParameterGroupCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetDbParameterGroupCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetDbParameterGroupCommandInput
|
|
18
|
+
input: GetDbParameterGroupCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetDbParameterGroupCommandInput,
|
|
26
21
|
GetDbParameterGroupCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListDbClustersInput, ListDbClustersOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListDbClustersCommandInput extends ListDbClustersInput {}
|
|
5
|
-
export interface ListDbClustersCommandOutput
|
|
6
|
-
extends ListDbClustersOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDbClustersCommandOutput extends ListDbClustersOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListDbClustersCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListDbClustersCommandInput
|
|
8
|
+
input: ListDbClustersCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListDbClustersCommandInput,
|
|
13
11
|
ListDbClustersCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDbInstancesInput,
|
|
4
|
-
ListDbInstancesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDbInstancesInput, ListDbInstancesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListDbInstancesCommandInput extends ListDbInstancesInput {}
|
|
8
|
-
export interface ListDbInstancesCommandOutput
|
|
9
|
-
extends ListDbInstancesOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListDbInstancesCommandOutput extends ListDbInstancesOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListDbInstancesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListDbInstancesCommandInput
|
|
8
|
+
input: ListDbInstancesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListDbInstancesCommandInput,
|
|
16
11
|
ListDbInstancesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDbInstancesForClusterOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDbInstancesForClusterCommandInput
|
|
8
|
-
extends ListDbInstancesForClusterInput {}
|
|
7
|
+
export interface ListDbInstancesForClusterCommandInput extends ListDbInstancesForClusterInput {}
|
|
9
8
|
export interface ListDbInstancesForClusterCommandOutput
|
|
10
|
-
extends ListDbInstancesForClusterOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDbInstancesForClusterOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListDbInstancesForClusterCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDbInstancesForClusterCommandInput
|
|
12
|
+
input: ListDbInstancesForClusterCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDbInstancesForClusterCommandInput,
|
|
17
15
|
ListDbInstancesForClusterCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListDbInstancesForClusterCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListDbInstancesForClusterCommandInput
|
|
21
|
+
input: ListDbInstancesForClusterCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListDbInstancesForClusterCommandInput,
|
|
26
24
|
ListDbInstancesForClusterCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListDbParameterGroupsInput,
|
|
4
|
-
ListDbParameterGroupsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListDbParameterGroupsInput, ListDbParameterGroupsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDbParameterGroupsCommandInput
|
|
8
|
-
extends ListDbParameterGroupsInput {}
|
|
4
|
+
export interface ListDbParameterGroupsCommandInput extends ListDbParameterGroupsInput {}
|
|
9
5
|
export interface ListDbParameterGroupsCommandOutput
|
|
10
|
-
extends ListDbParameterGroupsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListDbParameterGroupsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListDbParameterGroupsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListDbParameterGroupsCommandInput
|
|
9
|
+
input: ListDbParameterGroupsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListDbParameterGroupsCommandInput,
|
|
17
12
|
ListDbParameterGroupsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceRequest,
|
|
4
|
-
ListTagsForResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceRequest {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RebootDbClusterInput,
|
|
4
|
-
RebootDbClusterOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RebootDbClusterInput, RebootDbClusterOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface RebootDbClusterCommandInput extends RebootDbClusterInput {}
|
|
8
|
-
export interface RebootDbClusterCommandOutput
|
|
9
|
-
extends RebootDbClusterOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RebootDbClusterCommandOutput extends RebootDbClusterOutput, __MetadataBearer {}
|
|
11
6
|
declare const RebootDbClusterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: RebootDbClusterCommandInput
|
|
8
|
+
input: RebootDbClusterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
RebootDbClusterCommandInput,
|
|
16
11
|
RebootDbClusterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const RebootDbClusterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: RebootDbClusterCommandInput
|
|
17
|
+
input: RebootDbClusterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
RebootDbClusterCommandInput,
|
|
25
20
|
RebootDbClusterCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RebootDbInstanceInput,
|
|
4
|
-
RebootDbInstanceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RebootDbInstanceInput, RebootDbInstanceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface RebootDbInstanceCommandInput extends RebootDbInstanceInput {}
|
|
8
|
-
export interface RebootDbInstanceCommandOutput
|
|
9
|
-
extends RebootDbInstanceOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RebootDbInstanceCommandOutput extends RebootDbInstanceOutput, __MetadataBearer {}
|
|
11
6
|
declare const RebootDbInstanceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: RebootDbInstanceCommandInput
|
|
8
|
+
input: RebootDbInstanceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
RebootDbInstanceCommandInput,
|
|
16
11
|
RebootDbInstanceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const RebootDbInstanceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: RebootDbInstanceCommandInput
|
|
17
|
+
input: RebootDbInstanceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
RebootDbInstanceCommandInput,
|
|
25
20
|
RebootDbInstanceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
|
5
5
|
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const TagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
TagResourceCommandInput,
|
|
11
11
|
TagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
TagResourceCommandInput,
|
|
20
20
|
TagResourceCommandOutput,
|
|
@@ -5,7 +5,7 @@ export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
|
5
5
|
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
6
6
|
declare const UntagResourceCommand_base: {
|
|
7
7
|
new (
|
|
8
|
-
input: UntagResourceCommandInput
|
|
8
|
+
input: UntagResourceCommandInput,
|
|
9
9
|
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
UntagResourceCommandInput,
|
|
11
11
|
UntagResourceCommandOutput,
|
|
@@ -14,7 +14,7 @@ declare const UntagResourceCommand_base: {
|
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
16
|
new (
|
|
17
|
-
input: UntagResourceCommandInput
|
|
17
|
+
input: UntagResourceCommandInput,
|
|
18
18
|
): import("@smithy/core/client").CommandImpl<
|
|
19
19
|
UntagResourceCommandInput,
|
|
20
20
|
UntagResourceCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDbClusterInput,
|
|
4
|
-
UpdateDbClusterOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDbClusterInput, UpdateDbClusterOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateDbClusterCommandInput extends UpdateDbClusterInput {}
|
|
8
|
-
export interface UpdateDbClusterCommandOutput
|
|
9
|
-
extends UpdateDbClusterOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateDbClusterCommandOutput extends UpdateDbClusterOutput, __MetadataBearer {}
|
|
11
6
|
declare const UpdateDbClusterCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateDbClusterCommandInput
|
|
8
|
+
input: UpdateDbClusterCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateDbClusterCommandInput,
|
|
16
11
|
UpdateDbClusterCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateDbClusterCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateDbClusterCommandInput
|
|
17
|
+
input: UpdateDbClusterCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateDbClusterCommandInput,
|
|
25
20
|
UpdateDbClusterCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
UpdateDbInstanceInput,
|
|
4
|
-
UpdateDbInstanceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { UpdateDbInstanceInput, UpdateDbInstanceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface UpdateDbInstanceCommandInput extends UpdateDbInstanceInput {}
|
|
8
|
-
export interface UpdateDbInstanceCommandOutput
|
|
9
|
-
extends UpdateDbInstanceOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface UpdateDbInstanceCommandOutput extends UpdateDbInstanceOutput, __MetadataBearer {}
|
|
11
6
|
declare const UpdateDbInstanceCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: UpdateDbInstanceCommandInput
|
|
8
|
+
input: UpdateDbInstanceCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
UpdateDbInstanceCommandInput,
|
|
16
11
|
UpdateDbInstanceCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const UpdateDbInstanceCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: UpdateDbInstanceCommandInput
|
|
17
|
+
input: UpdateDbInstanceCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
UpdateDbInstanceCommandInput,
|
|
25
20
|
UpdateDbInstanceCommandOutput,
|
|
@@ -23,7 +23,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
23
23
|
defaultSigningName: string;
|
|
24
24
|
};
|
|
25
25
|
export declare const resolveClientEndpointParameters: <T>(
|
|
26
|
-
options: T & ClientInputEndpointParameters
|
|
26
|
+
options: T & ClientInputEndpointParameters,
|
|
27
27
|
) => T & ClientResolvedEndpointParameters;
|
|
28
28
|
export declare const commonParams: {
|
|
29
29
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface TimestreamInfluxDBExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -9,8 +9,7 @@ export declare const DbInstanceType: {
|
|
|
9
9
|
readonly DB_INFLUX_MEDIUM: "db.influx.medium";
|
|
10
10
|
readonly DB_INFLUX_XLARGE: "db.influx.xlarge";
|
|
11
11
|
};
|
|
12
|
-
export type DbInstanceType =
|
|
13
|
-
(typeof DbInstanceType)[keyof typeof DbInstanceType];
|
|
12
|
+
export type DbInstanceType = (typeof DbInstanceType)[keyof typeof DbInstanceType];
|
|
14
13
|
export declare const DbStorageType: {
|
|
15
14
|
readonly INFLUX_IO_INCLUDED_T1: "InfluxIOIncludedT1";
|
|
16
15
|
readonly INFLUX_IO_INCLUDED_T2: "InfluxIOIncludedT2";
|
|
@@ -62,8 +61,7 @@ export declare const DeploymentType: {
|
|
|
62
61
|
readonly SINGLE_AZ: "SINGLE_AZ";
|
|
63
62
|
readonly WITH_MULTIAZ_STANDBY: "WITH_MULTIAZ_STANDBY";
|
|
64
63
|
};
|
|
65
|
-
export type DeploymentType =
|
|
66
|
-
(typeof DeploymentType)[keyof typeof DeploymentType];
|
|
64
|
+
export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType];
|
|
67
65
|
export declare const InstanceMode: {
|
|
68
66
|
readonly COMPACT: "COMPACT";
|
|
69
67
|
readonly INGEST: "INGEST";
|
|
@@ -4,9 +4,7 @@ import { TimestreamInfluxDBServiceException as __BaseException } from "./Timestr
|
|
|
4
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
6
6
|
readonly $fault: "client";
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class ConflictException extends __BaseException {
|
|
12
10
|
readonly name: "ConflictException";
|
|
@@ -19,40 +17,30 @@ export declare class InternalServerException extends __BaseException {
|
|
|
19
17
|
readonly name: "InternalServerException";
|
|
20
18
|
readonly $fault: "server";
|
|
21
19
|
$retryable: {};
|
|
22
|
-
constructor(
|
|
23
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
-
);
|
|
20
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
25
21
|
}
|
|
26
22
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
27
23
|
readonly name: "ResourceNotFoundException";
|
|
28
24
|
readonly $fault: "client";
|
|
29
25
|
resourceId: string | undefined;
|
|
30
26
|
resourceType: string | undefined;
|
|
31
|
-
constructor(
|
|
32
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
33
|
-
);
|
|
27
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
34
28
|
}
|
|
35
29
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
36
30
|
readonly name: "ServiceQuotaExceededException";
|
|
37
31
|
readonly $fault: "client";
|
|
38
|
-
constructor(
|
|
39
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
40
|
-
);
|
|
32
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
41
33
|
}
|
|
42
34
|
export declare class ThrottlingException extends __BaseException {
|
|
43
35
|
readonly name: "ThrottlingException";
|
|
44
36
|
readonly $fault: "client";
|
|
45
37
|
$retryable: {};
|
|
46
38
|
retryAfterSeconds?: number | undefined;
|
|
47
|
-
constructor(
|
|
48
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
49
|
-
);
|
|
39
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
50
40
|
}
|
|
51
41
|
export declare class ValidationException extends __BaseException {
|
|
52
42
|
readonly name: "ValidationException";
|
|
53
43
|
readonly $fault: "client";
|
|
54
44
|
reason: ValidationExceptionReason | undefined;
|
|
55
|
-
constructor(
|
|
56
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
57
|
-
);
|
|
45
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
58
46
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { TimestreamInfluxDBClient } from "../TimestreamInfluxDBClient";
|
|
3
|
-
export interface TimestreamInfluxDBPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface TimestreamInfluxDBPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: TimestreamInfluxDBClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: TimestreamInfluxDBClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { TimestreamInfluxDBClientConfig } from "./TimestreamInfluxDBClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: TimestreamInfluxDBClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -55,9 +47,7 @@ export declare const getRuntimeConfig: (
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
retryStrategy?:
|
|
59
|
-
| import("@smithy/types").RetryStrategy
|
|
60
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
61
51
|
endpoint?:
|
|
62
52
|
| ((
|
|
63
53
|
| string
|
|
@@ -79,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
79
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
70
|
context?: {
|
|
81
71
|
logger?: import("@smithy/types").Logger;
|
|
82
|
-
}
|
|
72
|
+
},
|
|
83
73
|
) => import("@smithy/types").EndpointV2;
|
|
84
74
|
tls?: boolean;
|
|
85
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -91,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
91
81
|
signer?:
|
|
92
82
|
| import("@smithy/types").RequestSigner
|
|
93
83
|
| ((
|
|
94
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
86
|
signingEscapePath?: boolean;
|
|
97
87
|
systemClockOffset?: number;
|
|
98
88
|
signingRegion?: string;
|
|
99
89
|
signerConstructor?: new (
|
|
100
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
101
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
92
|
) => import("@smithy/types").RequestSigner;
|
|
103
93
|
};
|