@aws-sdk/client-timestream-influxdb 3.848.0 → 3.855.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +1 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-types/commands/CreateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/CreateDbInstanceCommand.d.ts +2 -2
- 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/UpdateDbClusterCommand.d.ts +1 -1
- package/dist-types/commands/UpdateDbInstanceCommand.d.ts +2 -2
- package/dist-types/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/package.json +5 -5
|
@@ -36,6 +36,7 @@ exports.ConflictException = ConflictException;
|
|
|
36
36
|
exports.DbInstanceType = {
|
|
37
37
|
DB_INFLUX_12XLARGE: "db.influx.12xlarge",
|
|
38
38
|
DB_INFLUX_16XLARGE: "db.influx.16xlarge",
|
|
39
|
+
DB_INFLUX_24XLARGE: "db.influx.24xlarge",
|
|
39
40
|
DB_INFLUX_2XLARGE: "db.influx.2xlarge",
|
|
40
41
|
DB_INFLUX_4XLARGE: "db.influx.4xlarge",
|
|
41
42
|
DB_INFLUX_8XLARGE: "db.influx.8xlarge",
|
|
@@ -31,6 +31,7 @@ export class ConflictException extends __BaseException {
|
|
|
31
31
|
export const DbInstanceType = {
|
|
32
32
|
DB_INFLUX_12XLARGE: "db.influx.12xlarge",
|
|
33
33
|
DB_INFLUX_16XLARGE: "db.influx.16xlarge",
|
|
34
|
+
DB_INFLUX_24XLARGE: "db.influx.24xlarge",
|
|
34
35
|
DB_INFLUX_2XLARGE: "db.influx.2xlarge",
|
|
35
36
|
DB_INFLUX_4XLARGE: "db.influx.4xlarge",
|
|
36
37
|
DB_INFLUX_8XLARGE: "db.influx.8xlarge",
|
|
@@ -42,7 +42,7 @@ declare const CreateDbClusterCommand_base: {
|
|
|
42
42
|
* bucket: "STRING_VALUE",
|
|
43
43
|
* port: Number("int"),
|
|
44
44
|
* dbParameterGroupIdentifier: "STRING_VALUE",
|
|
45
|
-
* 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", // required
|
|
45
|
+
* 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" || "db.influx.24xlarge", // required
|
|
46
46
|
* dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
47
47
|
* allocatedStorage: Number("int"), // required
|
|
48
48
|
* networkType: "IPV4" || "DUAL",
|
|
@@ -40,7 +40,7 @@ declare const CreateDbInstanceCommand_base: {
|
|
|
40
40
|
* password: "STRING_VALUE", // required
|
|
41
41
|
* organization: "STRING_VALUE",
|
|
42
42
|
* bucket: "STRING_VALUE",
|
|
43
|
-
* 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", // required
|
|
43
|
+
* 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" || "db.influx.24xlarge", // required
|
|
44
44
|
* vpcSubnetIds: [ // VpcSubnetIdList // required
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
@@ -74,7 +74,7 @@ declare const CreateDbInstanceCommand_base: {
|
|
|
74
74
|
* // endpoint: "STRING_VALUE",
|
|
75
75
|
* // port: Number("int"),
|
|
76
76
|
* // networkType: "IPV4" || "DUAL",
|
|
77
|
-
* // 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",
|
|
77
|
+
* // 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" || "db.influx.24xlarge",
|
|
78
78
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
79
79
|
* // allocatedStorage: Number("int"),
|
|
80
80
|
* // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
@@ -47,7 +47,7 @@ declare const DeleteDbInstanceCommand_base: {
|
|
|
47
47
|
* // endpoint: "STRING_VALUE",
|
|
48
48
|
* // port: Number("int"),
|
|
49
49
|
* // networkType: "IPV4" || "DUAL",
|
|
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",
|
|
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" || "db.influx.24xlarge",
|
|
51
51
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
52
52
|
* // allocatedStorage: Number("int"),
|
|
53
53
|
* // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
@@ -48,7 +48,7 @@ declare const GetDbClusterCommand_base: {
|
|
|
48
48
|
* // readerEndpoint: "STRING_VALUE",
|
|
49
49
|
* // port: Number("int"),
|
|
50
50
|
* // deploymentType: "MULTI_NODE_READ_REPLICAS",
|
|
51
|
-
* // 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
|
+
* // 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" || "db.influx.24xlarge",
|
|
52
52
|
* // networkType: "IPV4" || "DUAL",
|
|
53
53
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
54
54
|
* // allocatedStorage: Number("int"),
|
|
@@ -47,7 +47,7 @@ declare const GetDbInstanceCommand_base: {
|
|
|
47
47
|
* // endpoint: "STRING_VALUE",
|
|
48
48
|
* // port: Number("int"),
|
|
49
49
|
* // networkType: "IPV4" || "DUAL",
|
|
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",
|
|
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" || "db.influx.24xlarge",
|
|
51
51
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
52
52
|
* // allocatedStorage: Number("int"),
|
|
53
53
|
* // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
@@ -51,7 +51,7 @@ declare const ListDbClustersCommand_base: {
|
|
|
51
51
|
* // readerEndpoint: "STRING_VALUE",
|
|
52
52
|
* // port: Number("int"),
|
|
53
53
|
* // deploymentType: "MULTI_NODE_READ_REPLICAS",
|
|
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",
|
|
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" || "db.influx.24xlarge",
|
|
55
55
|
* // networkType: "IPV4" || "DUAL",
|
|
56
56
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
57
57
|
* // allocatedStorage: Number("int"),
|
|
@@ -50,7 +50,7 @@ declare const ListDbInstancesCommand_base: {
|
|
|
50
50
|
* // endpoint: "STRING_VALUE",
|
|
51
51
|
* // port: Number("int"),
|
|
52
52
|
* // networkType: "IPV4" || "DUAL",
|
|
53
|
-
* // 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",
|
|
53
|
+
* // 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" || "db.influx.24xlarge",
|
|
54
54
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
55
55
|
* // allocatedStorage: Number("int"),
|
|
56
56
|
* // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
@@ -51,7 +51,7 @@ declare const ListDbInstancesForClusterCommand_base: {
|
|
|
51
51
|
* // endpoint: "STRING_VALUE",
|
|
52
52
|
* // port: Number("int"),
|
|
53
53
|
* // networkType: "IPV4" || "DUAL",
|
|
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",
|
|
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" || "db.influx.24xlarge",
|
|
55
55
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
56
56
|
* // allocatedStorage: Number("int"),
|
|
57
57
|
* // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
@@ -44,7 +44,7 @@ declare const UpdateDbClusterCommand_base: {
|
|
|
44
44
|
* },
|
|
45
45
|
* dbParameterGroupIdentifier: "STRING_VALUE",
|
|
46
46
|
* port: Number("int"),
|
|
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",
|
|
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" || "db.influx.24xlarge",
|
|
48
48
|
* failoverMode: "AUTOMATIC" || "NO_FAILOVER",
|
|
49
49
|
* };
|
|
50
50
|
* const command = new UpdateDbClusterCommand(input);
|
|
@@ -44,7 +44,7 @@ declare const UpdateDbInstanceCommand_base: {
|
|
|
44
44
|
* },
|
|
45
45
|
* dbParameterGroupIdentifier: "STRING_VALUE",
|
|
46
46
|
* port: Number("int"),
|
|
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",
|
|
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" || "db.influx.24xlarge",
|
|
48
48
|
* deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
49
49
|
* dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
50
50
|
* allocatedStorage: Number("int"),
|
|
@@ -59,7 +59,7 @@ declare const UpdateDbInstanceCommand_base: {
|
|
|
59
59
|
* // endpoint: "STRING_VALUE",
|
|
60
60
|
* // port: Number("int"),
|
|
61
61
|
* // networkType: "IPV4" || "DUAL",
|
|
62
|
-
* // 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",
|
|
62
|
+
* // 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" || "db.influx.24xlarge",
|
|
63
63
|
* // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3",
|
|
64
64
|
* // allocatedStorage: Number("int"),
|
|
65
65
|
* // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY",
|
|
@@ -41,6 +41,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
41
41
|
export declare const DbInstanceType: {
|
|
42
42
|
readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
|
|
43
43
|
readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
|
|
44
|
+
readonly DB_INFLUX_24XLARGE: "db.influx.24xlarge";
|
|
44
45
|
readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
|
|
45
46
|
readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
|
|
46
47
|
readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
|
|
@@ -17,6 +17,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
17
17
|
export declare const DbInstanceType: {
|
|
18
18
|
readonly DB_INFLUX_12XLARGE: "db.influx.12xlarge";
|
|
19
19
|
readonly DB_INFLUX_16XLARGE: "db.influx.16xlarge";
|
|
20
|
+
readonly DB_INFLUX_24XLARGE: "db.influx.24xlarge";
|
|
20
21
|
readonly DB_INFLUX_2XLARGE: "db.influx.2xlarge";
|
|
21
22
|
readonly DB_INFLUX_4XLARGE: "db.influx.4xlarge";
|
|
22
23
|
readonly DB_INFLUX_8XLARGE: "db.influx.8xlarge";
|
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.855.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,17 +20,17 @@
|
|
|
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.855.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.855.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.855.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30
30
|
"@aws-sdk/types": "3.840.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.848.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.855.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.4",
|
|
35
35
|
"@smithy/core": "^3.7.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.1.0",
|