@aws-sdk/client-timestream-influxdb 3.948.0 → 3.953.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/README.md +16 -0
- package/dist-cjs/index.js +375 -202
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/TimestreamInfluxDB.js +4 -0
- package/dist-es/commands/CreateDbClusterCommand.js +2 -2
- package/dist-es/commands/CreateDbInstanceCommand.js +2 -2
- package/dist-es/commands/CreateDbParameterGroupCommand.js +2 -2
- package/dist-es/commands/DeleteDbClusterCommand.js +2 -2
- package/dist-es/commands/DeleteDbInstanceCommand.js +2 -2
- package/dist-es/commands/GetDbClusterCommand.js +2 -2
- package/dist-es/commands/GetDbInstanceCommand.js +2 -2
- package/dist-es/commands/GetDbParameterGroupCommand.js +2 -2
- package/dist-es/commands/ListDbClustersCommand.js +2 -2
- package/dist-es/commands/ListDbInstancesCommand.js +2 -2
- package/dist-es/commands/ListDbInstancesForClusterCommand.js +2 -2
- package/dist-es/commands/ListDbParameterGroupsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/RebootDbClusterCommand.js +16 -0
- package/dist-es/commands/RebootDbInstanceCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateDbClusterCommand.js +2 -2
- package/dist-es/commands/UpdateDbInstanceCommand.js +2 -2
- package/dist-es/commands/index.js +2 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/enums.js +6 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +237 -172
- package/dist-types/TimestreamInfluxDB.d.ts +14 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +5 -12
- package/dist-types/commands/CreateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/GetDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/GetDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/ListDbClustersCommand.d.ts +1 -1
- package/dist-types/commands/ListDbInstancesCommand.d.ts +1 -1
- package/dist-types/commands/ListDbInstancesForClusterCommand.d.ts +1 -1
- package/dist-types/commands/RebootDbClusterCommand.d.ts +95 -0
- package/dist-types/commands/RebootDbInstanceCommand.d.ts +124 -0
- package/dist-types/commands/UpdateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/enums.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +150 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +76 -83
- package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +34 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +12 -4
- package/dist-types/ts3.4/commands/RebootDbClusterCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/RebootDbInstanceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/enums.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +34 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +75 -84
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_0Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.timestreaminfluxdb",
|
|
32
|
+
version: "2023-01-27",
|
|
33
|
+
serviceTarget: "AmazonTimestreamInfluxDB",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Timestream InfluxDB",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -12,6 +12,8 @@ import { ListDbInstancesCommand, } from "./commands/ListDbInstancesCommand";
|
|
|
12
12
|
import { ListDbInstancesForClusterCommand, } from "./commands/ListDbInstancesForClusterCommand";
|
|
13
13
|
import { ListDbParameterGroupsCommand, } from "./commands/ListDbParameterGroupsCommand";
|
|
14
14
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
15
|
+
import { RebootDbClusterCommand, } from "./commands/RebootDbClusterCommand";
|
|
16
|
+
import { RebootDbInstanceCommand, } from "./commands/RebootDbInstanceCommand";
|
|
15
17
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
16
18
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
17
19
|
import { UpdateDbClusterCommand, } from "./commands/UpdateDbClusterCommand";
|
|
@@ -31,6 +33,8 @@ const commands = {
|
|
|
31
33
|
ListDbInstancesForClusterCommand,
|
|
32
34
|
ListDbParameterGroupsCommand,
|
|
33
35
|
ListTagsForResourceCommand,
|
|
36
|
+
RebootDbClusterCommand,
|
|
37
|
+
RebootDbInstanceCommand,
|
|
34
38
|
TagResourceCommand,
|
|
35
39
|
UntagResourceCommand,
|
|
36
40
|
UpdateDbClusterCommand,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDbCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDbCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDbClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDbClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "CreateDbCluster", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "CreateDbClusterCommand")
|
|
14
|
-
.sc(CreateDbCluster)
|
|
14
|
+
.sc(CreateDbCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDbInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDbInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDbInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDbInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "CreateDbInstance", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "CreateDbInstanceCommand")
|
|
14
|
-
.sc(CreateDbInstance)
|
|
14
|
+
.sc(CreateDbInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateDbParameterGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateDbParameterGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateDbParameterGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateDbParameterGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "CreateDbParameterGroup", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "CreateDbParameterGroupCommand")
|
|
14
|
-
.sc(CreateDbParameterGroup)
|
|
14
|
+
.sc(CreateDbParameterGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDbCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDbCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDbClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDbClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "DeleteDbCluster", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "DeleteDbClusterCommand")
|
|
14
|
-
.sc(DeleteDbCluster)
|
|
14
|
+
.sc(DeleteDbCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteDbInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteDbInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteDbInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteDbInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "DeleteDbInstance", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "DeleteDbInstanceCommand")
|
|
14
|
-
.sc(DeleteDbInstance)
|
|
14
|
+
.sc(DeleteDbInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDbCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDbCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDbClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDbClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "GetDbCluster", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "GetDbClusterCommand")
|
|
14
|
-
.sc(GetDbCluster)
|
|
14
|
+
.sc(GetDbCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDbInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDbInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDbInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDbInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "GetDbInstance", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "GetDbInstanceCommand")
|
|
14
|
-
.sc(GetDbInstance)
|
|
14
|
+
.sc(GetDbInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetDbParameterGroup } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDbParameterGroup$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDbParameterGroupCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDbParameterGroupCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "GetDbParameterGroup", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "GetDbParameterGroupCommand")
|
|
14
|
-
.sc(GetDbParameterGroup)
|
|
14
|
+
.sc(GetDbParameterGroup$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDbClusters } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDbClusters$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDbClustersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDbClustersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "ListDbClusters", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "ListDbClustersCommand")
|
|
14
|
-
.sc(ListDbClusters)
|
|
14
|
+
.sc(ListDbClusters$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDbInstances } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDbInstances$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDbInstancesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDbInstancesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "ListDbInstances", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "ListDbInstancesCommand")
|
|
14
|
-
.sc(ListDbInstances)
|
|
14
|
+
.sc(ListDbInstances$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDbInstancesForCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDbInstancesForCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDbInstancesForClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDbInstancesForClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "ListDbInstancesForCluster", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "ListDbInstancesForClusterCommand")
|
|
14
|
-
.sc(ListDbInstancesForCluster)
|
|
14
|
+
.sc(ListDbInstancesForCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListDbParameterGroups } from "../schemas/schemas_0";
|
|
4
|
+
import { ListDbParameterGroups$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListDbParameterGroupsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListDbParameterGroupsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "ListDbParameterGroups", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "ListDbParameterGroupsCommand")
|
|
14
|
-
.sc(ListDbParameterGroups)
|
|
14
|
+
.sc(ListDbParameterGroups$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "ListTagsForResource", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { RebootDbCluster$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class RebootDbClusterCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonTimestreamInfluxDB", "RebootDbCluster", {})
|
|
13
|
+
.n("TimestreamInfluxDBClient", "RebootDbClusterCommand")
|
|
14
|
+
.sc(RebootDbCluster$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
+
import { RebootDbInstance$ } from "../schemas/schemas_0";
|
|
5
|
+
export { $Command };
|
|
6
|
+
export class RebootDbInstanceCommand extends $Command
|
|
7
|
+
.classBuilder()
|
|
8
|
+
.ep(commonParams)
|
|
9
|
+
.m(function (Command, cs, config, o) {
|
|
10
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
11
|
+
})
|
|
12
|
+
.s("AmazonTimestreamInfluxDB", "RebootDbInstance", {})
|
|
13
|
+
.n("TimestreamInfluxDBClient", "RebootDbInstanceCommand")
|
|
14
|
+
.sc(RebootDbInstance$)
|
|
15
|
+
.build() {
|
|
16
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "TagResource", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "UntagResource", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateDbCluster } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDbCluster$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDbClusterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDbClusterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "UpdateDbCluster", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "UpdateDbClusterCommand")
|
|
14
|
-
.sc(UpdateDbCluster)
|
|
14
|
+
.sc(UpdateDbCluster$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UpdateDbInstance } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDbInstance$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDbInstanceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDbInstanceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonTimestreamInfluxDB", "UpdateDbInstance", {})
|
|
13
13
|
.n("TimestreamInfluxDBClient", "UpdateDbInstanceCommand")
|
|
14
|
-
.sc(UpdateDbInstance)
|
|
14
|
+
.sc(UpdateDbInstance$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -11,6 +11,8 @@ export * from "./ListDbInstancesCommand";
|
|
|
11
11
|
export * from "./ListDbInstancesForClusterCommand";
|
|
12
12
|
export * from "./ListDbParameterGroupsCommand";
|
|
13
13
|
export * from "./ListTagsForResourceCommand";
|
|
14
|
+
export * from "./RebootDbClusterCommand";
|
|
15
|
+
export * from "./RebootDbInstanceCommand";
|
|
14
16
|
export * from "./TagResourceCommand";
|
|
15
17
|
export * from "./UntagResourceCommand";
|
|
16
18
|
export * from "./UpdateDbClusterCommand";
|
package/dist-es/index.js
CHANGED
package/dist-es/models/enums.js
CHANGED
|
@@ -32,7 +32,11 @@ export const ClusterStatus = {
|
|
|
32
32
|
DELETING: "DELETING",
|
|
33
33
|
FAILED: "FAILED",
|
|
34
34
|
MAINTENANCE: "MAINTENANCE",
|
|
35
|
+
PARTIALLY_AVAILABLE: "PARTIALLY_AVAILABLE",
|
|
36
|
+
REBOOTING: "REBOOTING",
|
|
37
|
+
REBOOT_FAILED: "REBOOT_FAILED",
|
|
35
38
|
UPDATING: "UPDATING",
|
|
39
|
+
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
36
40
|
};
|
|
37
41
|
export const ValidationExceptionReason = {
|
|
38
42
|
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
@@ -64,6 +68,8 @@ export const Status = {
|
|
|
64
68
|
FAILED: "FAILED",
|
|
65
69
|
MAINTENANCE: "MAINTENANCE",
|
|
66
70
|
MODIFYING: "MODIFYING",
|
|
71
|
+
REBOOTING: "REBOOTING",
|
|
72
|
+
REBOOT_FAILED: "REBOOT_FAILED",
|
|
67
73
|
UPDATING: "UPDATING",
|
|
68
74
|
UPDATING_DEPLOYMENT_TYPE: "UPDATING_DEPLOYMENT_TYPE",
|
|
69
75
|
UPDATING_INSTANCE_TYPE: "UPDATING_INSTANCE_TYPE",
|
|
@@ -23,12 +23,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.timestreaminfluxdb",
|
|
29
|
+
version: "2023-01-27",
|
|
30
|
+
serviceTarget: "AmazonTimestreamInfluxDB",
|
|
31
|
+
},
|
|
32
32
|
serviceId: config?.serviceId ?? "Timestream InfluxDB",
|
|
33
33
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
34
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|