@aws-sdk/client-dax 3.895.0 → 3.899.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 +5 -5
- package/dist-cjs/index.js +40 -0
- package/dist-es/models/models_0.js +17 -0
- package/dist-es/protocols/Aws_json1_1.js +14 -1
- package/dist-types/DAX.d.ts +5 -5
- package/dist-types/DAXClient.d.ts +5 -5
- package/dist-types/commands/CreateClusterCommand.d.ts +9 -8
- package/dist-types/commands/CreateSubnetGroupCommand.d.ts +13 -0
- package/dist-types/commands/DecreaseReplicationFactorCommand.d.ts +9 -5
- package/dist-types/commands/DeleteClusterCommand.d.ts +9 -7
- package/dist-types/commands/DeleteSubnetGroupCommand.d.ts +2 -2
- package/dist-types/commands/DescribeClustersCommand.d.ts +12 -10
- package/dist-types/commands/DescribeEventsCommand.d.ts +5 -5
- package/dist-types/commands/DescribeSubnetGroupsCommand.d.ts +6 -0
- package/dist-types/commands/IncreaseReplicationFactorCommand.d.ts +6 -5
- package/dist-types/commands/ListTagsCommand.d.ts +6 -5
- package/dist-types/commands/RebootNodeCommand.d.ts +12 -9
- package/dist-types/commands/TagResourceCommand.d.ts +7 -5
- package/dist-types/commands/UntagResourceCommand.d.ts +5 -4
- package/dist-types/commands/UpdateClusterCommand.d.ts +8 -6
- package/dist-types/commands/UpdateParameterGroupCommand.d.ts +2 -3
- package/dist-types/commands/UpdateSubnetGroupCommand.d.ts +13 -0
- package/dist-types/index.d.ts +5 -5
- package/dist-types/models/models_0.d.ts +267 -156
- package/dist-types/ts3.4/models/models_0.d.ts +17 -0
- package/package.json +11 -11
|
@@ -23,6 +23,12 @@ export declare const ClusterEndpointEncryptionType: {
|
|
|
23
23
|
};
|
|
24
24
|
export type ClusterEndpointEncryptionType =
|
|
25
25
|
(typeof ClusterEndpointEncryptionType)[keyof typeof ClusterEndpointEncryptionType];
|
|
26
|
+
export declare const NetworkType: {
|
|
27
|
+
readonly DUAL_STACK: "dual_stack";
|
|
28
|
+
readonly IPV4: "ipv4";
|
|
29
|
+
readonly IPV6: "ipv6";
|
|
30
|
+
};
|
|
31
|
+
export type NetworkType = (typeof NetworkType)[keyof typeof NetworkType];
|
|
26
32
|
export interface SSESpecification {
|
|
27
33
|
Enabled: boolean | undefined;
|
|
28
34
|
}
|
|
@@ -45,6 +51,7 @@ export interface CreateClusterRequest {
|
|
|
45
51
|
Tags?: Tag[] | undefined;
|
|
46
52
|
SSESpecification?: SSESpecification | undefined;
|
|
47
53
|
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | undefined;
|
|
54
|
+
NetworkType?: NetworkType | undefined;
|
|
48
55
|
}
|
|
49
56
|
export interface Endpoint {
|
|
50
57
|
Address?: string | undefined;
|
|
@@ -101,6 +108,7 @@ export interface Cluster {
|
|
|
101
108
|
ParameterGroup?: ParameterGroupStatus | undefined;
|
|
102
109
|
SSEDescription?: SSEDescription | undefined;
|
|
103
110
|
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType | undefined;
|
|
111
|
+
NetworkType?: NetworkType | undefined;
|
|
104
112
|
}
|
|
105
113
|
export interface CreateClusterResponse {
|
|
106
114
|
Cluster?: Cluster | undefined;
|
|
@@ -250,12 +258,14 @@ export interface CreateSubnetGroupRequest {
|
|
|
250
258
|
export interface Subnet {
|
|
251
259
|
SubnetIdentifier?: string | undefined;
|
|
252
260
|
SubnetAvailabilityZone?: string | undefined;
|
|
261
|
+
SupportedNetworkTypes?: NetworkType[] | undefined;
|
|
253
262
|
}
|
|
254
263
|
export interface SubnetGroup {
|
|
255
264
|
SubnetGroupName?: string | undefined;
|
|
256
265
|
Description?: string | undefined;
|
|
257
266
|
VpcId?: string | undefined;
|
|
258
267
|
Subnets?: Subnet[] | undefined;
|
|
268
|
+
SupportedNetworkTypes?: NetworkType[] | undefined;
|
|
259
269
|
}
|
|
260
270
|
export interface CreateSubnetGroupResponse {
|
|
261
271
|
SubnetGroup?: SubnetGroup | undefined;
|
|
@@ -279,6 +289,13 @@ export declare class SubnetGroupQuotaExceededFault extends __BaseException {
|
|
|
279
289
|
opts: __ExceptionOptionType<SubnetGroupQuotaExceededFault, __BaseException>
|
|
280
290
|
);
|
|
281
291
|
}
|
|
292
|
+
export declare class SubnetNotAllowedFault extends __BaseException {
|
|
293
|
+
readonly name: "SubnetNotAllowedFault";
|
|
294
|
+
readonly $fault: "client";
|
|
295
|
+
constructor(
|
|
296
|
+
opts: __ExceptionOptionType<SubnetNotAllowedFault, __BaseException>
|
|
297
|
+
);
|
|
298
|
+
}
|
|
282
299
|
export declare class SubnetQuotaExceededFault extends __BaseException {
|
|
283
300
|
readonly name: "SubnetQuotaExceededFault";
|
|
284
301
|
readonly $fault: "client";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-dax",
|
|
3
3
|
"description": "AWS SDK for JavaScript Dax Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.899.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-dax",
|
|
@@ -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.899.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.899.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.893.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.893.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.893.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.899.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.893.0",
|
|
30
30
|
"@aws-sdk/types": "3.893.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.895.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.893.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.899.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.2.2",
|
|
35
|
-
"@smithy/core": "^3.
|
|
35
|
+
"@smithy/core": "^3.13.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.2.1",
|
|
37
37
|
"@smithy/hash-node": "^4.1.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.1.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.1.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.2.
|
|
41
|
-
"@smithy/middleware-retry": "^4.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.2.5",
|
|
41
|
+
"@smithy/middleware-retry": "^4.3.1",
|
|
42
42
|
"@smithy/middleware-serde": "^4.1.1",
|
|
43
43
|
"@smithy/middleware-stack": "^4.1.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.2.2",
|
|
45
45
|
"@smithy/node-http-handler": "^4.2.1",
|
|
46
46
|
"@smithy/protocol-http": "^5.2.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.6.
|
|
47
|
+
"@smithy/smithy-client": "^4.6.5",
|
|
48
48
|
"@smithy/types": "^4.5.0",
|
|
49
49
|
"@smithy/url-parser": "^4.1.1",
|
|
50
50
|
"@smithy/util-base64": "^4.1.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.1.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.1.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.1.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.1.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.1.5",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.1.5",
|
|
55
55
|
"@smithy/util-endpoints": "^3.1.2",
|
|
56
56
|
"@smithy/util-middleware": "^4.1.1",
|
|
57
57
|
"@smithy/util-retry": "^4.1.2",
|