@aws-sdk/client-evs 3.934.0 → 3.935.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 +47 -46
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +46 -0
- package/dist-es/models/errors.js +84 -0
- package/dist-es/models/models_0.js +1 -130
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +110 -0
- package/dist-types/models/errors.d.ts +102 -0
- package/dist-types/models/models_0.d.ts +1 -210
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +56 -0
- package/dist-types/ts3.4/models/errors.d.ts +50 -0
- package/dist-types/ts3.4/models/models_0.d.ts +9 -104
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -117,13 +117,6 @@ let EvsServiceException$1 = class EvsServiceException extends smithyClient.Servi
|
|
|
117
117
|
}
|
|
118
118
|
};
|
|
119
119
|
|
|
120
|
-
const VlanState = {
|
|
121
|
-
CREATED: "CREATED",
|
|
122
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
123
|
-
CREATING: "CREATING",
|
|
124
|
-
DELETED: "DELETED",
|
|
125
|
-
DELETING: "DELETING",
|
|
126
|
-
};
|
|
127
120
|
let ResourceNotFoundException$1 = class ResourceNotFoundException extends EvsServiceException$1 {
|
|
128
121
|
name = "ResourceNotFoundException";
|
|
129
122
|
$fault = "client";
|
|
@@ -155,12 +148,6 @@ let ThrottlingException$1 = class ThrottlingException extends EvsServiceExceptio
|
|
|
155
148
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
156
149
|
}
|
|
157
150
|
};
|
|
158
|
-
const ValidationExceptionReason = {
|
|
159
|
-
CANNOT_PARSE: "cannotParse",
|
|
160
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
161
|
-
OTHER: "other",
|
|
162
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
163
|
-
};
|
|
164
151
|
let ValidationException$1 = class ValidationException extends EvsServiceException$1 {
|
|
165
152
|
name = "ValidationException";
|
|
166
153
|
$fault = "client";
|
|
@@ -177,39 +164,6 @@ let ValidationException$1 = class ValidationException extends EvsServiceExceptio
|
|
|
177
164
|
this.fieldList = opts.fieldList;
|
|
178
165
|
}
|
|
179
166
|
};
|
|
180
|
-
const _InstanceType = {
|
|
181
|
-
I4I_METAL: "i4i.metal",
|
|
182
|
-
};
|
|
183
|
-
const VcfVersion = {
|
|
184
|
-
VCF_5_2_1: "VCF-5.2.1",
|
|
185
|
-
};
|
|
186
|
-
const CheckResult = {
|
|
187
|
-
FAILED: "FAILED",
|
|
188
|
-
PASSED: "PASSED",
|
|
189
|
-
UNKNOWN: "UNKNOWN",
|
|
190
|
-
};
|
|
191
|
-
const CheckType = {
|
|
192
|
-
HOST_COUNT: "HOST_COUNT",
|
|
193
|
-
KEY_COVERAGE: "KEY_COVERAGE",
|
|
194
|
-
KEY_REUSE: "KEY_REUSE",
|
|
195
|
-
REACHABILITY: "REACHABILITY",
|
|
196
|
-
};
|
|
197
|
-
const EnvironmentState = {
|
|
198
|
-
CREATED: "CREATED",
|
|
199
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
200
|
-
CREATING: "CREATING",
|
|
201
|
-
DELETED: "DELETED",
|
|
202
|
-
DELETING: "DELETING",
|
|
203
|
-
};
|
|
204
|
-
const HostState = {
|
|
205
|
-
CREATED: "CREATED",
|
|
206
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
207
|
-
CREATING: "CREATING",
|
|
208
|
-
DELETED: "DELETED",
|
|
209
|
-
DELETING: "DELETING",
|
|
210
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
211
|
-
UPDATING: "UPDATING",
|
|
212
|
-
};
|
|
213
167
|
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends EvsServiceException$1 {
|
|
214
168
|
name = "ServiceQuotaExceededException";
|
|
215
169
|
$fault = "client";
|
|
@@ -1052,6 +1006,53 @@ const paginateListEnvironmentVlans = core.createPaginator(EvsClient, ListEnviron
|
|
|
1052
1006
|
|
|
1053
1007
|
const paginateListEnvironments = core.createPaginator(EvsClient, ListEnvironmentsCommand, "nextToken", "nextToken", "maxResults");
|
|
1054
1008
|
|
|
1009
|
+
const VlanState = {
|
|
1010
|
+
CREATED: "CREATED",
|
|
1011
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
1012
|
+
CREATING: "CREATING",
|
|
1013
|
+
DELETED: "DELETED",
|
|
1014
|
+
DELETING: "DELETING",
|
|
1015
|
+
};
|
|
1016
|
+
const ValidationExceptionReason = {
|
|
1017
|
+
CANNOT_PARSE: "cannotParse",
|
|
1018
|
+
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
1019
|
+
OTHER: "other",
|
|
1020
|
+
UNKNOWN_OPERATION: "unknownOperation",
|
|
1021
|
+
};
|
|
1022
|
+
const _InstanceType = {
|
|
1023
|
+
I4I_METAL: "i4i.metal",
|
|
1024
|
+
};
|
|
1025
|
+
const VcfVersion = {
|
|
1026
|
+
VCF_5_2_1: "VCF-5.2.1",
|
|
1027
|
+
};
|
|
1028
|
+
const CheckResult = {
|
|
1029
|
+
FAILED: "FAILED",
|
|
1030
|
+
PASSED: "PASSED",
|
|
1031
|
+
UNKNOWN: "UNKNOWN",
|
|
1032
|
+
};
|
|
1033
|
+
const CheckType = {
|
|
1034
|
+
HOST_COUNT: "HOST_COUNT",
|
|
1035
|
+
KEY_COVERAGE: "KEY_COVERAGE",
|
|
1036
|
+
KEY_REUSE: "KEY_REUSE",
|
|
1037
|
+
REACHABILITY: "REACHABILITY",
|
|
1038
|
+
};
|
|
1039
|
+
const EnvironmentState = {
|
|
1040
|
+
CREATED: "CREATED",
|
|
1041
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
1042
|
+
CREATING: "CREATING",
|
|
1043
|
+
DELETED: "DELETED",
|
|
1044
|
+
DELETING: "DELETING",
|
|
1045
|
+
};
|
|
1046
|
+
const HostState = {
|
|
1047
|
+
CREATED: "CREATED",
|
|
1048
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
1049
|
+
CREATING: "CREATING",
|
|
1050
|
+
DELETED: "DELETED",
|
|
1051
|
+
DELETING: "DELETING",
|
|
1052
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
1053
|
+
UPDATING: "UPDATING",
|
|
1054
|
+
};
|
|
1055
|
+
|
|
1055
1056
|
Object.defineProperty(exports, "$Command", {
|
|
1056
1057
|
enumerable: true,
|
|
1057
1058
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./EvsClient";
|
|
|
2
2
|
export * from "./Evs";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { EvsServiceException } from "./models/EvsServiceException";
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
export const VlanState = {
|
|
2
|
+
CREATED: "CREATED",
|
|
3
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
4
|
+
CREATING: "CREATING",
|
|
5
|
+
DELETED: "DELETED",
|
|
6
|
+
DELETING: "DELETING",
|
|
7
|
+
};
|
|
8
|
+
export const ValidationExceptionReason = {
|
|
9
|
+
CANNOT_PARSE: "cannotParse",
|
|
10
|
+
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
11
|
+
OTHER: "other",
|
|
12
|
+
UNKNOWN_OPERATION: "unknownOperation",
|
|
13
|
+
};
|
|
14
|
+
export const _InstanceType = {
|
|
15
|
+
I4I_METAL: "i4i.metal",
|
|
16
|
+
};
|
|
17
|
+
export const VcfVersion = {
|
|
18
|
+
VCF_5_2_1: "VCF-5.2.1",
|
|
19
|
+
};
|
|
20
|
+
export const CheckResult = {
|
|
21
|
+
FAILED: "FAILED",
|
|
22
|
+
PASSED: "PASSED",
|
|
23
|
+
UNKNOWN: "UNKNOWN",
|
|
24
|
+
};
|
|
25
|
+
export const CheckType = {
|
|
26
|
+
HOST_COUNT: "HOST_COUNT",
|
|
27
|
+
KEY_COVERAGE: "KEY_COVERAGE",
|
|
28
|
+
KEY_REUSE: "KEY_REUSE",
|
|
29
|
+
REACHABILITY: "REACHABILITY",
|
|
30
|
+
};
|
|
31
|
+
export const EnvironmentState = {
|
|
32
|
+
CREATED: "CREATED",
|
|
33
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
34
|
+
CREATING: "CREATING",
|
|
35
|
+
DELETED: "DELETED",
|
|
36
|
+
DELETING: "DELETING",
|
|
37
|
+
};
|
|
38
|
+
export const HostState = {
|
|
39
|
+
CREATED: "CREATED",
|
|
40
|
+
CREATE_FAILED: "CREATE_FAILED",
|
|
41
|
+
CREATING: "CREATING",
|
|
42
|
+
DELETED: "DELETED",
|
|
43
|
+
DELETING: "DELETING",
|
|
44
|
+
UPDATE_FAILED: "UPDATE_FAILED",
|
|
45
|
+
UPDATING: "UPDATING",
|
|
46
|
+
};
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import { EvsServiceException as __BaseException } from "./EvsServiceException";
|
|
2
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
3
|
+
name = "ResourceNotFoundException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
resourceId;
|
|
6
|
+
resourceType;
|
|
7
|
+
constructor(opts) {
|
|
8
|
+
super({
|
|
9
|
+
name: "ResourceNotFoundException",
|
|
10
|
+
$fault: "client",
|
|
11
|
+
...opts,
|
|
12
|
+
});
|
|
13
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
14
|
+
this.resourceId = opts.resourceId;
|
|
15
|
+
this.resourceType = opts.resourceType;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
export class ThrottlingException extends __BaseException {
|
|
19
|
+
name = "ThrottlingException";
|
|
20
|
+
$fault = "client";
|
|
21
|
+
$retryable = {};
|
|
22
|
+
retryAfterSeconds;
|
|
23
|
+
constructor(opts) {
|
|
24
|
+
super({
|
|
25
|
+
name: "ThrottlingException",
|
|
26
|
+
$fault: "client",
|
|
27
|
+
...opts,
|
|
28
|
+
});
|
|
29
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
30
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
export class ValidationException extends __BaseException {
|
|
34
|
+
name = "ValidationException";
|
|
35
|
+
$fault = "client";
|
|
36
|
+
reason;
|
|
37
|
+
fieldList;
|
|
38
|
+
constructor(opts) {
|
|
39
|
+
super({
|
|
40
|
+
name: "ValidationException",
|
|
41
|
+
$fault: "client",
|
|
42
|
+
...opts,
|
|
43
|
+
});
|
|
44
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
45
|
+
this.reason = opts.reason;
|
|
46
|
+
this.fieldList = opts.fieldList;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
50
|
+
name = "ServiceQuotaExceededException";
|
|
51
|
+
$fault = "client";
|
|
52
|
+
constructor(opts) {
|
|
53
|
+
super({
|
|
54
|
+
name: "ServiceQuotaExceededException",
|
|
55
|
+
$fault: "client",
|
|
56
|
+
...opts,
|
|
57
|
+
});
|
|
58
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
export class TagPolicyException extends __BaseException {
|
|
62
|
+
name = "TagPolicyException";
|
|
63
|
+
$fault = "client";
|
|
64
|
+
constructor(opts) {
|
|
65
|
+
super({
|
|
66
|
+
name: "TagPolicyException",
|
|
67
|
+
$fault: "client",
|
|
68
|
+
...opts,
|
|
69
|
+
});
|
|
70
|
+
Object.setPrototypeOf(this, TagPolicyException.prototype);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
export class TooManyTagsException extends __BaseException {
|
|
74
|
+
name = "TooManyTagsException";
|
|
75
|
+
$fault = "client";
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "TooManyTagsException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -1,130 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export const VlanState = {
|
|
3
|
-
CREATED: "CREATED",
|
|
4
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
5
|
-
CREATING: "CREATING",
|
|
6
|
-
DELETED: "DELETED",
|
|
7
|
-
DELETING: "DELETING",
|
|
8
|
-
};
|
|
9
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
10
|
-
name = "ResourceNotFoundException";
|
|
11
|
-
$fault = "client";
|
|
12
|
-
resourceId;
|
|
13
|
-
resourceType;
|
|
14
|
-
constructor(opts) {
|
|
15
|
-
super({
|
|
16
|
-
name: "ResourceNotFoundException",
|
|
17
|
-
$fault: "client",
|
|
18
|
-
...opts,
|
|
19
|
-
});
|
|
20
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
21
|
-
this.resourceId = opts.resourceId;
|
|
22
|
-
this.resourceType = opts.resourceType;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
export class ThrottlingException extends __BaseException {
|
|
26
|
-
name = "ThrottlingException";
|
|
27
|
-
$fault = "client";
|
|
28
|
-
$retryable = {};
|
|
29
|
-
retryAfterSeconds;
|
|
30
|
-
constructor(opts) {
|
|
31
|
-
super({
|
|
32
|
-
name: "ThrottlingException",
|
|
33
|
-
$fault: "client",
|
|
34
|
-
...opts,
|
|
35
|
-
});
|
|
36
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
37
|
-
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
export const ValidationExceptionReason = {
|
|
41
|
-
CANNOT_PARSE: "cannotParse",
|
|
42
|
-
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
43
|
-
OTHER: "other",
|
|
44
|
-
UNKNOWN_OPERATION: "unknownOperation",
|
|
45
|
-
};
|
|
46
|
-
export class ValidationException extends __BaseException {
|
|
47
|
-
name = "ValidationException";
|
|
48
|
-
$fault = "client";
|
|
49
|
-
reason;
|
|
50
|
-
fieldList;
|
|
51
|
-
constructor(opts) {
|
|
52
|
-
super({
|
|
53
|
-
name: "ValidationException",
|
|
54
|
-
$fault: "client",
|
|
55
|
-
...opts,
|
|
56
|
-
});
|
|
57
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
58
|
-
this.reason = opts.reason;
|
|
59
|
-
this.fieldList = opts.fieldList;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export const _InstanceType = {
|
|
63
|
-
I4I_METAL: "i4i.metal",
|
|
64
|
-
};
|
|
65
|
-
export const VcfVersion = {
|
|
66
|
-
VCF_5_2_1: "VCF-5.2.1",
|
|
67
|
-
};
|
|
68
|
-
export const CheckResult = {
|
|
69
|
-
FAILED: "FAILED",
|
|
70
|
-
PASSED: "PASSED",
|
|
71
|
-
UNKNOWN: "UNKNOWN",
|
|
72
|
-
};
|
|
73
|
-
export const CheckType = {
|
|
74
|
-
HOST_COUNT: "HOST_COUNT",
|
|
75
|
-
KEY_COVERAGE: "KEY_COVERAGE",
|
|
76
|
-
KEY_REUSE: "KEY_REUSE",
|
|
77
|
-
REACHABILITY: "REACHABILITY",
|
|
78
|
-
};
|
|
79
|
-
export const EnvironmentState = {
|
|
80
|
-
CREATED: "CREATED",
|
|
81
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
82
|
-
CREATING: "CREATING",
|
|
83
|
-
DELETED: "DELETED",
|
|
84
|
-
DELETING: "DELETING",
|
|
85
|
-
};
|
|
86
|
-
export const HostState = {
|
|
87
|
-
CREATED: "CREATED",
|
|
88
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
89
|
-
CREATING: "CREATING",
|
|
90
|
-
DELETED: "DELETED",
|
|
91
|
-
DELETING: "DELETING",
|
|
92
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
93
|
-
UPDATING: "UPDATING",
|
|
94
|
-
};
|
|
95
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
96
|
-
name = "ServiceQuotaExceededException";
|
|
97
|
-
$fault = "client";
|
|
98
|
-
constructor(opts) {
|
|
99
|
-
super({
|
|
100
|
-
name: "ServiceQuotaExceededException",
|
|
101
|
-
$fault: "client",
|
|
102
|
-
...opts,
|
|
103
|
-
});
|
|
104
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
export class TagPolicyException extends __BaseException {
|
|
108
|
-
name = "TagPolicyException";
|
|
109
|
-
$fault = "client";
|
|
110
|
-
constructor(opts) {
|
|
111
|
-
super({
|
|
112
|
-
name: "TagPolicyException",
|
|
113
|
-
$fault: "client",
|
|
114
|
-
...opts,
|
|
115
|
-
});
|
|
116
|
-
Object.setPrototypeOf(this, TagPolicyException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
export class TooManyTagsException extends __BaseException {
|
|
120
|
-
name = "TooManyTagsException";
|
|
121
|
-
$fault = "client";
|
|
122
|
-
constructor(opts) {
|
|
123
|
-
super({
|
|
124
|
-
name: "TooManyTagsException",
|
|
125
|
-
$fault: "client",
|
|
126
|
-
...opts,
|
|
127
|
-
});
|
|
128
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
1
|
+
export {};
|
|
@@ -172,8 +172,8 @@ const _vT = "vTep";
|
|
|
172
172
|
const _vV = "vcfVersion";
|
|
173
173
|
const n0 = "com.amazonaws.evs";
|
|
174
174
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
175
|
+
import { ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, TagPolicyException as __TagPolicyException, ThrottlingException as __ThrottlingException, TooManyTagsException as __TooManyTagsException, ValidationException as __ValidationException, } from "../models/errors";
|
|
175
176
|
import { EvsServiceException as __EvsServiceException } from "../models/EvsServiceException";
|
|
176
|
-
import { ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, TagPolicyException as __TagPolicyException, ThrottlingException as __ThrottlingException, TooManyTagsException as __TooManyTagsException, ValidationException as __ValidationException, } from "../models/index";
|
|
177
177
|
export var AssociateEipToVlanRequest = [
|
|
178
178
|
3,
|
|
179
179
|
n0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export type { RuntimeExtension } from "./runtimeExtensions";
|
|
|
10
10
|
export type { EvsExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
12
|
export * from "./pagination";
|
|
13
|
-
export * from "./models";
|
|
13
|
+
export * from "./models/enums";
|
|
14
|
+
export * from "./models/errors";
|
|
15
|
+
export type * from "./models/models_0";
|
|
14
16
|
export { EvsServiceException } from "./models/EvsServiceException";
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const VlanState: {
|
|
6
|
+
readonly CREATED: "CREATED";
|
|
7
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
8
|
+
readonly CREATING: "CREATING";
|
|
9
|
+
readonly DELETED: "DELETED";
|
|
10
|
+
readonly DELETING: "DELETING";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type VlanState = (typeof VlanState)[keyof typeof VlanState];
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
* @enum
|
|
19
|
+
*/
|
|
20
|
+
export declare const ValidationExceptionReason: {
|
|
21
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
22
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
23
|
+
readonly OTHER: "other";
|
|
24
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* @enum
|
|
33
|
+
*/
|
|
34
|
+
export declare const _InstanceType: {
|
|
35
|
+
readonly I4I_METAL: "i4i.metal";
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
41
|
+
/**
|
|
42
|
+
* @public
|
|
43
|
+
* @enum
|
|
44
|
+
*/
|
|
45
|
+
export declare const VcfVersion: {
|
|
46
|
+
readonly VCF_5_2_1: "VCF-5.2.1";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
export type VcfVersion = (typeof VcfVersion)[keyof typeof VcfVersion];
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
* @enum
|
|
55
|
+
*/
|
|
56
|
+
export declare const CheckResult: {
|
|
57
|
+
readonly FAILED: "FAILED";
|
|
58
|
+
readonly PASSED: "PASSED";
|
|
59
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
60
|
+
};
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export type CheckResult = (typeof CheckResult)[keyof typeof CheckResult];
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
* @enum
|
|
68
|
+
*/
|
|
69
|
+
export declare const CheckType: {
|
|
70
|
+
readonly HOST_COUNT: "HOST_COUNT";
|
|
71
|
+
readonly KEY_COVERAGE: "KEY_COVERAGE";
|
|
72
|
+
readonly KEY_REUSE: "KEY_REUSE";
|
|
73
|
+
readonly REACHABILITY: "REACHABILITY";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type CheckType = (typeof CheckType)[keyof typeof CheckType];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* @enum
|
|
82
|
+
*/
|
|
83
|
+
export declare const EnvironmentState: {
|
|
84
|
+
readonly CREATED: "CREATED";
|
|
85
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
86
|
+
readonly CREATING: "CREATING";
|
|
87
|
+
readonly DELETED: "DELETED";
|
|
88
|
+
readonly DELETING: "DELETING";
|
|
89
|
+
};
|
|
90
|
+
/**
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export type EnvironmentState = (typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
94
|
+
/**
|
|
95
|
+
* @public
|
|
96
|
+
* @enum
|
|
97
|
+
*/
|
|
98
|
+
export declare const HostState: {
|
|
99
|
+
readonly CREATED: "CREATED";
|
|
100
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
101
|
+
readonly CREATING: "CREATING";
|
|
102
|
+
readonly DELETED: "DELETED";
|
|
103
|
+
readonly DELETING: "DELETING";
|
|
104
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
105
|
+
readonly UPDATING: "UPDATING";
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
export type HostState = (typeof HostState)[keyof typeof HostState];
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { EvsServiceException as __BaseException } from "./EvsServiceException";
|
|
4
|
+
import { ValidationExceptionField } from "./models_0";
|
|
5
|
+
/**
|
|
6
|
+
* <p>A service resource associated with the request could not be found. The resource might not be specified correctly, or it may have a <code>state</code> of <code>DELETED</code>.</p>
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
10
|
+
readonly name: "ResourceNotFoundException";
|
|
11
|
+
readonly $fault: "client";
|
|
12
|
+
/**
|
|
13
|
+
* <p>The ID of the resource that could not be found.</p>
|
|
14
|
+
* @public
|
|
15
|
+
*/
|
|
16
|
+
resourceId: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* <p>The type of the resource that is associated with the error.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
resourceType: string | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>The operation couldn't be performed because the service is throttling requests. This exception is thrown when there are too many requests accepted concurrently from the service endpoint.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ThrottlingException extends __BaseException {
|
|
32
|
+
readonly name: "ThrottlingException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
$retryable: {};
|
|
35
|
+
/**
|
|
36
|
+
* <p>The seconds to wait to retry.</p>
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
retryAfterSeconds?: number | undefined;
|
|
40
|
+
/**
|
|
41
|
+
* @internal
|
|
42
|
+
*/
|
|
43
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* <p>The input fails to satisfy the specified constraints. You will see this exception if invalid inputs are provided for any of the Amazon EVS environment operations, or if a list operation is performed on an environment resource that is still initializing.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
export declare class ValidationException extends __BaseException {
|
|
50
|
+
readonly name: "ValidationException";
|
|
51
|
+
readonly $fault: "client";
|
|
52
|
+
/**
|
|
53
|
+
* <p>The reason for the exception.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
reason: ValidationExceptionReason | undefined;
|
|
57
|
+
/**
|
|
58
|
+
* <p>A list of fields that didn't validate.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
65
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
66
|
+
}
|
|
67
|
+
/**
|
|
68
|
+
* <p>The number of one or more Amazon EVS resources exceeds the maximum allowed. For a list of Amazon EVS quotas, see <a href="https://docs.aws.amazon.com/evs/latest/userguide/service-quotas-evs.html">Amazon EVS endpoints and quotas</a> in the <i>Amazon EVS User Guide</i>. Delete some resources or request an increase in your service quota. To request an increase, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html">Amazon Web Services Service Quotas</a> in the <i>Amazon Web Services General Reference Guide</i>. </p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
72
|
+
readonly name: "ServiceQuotaExceededException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* <note> <p> <code>TagPolicyException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ValidationException.html"> <code>ValidationException</code> </a> instead.</p> </note> <p>The request doesn't comply with IAM tag policy. Correct your request and then retry it.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class TagPolicyException extends __BaseException {
|
|
84
|
+
readonly name: "TagPolicyException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* <note> <p> <code>TooManyTagsException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ServiceQuotaExceededException.html"> <code>ServiceQuotaExceededException</code> </a> instead.</p> </note> <p>A service resource associated with the request has more than 200 tags.</p>
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
96
|
+
readonly name: "TooManyTagsException";
|
|
97
|
+
readonly $fault: "client";
|
|
98
|
+
/**
|
|
99
|
+
* @internal
|
|
100
|
+
*/
|
|
101
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
102
|
+
}
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { EvsServiceException as __BaseException } from "./EvsServiceException";
|
|
1
|
+
import { _InstanceType, CheckResult, CheckType, EnvironmentState, HostState, VcfVersion, VlanState } from "./enums";
|
|
3
2
|
/**
|
|
4
3
|
* @public
|
|
5
4
|
*/
|
|
@@ -46,21 +45,6 @@ export interface EipAssociation {
|
|
|
46
45
|
*/
|
|
47
46
|
ipAddress?: string | undefined;
|
|
48
47
|
}
|
|
49
|
-
/**
|
|
50
|
-
* @public
|
|
51
|
-
* @enum
|
|
52
|
-
*/
|
|
53
|
-
export declare const VlanState: {
|
|
54
|
-
readonly CREATED: "CREATED";
|
|
55
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
56
|
-
readonly CREATING: "CREATING";
|
|
57
|
-
readonly DELETED: "DELETED";
|
|
58
|
-
readonly DELETING: "DELETING";
|
|
59
|
-
};
|
|
60
|
-
/**
|
|
61
|
-
* @public
|
|
62
|
-
*/
|
|
63
|
-
export type VlanState = (typeof VlanState)[keyof typeof VlanState];
|
|
64
48
|
/**
|
|
65
49
|
* <p>The VLANs that Amazon EVS creates during environment creation.</p>
|
|
66
50
|
* @public
|
|
@@ -137,46 +121,6 @@ export interface AssociateEipToVlanResponse {
|
|
|
137
121
|
*/
|
|
138
122
|
vlan?: Vlan | undefined;
|
|
139
123
|
}
|
|
140
|
-
/**
|
|
141
|
-
* <p>A service resource associated with the request could not be found. The resource might not be specified correctly, or it may have a <code>state</code> of <code>DELETED</code>.</p>
|
|
142
|
-
* @public
|
|
143
|
-
*/
|
|
144
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
145
|
-
readonly name: "ResourceNotFoundException";
|
|
146
|
-
readonly $fault: "client";
|
|
147
|
-
/**
|
|
148
|
-
* <p>The ID of the resource that could not be found.</p>
|
|
149
|
-
* @public
|
|
150
|
-
*/
|
|
151
|
-
resourceId: string | undefined;
|
|
152
|
-
/**
|
|
153
|
-
* <p>The type of the resource that is associated with the error.</p>
|
|
154
|
-
* @public
|
|
155
|
-
*/
|
|
156
|
-
resourceType: string | undefined;
|
|
157
|
-
/**
|
|
158
|
-
* @internal
|
|
159
|
-
*/
|
|
160
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
161
|
-
}
|
|
162
|
-
/**
|
|
163
|
-
* <p>The operation couldn't be performed because the service is throttling requests. This exception is thrown when there are too many requests accepted concurrently from the service endpoint.</p>
|
|
164
|
-
* @public
|
|
165
|
-
*/
|
|
166
|
-
export declare class ThrottlingException extends __BaseException {
|
|
167
|
-
readonly name: "ThrottlingException";
|
|
168
|
-
readonly $fault: "client";
|
|
169
|
-
$retryable: {};
|
|
170
|
-
/**
|
|
171
|
-
* <p>The seconds to wait to retry.</p>
|
|
172
|
-
* @public
|
|
173
|
-
*/
|
|
174
|
-
retryAfterSeconds?: number | undefined;
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
179
|
-
}
|
|
180
124
|
/**
|
|
181
125
|
* <p>Stores information about a field passed inside a request that resulted in an exception.</p>
|
|
182
126
|
* @public
|
|
@@ -193,42 +137,6 @@ export interface ValidationExceptionField {
|
|
|
193
137
|
*/
|
|
194
138
|
message: string | undefined;
|
|
195
139
|
}
|
|
196
|
-
/**
|
|
197
|
-
* @public
|
|
198
|
-
* @enum
|
|
199
|
-
*/
|
|
200
|
-
export declare const ValidationExceptionReason: {
|
|
201
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
202
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
203
|
-
readonly OTHER: "other";
|
|
204
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
205
|
-
};
|
|
206
|
-
/**
|
|
207
|
-
* @public
|
|
208
|
-
*/
|
|
209
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
210
|
-
/**
|
|
211
|
-
* <p>The input fails to satisfy the specified constraints. You will see this exception if invalid inputs are provided for any of the Amazon EVS environment operations, or if a list operation is performed on an environment resource that is still initializing.</p>
|
|
212
|
-
* @public
|
|
213
|
-
*/
|
|
214
|
-
export declare class ValidationException extends __BaseException {
|
|
215
|
-
readonly name: "ValidationException";
|
|
216
|
-
readonly $fault: "client";
|
|
217
|
-
/**
|
|
218
|
-
* <p>The reason for the exception.</p>
|
|
219
|
-
* @public
|
|
220
|
-
*/
|
|
221
|
-
reason: ValidationExceptionReason | undefined;
|
|
222
|
-
/**
|
|
223
|
-
* <p>A list of fields that didn't validate.</p>
|
|
224
|
-
* @public
|
|
225
|
-
*/
|
|
226
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
227
|
-
/**
|
|
228
|
-
* @internal
|
|
229
|
-
*/
|
|
230
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
231
|
-
}
|
|
232
140
|
/**
|
|
233
141
|
* <p>The connectivity configuration for the environment. Amazon EVS requires that you specify two route server peer IDs. During environment creation, the route server endpoints peer with the NSX uplink VLAN for connectivity to the NSX overlay network.</p>
|
|
234
142
|
* @public
|
|
@@ -240,17 +148,6 @@ export interface ConnectivityInfo {
|
|
|
240
148
|
*/
|
|
241
149
|
privateRouteServerPeerings: string[] | undefined;
|
|
242
150
|
}
|
|
243
|
-
/**
|
|
244
|
-
* @public
|
|
245
|
-
* @enum
|
|
246
|
-
*/
|
|
247
|
-
export declare const _InstanceType: {
|
|
248
|
-
readonly I4I_METAL: "i4i.metal";
|
|
249
|
-
};
|
|
250
|
-
/**
|
|
251
|
-
* @public
|
|
252
|
-
*/
|
|
253
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
254
151
|
/**
|
|
255
152
|
* <p>An object that represents a host.</p> <note> <p>You cannot use <code>dedicatedHostId</code> and <code>placementGroupId</code> together in the same <code>HostInfoForCreate</code>object. This results in a <code>ValidationException</code> response.</p> </note>
|
|
256
153
|
* @public
|
|
@@ -437,17 +334,6 @@ export interface VcfHostnames {
|
|
|
437
334
|
*/
|
|
438
335
|
cloudBuilder: string | undefined;
|
|
439
336
|
}
|
|
440
|
-
/**
|
|
441
|
-
* @public
|
|
442
|
-
* @enum
|
|
443
|
-
*/
|
|
444
|
-
export declare const VcfVersion: {
|
|
445
|
-
readonly VCF_5_2_1: "VCF-5.2.1";
|
|
446
|
-
};
|
|
447
|
-
/**
|
|
448
|
-
* @public
|
|
449
|
-
*/
|
|
450
|
-
export type VcfVersion = (typeof VcfVersion)[keyof typeof VcfVersion];
|
|
451
337
|
/**
|
|
452
338
|
* @public
|
|
453
339
|
*/
|
|
@@ -528,33 +414,6 @@ export interface CreateEnvironmentRequest {
|
|
|
528
414
|
*/
|
|
529
415
|
siteId: string | undefined;
|
|
530
416
|
}
|
|
531
|
-
/**
|
|
532
|
-
* @public
|
|
533
|
-
* @enum
|
|
534
|
-
*/
|
|
535
|
-
export declare const CheckResult: {
|
|
536
|
-
readonly FAILED: "FAILED";
|
|
537
|
-
readonly PASSED: "PASSED";
|
|
538
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
539
|
-
};
|
|
540
|
-
/**
|
|
541
|
-
* @public
|
|
542
|
-
*/
|
|
543
|
-
export type CheckResult = (typeof CheckResult)[keyof typeof CheckResult];
|
|
544
|
-
/**
|
|
545
|
-
* @public
|
|
546
|
-
* @enum
|
|
547
|
-
*/
|
|
548
|
-
export declare const CheckType: {
|
|
549
|
-
readonly HOST_COUNT: "HOST_COUNT";
|
|
550
|
-
readonly KEY_COVERAGE: "KEY_COVERAGE";
|
|
551
|
-
readonly KEY_REUSE: "KEY_REUSE";
|
|
552
|
-
readonly REACHABILITY: "REACHABILITY";
|
|
553
|
-
};
|
|
554
|
-
/**
|
|
555
|
-
* @public
|
|
556
|
-
*/
|
|
557
|
-
export type CheckType = (typeof CheckType)[keyof typeof CheckType];
|
|
558
417
|
/**
|
|
559
418
|
* <p>A check on the environment to identify environment health and validate VMware VCF licensing compliance.</p>
|
|
560
419
|
* @public
|
|
@@ -587,21 +446,6 @@ export interface Secret {
|
|
|
587
446
|
*/
|
|
588
447
|
secretArn?: string | undefined;
|
|
589
448
|
}
|
|
590
|
-
/**
|
|
591
|
-
* @public
|
|
592
|
-
* @enum
|
|
593
|
-
*/
|
|
594
|
-
export declare const EnvironmentState: {
|
|
595
|
-
readonly CREATED: "CREATED";
|
|
596
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
597
|
-
readonly CREATING: "CREATING";
|
|
598
|
-
readonly DELETED: "DELETED";
|
|
599
|
-
readonly DELETING: "DELETING";
|
|
600
|
-
};
|
|
601
|
-
/**
|
|
602
|
-
* @public
|
|
603
|
-
*/
|
|
604
|
-
export type EnvironmentState = (typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
605
449
|
/**
|
|
606
450
|
* <p>An object that represents an Amazon EVS environment.</p>
|
|
607
451
|
* @public
|
|
@@ -784,23 +628,6 @@ export interface EnvironmentSummary {
|
|
|
784
628
|
*/
|
|
785
629
|
environmentArn?: string | undefined;
|
|
786
630
|
}
|
|
787
|
-
/**
|
|
788
|
-
* @public
|
|
789
|
-
* @enum
|
|
790
|
-
*/
|
|
791
|
-
export declare const HostState: {
|
|
792
|
-
readonly CREATED: "CREATED";
|
|
793
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
794
|
-
readonly CREATING: "CREATING";
|
|
795
|
-
readonly DELETED: "DELETED";
|
|
796
|
-
readonly DELETING: "DELETING";
|
|
797
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
798
|
-
readonly UPDATING: "UPDATING";
|
|
799
|
-
};
|
|
800
|
-
/**
|
|
801
|
-
* @public
|
|
802
|
-
*/
|
|
803
|
-
export type HostState = (typeof HostState)[keyof typeof HostState];
|
|
804
631
|
/**
|
|
805
632
|
* <p>An elastic network interface (ENI) that connects hosts to the VLAN subnets. Amazon EVS provisions two identically configured ENIs in the VMkernel management subnet during host creation. One ENI is active, and the other is in standby mode for automatic switchover during a failure scenario.</p>
|
|
806
633
|
* @public
|
|
@@ -1133,30 +960,6 @@ export interface ListTagsForResourceResponse {
|
|
|
1133
960
|
*/
|
|
1134
961
|
tags?: Record<string, string> | undefined;
|
|
1135
962
|
}
|
|
1136
|
-
/**
|
|
1137
|
-
* <p>The number of one or more Amazon EVS resources exceeds the maximum allowed. For a list of Amazon EVS quotas, see <a href="https://docs.aws.amazon.com/evs/latest/userguide/service-quotas-evs.html">Amazon EVS endpoints and quotas</a> in the <i>Amazon EVS User Guide</i>. Delete some resources or request an increase in your service quota. To request an increase, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html">Amazon Web Services Service Quotas</a> in the <i>Amazon Web Services General Reference Guide</i>. </p>
|
|
1138
|
-
* @public
|
|
1139
|
-
*/
|
|
1140
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1141
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1142
|
-
readonly $fault: "client";
|
|
1143
|
-
/**
|
|
1144
|
-
* @internal
|
|
1145
|
-
*/
|
|
1146
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1147
|
-
}
|
|
1148
|
-
/**
|
|
1149
|
-
* <note> <p> <code>TagPolicyException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ValidationException.html"> <code>ValidationException</code> </a> instead.</p> </note> <p>The request doesn't comply with IAM tag policy. Correct your request and then retry it.</p>
|
|
1150
|
-
* @public
|
|
1151
|
-
*/
|
|
1152
|
-
export declare class TagPolicyException extends __BaseException {
|
|
1153
|
-
readonly name: "TagPolicyException";
|
|
1154
|
-
readonly $fault: "client";
|
|
1155
|
-
/**
|
|
1156
|
-
* @internal
|
|
1157
|
-
*/
|
|
1158
|
-
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
1159
|
-
}
|
|
1160
963
|
/**
|
|
1161
964
|
* @public
|
|
1162
965
|
*/
|
|
@@ -1177,18 +980,6 @@ export interface TagResourceRequest {
|
|
|
1177
980
|
*/
|
|
1178
981
|
export interface TagResourceResponse {
|
|
1179
982
|
}
|
|
1180
|
-
/**
|
|
1181
|
-
* <note> <p> <code>TooManyTagsException</code> is deprecated. See <a href="https://docs.aws.amazon.com/evs/latest/APIReference/API_ServiceQuotaExceededException.html"> <code>ServiceQuotaExceededException</code> </a> instead.</p> </note> <p>A service resource associated with the request has more than 200 tags.</p>
|
|
1182
|
-
* @public
|
|
1183
|
-
*/
|
|
1184
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1185
|
-
readonly name: "TooManyTagsException";
|
|
1186
|
-
readonly $fault: "client";
|
|
1187
|
-
/**
|
|
1188
|
-
* @internal
|
|
1189
|
-
*/
|
|
1190
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1191
|
-
}
|
|
1192
983
|
/**
|
|
1193
984
|
* @public
|
|
1194
985
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { EvsExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { EvsServiceException } from "./models/EvsServiceException";
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
export declare const VlanState: {
|
|
2
|
+
readonly CREATED: "CREATED";
|
|
3
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
4
|
+
readonly CREATING: "CREATING";
|
|
5
|
+
readonly DELETED: "DELETED";
|
|
6
|
+
readonly DELETING: "DELETING";
|
|
7
|
+
};
|
|
8
|
+
export type VlanState = (typeof VlanState)[keyof typeof VlanState];
|
|
9
|
+
export declare const ValidationExceptionReason: {
|
|
10
|
+
readonly CANNOT_PARSE: "cannotParse";
|
|
11
|
+
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
12
|
+
readonly OTHER: "other";
|
|
13
|
+
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
14
|
+
};
|
|
15
|
+
export type ValidationExceptionReason =
|
|
16
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
17
|
+
export declare const _InstanceType: {
|
|
18
|
+
readonly I4I_METAL: "i4i.metal";
|
|
19
|
+
};
|
|
20
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
21
|
+
export declare const VcfVersion: {
|
|
22
|
+
readonly VCF_5_2_1: "VCF-5.2.1";
|
|
23
|
+
};
|
|
24
|
+
export type VcfVersion = (typeof VcfVersion)[keyof typeof VcfVersion];
|
|
25
|
+
export declare const CheckResult: {
|
|
26
|
+
readonly FAILED: "FAILED";
|
|
27
|
+
readonly PASSED: "PASSED";
|
|
28
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
29
|
+
};
|
|
30
|
+
export type CheckResult = (typeof CheckResult)[keyof typeof CheckResult];
|
|
31
|
+
export declare const CheckType: {
|
|
32
|
+
readonly HOST_COUNT: "HOST_COUNT";
|
|
33
|
+
readonly KEY_COVERAGE: "KEY_COVERAGE";
|
|
34
|
+
readonly KEY_REUSE: "KEY_REUSE";
|
|
35
|
+
readonly REACHABILITY: "REACHABILITY";
|
|
36
|
+
};
|
|
37
|
+
export type CheckType = (typeof CheckType)[keyof typeof CheckType];
|
|
38
|
+
export declare const EnvironmentState: {
|
|
39
|
+
readonly CREATED: "CREATED";
|
|
40
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
41
|
+
readonly CREATING: "CREATING";
|
|
42
|
+
readonly DELETED: "DELETED";
|
|
43
|
+
readonly DELETING: "DELETING";
|
|
44
|
+
};
|
|
45
|
+
export type EnvironmentState =
|
|
46
|
+
(typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
47
|
+
export declare const HostState: {
|
|
48
|
+
readonly CREATED: "CREATED";
|
|
49
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
50
|
+
readonly CREATING: "CREATING";
|
|
51
|
+
readonly DELETED: "DELETED";
|
|
52
|
+
readonly DELETING: "DELETING";
|
|
53
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
54
|
+
readonly UPDATING: "UPDATING";
|
|
55
|
+
};
|
|
56
|
+
export type HostState = (typeof HostState)[keyof typeof HostState];
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { EvsServiceException as __BaseException } from "./EvsServiceException";
|
|
4
|
+
import { ValidationExceptionField } from "./models_0";
|
|
5
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
6
|
+
readonly name: "ResourceNotFoundException";
|
|
7
|
+
readonly $fault: "client";
|
|
8
|
+
resourceId: string | undefined;
|
|
9
|
+
resourceType: string | undefined;
|
|
10
|
+
constructor(
|
|
11
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
12
|
+
);
|
|
13
|
+
}
|
|
14
|
+
export declare class ThrottlingException extends __BaseException {
|
|
15
|
+
readonly name: "ThrottlingException";
|
|
16
|
+
readonly $fault: "client";
|
|
17
|
+
$retryable: {};
|
|
18
|
+
retryAfterSeconds?: number | undefined;
|
|
19
|
+
constructor(
|
|
20
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
export declare class ValidationException extends __BaseException {
|
|
24
|
+
readonly name: "ValidationException";
|
|
25
|
+
readonly $fault: "client";
|
|
26
|
+
reason: ValidationExceptionReason | undefined;
|
|
27
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
28
|
+
constructor(
|
|
29
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
33
|
+
readonly name: "ServiceQuotaExceededException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
constructor(
|
|
36
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
37
|
+
);
|
|
38
|
+
}
|
|
39
|
+
export declare class TagPolicyException extends __BaseException {
|
|
40
|
+
readonly name: "TagPolicyException";
|
|
41
|
+
readonly $fault: "client";
|
|
42
|
+
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
43
|
+
}
|
|
44
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
45
|
+
readonly name: "TooManyTagsException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
constructor(
|
|
48
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
49
|
+
);
|
|
50
|
+
}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import {
|
|
2
|
+
_InstanceType,
|
|
3
|
+
CheckResult,
|
|
4
|
+
CheckType,
|
|
5
|
+
EnvironmentState,
|
|
6
|
+
HostState,
|
|
7
|
+
VcfVersion,
|
|
8
|
+
VlanState,
|
|
9
|
+
} from "./enums";
|
|
3
10
|
export interface AssociateEipToVlanRequest {
|
|
4
11
|
clientToken?: string | undefined;
|
|
5
12
|
environmentId: string | undefined;
|
|
@@ -11,14 +18,6 @@ export interface EipAssociation {
|
|
|
11
18
|
allocationId?: string | undefined;
|
|
12
19
|
ipAddress?: string | undefined;
|
|
13
20
|
}
|
|
14
|
-
export declare const VlanState: {
|
|
15
|
-
readonly CREATED: "CREATED";
|
|
16
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
17
|
-
readonly CREATING: "CREATING";
|
|
18
|
-
readonly DELETED: "DELETED";
|
|
19
|
-
readonly DELETING: "DELETING";
|
|
20
|
-
};
|
|
21
|
-
export type VlanState = (typeof VlanState)[keyof typeof VlanState];
|
|
22
21
|
export interface Vlan {
|
|
23
22
|
vlanId?: number | undefined;
|
|
24
23
|
cidr?: string | undefined;
|
|
@@ -36,52 +35,13 @@ export interface Vlan {
|
|
|
36
35
|
export interface AssociateEipToVlanResponse {
|
|
37
36
|
vlan?: Vlan | undefined;
|
|
38
37
|
}
|
|
39
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
40
|
-
readonly name: "ResourceNotFoundException";
|
|
41
|
-
readonly $fault: "client";
|
|
42
|
-
resourceId: string | undefined;
|
|
43
|
-
resourceType: string | undefined;
|
|
44
|
-
constructor(
|
|
45
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
46
|
-
);
|
|
47
|
-
}
|
|
48
|
-
export declare class ThrottlingException extends __BaseException {
|
|
49
|
-
readonly name: "ThrottlingException";
|
|
50
|
-
readonly $fault: "client";
|
|
51
|
-
$retryable: {};
|
|
52
|
-
retryAfterSeconds?: number | undefined;
|
|
53
|
-
constructor(
|
|
54
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
55
|
-
);
|
|
56
|
-
}
|
|
57
38
|
export interface ValidationExceptionField {
|
|
58
39
|
name: string | undefined;
|
|
59
40
|
message: string | undefined;
|
|
60
41
|
}
|
|
61
|
-
export declare const ValidationExceptionReason: {
|
|
62
|
-
readonly CANNOT_PARSE: "cannotParse";
|
|
63
|
-
readonly FIELD_VALIDATION_FAILED: "fieldValidationFailed";
|
|
64
|
-
readonly OTHER: "other";
|
|
65
|
-
readonly UNKNOWN_OPERATION: "unknownOperation";
|
|
66
|
-
};
|
|
67
|
-
export type ValidationExceptionReason =
|
|
68
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
69
|
-
export declare class ValidationException extends __BaseException {
|
|
70
|
-
readonly name: "ValidationException";
|
|
71
|
-
readonly $fault: "client";
|
|
72
|
-
reason: ValidationExceptionReason | undefined;
|
|
73
|
-
fieldList?: ValidationExceptionField[] | undefined;
|
|
74
|
-
constructor(
|
|
75
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
76
|
-
);
|
|
77
|
-
}
|
|
78
42
|
export interface ConnectivityInfo {
|
|
79
43
|
privateRouteServerPeerings: string[] | undefined;
|
|
80
44
|
}
|
|
81
|
-
export declare const _InstanceType: {
|
|
82
|
-
readonly I4I_METAL: "i4i.metal";
|
|
83
|
-
};
|
|
84
|
-
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
85
45
|
export interface HostInfoForCreate {
|
|
86
46
|
hostName: string | undefined;
|
|
87
47
|
keyName: string | undefined;
|
|
@@ -124,10 +84,6 @@ export interface VcfHostnames {
|
|
|
124
84
|
sddcManager: string | undefined;
|
|
125
85
|
cloudBuilder: string | undefined;
|
|
126
86
|
}
|
|
127
|
-
export declare const VcfVersion: {
|
|
128
|
-
readonly VCF_5_2_1: "VCF-5.2.1";
|
|
129
|
-
};
|
|
130
|
-
export type VcfVersion = (typeof VcfVersion)[keyof typeof VcfVersion];
|
|
131
87
|
export interface CreateEnvironmentRequest {
|
|
132
88
|
clientToken?: string | undefined;
|
|
133
89
|
environmentName?: string | undefined;
|
|
@@ -145,19 +101,6 @@ export interface CreateEnvironmentRequest {
|
|
|
145
101
|
vcfHostnames: VcfHostnames | undefined;
|
|
146
102
|
siteId: string | undefined;
|
|
147
103
|
}
|
|
148
|
-
export declare const CheckResult: {
|
|
149
|
-
readonly FAILED: "FAILED";
|
|
150
|
-
readonly PASSED: "PASSED";
|
|
151
|
-
readonly UNKNOWN: "UNKNOWN";
|
|
152
|
-
};
|
|
153
|
-
export type CheckResult = (typeof CheckResult)[keyof typeof CheckResult];
|
|
154
|
-
export declare const CheckType: {
|
|
155
|
-
readonly HOST_COUNT: "HOST_COUNT";
|
|
156
|
-
readonly KEY_COVERAGE: "KEY_COVERAGE";
|
|
157
|
-
readonly KEY_REUSE: "KEY_REUSE";
|
|
158
|
-
readonly REACHABILITY: "REACHABILITY";
|
|
159
|
-
};
|
|
160
|
-
export type CheckType = (typeof CheckType)[keyof typeof CheckType];
|
|
161
104
|
export interface Check {
|
|
162
105
|
type?: CheckType | undefined;
|
|
163
106
|
result?: CheckResult | undefined;
|
|
@@ -166,15 +109,6 @@ export interface Check {
|
|
|
166
109
|
export interface Secret {
|
|
167
110
|
secretArn?: string | undefined;
|
|
168
111
|
}
|
|
169
|
-
export declare const EnvironmentState: {
|
|
170
|
-
readonly CREATED: "CREATED";
|
|
171
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
172
|
-
readonly CREATING: "CREATING";
|
|
173
|
-
readonly DELETED: "DELETED";
|
|
174
|
-
readonly DELETING: "DELETING";
|
|
175
|
-
};
|
|
176
|
-
export type EnvironmentState =
|
|
177
|
-
(typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
178
112
|
export interface Environment {
|
|
179
113
|
environmentId?: string | undefined;
|
|
180
114
|
environmentState?: EnvironmentState | undefined;
|
|
@@ -215,16 +149,6 @@ export interface EnvironmentSummary {
|
|
|
215
149
|
modifiedAt?: Date | undefined;
|
|
216
150
|
environmentArn?: string | undefined;
|
|
217
151
|
}
|
|
218
|
-
export declare const HostState: {
|
|
219
|
-
readonly CREATED: "CREATED";
|
|
220
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
221
|
-
readonly CREATING: "CREATING";
|
|
222
|
-
readonly DELETED: "DELETED";
|
|
223
|
-
readonly DELETING: "DELETING";
|
|
224
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
225
|
-
readonly UPDATING: "UPDATING";
|
|
226
|
-
};
|
|
227
|
-
export type HostState = (typeof HostState)[keyof typeof HostState];
|
|
228
152
|
export interface NetworkInterface {
|
|
229
153
|
networkInterfaceId?: string | undefined;
|
|
230
154
|
}
|
|
@@ -310,30 +234,11 @@ export interface ListTagsForResourceRequest {
|
|
|
310
234
|
export interface ListTagsForResourceResponse {
|
|
311
235
|
tags?: Record<string, string> | undefined;
|
|
312
236
|
}
|
|
313
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
314
|
-
readonly name: "ServiceQuotaExceededException";
|
|
315
|
-
readonly $fault: "client";
|
|
316
|
-
constructor(
|
|
317
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
318
|
-
);
|
|
319
|
-
}
|
|
320
|
-
export declare class TagPolicyException extends __BaseException {
|
|
321
|
-
readonly name: "TagPolicyException";
|
|
322
|
-
readonly $fault: "client";
|
|
323
|
-
constructor(opts: __ExceptionOptionType<TagPolicyException, __BaseException>);
|
|
324
|
-
}
|
|
325
237
|
export interface TagResourceRequest {
|
|
326
238
|
resourceArn: string | undefined;
|
|
327
239
|
tags: Record<string, string> | undefined;
|
|
328
240
|
}
|
|
329
241
|
export interface TagResourceResponse {}
|
|
330
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
331
|
-
readonly name: "TooManyTagsException";
|
|
332
|
-
readonly $fault: "client";
|
|
333
|
-
constructor(
|
|
334
|
-
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
335
|
-
);
|
|
336
|
-
}
|
|
337
242
|
export interface UntagResourceRequest {
|
|
338
243
|
resourceArn: string | undefined;
|
|
339
244
|
tagKeys: string[] | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-evs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Evs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-evs",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|