@aws-sdk/client-timestream-influxdb 3.750.0 → 3.765.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
CHANGED
|
@@ -6,7 +6,8 @@
|
|
|
6
6
|
|
|
7
7
|
AWS SDK for JavaScript TimestreamInfluxDB Client for Node.js, Browser and React Native.
|
|
8
8
|
|
|
9
|
-
<p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
9
|
+
<p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
10
|
+
easy for application developers and DevOps teams to run InfluxDB databases on Amazon Web Services for near real-time time-series applications using open-source APIs. With Amazon Timestream for InfluxDB, it is easy to set up, operate, and scale time-series workloads that can answer queries with single-digit millisecond query response time.</p>
|
|
10
11
|
|
|
11
12
|
## Installing
|
|
12
13
|
|
|
@@ -125,7 +125,8 @@ export interface TimestreamInfluxDB {
|
|
|
125
125
|
updateDbInstance(args: UpdateDbInstanceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDbInstanceCommandOutput) => void): void;
|
|
126
126
|
}
|
|
127
127
|
/**
|
|
128
|
-
* <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
128
|
+
* <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
129
|
+
* easy for application developers and DevOps teams to run InfluxDB databases on Amazon Web Services for near real-time time-series applications using open-source APIs. With Amazon Timestream for InfluxDB, it is easy to set up, operate, and scale time-series workloads that can answer queries with single-digit millisecond query response time.</p>
|
|
129
130
|
* @public
|
|
130
131
|
*/
|
|
131
132
|
export declare class TimestreamInfluxDB extends TimestreamInfluxDBClient implements TimestreamInfluxDB {
|
|
@@ -186,7 +186,8 @@ export type TimestreamInfluxDBClientResolvedConfigType = __SmithyResolvedConfigu
|
|
|
186
186
|
export interface TimestreamInfluxDBClientResolvedConfig extends TimestreamInfluxDBClientResolvedConfigType {
|
|
187
187
|
}
|
|
188
188
|
/**
|
|
189
|
-
* <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
189
|
+
* <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
190
|
+
* easy for application developers and DevOps teams to run InfluxDB databases on Amazon Web Services for near real-time time-series applications using open-source APIs. With Amazon Timestream for InfluxDB, it is easy to set up, operate, and scale time-series workloads that can answer queries with single-digit millisecond query response time.</p>
|
|
190
191
|
* @public
|
|
191
192
|
*/
|
|
192
193
|
export declare class TimestreamInfluxDBClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, TimestreamInfluxDBClientResolvedConfig> {
|
package/dist-types/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
2
|
+
* <p>Amazon Timestream for InfluxDB is a managed time-series database engine that makes it
|
|
3
|
+
* easy for application developers and DevOps teams to run InfluxDB databases on Amazon Web Services for near real-time time-series applications using open-source APIs. With Amazon Timestream for InfluxDB, it is easy to set up, operate, and scale time-series workloads that can answer queries with single-digit millisecond query response time.</p>
|
|
3
4
|
*
|
|
4
5
|
* @packageDocumentation
|
|
5
6
|
*/
|
|
@@ -137,12 +137,14 @@ export interface CreateDbClusterInput {
|
|
|
137
137
|
*/
|
|
138
138
|
name: string | undefined;
|
|
139
139
|
/**
|
|
140
|
-
* <p>The username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. For example, my-user1. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. These attributes will be stored in a secret created in
|
|
140
|
+
* <p>The username of the initial admin user created in InfluxDB. Must start with a letter and can't end with a hyphen or contain two consecutive hyphens. For example, my-user1. This username will allow you to access the InfluxDB UI to perform various administrative tasks and also use the InfluxDB CLI to create an operator token. These attributes will be stored in a secret created in Secrets Manager in your account.</p>
|
|
141
141
|
* @public
|
|
142
142
|
*/
|
|
143
143
|
username?: string | undefined;
|
|
144
144
|
/**
|
|
145
|
-
* <p>The password of the initial admin user created in InfluxDB. This password will allow
|
|
145
|
+
* <p>The password of the initial admin user created in InfluxDB. This password will allow
|
|
146
|
+
* you to access the InfluxDB UI to perform various administrative tasks and also use the
|
|
147
|
+
* InfluxDB CLI to create an operator token. These attributes will be stored in a secret created in Secrets Manager in your account.</p>
|
|
146
148
|
* @public
|
|
147
149
|
*/
|
|
148
150
|
password: string | undefined;
|
|
@@ -472,7 +474,7 @@ export interface GetDbClusterOutput {
|
|
|
472
474
|
*/
|
|
473
475
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
474
476
|
/**
|
|
475
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
477
|
+
* <p>The Amazon Resource Name (ARN) of the Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
476
478
|
* @public
|
|
477
479
|
*/
|
|
478
480
|
influxAuthParametersSecretArn?: string | undefined;
|
|
@@ -795,7 +797,10 @@ export interface CreateDbInstanceInput {
|
|
|
795
797
|
*/
|
|
796
798
|
username?: string | undefined;
|
|
797
799
|
/**
|
|
798
|
-
* <p>The password of the initial admin user created in InfluxDB. This password will allow
|
|
800
|
+
* <p>The password of the initial admin user created in InfluxDB. This password will allow
|
|
801
|
+
* you to access the InfluxDB UI to perform various administrative tasks and also use the
|
|
802
|
+
* InfluxDB CLI to create an operator token. These attributes will be stored in a Secret
|
|
803
|
+
* created in Secrets Manager in your account.</p>
|
|
799
804
|
* @public
|
|
800
805
|
*/
|
|
801
806
|
password: string | undefined;
|
|
@@ -980,7 +985,7 @@ export interface CreateDbInstanceOutput {
|
|
|
980
985
|
*/
|
|
981
986
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
982
987
|
/**
|
|
983
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
988
|
+
* <p>The Amazon Resource Name (ARN) of the Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
984
989
|
* @public
|
|
985
990
|
*/
|
|
986
991
|
influxAuthParametersSecretArn?: string | undefined;
|
|
@@ -1100,7 +1105,7 @@ export interface DeleteDbInstanceOutput {
|
|
|
1100
1105
|
*/
|
|
1101
1106
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
1102
1107
|
/**
|
|
1103
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
1108
|
+
* <p>The Amazon Resource Name (ARN) of the Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
1104
1109
|
* @public
|
|
1105
1110
|
*/
|
|
1106
1111
|
influxAuthParametersSecretArn?: string | undefined;
|
|
@@ -1220,7 +1225,7 @@ export interface GetDbInstanceOutput {
|
|
|
1220
1225
|
*/
|
|
1221
1226
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
1222
1227
|
/**
|
|
1223
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
1228
|
+
* <p>The Amazon Resource Name (ARN) of the Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
1224
1229
|
* @public
|
|
1225
1230
|
*/
|
|
1226
1231
|
influxAuthParametersSecretArn?: string | undefined;
|
|
@@ -1261,7 +1266,8 @@ export interface DbInstanceSummary {
|
|
|
1261
1266
|
*/
|
|
1262
1267
|
id: string | undefined;
|
|
1263
1268
|
/**
|
|
1264
|
-
* <p>This customer-supplied name uniquely identifies the DB instance when interacting with
|
|
1269
|
+
* <p>This customer-supplied name uniquely identifies the DB instance when interacting with
|
|
1270
|
+
* the Amazon Timestream for InfluxDB API and CLI commands.</p>
|
|
1265
1271
|
* @public
|
|
1266
1272
|
*/
|
|
1267
1273
|
name: string | undefined;
|
|
@@ -1386,7 +1392,8 @@ export interface UpdateDbInstanceOutput {
|
|
|
1386
1392
|
*/
|
|
1387
1393
|
id: string | undefined;
|
|
1388
1394
|
/**
|
|
1389
|
-
* <p>This customer-supplied name uniquely identifies the DB instance when interacting with
|
|
1395
|
+
* <p>This customer-supplied name uniquely identifies the DB instance when interacting with
|
|
1396
|
+
* the Amazon Timestream for InfluxDB API and CLI commands.</p>
|
|
1390
1397
|
* @public
|
|
1391
1398
|
*/
|
|
1392
1399
|
name: string | undefined;
|
|
@@ -1471,7 +1478,7 @@ export interface UpdateDbInstanceOutput {
|
|
|
1471
1478
|
*/
|
|
1472
1479
|
logDeliveryConfiguration?: LogDeliveryConfiguration | undefined;
|
|
1473
1480
|
/**
|
|
1474
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
1481
|
+
* <p>The Amazon Resource Name (ARN) of the Secrets Manager secret containing the initial InfluxDB authorization parameters. The secret value is a JSON formatted key-value pair holding InfluxDB authorization values: organization, bucket, username, and password.</p>
|
|
1475
1482
|
* @public
|
|
1476
1483
|
*/
|
|
1477
1484
|
influxAuthParametersSecretArn?: string | undefined;
|
|
@@ -1631,7 +1638,7 @@ export interface InfluxDBv2Parameters {
|
|
|
1631
1638
|
influxqlMaxSelectSeries?: number | undefined;
|
|
1632
1639
|
/**
|
|
1633
1640
|
* <p>Disable the /debug/pprof HTTP endpoint. This endpoint provides runtime profiling data and can be helpful when debugging.</p>
|
|
1634
|
-
* <p>Default:
|
|
1641
|
+
* <p>Default: true</p>
|
|
1635
1642
|
* @public
|
|
1636
1643
|
*/
|
|
1637
1644
|
pprofDisabled?: boolean | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-timestream-influxdb",
|
|
3
3
|
"description": "AWS SDK for JavaScript Timestream Influxdb Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.765.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.758.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.758.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.758.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.758.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.6",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.7",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.2",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.0.1",
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.3",
|
|
46
46
|
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.1.
|
|
47
|
+
"@smithy/smithy-client": "^4.1.6",
|
|
48
48
|
"@smithy/types": "^4.1.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.7",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.7",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.1",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.1",
|
|
57
57
|
"@smithy/util-retry": "^4.0.1",
|