@aws-sdk/client-arc-zonal-shift 3.490.0 → 3.495.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-cjs/ARCZonalShift.js +1 -33
- package/dist-cjs/ARCZonalShiftClient.js +1 -43
- package/dist-cjs/commands/CancelZonalShiftCommand.js +1 -28
- package/dist-cjs/commands/CreatePracticeRunConfigurationCommand.js +1 -28
- package/dist-cjs/commands/DeletePracticeRunConfigurationCommand.js +1 -28
- package/dist-cjs/commands/GetManagedResourceCommand.js +1 -28
- package/dist-cjs/commands/ListAutoshiftsCommand.js +1 -28
- package/dist-cjs/commands/ListManagedResourcesCommand.js +1 -28
- package/dist-cjs/commands/ListZonalShiftsCommand.js +1 -28
- package/dist-cjs/commands/StartZonalShiftCommand.js +1 -28
- package/dist-cjs/commands/UpdatePracticeRunConfigurationCommand.js +1 -28
- package/dist-cjs/commands/UpdateZonalAutoshiftConfigurationCommand.js +1 -28
- package/dist-cjs/commands/UpdateZonalShiftCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -14
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +1503 -11
- package/dist-cjs/models/ARCZonalShiftServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -135
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListAutoshiftsPaginator.js +1 -7
- package/dist-cjs/pagination/ListManagedResourcesPaginator.js +1 -7
- package/dist-cjs/pagination/ListZonalShiftsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -7
- package/dist-cjs/protocols/Aws_restJson1.js +1 -955
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,12 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ARCZonalShiftServiceException = exports.__ServiceException = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
|
|
6
|
-
class ARCZonalShiftServiceException extends smithy_client_1.ServiceException {
|
|
7
|
-
constructor(options) {
|
|
8
|
-
super(options);
|
|
9
|
-
Object.setPrototypeOf(this, ARCZonalShiftServiceException.prototype);
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
exports.ARCZonalShiftServiceException = ARCZonalShiftServiceException;
|
|
1
|
+
module.exports = require("../index.js");
|
package/dist-cjs/models/index.js
CHANGED
|
@@ -1,135 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PracticeRunOutcome = exports.ZonalAutoshiftStatus = exports.ControlConditionType = exports.ZonalShiftStatus = exports.ResourceNotFoundException = exports.ConflictException = exports.ConflictExceptionReason = exports.AutoshiftAppliedStatus = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.AutoshiftExecutionStatus = exports.InternalServerException = exports.AppliedStatus = exports.AccessDeniedException = void 0;
|
|
4
|
-
const ARCZonalShiftServiceException_1 = require("./ARCZonalShiftServiceException");
|
|
5
|
-
class AccessDeniedException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
6
|
-
constructor(opts) {
|
|
7
|
-
super({
|
|
8
|
-
name: "AccessDeniedException",
|
|
9
|
-
$fault: "client",
|
|
10
|
-
...opts,
|
|
11
|
-
});
|
|
12
|
-
this.name = "AccessDeniedException";
|
|
13
|
-
this.$fault = "client";
|
|
14
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
-
exports.AppliedStatus = {
|
|
19
|
-
APPLIED: "APPLIED",
|
|
20
|
-
NOT_APPLIED: "NOT_APPLIED",
|
|
21
|
-
};
|
|
22
|
-
class InternalServerException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
23
|
-
constructor(opts) {
|
|
24
|
-
super({
|
|
25
|
-
name: "InternalServerException",
|
|
26
|
-
$fault: "server",
|
|
27
|
-
...opts,
|
|
28
|
-
});
|
|
29
|
-
this.name = "InternalServerException";
|
|
30
|
-
this.$fault = "server";
|
|
31
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
exports.InternalServerException = InternalServerException;
|
|
35
|
-
exports.AutoshiftExecutionStatus = {
|
|
36
|
-
ACTIVE: "ACTIVE",
|
|
37
|
-
COMPLETED: "COMPLETED",
|
|
38
|
-
};
|
|
39
|
-
class ThrottlingException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
40
|
-
constructor(opts) {
|
|
41
|
-
super({
|
|
42
|
-
name: "ThrottlingException",
|
|
43
|
-
$fault: "client",
|
|
44
|
-
...opts,
|
|
45
|
-
});
|
|
46
|
-
this.name = "ThrottlingException";
|
|
47
|
-
this.$fault = "client";
|
|
48
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
exports.ThrottlingException = ThrottlingException;
|
|
52
|
-
exports.ValidationExceptionReason = {
|
|
53
|
-
INVALID_ALARM_CONDITION: "InvalidAlarmCondition",
|
|
54
|
-
INVALID_AZ: "InvalidAz",
|
|
55
|
-
INVALID_CONDITION_TYPE: "InvalidConditionType",
|
|
56
|
-
INVALID_EXPIRES_IN: "InvalidExpiresIn",
|
|
57
|
-
INVALID_PRACTICE_BLOCKER: "InvalidPracticeBlocker",
|
|
58
|
-
INVALID_RESOURCE_IDENTIFIER: "InvalidResourceIdentifier",
|
|
59
|
-
INVALID_STATUS: "InvalidStatus",
|
|
60
|
-
INVALID_TOKEN: "InvalidToken",
|
|
61
|
-
MISSING_VALUE: "MissingValue",
|
|
62
|
-
UNSUPPORTED_AZ: "UnsupportedAz",
|
|
63
|
-
};
|
|
64
|
-
class ValidationException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "ValidationException",
|
|
68
|
-
$fault: "client",
|
|
69
|
-
...opts,
|
|
70
|
-
});
|
|
71
|
-
this.name = "ValidationException";
|
|
72
|
-
this.$fault = "client";
|
|
73
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
74
|
-
this.reason = opts.reason;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
exports.ValidationException = ValidationException;
|
|
78
|
-
exports.AutoshiftAppliedStatus = {
|
|
79
|
-
APPLIED: "APPLIED",
|
|
80
|
-
NOT_APPLIED: "NOT_APPLIED",
|
|
81
|
-
};
|
|
82
|
-
exports.ConflictExceptionReason = {
|
|
83
|
-
AUTOSHIFT_ENABLED: "AutoShiftEnabled",
|
|
84
|
-
PRACTICE_CONFIGURATION_ALREADY_EXISTS: "PracticeConfigurationAlreadyExists",
|
|
85
|
-
PRACTICE_CONFIGURATION_DOES_NOT_EXIST: "PracticeConfigurationDoesNotExist",
|
|
86
|
-
SIMULTANEOUS_ZONAL_SHIFTS_CONFLICT: "SimultaneousZonalShiftsConflict",
|
|
87
|
-
ZONAL_SHIFT_ALREADY_EXISTS: "ZonalShiftAlreadyExists",
|
|
88
|
-
ZONAL_SHIFT_STATUS_NOT_ACTIVE: "ZonalShiftStatusNotActive",
|
|
89
|
-
};
|
|
90
|
-
class ConflictException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
91
|
-
constructor(opts) {
|
|
92
|
-
super({
|
|
93
|
-
name: "ConflictException",
|
|
94
|
-
$fault: "client",
|
|
95
|
-
...opts,
|
|
96
|
-
});
|
|
97
|
-
this.name = "ConflictException";
|
|
98
|
-
this.$fault = "client";
|
|
99
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
100
|
-
this.reason = opts.reason;
|
|
101
|
-
this.zonalShiftId = opts.zonalShiftId;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
exports.ConflictException = ConflictException;
|
|
105
|
-
class ResourceNotFoundException extends ARCZonalShiftServiceException_1.ARCZonalShiftServiceException {
|
|
106
|
-
constructor(opts) {
|
|
107
|
-
super({
|
|
108
|
-
name: "ResourceNotFoundException",
|
|
109
|
-
$fault: "client",
|
|
110
|
-
...opts,
|
|
111
|
-
});
|
|
112
|
-
this.name = "ResourceNotFoundException";
|
|
113
|
-
this.$fault = "client";
|
|
114
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
118
|
-
exports.ZonalShiftStatus = {
|
|
119
|
-
ACTIVE: "ACTIVE",
|
|
120
|
-
CANCELED: "CANCELED",
|
|
121
|
-
EXPIRED: "EXPIRED",
|
|
122
|
-
};
|
|
123
|
-
exports.ControlConditionType = {
|
|
124
|
-
CLOUDWATCH: "CLOUDWATCH",
|
|
125
|
-
};
|
|
126
|
-
exports.ZonalAutoshiftStatus = {
|
|
127
|
-
DISABLED: "DISABLED",
|
|
128
|
-
ENABLED: "ENABLED",
|
|
129
|
-
};
|
|
130
|
-
exports.PracticeRunOutcome = {
|
|
131
|
-
FAILED: "FAILED",
|
|
132
|
-
INTERRUPTED: "INTERRUPTED",
|
|
133
|
-
PENDING: "PENDING",
|
|
134
|
-
SUCCEEDED: "SUCCEEDED",
|
|
135
|
-
};
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListAutoshifts = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ARCZonalShiftClient_1 = require("../ARCZonalShiftClient");
|
|
6
|
-
const ListAutoshiftsCommand_1 = require("../commands/ListAutoshiftsCommand");
|
|
7
|
-
exports.paginateListAutoshifts = (0, core_1.createPaginator)(ARCZonalShiftClient_1.ARCZonalShiftClient, ListAutoshiftsCommand_1.ListAutoshiftsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListManagedResources = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ARCZonalShiftClient_1 = require("../ARCZonalShiftClient");
|
|
6
|
-
const ListManagedResourcesCommand_1 = require("../commands/ListManagedResourcesCommand");
|
|
7
|
-
exports.paginateListManagedResources = (0, core_1.createPaginator)(ARCZonalShiftClient_1.ARCZonalShiftClient, ListManagedResourcesCommand_1.ListManagedResourcesCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListZonalShifts = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ARCZonalShiftClient_1 = require("../ARCZonalShiftClient");
|
|
6
|
-
const ListZonalShiftsCommand_1 = require("../commands/ListZonalShiftsCommand");
|
|
7
|
-
exports.paginateListZonalShifts = (0, core_1.createPaginator)(ARCZonalShiftClient_1.ARCZonalShiftClient, ListZonalShiftsCommand_1.ListZonalShiftsCommand, "nextToken", "nextToken", "maxResults");
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,7 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
|
-
tslib_1.__exportStar(require("./Interfaces"), exports);
|
|
5
|
-
tslib_1.__exportStar(require("./ListAutoshiftsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListManagedResourcesPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListZonalShiftsPaginator"), exports);
|
|
1
|
+
module.exports = require("../index.js");
|