@aws-sdk/client-timestream-influxdb 3.952.0 → 3.954.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/README.md +16 -0
  2. package/dist-cjs/index.js +375 -202
  3. package/dist-cjs/runtimeConfig.shared.js +6 -6
  4. package/dist-es/TimestreamInfluxDB.js +4 -0
  5. package/dist-es/commands/CreateDbClusterCommand.js +2 -2
  6. package/dist-es/commands/CreateDbInstanceCommand.js +2 -2
  7. package/dist-es/commands/CreateDbParameterGroupCommand.js +2 -2
  8. package/dist-es/commands/DeleteDbClusterCommand.js +2 -2
  9. package/dist-es/commands/DeleteDbInstanceCommand.js +2 -2
  10. package/dist-es/commands/GetDbClusterCommand.js +2 -2
  11. package/dist-es/commands/GetDbInstanceCommand.js +2 -2
  12. package/dist-es/commands/GetDbParameterGroupCommand.js +2 -2
  13. package/dist-es/commands/ListDbClustersCommand.js +2 -2
  14. package/dist-es/commands/ListDbInstancesCommand.js +2 -2
  15. package/dist-es/commands/ListDbInstancesForClusterCommand.js +2 -2
  16. package/dist-es/commands/ListDbParameterGroupsCommand.js +2 -2
  17. package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
  18. package/dist-es/commands/RebootDbClusterCommand.js +16 -0
  19. package/dist-es/commands/RebootDbInstanceCommand.js +16 -0
  20. package/dist-es/commands/TagResourceCommand.js +2 -2
  21. package/dist-es/commands/UntagResourceCommand.js +2 -2
  22. package/dist-es/commands/UpdateDbClusterCommand.js +2 -2
  23. package/dist-es/commands/UpdateDbInstanceCommand.js +2 -2
  24. package/dist-es/commands/index.js +2 -0
  25. package/dist-es/index.js +1 -0
  26. package/dist-es/models/enums.js +6 -0
  27. package/dist-es/runtimeConfig.shared.js +6 -6
  28. package/dist-es/schemas/schemas_0.js +237 -172
  29. package/dist-types/TimestreamInfluxDB.d.ts +14 -0
  30. package/dist-types/TimestreamInfluxDBClient.d.ts +5 -12
  31. package/dist-types/commands/CreateDbClusterCommand.d.ts +1 -1
  32. package/dist-types/commands/CreateDbInstanceCommand.d.ts +1 -1
  33. package/dist-types/commands/DeleteDbClusterCommand.d.ts +1 -1
  34. package/dist-types/commands/DeleteDbInstanceCommand.d.ts +1 -1
  35. package/dist-types/commands/GetDbClusterCommand.d.ts +1 -1
  36. package/dist-types/commands/GetDbInstanceCommand.d.ts +1 -1
  37. package/dist-types/commands/ListDbClustersCommand.d.ts +1 -1
  38. package/dist-types/commands/ListDbInstancesCommand.d.ts +1 -1
  39. package/dist-types/commands/ListDbInstancesForClusterCommand.d.ts +1 -1
  40. package/dist-types/commands/RebootDbClusterCommand.d.ts +95 -0
  41. package/dist-types/commands/RebootDbInstanceCommand.d.ts +124 -0
  42. package/dist-types/commands/UpdateDbClusterCommand.d.ts +1 -1
  43. package/dist-types/commands/UpdateDbInstanceCommand.d.ts +1 -1
  44. package/dist-types/commands/index.d.ts +2 -0
  45. package/dist-types/index.d.ts +1 -0
  46. package/dist-types/models/enums.d.ts +6 -0
  47. package/dist-types/models/models_0.d.ts +150 -0
  48. package/dist-types/runtimeConfig.browser.d.ts +6 -2
  49. package/dist-types/runtimeConfig.d.ts +6 -2
  50. package/dist-types/runtimeConfig.native.d.ts +6 -2
  51. package/dist-types/runtimeConfig.shared.d.ts +6 -1
  52. package/dist-types/schemas/schemas_0.d.ts +76 -83
  53. package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +34 -0
  54. package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +12 -4
  55. package/dist-types/ts3.4/commands/RebootDbClusterCommand.d.ts +50 -0
  56. package/dist-types/ts3.4/commands/RebootDbInstanceCommand.d.ts +50 -0
  57. package/dist-types/ts3.4/commands/index.d.ts +2 -0
  58. package/dist-types/ts3.4/index.d.ts +1 -0
  59. package/dist-types/ts3.4/models/enums.d.ts +6 -0
  60. package/dist-types/ts3.4/models/models_0.d.ts +34 -0
  61. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
  62. package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
  63. package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
  64. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
  65. package/dist-types/ts3.4/schemas/schemas_0.d.ts +75 -84
  66. 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
- new protocols_1.AwsJson1_0Protocol({
31
- defaultNamespace: "com.amazonaws.timestreaminfluxdb",
32
- serviceTarget: "AmazonTimestreamInfluxDB",
33
- awsQueryCompatible: false,
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
@@ -1,6 +1,7 @@
1
1
  export * from "./TimestreamInfluxDBClient";
2
2
  export * from "./TimestreamInfluxDB";
3
3
  export * from "./commands";
4
+ export * from "./schemas/schemas_0";
4
5
  export * from "./pagination";
5
6
  export * from "./models/enums";
6
7
  export * from "./models/errors";
@@ -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
- new AwsJson1_0Protocol({
28
- defaultNamespace: "com.amazonaws.timestreaminfluxdb",
29
- serviceTarget: "AmazonTimestreamInfluxDB",
30
- awsQueryCompatible: false,
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,