@aws-sdk/client-timestream-influxdb 3.534.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 (139) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +293 -0
  3. package/dist-cjs/TimestreamInfluxDB.js +33 -0
  4. package/dist-cjs/TimestreamInfluxDBClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateDbInstanceCommand.js +29 -0
  8. package/dist-cjs/commands/CreateDbParameterGroupCommand.js +28 -0
  9. package/dist-cjs/commands/DeleteDbInstanceCommand.js +28 -0
  10. package/dist-cjs/commands/GetDbInstanceCommand.js +28 -0
  11. package/dist-cjs/commands/GetDbParameterGroupCommand.js +28 -0
  12. package/dist-cjs/commands/ListDbInstancesCommand.js +28 -0
  13. package/dist-cjs/commands/ListDbParameterGroupsCommand.js +28 -0
  14. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  15. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  16. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  17. package/dist-cjs/commands/UpdateDbInstanceCommand.js +28 -0
  18. package/dist-cjs/commands/index.js +14 -0
  19. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  20. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  21. package/dist-cjs/endpoint/ruleset.js +7 -0
  22. package/dist-cjs/extensionConfiguration.js +2 -0
  23. package/dist-cjs/index.js +12 -0
  24. package/dist-cjs/models/TimestreamInfluxDBServiceException.js +12 -0
  25. package/dist-cjs/models/index.js +4 -0
  26. package/dist-cjs/models/models_0.js +159 -0
  27. package/dist-cjs/pagination/Interfaces.js +2 -0
  28. package/dist-cjs/pagination/ListDbInstancesPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListDbParameterGroupsPaginator.js +7 -0
  30. package/dist-cjs/pagination/index.js +6 -0
  31. package/dist-cjs/protocols/Aws_json1_0.js +365 -0
  32. package/dist-cjs/runtimeConfig.browser.js +39 -0
  33. package/dist-cjs/runtimeConfig.js +49 -0
  34. package/dist-cjs/runtimeConfig.native.js +15 -0
  35. package/dist-cjs/runtimeConfig.shared.js +34 -0
  36. package/dist-cjs/runtimeExtensions.js +25 -0
  37. package/dist-es/TimestreamInfluxDB.js +29 -0
  38. package/dist-es/TimestreamInfluxDBClient.js +52 -0
  39. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  40. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  41. package/dist-es/commands/CreateDbInstanceCommand.js +25 -0
  42. package/dist-es/commands/CreateDbParameterGroupCommand.js +24 -0
  43. package/dist-es/commands/DeleteDbInstanceCommand.js +24 -0
  44. package/dist-es/commands/GetDbInstanceCommand.js +24 -0
  45. package/dist-es/commands/GetDbParameterGroupCommand.js +24 -0
  46. package/dist-es/commands/ListDbInstancesCommand.js +24 -0
  47. package/dist-es/commands/ListDbParameterGroupsCommand.js +24 -0
  48. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  49. package/dist-es/commands/TagResourceCommand.js +24 -0
  50. package/dist-es/commands/UntagResourceCommand.js +24 -0
  51. package/dist-es/commands/UpdateDbInstanceCommand.js +24 -0
  52. package/dist-es/commands/index.js +11 -0
  53. package/dist-es/endpoint/EndpointParameters.js +14 -0
  54. package/dist-es/endpoint/endpointResolver.js +8 -0
  55. package/dist-es/endpoint/ruleset.js +4 -0
  56. package/dist-es/extensionConfiguration.js +1 -0
  57. package/dist-es/index.js +7 -0
  58. package/dist-es/models/TimestreamInfluxDBServiceException.js +8 -0
  59. package/dist-es/models/index.js +1 -0
  60. package/dist-es/models/models_0.js +148 -0
  61. package/dist-es/pagination/Interfaces.js +1 -0
  62. package/dist-es/pagination/ListDbInstancesPaginator.js +4 -0
  63. package/dist-es/pagination/ListDbParameterGroupsPaginator.js +4 -0
  64. package/dist-es/pagination/index.js +3 -0
  65. package/dist-es/protocols/Aws_json1_0.js +340 -0
  66. package/dist-es/runtimeConfig.browser.js +34 -0
  67. package/dist-es/runtimeConfig.js +44 -0
  68. package/dist-es/runtimeConfig.native.js +11 -0
  69. package/dist-es/runtimeConfig.shared.js +30 -0
  70. package/dist-es/runtimeExtensions.js +21 -0
  71. package/dist-types/TimestreamInfluxDB.d.ts +87 -0
  72. package/dist-types/TimestreamInfluxDBClient.d.ts +182 -0
  73. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  74. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  75. package/dist-types/commands/CreateDbInstanceCommand.d.ts +129 -0
  76. package/dist-types/commands/CreateDbParameterGroupCommand.d.ts +108 -0
  77. package/dist-types/commands/DeleteDbInstanceCommand.d.ts +101 -0
  78. package/dist-types/commands/GetDbInstanceCommand.d.ts +98 -0
  79. package/dist-types/commands/GetDbParameterGroupCommand.d.ts +87 -0
  80. package/dist-types/commands/ListDbInstancesCommand.d.ts +87 -0
  81. package/dist-types/commands/ListDbParameterGroupsCommand.d.ts +82 -0
  82. package/dist-types/commands/ListTagsForResourceCommand.d.ts +63 -0
  83. package/dist-types/commands/TagResourceCommand.d.ts +62 -0
  84. package/dist-types/commands/UntagResourceCommand.d.ts +62 -0
  85. package/dist-types/commands/UpdateDbInstanceCommand.d.ts +108 -0
  86. package/dist-types/commands/index.d.ts +11 -0
  87. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  88. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  89. package/dist-types/endpoint/ruleset.d.ts +2 -0
  90. package/dist-types/extensionConfiguration.d.ts +9 -0
  91. package/dist-types/index.d.ts +15 -0
  92. package/dist-types/models/TimestreamInfluxDBServiceException.d.ts +13 -0
  93. package/dist-types/models/index.d.ts +1 -0
  94. package/dist-types/models/models_0.d.ts +1099 -0
  95. package/dist-types/pagination/Interfaces.d.ts +8 -0
  96. package/dist-types/pagination/ListDbInstancesPaginator.d.ts +7 -0
  97. package/dist-types/pagination/ListDbParameterGroupsPaginator.d.ts +7 -0
  98. package/dist-types/pagination/index.d.ts +3 -0
  99. package/dist-types/protocols/Aws_json1_0.d.ts +101 -0
  100. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  101. package/dist-types/runtimeConfig.d.ts +45 -0
  102. package/dist-types/runtimeConfig.native.d.ts +44 -0
  103. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  104. package/dist-types/runtimeExtensions.d.ts +17 -0
  105. package/dist-types/ts3.4/TimestreamInfluxDB.d.ts +194 -0
  106. package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +189 -0
  107. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  108. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  109. package/dist-types/ts3.4/commands/CreateDbInstanceCommand.d.ts +29 -0
  110. package/dist-types/ts3.4/commands/CreateDbParameterGroupCommand.d.ts +30 -0
  111. package/dist-types/ts3.4/commands/DeleteDbInstanceCommand.d.ts +29 -0
  112. package/dist-types/ts3.4/commands/GetDbInstanceCommand.d.ts +26 -0
  113. package/dist-types/ts3.4/commands/GetDbParameterGroupCommand.d.ts +30 -0
  114. package/dist-types/ts3.4/commands/ListDbInstancesCommand.d.ts +29 -0
  115. package/dist-types/ts3.4/commands/ListDbParameterGroupsCommand.d.ts +30 -0
  116. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +30 -0
  117. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +24 -0
  118. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +24 -0
  119. package/dist-types/ts3.4/commands/UpdateDbInstanceCommand.d.ts +29 -0
  120. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  121. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  122. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  123. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  124. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  125. package/dist-types/ts3.4/index.d.ts +10 -0
  126. package/dist-types/ts3.4/models/TimestreamInfluxDBServiceException.d.ts +8 -0
  127. package/dist-types/ts3.4/models/index.d.ts +1 -0
  128. package/dist-types/ts3.4/models/models_0.d.ts +319 -0
  129. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  130. package/dist-types/ts3.4/pagination/ListDbInstancesPaginator.d.ts +11 -0
  131. package/dist-types/ts3.4/pagination/ListDbParameterGroupsPaginator.d.ts +11 -0
  132. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  133. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +137 -0
  134. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
  135. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  136. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  137. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  138. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  139. package/package.json +101 -0
@@ -0,0 +1,98 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetDbInstanceInput, GetDbInstanceOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link GetDbInstanceCommand}.
13
+ */
14
+ export interface GetDbInstanceCommandInput extends GetDbInstanceInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link GetDbInstanceCommand}.
20
+ */
21
+ export interface GetDbInstanceCommandOutput extends GetDbInstanceOutput, __MetadataBearer {
22
+ }
23
+ declare const GetDbInstanceCommand_base: {
24
+ new (input: GetDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<GetDbInstanceCommandInput, GetDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Returns a Timestream for InfluxDB DB instance.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, GetDbInstanceCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, GetDbInstanceCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // GetDbInstanceInput
37
+ * identifier: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new GetDbInstanceCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // GetDbInstanceOutput
42
+ * // id: "STRING_VALUE", // required
43
+ * // name: "STRING_VALUE", // required
44
+ * // arn: "STRING_VALUE", // required
45
+ * // status: "CREATING" || "AVAILABLE" || "DELETING" || "MODIFYING" || "UPDATING" || "DELETED" || "FAILED",
46
+ * // endpoint: "STRING_VALUE",
47
+ * // dbInstanceType: "db.influx.medium" || "db.influx.large" || "db.influx.xlarge" || "db.influx.2xlarge" || "db.influx.4xlarge" || "db.influx.8xlarge" || "db.influx.12xlarge" || "db.influx.16xlarge",
48
+ * // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
49
+ * // allocatedStorage: Number("int"),
50
+ * // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
51
+ * // vpcSubnetIds: [ // VpcSubnetIdList // required
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // publiclyAccessible: true || false,
55
+ * // vpcSecurityGroupIds: [ // VpcSecurityGroupIdList
56
+ * // "STRING_VALUE",
57
+ * // ],
58
+ * // dbParameterGroupIdentifier: "STRING_VALUE",
59
+ * // availabilityZone: "STRING_VALUE",
60
+ * // secondaryAvailabilityZone: "STRING_VALUE",
61
+ * // logDeliveryConfiguration: { // LogDeliveryConfiguration
62
+ * // s3Configuration: { // S3Configuration
63
+ * // bucketName: "STRING_VALUE", // required
64
+ * // enabled: true || false, // required
65
+ * // },
66
+ * // },
67
+ * // influxAuthParametersSecretArn: "STRING_VALUE",
68
+ * // };
69
+ *
70
+ * ```
71
+ *
72
+ * @param GetDbInstanceCommandInput - {@link GetDbInstanceCommandInput}
73
+ * @returns {@link GetDbInstanceCommandOutput}
74
+ * @see {@link GetDbInstanceCommandInput} for command's `input` shape.
75
+ * @see {@link GetDbInstanceCommandOutput} for command's `response` shape.
76
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
77
+ *
78
+ * @throws {@link AccessDeniedException} (client fault)
79
+ * <p>You do not have sufficient access to perform this action.</p>
80
+ *
81
+ * @throws {@link InternalServerException} (server fault)
82
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
83
+ *
84
+ * @throws {@link ResourceNotFoundException} (client fault)
85
+ * <p>The requested resource was not found or does not exist.</p>
86
+ *
87
+ * @throws {@link ThrottlingException} (client fault)
88
+ * <p>The request was denied due to request throttling.</p>
89
+ *
90
+ * @throws {@link ValidationException} (client fault)
91
+ * <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
92
+ *
93
+ * @throws {@link TimestreamInfluxDBServiceException}
94
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
95
+ *
96
+ */
97
+ export declare class GetDbInstanceCommand extends GetDbInstanceCommand_base {
98
+ }
@@ -0,0 +1,87 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetDbParameterGroupInput, GetDbParameterGroupOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link GetDbParameterGroupCommand}.
13
+ */
14
+ export interface GetDbParameterGroupCommandInput extends GetDbParameterGroupInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link GetDbParameterGroupCommand}.
20
+ */
21
+ export interface GetDbParameterGroupCommandOutput extends GetDbParameterGroupOutput, __MetadataBearer {
22
+ }
23
+ declare const GetDbParameterGroupCommand_base: {
24
+ new (input: GetDbParameterGroupCommandInput): import("@smithy/smithy-client").CommandImpl<GetDbParameterGroupCommandInput, GetDbParameterGroupCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Returns a Timestream for InfluxDB DB parameter group.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, GetDbParameterGroupCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, GetDbParameterGroupCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // GetDbParameterGroupInput
37
+ * identifier: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new GetDbParameterGroupCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // GetDbParameterGroupOutput
42
+ * // id: "STRING_VALUE", // required
43
+ * // name: "STRING_VALUE", // required
44
+ * // arn: "STRING_VALUE", // required
45
+ * // description: "STRING_VALUE",
46
+ * // parameters: { // Parameters Union: only one key present
47
+ * // InfluxDBv2: { // InfluxDBv2Parameters
48
+ * // fluxLogEnabled: true || false,
49
+ * // logLevel: "debug" || "info" || "error",
50
+ * // noTasks: true || false,
51
+ * // queryConcurrency: Number("int"),
52
+ * // queryQueueSize: Number("int"),
53
+ * // tracingType: "log" || "jaeger",
54
+ * // metricsDisabled: true || false,
55
+ * // },
56
+ * // },
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param GetDbParameterGroupCommandInput - {@link GetDbParameterGroupCommandInput}
62
+ * @returns {@link GetDbParameterGroupCommandOutput}
63
+ * @see {@link GetDbParameterGroupCommandInput} for command's `input` shape.
64
+ * @see {@link GetDbParameterGroupCommandOutput} for command's `response` shape.
65
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
66
+ *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>You do not have sufficient access to perform this action.</p>
69
+ *
70
+ * @throws {@link InternalServerException} (server fault)
71
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * <p>The requested resource was not found or does not exist.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>The request was denied due to request throttling.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
81
+ *
82
+ * @throws {@link TimestreamInfluxDBServiceException}
83
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
84
+ *
85
+ */
86
+ export declare class GetDbParameterGroupCommand extends GetDbParameterGroupCommand_base {
87
+ }
@@ -0,0 +1,87 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListDbInstancesInput, ListDbInstancesOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link ListDbInstancesCommand}.
13
+ */
14
+ export interface ListDbInstancesCommandInput extends ListDbInstancesInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link ListDbInstancesCommand}.
20
+ */
21
+ export interface ListDbInstancesCommandOutput extends ListDbInstancesOutput, __MetadataBearer {
22
+ }
23
+ declare const ListDbInstancesCommand_base: {
24
+ new (input: ListDbInstancesCommandInput): import("@smithy/smithy-client").CommandImpl<ListDbInstancesCommandInput, ListDbInstancesCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Returns a list of Timestream for InfluxDB DB instances.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, ListDbInstancesCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, ListDbInstancesCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // ListDbInstancesInput
37
+ * nextToken: "STRING_VALUE",
38
+ * maxResults: Number("int"),
39
+ * };
40
+ * const command = new ListDbInstancesCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // ListDbInstancesOutput
43
+ * // items: [ // DbInstanceSummaryList // required
44
+ * // { // DbInstanceSummary
45
+ * // id: "STRING_VALUE", // required
46
+ * // name: "STRING_VALUE", // required
47
+ * // arn: "STRING_VALUE", // required
48
+ * // status: "CREATING" || "AVAILABLE" || "DELETING" || "MODIFYING" || "UPDATING" || "DELETED" || "FAILED",
49
+ * // endpoint: "STRING_VALUE",
50
+ * // dbInstanceType: "db.influx.medium" || "db.influx.large" || "db.influx.xlarge" || "db.influx.2xlarge" || "db.influx.4xlarge" || "db.influx.8xlarge" || "db.influx.12xlarge" || "db.influx.16xlarge",
51
+ * // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
52
+ * // allocatedStorage: Number("int"),
53
+ * // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
54
+ * // },
55
+ * // ],
56
+ * // nextToken: "STRING_VALUE",
57
+ * // };
58
+ *
59
+ * ```
60
+ *
61
+ * @param ListDbInstancesCommandInput - {@link ListDbInstancesCommandInput}
62
+ * @returns {@link ListDbInstancesCommandOutput}
63
+ * @see {@link ListDbInstancesCommandInput} for command's `input` shape.
64
+ * @see {@link ListDbInstancesCommandOutput} for command's `response` shape.
65
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
66
+ *
67
+ * @throws {@link AccessDeniedException} (client fault)
68
+ * <p>You do not have sufficient access to perform this action.</p>
69
+ *
70
+ * @throws {@link InternalServerException} (server fault)
71
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
72
+ *
73
+ * @throws {@link ResourceNotFoundException} (client fault)
74
+ * <p>The requested resource was not found or does not exist.</p>
75
+ *
76
+ * @throws {@link ThrottlingException} (client fault)
77
+ * <p>The request was denied due to request throttling.</p>
78
+ *
79
+ * @throws {@link ValidationException} (client fault)
80
+ * <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
81
+ *
82
+ * @throws {@link TimestreamInfluxDBServiceException}
83
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
84
+ *
85
+ */
86
+ export declare class ListDbInstancesCommand extends ListDbInstancesCommand_base {
87
+ }
@@ -0,0 +1,82 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListDbParameterGroupsInput, ListDbParameterGroupsOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link ListDbParameterGroupsCommand}.
13
+ */
14
+ export interface ListDbParameterGroupsCommandInput extends ListDbParameterGroupsInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link ListDbParameterGroupsCommand}.
20
+ */
21
+ export interface ListDbParameterGroupsCommandOutput extends ListDbParameterGroupsOutput, __MetadataBearer {
22
+ }
23
+ declare const ListDbParameterGroupsCommand_base: {
24
+ new (input: ListDbParameterGroupsCommandInput): import("@smithy/smithy-client").CommandImpl<ListDbParameterGroupsCommandInput, ListDbParameterGroupsCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Returns a list of Timestream for InfluxDB DB parameter groups.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, ListDbParameterGroupsCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, ListDbParameterGroupsCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // ListDbParameterGroupsInput
37
+ * nextToken: "STRING_VALUE",
38
+ * maxResults: Number("int"),
39
+ * };
40
+ * const command = new ListDbParameterGroupsCommand(input);
41
+ * const response = await client.send(command);
42
+ * // { // ListDbParameterGroupsOutput
43
+ * // items: [ // DbParameterGroupSummaryList // required
44
+ * // { // DbParameterGroupSummary
45
+ * // id: "STRING_VALUE", // required
46
+ * // name: "STRING_VALUE", // required
47
+ * // arn: "STRING_VALUE", // required
48
+ * // description: "STRING_VALUE",
49
+ * // },
50
+ * // ],
51
+ * // nextToken: "STRING_VALUE",
52
+ * // };
53
+ *
54
+ * ```
55
+ *
56
+ * @param ListDbParameterGroupsCommandInput - {@link ListDbParameterGroupsCommandInput}
57
+ * @returns {@link ListDbParameterGroupsCommandOutput}
58
+ * @see {@link ListDbParameterGroupsCommandInput} for command's `input` shape.
59
+ * @see {@link ListDbParameterGroupsCommandOutput} for command's `response` shape.
60
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
61
+ *
62
+ * @throws {@link AccessDeniedException} (client fault)
63
+ * <p>You do not have sufficient access to perform this action.</p>
64
+ *
65
+ * @throws {@link InternalServerException} (server fault)
66
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
67
+ *
68
+ * @throws {@link ResourceNotFoundException} (client fault)
69
+ * <p>The requested resource was not found or does not exist.</p>
70
+ *
71
+ * @throws {@link ThrottlingException} (client fault)
72
+ * <p>The request was denied due to request throttling.</p>
73
+ *
74
+ * @throws {@link ValidationException} (client fault)
75
+ * <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
76
+ *
77
+ * @throws {@link TimestreamInfluxDBServiceException}
78
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
79
+ *
80
+ */
81
+ export declare class ListDbParameterGroupsCommand extends ListDbParameterGroupsCommand_base {
82
+ }
@@ -0,0 +1,63 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link ListTagsForResourceCommand}.
13
+ */
14
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link ListTagsForResourceCommand}.
20
+ */
21
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
22
+ }
23
+ declare const ListTagsForResourceCommand_base: {
24
+ new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>A list of tags applied to the resource.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, ListTagsForResourceCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, ListTagsForResourceCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // ListTagsForResourceRequest
37
+ * resourceArn: "STRING_VALUE", // required
38
+ * };
39
+ * const command = new ListTagsForResourceCommand(input);
40
+ * const response = await client.send(command);
41
+ * // { // ListTagsForResourceResponse
42
+ * // tags: { // ResponseTagMap
43
+ * // "<keys>": "STRING_VALUE",
44
+ * // },
45
+ * // };
46
+ *
47
+ * ```
48
+ *
49
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
50
+ * @returns {@link ListTagsForResourceCommandOutput}
51
+ * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
52
+ * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
53
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
54
+ *
55
+ * @throws {@link ResourceNotFoundException} (client fault)
56
+ * <p>The requested resource was not found or does not exist.</p>
57
+ *
58
+ * @throws {@link TimestreamInfluxDBServiceException}
59
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
60
+ *
61
+ */
62
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
63
+ }
@@ -0,0 +1,62 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { TagResourceRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link TagResourceCommand}.
13
+ */
14
+ export interface TagResourceCommandInput extends TagResourceRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link TagResourceCommand}.
20
+ */
21
+ export interface TagResourceCommandOutput extends __MetadataBearer {
22
+ }
23
+ declare const TagResourceCommand_base: {
24
+ new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Tags are composed of a Key/Value pairs. You can use tags to categorize and track your Timestream for InfluxDB resources.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, TagResourceCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, TagResourceCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // TagResourceRequest
37
+ * resourceArn: "STRING_VALUE", // required
38
+ * tags: { // RequestTagMap // required
39
+ * "<keys>": "STRING_VALUE",
40
+ * },
41
+ * };
42
+ * const command = new TagResourceCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param TagResourceCommandInput - {@link TagResourceCommandInput}
49
+ * @returns {@link TagResourceCommandOutput}
50
+ * @see {@link TagResourceCommandInput} for command's `input` shape.
51
+ * @see {@link TagResourceCommandOutput} for command's `response` shape.
52
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
53
+ *
54
+ * @throws {@link ResourceNotFoundException} (client fault)
55
+ * <p>The requested resource was not found or does not exist.</p>
56
+ *
57
+ * @throws {@link TimestreamInfluxDBServiceException}
58
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
59
+ *
60
+ */
61
+ export declare class TagResourceCommand extends TagResourceCommand_base {
62
+ }
@@ -0,0 +1,62 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UntagResourceRequest } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link UntagResourceCommand}.
13
+ */
14
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link UntagResourceCommand}.
20
+ */
21
+ export interface UntagResourceCommandOutput extends __MetadataBearer {
22
+ }
23
+ declare const UntagResourceCommand_base: {
24
+ new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Removes the tag from the specified resource.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, UntagResourceCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, UntagResourceCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // UntagResourceRequest
37
+ * resourceArn: "STRING_VALUE", // required
38
+ * tagKeys: [ // TagKeys // required
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * };
42
+ * const command = new UntagResourceCommand(input);
43
+ * const response = await client.send(command);
44
+ * // {};
45
+ *
46
+ * ```
47
+ *
48
+ * @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
49
+ * @returns {@link UntagResourceCommandOutput}
50
+ * @see {@link UntagResourceCommandInput} for command's `input` shape.
51
+ * @see {@link UntagResourceCommandOutput} for command's `response` shape.
52
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
53
+ *
54
+ * @throws {@link ResourceNotFoundException} (client fault)
55
+ * <p>The requested resource was not found or does not exist.</p>
56
+ *
57
+ * @throws {@link TimestreamInfluxDBServiceException}
58
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
59
+ *
60
+ */
61
+ export declare class UntagResourceCommand extends UntagResourceCommand_base {
62
+ }
@@ -0,0 +1,108 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateDbInstanceInput, UpdateDbInstanceOutput } from "../models/models_0";
4
+ import { ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig } from "../TimestreamInfluxDBClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export { __MetadataBearer, $Command };
9
+ /**
10
+ * @public
11
+ *
12
+ * The input for {@link UpdateDbInstanceCommand}.
13
+ */
14
+ export interface UpdateDbInstanceCommandInput extends UpdateDbInstanceInput {
15
+ }
16
+ /**
17
+ * @public
18
+ *
19
+ * The output of {@link UpdateDbInstanceCommand}.
20
+ */
21
+ export interface UpdateDbInstanceCommandOutput extends UpdateDbInstanceOutput, __MetadataBearer {
22
+ }
23
+ declare const UpdateDbInstanceCommand_base: {
24
+ new (input: UpdateDbInstanceCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateDbInstanceCommandInput, UpdateDbInstanceCommandOutput, TimestreamInfluxDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
27
+ /**
28
+ * @public
29
+ * <p>Updates a Timestream for InfluxDB DB instance.</p>
30
+ * @example
31
+ * Use a bare-bones client and the command you need to make an API call.
32
+ * ```javascript
33
+ * import { TimestreamInfluxDBClient, UpdateDbInstanceCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import
34
+ * // const { TimestreamInfluxDBClient, UpdateDbInstanceCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import
35
+ * const client = new TimestreamInfluxDBClient(config);
36
+ * const input = { // UpdateDbInstanceInput
37
+ * identifier: "STRING_VALUE", // required
38
+ * logDeliveryConfiguration: { // LogDeliveryConfiguration
39
+ * s3Configuration: { // S3Configuration
40
+ * bucketName: "STRING_VALUE", // required
41
+ * enabled: true || false, // required
42
+ * },
43
+ * },
44
+ * dbParameterGroupIdentifier: "STRING_VALUE",
45
+ * };
46
+ * const command = new UpdateDbInstanceCommand(input);
47
+ * const response = await client.send(command);
48
+ * // { // UpdateDbInstanceOutput
49
+ * // id: "STRING_VALUE", // required
50
+ * // name: "STRING_VALUE", // required
51
+ * // arn: "STRING_VALUE", // required
52
+ * // status: "CREATING" || "AVAILABLE" || "DELETING" || "MODIFYING" || "UPDATING" || "DELETED" || "FAILED",
53
+ * // endpoint: "STRING_VALUE",
54
+ * // dbInstanceType: "db.influx.medium" || "db.influx.large" || "db.influx.xlarge" || "db.influx.2xlarge" || "db.influx.4xlarge" || "db.influx.8xlarge" || "db.influx.12xlarge" || "db.influx.16xlarge",
55
+ * // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
56
+ * // allocatedStorage: Number("int"),
57
+ * // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
58
+ * // vpcSubnetIds: [ // VpcSubnetIdList // required
59
+ * // "STRING_VALUE",
60
+ * // ],
61
+ * // publiclyAccessible: true || false,
62
+ * // vpcSecurityGroupIds: [ // VpcSecurityGroupIdList
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // dbParameterGroupIdentifier: "STRING_VALUE",
66
+ * // availabilityZone: "STRING_VALUE",
67
+ * // secondaryAvailabilityZone: "STRING_VALUE",
68
+ * // logDeliveryConfiguration: { // LogDeliveryConfiguration
69
+ * // s3Configuration: { // S3Configuration
70
+ * // bucketName: "STRING_VALUE", // required
71
+ * // enabled: true || false, // required
72
+ * // },
73
+ * // },
74
+ * // influxAuthParametersSecretArn: "STRING_VALUE",
75
+ * // };
76
+ *
77
+ * ```
78
+ *
79
+ * @param UpdateDbInstanceCommandInput - {@link UpdateDbInstanceCommandInput}
80
+ * @returns {@link UpdateDbInstanceCommandOutput}
81
+ * @see {@link UpdateDbInstanceCommandInput} for command's `input` shape.
82
+ * @see {@link UpdateDbInstanceCommandOutput} for command's `response` shape.
83
+ * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape.
84
+ *
85
+ * @throws {@link AccessDeniedException} (client fault)
86
+ * <p>You do not have sufficient access to perform this action.</p>
87
+ *
88
+ * @throws {@link ConflictException} (client fault)
89
+ * <p>The request conflicts with an existing resource in Timestream for InfluxDB.</p>
90
+ *
91
+ * @throws {@link InternalServerException} (server fault)
92
+ * <p>The request processing has failed because of an unknown error, exception or failure.</p>
93
+ *
94
+ * @throws {@link ResourceNotFoundException} (client fault)
95
+ * <p>The requested resource was not found or does not exist.</p>
96
+ *
97
+ * @throws {@link ThrottlingException} (client fault)
98
+ * <p>The request was denied due to request throttling.</p>
99
+ *
100
+ * @throws {@link ValidationException} (client fault)
101
+ * <p>The input fails to satisfy the constraints specified by Timestream for InfluxDB.</p>
102
+ *
103
+ * @throws {@link TimestreamInfluxDBServiceException}
104
+ * <p>Base exception class for all service exceptions from TimestreamInfluxDB service.</p>
105
+ *
106
+ */
107
+ export declare class UpdateDbInstanceCommand extends UpdateDbInstanceCommand_base {
108
+ }
@@ -0,0 +1,11 @@
1
+ export * from "./CreateDbInstanceCommand";
2
+ export * from "./CreateDbParameterGroupCommand";
3
+ export * from "./DeleteDbInstanceCommand";
4
+ export * from "./GetDbInstanceCommand";
5
+ export * from "./GetDbParameterGroupCommand";
6
+ export * from "./ListDbInstancesCommand";
7
+ export * from "./ListDbParameterGroupsCommand";
8
+ export * from "./ListTagsForResourceCommand";
9
+ export * from "./TagResourceCommand";
10
+ export * from "./UntagResourceCommand";
11
+ export * from "./UpdateDbInstanceCommand";