@aws-sdk/client-arc-zonal-shift 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.
|
@@ -58,7 +58,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
58
58
|
* @public
|
|
59
59
|
* <p>The reason for the conflict exception.</p>
|
|
60
60
|
*/
|
|
61
|
-
reason: ConflictExceptionReason |
|
|
61
|
+
reason: ConflictExceptionReason | undefined;
|
|
62
62
|
/**
|
|
63
63
|
* @public
|
|
64
64
|
* <p>The zonal shift ID associated with the conflict exception.</p>
|
|
@@ -133,7 +133,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
133
133
|
* @public
|
|
134
134
|
* <p>The reason for the validation exception.</p>
|
|
135
135
|
*/
|
|
136
|
-
reason: ValidationExceptionReason |
|
|
136
|
+
reason: ValidationExceptionReason | undefined;
|
|
137
137
|
/**
|
|
138
138
|
* @internal
|
|
139
139
|
*/
|
|
@@ -207,7 +207,7 @@ export interface ZonalShift {
|
|
|
207
207
|
* </li>
|
|
208
208
|
* </ul>
|
|
209
209
|
*/
|
|
210
|
-
status: ZonalShiftStatus |
|
|
210
|
+
status: ZonalShiftStatus | undefined;
|
|
211
211
|
/**
|
|
212
212
|
* @public
|
|
213
213
|
* <p>A comment that you enter about the zonal shift. Only the latest comment is retained; no comment
|
|
@@ -236,7 +236,7 @@ export interface ZonalShiftInResource {
|
|
|
236
236
|
* <p>An <code>appliedStatus</code> for a zonal shift for a resource can have one of two values: <code>APPLIED</code>
|
|
237
237
|
* or <code>NOT_APPLIED</code>. </p>
|
|
238
238
|
*/
|
|
239
|
-
appliedStatus: AppliedStatus |
|
|
239
|
+
appliedStatus: AppliedStatus | undefined;
|
|
240
240
|
/**
|
|
241
241
|
* @public
|
|
242
242
|
* <p>The identifier of a zonal shift.</p>
|
|
@@ -392,7 +392,7 @@ export interface ListZonalShiftsRequest {
|
|
|
392
392
|
* </li>
|
|
393
393
|
* </ul>
|
|
394
394
|
*/
|
|
395
|
-
status?: ZonalShiftStatus
|
|
395
|
+
status?: ZonalShiftStatus;
|
|
396
396
|
/**
|
|
397
397
|
* @public
|
|
398
398
|
* <p>The number of objects that you want to return with this call.</p>
|
|
@@ -462,7 +462,7 @@ export interface ZonalShiftSummary {
|
|
|
462
462
|
* </li>
|
|
463
463
|
* </ul>
|
|
464
464
|
*/
|
|
465
|
-
status: ZonalShiftStatus |
|
|
465
|
+
status: ZonalShiftStatus | undefined;
|
|
466
466
|
/**
|
|
467
467
|
* @public
|
|
468
468
|
* <p>A comment that you enter about the zonal shift. Only the latest comment is retained; no comment
|
|
@@ -25,7 +25,7 @@ export type ConflictExceptionReason =
|
|
|
25
25
|
export declare class ConflictException extends __BaseException {
|
|
26
26
|
readonly name: "ConflictException";
|
|
27
27
|
readonly $fault: "client";
|
|
28
|
-
reason: ConflictExceptionReason |
|
|
28
|
+
reason: ConflictExceptionReason | undefined;
|
|
29
29
|
zonalShiftId?: string;
|
|
30
30
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
31
31
|
}
|
|
@@ -64,7 +64,7 @@ export type ValidationExceptionReason =
|
|
|
64
64
|
export declare class ValidationException extends __BaseException {
|
|
65
65
|
readonly name: "ValidationException";
|
|
66
66
|
readonly $fault: "client";
|
|
67
|
-
reason: ValidationExceptionReason |
|
|
67
|
+
reason: ValidationExceptionReason | undefined;
|
|
68
68
|
constructor(
|
|
69
69
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
70
70
|
);
|
|
@@ -82,14 +82,14 @@ export interface ZonalShift {
|
|
|
82
82
|
awayFrom: string | undefined;
|
|
83
83
|
expiryTime: Date | undefined;
|
|
84
84
|
startTime: Date | undefined;
|
|
85
|
-
status: ZonalShiftStatus |
|
|
85
|
+
status: ZonalShiftStatus | undefined;
|
|
86
86
|
comment: string | undefined;
|
|
87
87
|
}
|
|
88
88
|
export interface GetManagedResourceRequest {
|
|
89
89
|
resourceIdentifier: string | undefined;
|
|
90
90
|
}
|
|
91
91
|
export interface ZonalShiftInResource {
|
|
92
|
-
appliedStatus: AppliedStatus |
|
|
92
|
+
appliedStatus: AppliedStatus | undefined;
|
|
93
93
|
zonalShiftId: string | undefined;
|
|
94
94
|
resourceIdentifier: string | undefined;
|
|
95
95
|
awayFrom: string | undefined;
|
|
@@ -118,7 +118,7 @@ export interface ListManagedResourcesResponse {
|
|
|
118
118
|
}
|
|
119
119
|
export interface ListZonalShiftsRequest {
|
|
120
120
|
nextToken?: string;
|
|
121
|
-
status?: ZonalShiftStatus
|
|
121
|
+
status?: ZonalShiftStatus;
|
|
122
122
|
maxResults?: number;
|
|
123
123
|
}
|
|
124
124
|
export interface ZonalShiftSummary {
|
|
@@ -127,7 +127,7 @@ export interface ZonalShiftSummary {
|
|
|
127
127
|
awayFrom: string | undefined;
|
|
128
128
|
expiryTime: Date | undefined;
|
|
129
129
|
startTime: Date | undefined;
|
|
130
|
-
status: ZonalShiftStatus |
|
|
130
|
+
status: ZonalShiftStatus | undefined;
|
|
131
131
|
comment: string | undefined;
|
|
132
132
|
}
|
|
133
133
|
export interface ListZonalShiftsResponse {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-arc-zonal-shift",
|
|
3
3
|
"description": "AWS SDK for JavaScript Arc Zonal Shift 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"
|