@aws-sdk/client-evs 3.893.0 → 3.895.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/index.js +1260 -10
- package/package.json +7 -7
- package/dist-cjs/Evs.js +0 -37
- package/dist-cjs/EvsClient.js +0 -52
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +0 -43
- package/dist-cjs/commands/AssociateEipToVlanCommand.js +0 -26
- package/dist-cjs/commands/CreateEnvironmentCommand.js +0 -26
- package/dist-cjs/commands/CreateEnvironmentHostCommand.js +0 -26
- package/dist-cjs/commands/DeleteEnvironmentCommand.js +0 -26
- package/dist-cjs/commands/DeleteEnvironmentHostCommand.js +0 -26
- package/dist-cjs/commands/DisassociateEipFromVlanCommand.js +0 -26
- package/dist-cjs/commands/GetEnvironmentCommand.js +0 -26
- package/dist-cjs/commands/ListEnvironmentHostsCommand.js +0 -26
- package/dist-cjs/commands/ListEnvironmentVlansCommand.js +0 -26
- package/dist-cjs/commands/ListEnvironmentsCommand.js +0 -26
- package/dist-cjs/commands/ListTagsForResourceCommand.js +0 -26
- package/dist-cjs/commands/TagResourceCommand.js +0 -26
- package/dist-cjs/commands/UntagResourceCommand.js +0 -26
- package/dist-cjs/commands/index.js +0 -16
- package/dist-cjs/endpoint/EndpointParameters.js +0 -17
- package/dist-cjs/extensionConfiguration.js +0 -2
- package/dist-cjs/models/EvsServiceException.js +0 -12
- package/dist-cjs/models/index.js +0 -4
- package/dist-cjs/models/models_0.js +0 -139
- package/dist-cjs/pagination/Interfaces.js +0 -2
- package/dist-cjs/pagination/ListEnvironmentHostsPaginator.js +0 -7
- package/dist-cjs/pagination/ListEnvironmentVlansPaginator.js +0 -7
- package/dist-cjs/pagination/ListEnvironmentsPaginator.js +0 -7
- package/dist-cjs/pagination/index.js +0 -7
- package/dist-cjs/protocols/Aws_json1_0.js +0 -619
- package/dist-cjs/runtimeExtensions.js +0 -13
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TooManyTagsException = exports.TagPolicyException = exports.ServiceQuotaExceededException = exports.HostState = exports.EnvironmentState = exports.CheckType = exports.CheckResult = exports.VcfVersion = exports._InstanceType = exports.ValidationException = exports.ValidationExceptionReason = exports.ThrottlingException = exports.ResourceNotFoundException = exports.VlanState = void 0;
|
|
4
|
-
const EvsServiceException_1 = require("./EvsServiceException");
|
|
5
|
-
exports.VlanState = {
|
|
6
|
-
CREATED: "CREATED",
|
|
7
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
8
|
-
CREATING: "CREATING",
|
|
9
|
-
DELETED: "DELETED",
|
|
10
|
-
DELETING: "DELETING",
|
|
11
|
-
};
|
|
12
|
-
class ResourceNotFoundException extends EvsServiceException_1.EvsServiceException {
|
|
13
|
-
name = "ResourceNotFoundException";
|
|
14
|
-
$fault = "client";
|
|
15
|
-
resourceId;
|
|
16
|
-
resourceType;
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "ResourceNotFoundException",
|
|
20
|
-
$fault: "client",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
24
|
-
this.resourceId = opts.resourceId;
|
|
25
|
-
this.resourceType = opts.resourceType;
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
29
|
-
class ThrottlingException extends EvsServiceException_1.EvsServiceException {
|
|
30
|
-
name = "ThrottlingException";
|
|
31
|
-
$fault = "client";
|
|
32
|
-
$retryable = {};
|
|
33
|
-
retryAfterSeconds;
|
|
34
|
-
constructor(opts) {
|
|
35
|
-
super({
|
|
36
|
-
name: "ThrottlingException",
|
|
37
|
-
$fault: "client",
|
|
38
|
-
...opts,
|
|
39
|
-
});
|
|
40
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
41
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
42
|
-
}
|
|
43
|
-
}
|
|
44
|
-
exports.ThrottlingException = ThrottlingException;
|
|
45
|
-
exports.ValidationExceptionReason = {
|
|
46
|
-
CANNOT_PARSE: "cannotParse",
|
|
47
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
48
|
-
OTHER: "other",
|
|
49
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
50
|
-
};
|
|
51
|
-
class ValidationException extends EvsServiceException_1.EvsServiceException {
|
|
52
|
-
name = "ValidationException";
|
|
53
|
-
$fault = "client";
|
|
54
|
-
reason;
|
|
55
|
-
fieldList;
|
|
56
|
-
constructor(opts) {
|
|
57
|
-
super({
|
|
58
|
-
name: "ValidationException",
|
|
59
|
-
$fault: "client",
|
|
60
|
-
...opts,
|
|
61
|
-
});
|
|
62
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
63
|
-
this.reason = opts.reason;
|
|
64
|
-
this.fieldList = opts.fieldList;
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
|
-
exports.ValidationException = ValidationException;
|
|
68
|
-
exports._InstanceType = {
|
|
69
|
-
I4I_METAL: "i4i.metal",
|
|
70
|
-
};
|
|
71
|
-
exports.VcfVersion = {
|
|
72
|
-
VCF_5_2_1: "VCF-5.2.1",
|
|
73
|
-
};
|
|
74
|
-
exports.CheckResult = {
|
|
75
|
-
FAILED: "FAILED",
|
|
76
|
-
PASSED: "PASSED",
|
|
77
|
-
UNKNOWN: "UNKNOWN",
|
|
78
|
-
};
|
|
79
|
-
exports.CheckType = {
|
|
80
|
-
HOST_COUNT: "HOST_COUNT",
|
|
81
|
-
KEY_COVERAGE: "KEY_COVERAGE",
|
|
82
|
-
KEY_REUSE: "KEY_REUSE",
|
|
83
|
-
REACHABILITY: "REACHABILITY",
|
|
84
|
-
};
|
|
85
|
-
exports.EnvironmentState = {
|
|
86
|
-
CREATED: "CREATED",
|
|
87
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
88
|
-
CREATING: "CREATING",
|
|
89
|
-
DELETED: "DELETED",
|
|
90
|
-
DELETING: "DELETING",
|
|
91
|
-
};
|
|
92
|
-
exports.HostState = {
|
|
93
|
-
CREATED: "CREATED",
|
|
94
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
95
|
-
CREATING: "CREATING",
|
|
96
|
-
DELETED: "DELETED",
|
|
97
|
-
DELETING: "DELETING",
|
|
98
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
99
|
-
UPDATING: "UPDATING",
|
|
100
|
-
};
|
|
101
|
-
class ServiceQuotaExceededException extends EvsServiceException_1.EvsServiceException {
|
|
102
|
-
name = "ServiceQuotaExceededException";
|
|
103
|
-
$fault = "client";
|
|
104
|
-
constructor(opts) {
|
|
105
|
-
super({
|
|
106
|
-
name: "ServiceQuotaExceededException",
|
|
107
|
-
$fault: "client",
|
|
108
|
-
...opts,
|
|
109
|
-
});
|
|
110
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
114
|
-
class TagPolicyException extends EvsServiceException_1.EvsServiceException {
|
|
115
|
-
name = "TagPolicyException";
|
|
116
|
-
$fault = "client";
|
|
117
|
-
constructor(opts) {
|
|
118
|
-
super({
|
|
119
|
-
name: "TagPolicyException",
|
|
120
|
-
$fault: "client",
|
|
121
|
-
...opts,
|
|
122
|
-
});
|
|
123
|
-
Object.setPrototypeOf(this, TagPolicyException.prototype);
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
exports.TagPolicyException = TagPolicyException;
|
|
127
|
-
class TooManyTagsException extends EvsServiceException_1.EvsServiceException {
|
|
128
|
-
name = "TooManyTagsException";
|
|
129
|
-
$fault = "client";
|
|
130
|
-
constructor(opts) {
|
|
131
|
-
super({
|
|
132
|
-
name: "TooManyTagsException",
|
|
133
|
-
$fault: "client",
|
|
134
|
-
...opts,
|
|
135
|
-
});
|
|
136
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
137
|
-
}
|
|
138
|
-
}
|
|
139
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListEnvironmentHosts = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListEnvironmentHostsCommand_1 = require("../commands/ListEnvironmentHostsCommand");
|
|
6
|
-
const EvsClient_1 = require("../EvsClient");
|
|
7
|
-
exports.paginateListEnvironmentHosts = (0, core_1.createPaginator)(EvsClient_1.EvsClient, ListEnvironmentHostsCommand_1.ListEnvironmentHostsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListEnvironmentVlans = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListEnvironmentVlansCommand_1 = require("../commands/ListEnvironmentVlansCommand");
|
|
6
|
-
const EvsClient_1 = require("../EvsClient");
|
|
7
|
-
exports.paginateListEnvironmentVlans = (0, core_1.createPaginator)(EvsClient_1.EvsClient, ListEnvironmentVlansCommand_1.ListEnvironmentVlansCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.paginateListEnvironments = void 0;
|
|
4
|
-
const core_1 = require("@smithy/core");
|
|
5
|
-
const ListEnvironmentsCommand_1 = require("../commands/ListEnvironmentsCommand");
|
|
6
|
-
const EvsClient_1 = require("../EvsClient");
|
|
7
|
-
exports.paginateListEnvironments = (0, core_1.createPaginator)(EvsClient_1.EvsClient, ListEnvironmentsCommand_1.ListEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
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("./ListEnvironmentHostsPaginator"), exports);
|
|
6
|
-
tslib_1.__exportStar(require("./ListEnvironmentVlansPaginator"), exports);
|
|
7
|
-
tslib_1.__exportStar(require("./ListEnvironmentsPaginator"), exports);
|