@aws-sdk/client-docdb-elastic 3.428.0 → 3.430.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.
|
@@ -76,7 +76,7 @@ export interface CreateClusterInput {
|
|
|
76
76
|
* @public
|
|
77
77
|
* <p>The authentication type for the Elastic DocumentDB cluster.</p>
|
|
78
78
|
*/
|
|
79
|
-
authType: Auth |
|
|
79
|
+
authType: Auth | undefined;
|
|
80
80
|
/**
|
|
81
81
|
* @public
|
|
82
82
|
* <p>The name of the Elastic DocumentDB cluster administrator.</p>
|
|
@@ -208,7 +208,7 @@ export interface Cluster {
|
|
|
208
208
|
* @public
|
|
209
209
|
* <p>The status of the Elastic DocumentDB cluster.</p>
|
|
210
210
|
*/
|
|
211
|
-
status: Status |
|
|
211
|
+
status: Status | undefined;
|
|
212
212
|
/**
|
|
213
213
|
* @public
|
|
214
214
|
* <p>The URL used to connect to the Elastic DocumentDB cluster.</p>
|
|
@@ -228,7 +228,7 @@ export interface Cluster {
|
|
|
228
228
|
* @public
|
|
229
229
|
* <p>The authentication type for the Elastic DocumentDB cluster.</p>
|
|
230
230
|
*/
|
|
231
|
-
authType: Auth |
|
|
231
|
+
authType: Auth | undefined;
|
|
232
232
|
/**
|
|
233
233
|
* @public
|
|
234
234
|
* <p>The capacity of each shard in the Elastic DocumentDB cluster.</p>
|
|
@@ -359,7 +359,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
359
359
|
* <p>The reason why the validation exception occurred (one of <code>unknownOperation</code>,
|
|
360
360
|
* <code>cannotParse</code>, <code>fieldValidationFailed</code>, or <code>other</code>).</p>
|
|
361
361
|
*/
|
|
362
|
-
reason: ValidationExceptionReason |
|
|
362
|
+
reason: ValidationExceptionReason | undefined;
|
|
363
363
|
/**
|
|
364
364
|
* @public
|
|
365
365
|
* <p>A list of the fields in which the validation exception occurred.</p>
|
|
@@ -429,7 +429,7 @@ export interface ClusterSnapshot {
|
|
|
429
429
|
* @public
|
|
430
430
|
* <p>The status of the Elastic DocumentDB snapshot.</p>
|
|
431
431
|
*/
|
|
432
|
-
status: Status |
|
|
432
|
+
status: Status | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* @public
|
|
435
435
|
* <p>A list of the IDs of the VPC security groups associated with the cluster snapshot.</p>
|
|
@@ -592,7 +592,7 @@ export interface ClusterInList {
|
|
|
592
592
|
* @public
|
|
593
593
|
* <p>The status of the Elastic DocumentDB cluster.</p>
|
|
594
594
|
*/
|
|
595
|
-
status: Status |
|
|
595
|
+
status: Status | undefined;
|
|
596
596
|
}
|
|
597
597
|
/**
|
|
598
598
|
* @public
|
|
@@ -654,7 +654,7 @@ export interface ClusterSnapshotInList {
|
|
|
654
654
|
* @public
|
|
655
655
|
* <p>The status of the Elastic DocumentDB snapshot.</p>
|
|
656
656
|
*/
|
|
657
|
-
status: Status |
|
|
657
|
+
status: Status | undefined;
|
|
658
658
|
/**
|
|
659
659
|
* @public
|
|
660
660
|
* <p>The time when the Elastic DocumentDB snapshot was created in Universal Coordinated Time (UTC).</p>
|
|
@@ -805,7 +805,7 @@ export interface UpdateClusterInput {
|
|
|
805
805
|
* @public
|
|
806
806
|
* <p>The authentication type for the Elastic DocumentDB cluster.</p>
|
|
807
807
|
*/
|
|
808
|
-
authType?: Auth
|
|
808
|
+
authType?: Auth;
|
|
809
809
|
/**
|
|
810
810
|
* @public
|
|
811
811
|
* <p>The capacity of each shard in the Elastic DocumentDB cluster.</p>
|
|
@@ -21,7 +21,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
21
21
|
}
|
|
22
22
|
export interface CreateClusterInput {
|
|
23
23
|
clusterName: string | undefined;
|
|
24
|
-
authType: Auth |
|
|
24
|
+
authType: Auth | undefined;
|
|
25
25
|
adminUserName: string | undefined;
|
|
26
26
|
adminUserPassword: string | undefined;
|
|
27
27
|
shardCapacity: number | undefined;
|
|
@@ -48,11 +48,11 @@ export type Status = (typeof Status)[keyof typeof Status];
|
|
|
48
48
|
export interface Cluster {
|
|
49
49
|
clusterName: string | undefined;
|
|
50
50
|
clusterArn: string | undefined;
|
|
51
|
-
status: Status |
|
|
51
|
+
status: Status | undefined;
|
|
52
52
|
clusterEndpoint: string | undefined;
|
|
53
53
|
createTime: string | undefined;
|
|
54
54
|
adminUserName: string | undefined;
|
|
55
|
-
authType: Auth |
|
|
55
|
+
authType: Auth | undefined;
|
|
56
56
|
shardCapacity: number | undefined;
|
|
57
57
|
shardCount: number | undefined;
|
|
58
58
|
vpcSecurityGroupIds: string[] | undefined;
|
|
@@ -102,7 +102,7 @@ export type ValidationExceptionReason =
|
|
|
102
102
|
export declare class ValidationException extends __BaseException {
|
|
103
103
|
readonly name: "ValidationException";
|
|
104
104
|
readonly $fault: "client";
|
|
105
|
-
reason: ValidationExceptionReason |
|
|
105
|
+
reason: ValidationExceptionReason | undefined;
|
|
106
106
|
fieldList?: ValidationExceptionField[];
|
|
107
107
|
constructor(
|
|
108
108
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
@@ -120,7 +120,7 @@ export interface ClusterSnapshot {
|
|
|
120
120
|
snapshotCreationTime: string | undefined;
|
|
121
121
|
clusterArn: string | undefined;
|
|
122
122
|
clusterCreationTime: string | undefined;
|
|
123
|
-
status: Status |
|
|
123
|
+
status: Status | undefined;
|
|
124
124
|
vpcSecurityGroupIds: string[] | undefined;
|
|
125
125
|
adminUserName: string | undefined;
|
|
126
126
|
kmsKeyId: string | undefined;
|
|
@@ -168,7 +168,7 @@ export interface ListClustersInput {
|
|
|
168
168
|
export interface ClusterInList {
|
|
169
169
|
clusterName: string | undefined;
|
|
170
170
|
clusterArn: string | undefined;
|
|
171
|
-
status: Status |
|
|
171
|
+
status: Status | undefined;
|
|
172
172
|
}
|
|
173
173
|
export interface ListClustersOutput {
|
|
174
174
|
clusters?: ClusterInList[];
|
|
@@ -183,7 +183,7 @@ export interface ClusterSnapshotInList {
|
|
|
183
183
|
snapshotName: string | undefined;
|
|
184
184
|
snapshotArn: string | undefined;
|
|
185
185
|
clusterArn: string | undefined;
|
|
186
|
-
status: Status |
|
|
186
|
+
status: Status | undefined;
|
|
187
187
|
snapshotCreationTime: string | undefined;
|
|
188
188
|
}
|
|
189
189
|
export interface ListClusterSnapshotsOutput {
|
|
@@ -219,7 +219,7 @@ export interface UntagResourceRequest {
|
|
|
219
219
|
export interface UntagResourceResponse {}
|
|
220
220
|
export interface UpdateClusterInput {
|
|
221
221
|
clusterArn: string | undefined;
|
|
222
|
-
authType?: Auth
|
|
222
|
+
authType?: Auth;
|
|
223
223
|
shardCapacity?: number;
|
|
224
224
|
shardCount?: number;
|
|
225
225
|
vpcSecurityGroupIds?: string[];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-docdb-elastic",
|
|
3
3
|
"description": "AWS SDK for JavaScript Docdb Elastic Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.430.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,28 +21,28 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.430.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.430.0",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "3.429.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.428.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.428.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.428.0",
|
|
30
30
|
"@aws-sdk/middleware-user-agent": "3.428.0",
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.430.0",
|
|
32
32
|
"@aws-sdk/types": "3.428.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.428.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.428.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^2.0.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.430.0",
|
|
36
|
+
"@smithy/config-resolver": "^2.0.15",
|
|
37
37
|
"@smithy/fetch-http-handler": "^2.2.3",
|
|
38
38
|
"@smithy/hash-node": "^2.0.11",
|
|
39
39
|
"@smithy/invalid-dependency": "^2.0.11",
|
|
40
40
|
"@smithy/middleware-content-length": "^2.0.13",
|
|
41
|
-
"@smithy/middleware-endpoint": "^2.1.
|
|
42
|
-
"@smithy/middleware-retry": "^2.0.
|
|
41
|
+
"@smithy/middleware-endpoint": "^2.1.2",
|
|
42
|
+
"@smithy/middleware-retry": "^2.0.17",
|
|
43
43
|
"@smithy/middleware-serde": "^2.0.11",
|
|
44
44
|
"@smithy/middleware-stack": "^2.0.5",
|
|
45
|
-
"@smithy/node-config-provider": "^2.1.
|
|
45
|
+
"@smithy/node-config-provider": "^2.1.2",
|
|
46
46
|
"@smithy/node-http-handler": "^2.1.7",
|
|
47
47
|
"@smithy/protocol-http": "^3.0.7",
|
|
48
48
|
"@smithy/smithy-client": "^2.1.11",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@smithy/util-body-length-browser": "^2.0.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^2.1.0",
|
|
54
54
|
"@smithy/util-defaults-mode-browser": "^2.0.15",
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^2.0.
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^2.0.20",
|
|
56
56
|
"@smithy/util-retry": "^2.0.4",
|
|
57
57
|
"@smithy/util-utf8": "^2.0.0",
|
|
58
58
|
"tslib": "^2.5.0",
|