@aws-sdk/client-arc-zonal-shift 3.325.0 → 3.326.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-types/commands/CancelZonalShiftCommand.d.ts +12 -0
- package/dist-types/commands/GetManagedResourceCommand.d.ts +21 -0
- package/dist-types/commands/ListManagedResourcesCommand.d.ts +15 -0
- package/dist-types/commands/ListZonalShiftsCommand.d.ts +17 -0
- package/dist-types/commands/StartZonalShiftCommand.d.ts +12 -0
- package/dist-types/commands/UpdateZonalShiftCommand.d.ts +12 -0
- package/package.json +3 -3
|
@@ -31,6 +31,16 @@ export interface CancelZonalShiftCommandOutput extends ZonalShift, __MetadataBea
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new CancelZonalShiftCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ZonalShift
|
|
35
|
+
* // zonalShiftId: "STRING_VALUE", // required
|
|
36
|
+
* // resourceIdentifier: "STRING_VALUE", // required
|
|
37
|
+
* // awayFrom: "STRING_VALUE", // required
|
|
38
|
+
* // expiryTime: new Date("TIMESTAMP"), // required
|
|
39
|
+
* // startTime: new Date("TIMESTAMP"), // required
|
|
40
|
+
* // status: "ACTIVE" || "EXPIRED" || "CANCELED", // required
|
|
41
|
+
* // comment: "STRING_VALUE", // required
|
|
42
|
+
* // };
|
|
43
|
+
*
|
|
34
44
|
* ```
|
|
35
45
|
*
|
|
36
46
|
* @param CancelZonalShiftCommandInput - {@link CancelZonalShiftCommandInput}
|
|
@@ -57,6 +67,8 @@ export interface CancelZonalShiftCommandOutput extends ZonalShift, __MetadataBea
|
|
|
57
67
|
* @throws {@link ValidationException} (client fault)
|
|
58
68
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
59
69
|
*
|
|
70
|
+
* @throws {@link ARCZonalShiftServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
60
72
|
*
|
|
61
73
|
*/
|
|
62
74
|
export declare class CancelZonalShiftCommand extends $Command<CancelZonalShiftCommandInput, CancelZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig> {
|
|
@@ -33,6 +33,25 @@ export interface GetManagedResourceCommandOutput extends GetManagedResourceRespo
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new GetManagedResourceCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // GetManagedResourceResponse
|
|
37
|
+
* // arn: "STRING_VALUE",
|
|
38
|
+
* // name: "STRING_VALUE",
|
|
39
|
+
* // appliedWeights: { // AppliedWeights // required
|
|
40
|
+
* // "<keys>": Number("float"),
|
|
41
|
+
* // },
|
|
42
|
+
* // zonalShifts: [ // ZonalShiftsInResource // required
|
|
43
|
+
* // { // ZonalShiftInResource
|
|
44
|
+
* // appliedStatus: "APPLIED" || "NOT_APPLIED", // required
|
|
45
|
+
* // zonalShiftId: "STRING_VALUE", // required
|
|
46
|
+
* // resourceIdentifier: "STRING_VALUE", // required
|
|
47
|
+
* // awayFrom: "STRING_VALUE", // required
|
|
48
|
+
* // expiryTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // startTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // comment: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // ],
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
36
55
|
* ```
|
|
37
56
|
*
|
|
38
57
|
* @param GetManagedResourceCommandInput - {@link GetManagedResourceCommandInput}
|
|
@@ -56,6 +75,8 @@ export interface GetManagedResourceCommandOutput extends GetManagedResourceRespo
|
|
|
56
75
|
* @throws {@link ValidationException} (client fault)
|
|
57
76
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
58
77
|
*
|
|
78
|
+
* @throws {@link ARCZonalShiftServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
59
80
|
*
|
|
60
81
|
*/
|
|
61
82
|
export declare class GetManagedResourceCommand extends $Command<GetManagedResourceCommandInput, GetManagedResourceCommandOutput, ARCZonalShiftClientResolvedConfig> {
|
|
@@ -34,6 +34,19 @@ export interface ListManagedResourcesCommandOutput extends ListManagedResourcesR
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListManagedResourcesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListManagedResourcesResponse
|
|
38
|
+
* // items: [ // ManagedResourceSummaries // required
|
|
39
|
+
* // { // ManagedResourceSummary
|
|
40
|
+
* // arn: "STRING_VALUE",
|
|
41
|
+
* // name: "STRING_VALUE",
|
|
42
|
+
* // availabilityZones: [ // AvailabilityZones // required
|
|
43
|
+
* // "STRING_VALUE",
|
|
44
|
+
* // ],
|
|
45
|
+
* // },
|
|
46
|
+
* // ],
|
|
47
|
+
* // nextToken: "STRING_VALUE",
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
37
50
|
* ```
|
|
38
51
|
*
|
|
39
52
|
* @param ListManagedResourcesCommandInput - {@link ListManagedResourcesCommandInput}
|
|
@@ -54,6 +67,8 @@ export interface ListManagedResourcesCommandOutput extends ListManagedResourcesR
|
|
|
54
67
|
* @throws {@link ValidationException} (client fault)
|
|
55
68
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
56
69
|
*
|
|
70
|
+
* @throws {@link ARCZonalShiftServiceException}
|
|
71
|
+
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
57
72
|
*
|
|
58
73
|
*/
|
|
59
74
|
export declare class ListManagedResourcesCommand extends $Command<ListManagedResourcesCommandInput, ListManagedResourcesCommandOutput, ARCZonalShiftClientResolvedConfig> {
|
|
@@ -33,6 +33,21 @@ export interface ListZonalShiftsCommandOutput extends ListZonalShiftsResponse, _
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new ListZonalShiftsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // ListZonalShiftsResponse
|
|
37
|
+
* // items: [ // ZonalShiftSummaries
|
|
38
|
+
* // { // ZonalShiftSummary
|
|
39
|
+
* // zonalShiftId: "STRING_VALUE", // required
|
|
40
|
+
* // resourceIdentifier: "STRING_VALUE", // required
|
|
41
|
+
* // awayFrom: "STRING_VALUE", // required
|
|
42
|
+
* // expiryTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // startTime: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // status: "ACTIVE" || "EXPIRED" || "CANCELED", // required
|
|
45
|
+
* // comment: "STRING_VALUE", // required
|
|
46
|
+
* // },
|
|
47
|
+
* // ],
|
|
48
|
+
* // nextToken: "STRING_VALUE",
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
36
51
|
* ```
|
|
37
52
|
*
|
|
38
53
|
* @param ListZonalShiftsCommandInput - {@link ListZonalShiftsCommandInput}
|
|
@@ -53,6 +68,8 @@ export interface ListZonalShiftsCommandOutput extends ListZonalShiftsResponse, _
|
|
|
53
68
|
* @throws {@link ValidationException} (client fault)
|
|
54
69
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
55
70
|
*
|
|
71
|
+
* @throws {@link ARCZonalShiftServiceException}
|
|
72
|
+
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
56
73
|
*
|
|
57
74
|
*/
|
|
58
75
|
export declare class ListZonalShiftsCommand extends $Command<ListZonalShiftsCommandInput, ListZonalShiftsCommandOutput, ARCZonalShiftClientResolvedConfig> {
|
|
@@ -43,6 +43,16 @@ export interface StartZonalShiftCommandOutput extends ZonalShift, __MetadataBear
|
|
|
43
43
|
* };
|
|
44
44
|
* const command = new StartZonalShiftCommand(input);
|
|
45
45
|
* const response = await client.send(command);
|
|
46
|
+
* // { // ZonalShift
|
|
47
|
+
* // zonalShiftId: "STRING_VALUE", // required
|
|
48
|
+
* // resourceIdentifier: "STRING_VALUE", // required
|
|
49
|
+
* // awayFrom: "STRING_VALUE", // required
|
|
50
|
+
* // expiryTime: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // startTime: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // status: "ACTIVE" || "EXPIRED" || "CANCELED", // required
|
|
53
|
+
* // comment: "STRING_VALUE", // required
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
46
56
|
* ```
|
|
47
57
|
*
|
|
48
58
|
* @param StartZonalShiftCommandInput - {@link StartZonalShiftCommandInput}
|
|
@@ -69,6 +79,8 @@ export interface StartZonalShiftCommandOutput extends ZonalShift, __MetadataBear
|
|
|
69
79
|
* @throws {@link ValidationException} (client fault)
|
|
70
80
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
71
81
|
*
|
|
82
|
+
* @throws {@link ARCZonalShiftServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
72
84
|
*
|
|
73
85
|
*/
|
|
74
86
|
export declare class StartZonalShiftCommand extends $Command<StartZonalShiftCommandInput, StartZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig> {
|
|
@@ -34,6 +34,16 @@ export interface UpdateZonalShiftCommandOutput extends ZonalShift, __MetadataBea
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateZonalShiftCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ZonalShift
|
|
38
|
+
* // zonalShiftId: "STRING_VALUE", // required
|
|
39
|
+
* // resourceIdentifier: "STRING_VALUE", // required
|
|
40
|
+
* // awayFrom: "STRING_VALUE", // required
|
|
41
|
+
* // expiryTime: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // startTime: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // status: "ACTIVE" || "EXPIRED" || "CANCELED", // required
|
|
44
|
+
* // comment: "STRING_VALUE", // required
|
|
45
|
+
* // };
|
|
46
|
+
*
|
|
37
47
|
* ```
|
|
38
48
|
*
|
|
39
49
|
* @param UpdateZonalShiftCommandInput - {@link UpdateZonalShiftCommandInput}
|
|
@@ -60,6 +70,8 @@ export interface UpdateZonalShiftCommandOutput extends ZonalShift, __MetadataBea
|
|
|
60
70
|
* @throws {@link ValidationException} (client fault)
|
|
61
71
|
* <p>The input fails to satisfy the constraints specified by an AWS service.</p>
|
|
62
72
|
*
|
|
73
|
+
* @throws {@link ARCZonalShiftServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from ARCZonalShift service.</p>
|
|
63
75
|
*
|
|
64
76
|
*/
|
|
65
77
|
export declare class UpdateZonalShiftCommand extends $Command<UpdateZonalShiftCommandInput, UpdateZonalShiftCommandOutput, ARCZonalShiftClientResolvedConfig> {
|
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.326.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.326.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.326.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|