@aws-sdk/client-arc-zonal-shift 3.325.0 → 3.327.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.
@@ -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.325.0",
4
+ "version": "3.327.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.325.0",
24
+ "@aws-sdk/client-sts": "3.327.0",
25
25
  "@aws-sdk/config-resolver": "3.310.0",
26
- "@aws-sdk/credential-provider-node": "3.325.0",
26
+ "@aws-sdk/credential-provider-node": "3.327.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",
@@ -32,11 +32,11 @@
32
32
  "@aws-sdk/middleware-host-header": "3.325.0",
33
33
  "@aws-sdk/middleware-logger": "3.325.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.325.0",
35
- "@aws-sdk/middleware-retry": "3.325.0",
35
+ "@aws-sdk/middleware-retry": "3.327.0",
36
36
  "@aws-sdk/middleware-serde": "3.325.0",
37
37
  "@aws-sdk/middleware-signing": "3.325.0",
38
38
  "@aws-sdk/middleware-stack": "3.325.0",
39
- "@aws-sdk/middleware-user-agent": "3.325.0",
39
+ "@aws-sdk/middleware-user-agent": "3.327.0",
40
40
  "@aws-sdk/node-config-provider": "3.310.0",
41
41
  "@aws-sdk/node-http-handler": "3.321.1",
42
42
  "@aws-sdk/protocol-http": "3.310.0",
@@ -48,8 +48,8 @@
48
48
  "@aws-sdk/util-body-length-node": "3.310.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.325.0",
50
50
  "@aws-sdk/util-defaults-mode-node": "3.325.0",
51
- "@aws-sdk/util-endpoints": "3.319.0",
52
- "@aws-sdk/util-retry": "3.310.0",
51
+ "@aws-sdk/util-endpoints": "3.327.0",
52
+ "@aws-sdk/util-retry": "3.327.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.310.0",
54
54
  "@aws-sdk/util-user-agent-node": "3.310.0",
55
55
  "@aws-sdk/util-utf8": "3.310.0",