@aws-sdk/client-timestream-influxdb 3.927.0 → 3.928.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/index.js +1088 -852
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/TimestreamInfluxDBClient.js +2 -0
- package/dist-es/commands/CreateDbClusterCommand.js +3 -10
- package/dist-es/commands/CreateDbInstanceCommand.js +3 -10
- package/dist-es/commands/CreateDbParameterGroupCommand.js +3 -9
- package/dist-es/commands/DeleteDbClusterCommand.js +3 -9
- package/dist-es/commands/DeleteDbInstanceCommand.js +3 -9
- package/dist-es/commands/GetDbClusterCommand.js +3 -9
- package/dist-es/commands/GetDbInstanceCommand.js +3 -9
- package/dist-es/commands/GetDbParameterGroupCommand.js +3 -9
- package/dist-es/commands/ListDbClustersCommand.js +3 -9
- package/dist-es/commands/ListDbInstancesCommand.js +3 -9
- package/dist-es/commands/ListDbInstancesForClusterCommand.js +3 -9
- package/dist-es/commands/ListDbParameterGroupsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateDbClusterCommand.js +3 -9
- package/dist-es/commands/UpdateDbInstanceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -11
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1037 -0
- package/dist-types/TimestreamInfluxDBClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -8
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +83 -0
- package/dist-types/ts3.4/TimestreamInfluxDBClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -6
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +89 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -704
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -155
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -209
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateDbClusterCommandInput, CreateDbClusterCommandOutput } from "./commands/CreateDbClusterCommand";
|
|
11
11
|
import { CreateDbInstanceCommandInput, CreateDbInstanceCommandOutput } from "./commands/CreateDbInstanceCommand";
|
|
@@ -158,6 +158,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
158
158
|
* Optional extensions
|
|
159
159
|
*/
|
|
160
160
|
extensions?: RuntimeExtension[];
|
|
161
|
+
/**
|
|
162
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
163
|
+
* may be overridden. A default will always be set by the client.
|
|
164
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
165
|
+
* the client.
|
|
166
|
+
* @alpha
|
|
167
|
+
*
|
|
168
|
+
*/
|
|
169
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
161
170
|
/**
|
|
162
171
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
163
172
|
*/
|
|
@@ -2668,11 +2668,3 @@ export interface UntagResourceRequest {
|
|
|
2668
2668
|
*/
|
|
2669
2669
|
tagKeys: string[] | undefined;
|
|
2670
2670
|
}
|
|
2671
|
-
/**
|
|
2672
|
-
* @internal
|
|
2673
|
-
*/
|
|
2674
|
-
export declare const CreateDbClusterInputFilterSensitiveLog: (obj: CreateDbClusterInput) => any;
|
|
2675
|
-
/**
|
|
2676
|
-
* @internal
|
|
2677
|
-
*/
|
|
2678
|
-
export declare const CreateDbInstanceInputFilterSensitiveLog: (obj: CreateDbInstanceInput) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: TimestreamInfluxDBClientConfig)
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var Password: StaticSimpleSchema;
|
|
3
|
+
export declare var Username: StaticSimpleSchema;
|
|
4
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
6
|
+
export declare var CreateDbClusterInput: StaticStructureSchema;
|
|
7
|
+
export declare var CreateDbClusterOutput: StaticStructureSchema;
|
|
8
|
+
export declare var CreateDbInstanceInput: StaticStructureSchema;
|
|
9
|
+
export declare var CreateDbInstanceOutput: StaticStructureSchema;
|
|
10
|
+
export declare var CreateDbParameterGroupInput: StaticStructureSchema;
|
|
11
|
+
export declare var CreateDbParameterGroupOutput: StaticStructureSchema;
|
|
12
|
+
export declare var DbClusterSummary: StaticStructureSchema;
|
|
13
|
+
export declare var DbInstanceForClusterSummary: StaticStructureSchema;
|
|
14
|
+
export declare var DbInstanceSummary: StaticStructureSchema;
|
|
15
|
+
export declare var DbParameterGroupSummary: StaticStructureSchema;
|
|
16
|
+
export declare var DeleteDbClusterInput: StaticStructureSchema;
|
|
17
|
+
export declare var DeleteDbClusterOutput: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteDbInstanceInput: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteDbInstanceOutput: StaticStructureSchema;
|
|
20
|
+
export declare var Duration: StaticStructureSchema;
|
|
21
|
+
export declare var GetDbClusterInput: StaticStructureSchema;
|
|
22
|
+
export declare var GetDbClusterOutput: StaticStructureSchema;
|
|
23
|
+
export declare var GetDbInstanceInput: StaticStructureSchema;
|
|
24
|
+
export declare var GetDbInstanceOutput: StaticStructureSchema;
|
|
25
|
+
export declare var GetDbParameterGroupInput: StaticStructureSchema;
|
|
26
|
+
export declare var GetDbParameterGroupOutput: StaticStructureSchema;
|
|
27
|
+
export declare var InfluxDBv2Parameters: StaticStructureSchema;
|
|
28
|
+
export declare var InfluxDBv3CoreParameters: StaticStructureSchema;
|
|
29
|
+
export declare var InfluxDBv3EnterpriseParameters: StaticStructureSchema;
|
|
30
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
31
|
+
export declare var ListDbClustersInput: StaticStructureSchema;
|
|
32
|
+
export declare var ListDbClustersOutput: StaticStructureSchema;
|
|
33
|
+
export declare var ListDbInstancesForClusterInput: StaticStructureSchema;
|
|
34
|
+
export declare var ListDbInstancesForClusterOutput: StaticStructureSchema;
|
|
35
|
+
export declare var ListDbInstancesInput: StaticStructureSchema;
|
|
36
|
+
export declare var ListDbInstancesOutput: StaticStructureSchema;
|
|
37
|
+
export declare var ListDbParameterGroupsInput: StaticStructureSchema;
|
|
38
|
+
export declare var ListDbParameterGroupsOutput: StaticStructureSchema;
|
|
39
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
40
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
41
|
+
export declare var LogDeliveryConfiguration: StaticStructureSchema;
|
|
42
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
43
|
+
export declare var S3Configuration: StaticStructureSchema;
|
|
44
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
45
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
46
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
47
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
48
|
+
export declare var UpdateDbClusterInput: StaticStructureSchema;
|
|
49
|
+
export declare var UpdateDbClusterOutput: StaticStructureSchema;
|
|
50
|
+
export declare var UpdateDbInstanceInput: StaticStructureSchema;
|
|
51
|
+
export declare var UpdateDbInstanceOutput: StaticStructureSchema;
|
|
52
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
53
|
+
export declare var __Unit: "unit";
|
|
54
|
+
export declare var TimestreamInfluxDBServiceException: StaticErrorSchema;
|
|
55
|
+
export declare var DbClusterSummaryList: StaticListSchema;
|
|
56
|
+
export declare var DbInstanceForClusterSummaryList: StaticListSchema;
|
|
57
|
+
export declare var DbInstanceSummaryList: StaticListSchema;
|
|
58
|
+
export declare var DbParameterGroupSummaryList: StaticListSchema;
|
|
59
|
+
export declare var InstanceModeList: number;
|
|
60
|
+
export declare var TagKeys: number;
|
|
61
|
+
export declare var VpcSecurityGroupIdList: number;
|
|
62
|
+
export declare var VpcSubnetIdList: number;
|
|
63
|
+
export declare var RequestTagMap: number;
|
|
64
|
+
export declare var ResponseTagMap: number;
|
|
65
|
+
export declare var _Parameters: StaticStructureSchema;
|
|
66
|
+
export declare var PercentOrAbsoluteLong: StaticStructureSchema;
|
|
67
|
+
export declare var CreateDbCluster: StaticOperationSchema;
|
|
68
|
+
export declare var CreateDbInstance: StaticOperationSchema;
|
|
69
|
+
export declare var CreateDbParameterGroup: StaticOperationSchema;
|
|
70
|
+
export declare var DeleteDbCluster: StaticOperationSchema;
|
|
71
|
+
export declare var DeleteDbInstance: StaticOperationSchema;
|
|
72
|
+
export declare var GetDbCluster: StaticOperationSchema;
|
|
73
|
+
export declare var GetDbInstance: StaticOperationSchema;
|
|
74
|
+
export declare var GetDbParameterGroup: StaticOperationSchema;
|
|
75
|
+
export declare var ListDbClusters: StaticOperationSchema;
|
|
76
|
+
export declare var ListDbInstances: StaticOperationSchema;
|
|
77
|
+
export declare var ListDbInstancesForCluster: StaticOperationSchema;
|
|
78
|
+
export declare var ListDbParameterGroups: StaticOperationSchema;
|
|
79
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
80
|
+
export declare var TagResource: StaticOperationSchema;
|
|
81
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
82
|
+
export declare var UpdateDbCluster: StaticOperationSchema;
|
|
83
|
+
export declare var UpdateDbInstance: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -180,6 +183,7 @@ export interface ClientDefaults
|
|
|
180
183
|
retryMode?: string | __Provider<string>;
|
|
181
184
|
logger?: __Logger;
|
|
182
185
|
extensions?: RuntimeExtension[];
|
|
186
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
183
187
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
184
188
|
}
|
|
185
189
|
export type TimestreamInfluxDBClientConfigType = Partial<
|
|
@@ -693,9 +693,3 @@ export interface UntagResourceRequest {
|
|
|
693
693
|
resourceArn: string | undefined;
|
|
694
694
|
tagKeys: string[] | undefined;
|
|
695
695
|
}
|
|
696
|
-
export declare const CreateDbClusterInputFilterSensitiveLog: (
|
|
697
|
-
obj: CreateDbClusterInput
|
|
698
|
-
) => any;
|
|
699
|
-
export declare const CreateDbInstanceInputFilterSensitiveLog: (
|
|
700
|
-
obj: CreateDbInstanceInput
|
|
701
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").TimestreamInfluxDBHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticOperationSchema,
|
|
5
|
+
StaticSimpleSchema,
|
|
6
|
+
StaticStructureSchema,
|
|
7
|
+
} from "@smithy/types";
|
|
8
|
+
export declare var Password: StaticSimpleSchema;
|
|
9
|
+
export declare var Username: StaticSimpleSchema;
|
|
10
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
11
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
12
|
+
export declare var CreateDbClusterInput: StaticStructureSchema;
|
|
13
|
+
export declare var CreateDbClusterOutput: StaticStructureSchema;
|
|
14
|
+
export declare var CreateDbInstanceInput: StaticStructureSchema;
|
|
15
|
+
export declare var CreateDbInstanceOutput: StaticStructureSchema;
|
|
16
|
+
export declare var CreateDbParameterGroupInput: StaticStructureSchema;
|
|
17
|
+
export declare var CreateDbParameterGroupOutput: StaticStructureSchema;
|
|
18
|
+
export declare var DbClusterSummary: StaticStructureSchema;
|
|
19
|
+
export declare var DbInstanceForClusterSummary: StaticStructureSchema;
|
|
20
|
+
export declare var DbInstanceSummary: StaticStructureSchema;
|
|
21
|
+
export declare var DbParameterGroupSummary: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteDbClusterInput: StaticStructureSchema;
|
|
23
|
+
export declare var DeleteDbClusterOutput: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteDbInstanceInput: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteDbInstanceOutput: StaticStructureSchema;
|
|
26
|
+
export declare var Duration: StaticStructureSchema;
|
|
27
|
+
export declare var GetDbClusterInput: StaticStructureSchema;
|
|
28
|
+
export declare var GetDbClusterOutput: StaticStructureSchema;
|
|
29
|
+
export declare var GetDbInstanceInput: StaticStructureSchema;
|
|
30
|
+
export declare var GetDbInstanceOutput: StaticStructureSchema;
|
|
31
|
+
export declare var GetDbParameterGroupInput: StaticStructureSchema;
|
|
32
|
+
export declare var GetDbParameterGroupOutput: StaticStructureSchema;
|
|
33
|
+
export declare var InfluxDBv2Parameters: StaticStructureSchema;
|
|
34
|
+
export declare var InfluxDBv3CoreParameters: StaticStructureSchema;
|
|
35
|
+
export declare var InfluxDBv3EnterpriseParameters: StaticStructureSchema;
|
|
36
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
37
|
+
export declare var ListDbClustersInput: StaticStructureSchema;
|
|
38
|
+
export declare var ListDbClustersOutput: StaticStructureSchema;
|
|
39
|
+
export declare var ListDbInstancesForClusterInput: StaticStructureSchema;
|
|
40
|
+
export declare var ListDbInstancesForClusterOutput: StaticStructureSchema;
|
|
41
|
+
export declare var ListDbInstancesInput: StaticStructureSchema;
|
|
42
|
+
export declare var ListDbInstancesOutput: StaticStructureSchema;
|
|
43
|
+
export declare var ListDbParameterGroupsInput: StaticStructureSchema;
|
|
44
|
+
export declare var ListDbParameterGroupsOutput: StaticStructureSchema;
|
|
45
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
46
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
47
|
+
export declare var LogDeliveryConfiguration: StaticStructureSchema;
|
|
48
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
49
|
+
export declare var S3Configuration: StaticStructureSchema;
|
|
50
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
51
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
52
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
53
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
54
|
+
export declare var UpdateDbClusterInput: StaticStructureSchema;
|
|
55
|
+
export declare var UpdateDbClusterOutput: StaticStructureSchema;
|
|
56
|
+
export declare var UpdateDbInstanceInput: StaticStructureSchema;
|
|
57
|
+
export declare var UpdateDbInstanceOutput: StaticStructureSchema;
|
|
58
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
59
|
+
export declare var __Unit: "unit";
|
|
60
|
+
export declare var TimestreamInfluxDBServiceException: StaticErrorSchema;
|
|
61
|
+
export declare var DbClusterSummaryList: StaticListSchema;
|
|
62
|
+
export declare var DbInstanceForClusterSummaryList: StaticListSchema;
|
|
63
|
+
export declare var DbInstanceSummaryList: StaticListSchema;
|
|
64
|
+
export declare var DbParameterGroupSummaryList: StaticListSchema;
|
|
65
|
+
export declare var InstanceModeList: number;
|
|
66
|
+
export declare var TagKeys: number;
|
|
67
|
+
export declare var VpcSecurityGroupIdList: number;
|
|
68
|
+
export declare var VpcSubnetIdList: number;
|
|
69
|
+
export declare var RequestTagMap: number;
|
|
70
|
+
export declare var ResponseTagMap: number;
|
|
71
|
+
export declare var _Parameters: StaticStructureSchema;
|
|
72
|
+
export declare var PercentOrAbsoluteLong: StaticStructureSchema;
|
|
73
|
+
export declare var CreateDbCluster: StaticOperationSchema;
|
|
74
|
+
export declare var CreateDbInstance: StaticOperationSchema;
|
|
75
|
+
export declare var CreateDbParameterGroup: StaticOperationSchema;
|
|
76
|
+
export declare var DeleteDbCluster: StaticOperationSchema;
|
|
77
|
+
export declare var DeleteDbInstance: StaticOperationSchema;
|
|
78
|
+
export declare var GetDbCluster: StaticOperationSchema;
|
|
79
|
+
export declare var GetDbInstance: StaticOperationSchema;
|
|
80
|
+
export declare var GetDbParameterGroup: StaticOperationSchema;
|
|
81
|
+
export declare var ListDbClusters: StaticOperationSchema;
|
|
82
|
+
export declare var ListDbInstances: StaticOperationSchema;
|
|
83
|
+
export declare var ListDbInstancesForCluster: StaticOperationSchema;
|
|
84
|
+
export declare var ListDbParameterGroups: StaticOperationSchema;
|
|
85
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
86
|
+
export declare var TagResource: StaticOperationSchema;
|
|
87
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
88
|
+
export declare var UpdateDbCluster: StaticOperationSchema;
|
|
89
|
+
export declare var UpdateDbInstance: StaticOperationSchema;
|
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.928.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-timestream-influxdb",
|
|
@@ -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.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.928.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|