@aws-sdk/client-dax 3.427.0 → 3.429.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.
|
@@ -240,7 +240,7 @@ export interface CreateClusterRequest {
|
|
|
240
240
|
* </li>
|
|
241
241
|
* </ul>
|
|
242
242
|
*/
|
|
243
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType
|
|
243
|
+
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
|
|
244
244
|
}
|
|
245
245
|
/**
|
|
246
246
|
* @public
|
|
@@ -403,7 +403,7 @@ export interface SSEDescription {
|
|
|
403
403
|
* </li>
|
|
404
404
|
* </ul>
|
|
405
405
|
*/
|
|
406
|
-
Status?: SSEStatus
|
|
406
|
+
Status?: SSEStatus;
|
|
407
407
|
}
|
|
408
408
|
/**
|
|
409
409
|
* @public
|
|
@@ -518,7 +518,7 @@ export interface Cluster {
|
|
|
518
518
|
* </li>
|
|
519
519
|
* </ul>
|
|
520
520
|
*/
|
|
521
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType
|
|
521
|
+
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* @public
|
|
@@ -1165,7 +1165,7 @@ export interface Parameter {
|
|
|
1165
1165
|
* <p>Determines whether the parameter can be applied to any nodes, or only nodes of a
|
|
1166
1166
|
* particular type.</p>
|
|
1167
1167
|
*/
|
|
1168
|
-
ParameterType?: ParameterType
|
|
1168
|
+
ParameterType?: ParameterType;
|
|
1169
1169
|
/**
|
|
1170
1170
|
* @public
|
|
1171
1171
|
* <p>The value for the parameter.</p>
|
|
@@ -1201,14 +1201,14 @@ export interface Parameter {
|
|
|
1201
1201
|
* @public
|
|
1202
1202
|
* <p>Whether the customer is allowed to modify the parameter.</p>
|
|
1203
1203
|
*/
|
|
1204
|
-
IsModifiable?: IsModifiable
|
|
1204
|
+
IsModifiable?: IsModifiable;
|
|
1205
1205
|
/**
|
|
1206
1206
|
* @public
|
|
1207
1207
|
* <p>The conditions under which changes to this parameter can be applied. For example,
|
|
1208
1208
|
* <code>requires-reboot</code> indicates that a new value for this parameter will only
|
|
1209
1209
|
* take effect if a node is rebooted.</p>
|
|
1210
1210
|
*/
|
|
1211
|
-
ChangeType?: ChangeType
|
|
1211
|
+
ChangeType?: ChangeType;
|
|
1212
1212
|
}
|
|
1213
1213
|
/**
|
|
1214
1214
|
* @public
|
|
@@ -1253,7 +1253,7 @@ export interface DescribeEventsRequest {
|
|
|
1253
1253
|
* <p>The event source to retrieve events for. If no value is specified, all events are
|
|
1254
1254
|
* returned.</p>
|
|
1255
1255
|
*/
|
|
1256
|
-
SourceType?: SourceType
|
|
1256
|
+
SourceType?: SourceType;
|
|
1257
1257
|
/**
|
|
1258
1258
|
* @public
|
|
1259
1259
|
* <p>The beginning of the time interval to retrieve events for, specified in ISO 8601
|
|
@@ -1306,7 +1306,7 @@ export interface Event {
|
|
|
1306
1306
|
* <p>Specifies the origin of this event - a cluster, a parameter group, a node ID,
|
|
1307
1307
|
* etc.</p>
|
|
1308
1308
|
*/
|
|
1309
|
-
SourceType?: SourceType
|
|
1309
|
+
SourceType?: SourceType;
|
|
1310
1310
|
/**
|
|
1311
1311
|
* @public
|
|
1312
1312
|
* <p>A user-defined message associated with the event.</p>
|
|
@@ -44,7 +44,7 @@ export interface CreateClusterRequest {
|
|
|
44
44
|
ParameterGroupName?: string;
|
|
45
45
|
Tags?: Tag[];
|
|
46
46
|
SSESpecification?: SSESpecification;
|
|
47
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType
|
|
47
|
+
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
|
|
48
48
|
}
|
|
49
49
|
export interface Endpoint {
|
|
50
50
|
Address?: string;
|
|
@@ -80,7 +80,7 @@ export declare const SSEStatus: {
|
|
|
80
80
|
};
|
|
81
81
|
export type SSEStatus = (typeof SSEStatus)[keyof typeof SSEStatus];
|
|
82
82
|
export interface SSEDescription {
|
|
83
|
-
Status?: SSEStatus
|
|
83
|
+
Status?: SSEStatus;
|
|
84
84
|
}
|
|
85
85
|
export interface Cluster {
|
|
86
86
|
ClusterName?: string;
|
|
@@ -100,7 +100,7 @@ export interface Cluster {
|
|
|
100
100
|
IamRoleArn?: string;
|
|
101
101
|
ParameterGroup?: ParameterGroupStatus;
|
|
102
102
|
SSEDescription?: SSEDescription;
|
|
103
|
-
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType
|
|
103
|
+
ClusterEndpointEncryptionType?: ClusterEndpointEncryptionType;
|
|
104
104
|
}
|
|
105
105
|
export interface CreateClusterResponse {
|
|
106
106
|
Cluster?: Cluster;
|
|
@@ -367,15 +367,15 @@ export declare const ParameterType: {
|
|
|
367
367
|
export type ParameterType = (typeof ParameterType)[keyof typeof ParameterType];
|
|
368
368
|
export interface Parameter {
|
|
369
369
|
ParameterName?: string;
|
|
370
|
-
ParameterType?: ParameterType
|
|
370
|
+
ParameterType?: ParameterType;
|
|
371
371
|
ParameterValue?: string;
|
|
372
372
|
NodeTypeSpecificValues?: NodeTypeSpecificValue[];
|
|
373
373
|
Description?: string;
|
|
374
374
|
Source?: string;
|
|
375
375
|
DataType?: string;
|
|
376
376
|
AllowedValues?: string;
|
|
377
|
-
IsModifiable?: IsModifiable
|
|
378
|
-
ChangeType?: ChangeType
|
|
377
|
+
IsModifiable?: IsModifiable;
|
|
378
|
+
ChangeType?: ChangeType;
|
|
379
379
|
}
|
|
380
380
|
export interface DescribeDefaultParametersResponse {
|
|
381
381
|
NextToken?: string;
|
|
@@ -389,7 +389,7 @@ export declare const SourceType: {
|
|
|
389
389
|
export type SourceType = (typeof SourceType)[keyof typeof SourceType];
|
|
390
390
|
export interface DescribeEventsRequest {
|
|
391
391
|
SourceName?: string;
|
|
392
|
-
SourceType?: SourceType
|
|
392
|
+
SourceType?: SourceType;
|
|
393
393
|
StartTime?: Date;
|
|
394
394
|
EndTime?: Date;
|
|
395
395
|
Duration?: number;
|
|
@@ -398,7 +398,7 @@ export interface DescribeEventsRequest {
|
|
|
398
398
|
}
|
|
399
399
|
export interface Event {
|
|
400
400
|
SourceName?: string;
|
|
401
|
-
SourceType?: SourceType
|
|
401
|
+
SourceType?: SourceType;
|
|
402
402
|
Message?: string;
|
|
403
403
|
Date?: Date;
|
|
404
404
|
}
|
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.429.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",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
27
|
-
"@aws-sdk/middleware-logger": "3.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
29
|
-
"@aws-sdk/middleware-signing": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
37
|
-
"@smithy/fetch-http-handler": "^2.2.
|
|
38
|
-
"@smithy/hash-node": "^2.0.
|
|
39
|
-
"@smithy/invalid-dependency": "^2.0.
|
|
40
|
-
"@smithy/middleware-content-length": "^2.0.
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
43
|
-
"@smithy/middleware-serde": "^2.0.
|
|
44
|
-
"@smithy/middleware-stack": "^2.0.
|
|
45
|
-
"@smithy/node-config-provider": "^2.
|
|
46
|
-
"@smithy/node-http-handler": "^2.1.
|
|
47
|
-
"@smithy/protocol-http": "^3.0.
|
|
48
|
-
"@smithy/smithy-client": "^2.1.
|
|
49
|
-
"@smithy/types": "^2.3.
|
|
50
|
-
"@smithy/url-parser": "^2.0.
|
|
24
|
+
"@aws-sdk/client-sts": "3.429.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.429.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
|
+
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
|
+
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.428.0",
|
|
32
|
+
"@aws-sdk/types": "3.428.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.428.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.14",
|
|
37
|
+
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
|
+
"@smithy/hash-node": "^2.0.11",
|
|
39
|
+
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
|
+
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.1",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.16",
|
|
43
|
+
"@smithy/middleware-serde": "^2.0.11",
|
|
44
|
+
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.1",
|
|
46
|
+
"@smithy/node-http-handler": "^2.1.7",
|
|
47
|
+
"@smithy/protocol-http": "^3.0.7",
|
|
48
|
+
"@smithy/smithy-client": "^2.1.11",
|
|
49
|
+
"@smithy/types": "^2.3.5",
|
|
50
|
+
"@smithy/url-parser": "^2.0.11",
|
|
51
51
|
"@smithy/util-base64": "^2.0.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^2.0.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
56
|
-
"@smithy/util-retry": "^2.0.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.19",
|
|
56
|
+
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0"
|
|
59
59
|
},
|