@aws-sdk/client-evs 3.1031.0 → 3.1033.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/README.md +49 -0
- package/dist-cjs/endpoint/bdd.js +49 -0
- package/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/dist-cjs/index.js +136 -0
- package/dist-cjs/schemas/schemas_0.js +189 -23
- package/dist-es/Evs.js +18 -0
- package/dist-es/commands/CreateEntitlementCommand.js +16 -0
- package/dist-es/commands/CreateEnvironmentConnectorCommand.js +16 -0
- package/dist-es/commands/DeleteEntitlementCommand.js +16 -0
- package/dist-es/commands/DeleteEnvironmentConnectorCommand.js +16 -0
- package/dist-es/commands/ListEnvironmentConnectorsCommand.js +16 -0
- package/dist-es/commands/ListVmEntitlementsCommand.js +16 -0
- package/dist-es/commands/UpdateEnvironmentConnectorCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/endpoint/bdd.js +46 -0
- package/dist-es/endpoint/endpointResolver.js +3 -3
- package/dist-es/models/enums.js +26 -0
- package/dist-es/pagination/ListEnvironmentConnectorsPaginator.js +4 -0
- package/dist-es/pagination/ListVmEntitlementsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +187 -21
- package/dist-types/Evs.d.ts +63 -0
- package/dist-types/EvsClient.d.ts +9 -2
- package/dist-types/commands/CreateEntitlementCommand.d.ts +105 -0
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateEnvironmentConnectorCommand.d.ts +106 -0
- package/dist-types/commands/DeleteEntitlementCommand.d.ts +105 -0
- package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/DeleteEnvironmentConnectorCommand.d.ts +114 -0
- package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/ListEnvironmentConnectorsCommand.d.ts +104 -0
- package/dist-types/commands/ListVmEntitlementsCommand.d.ts +101 -0
- package/dist-types/commands/UpdateEnvironmentConnectorCommand.d.ts +106 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/models/enums.d.ts +58 -0
- package/dist-types/models/models_0.d.ts +435 -1
- package/dist-types/pagination/ListEnvironmentConnectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListVmEntitlementsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/Evs.d.ts +133 -0
- package/dist-types/ts3.4/EvsClient.d.ts +44 -2
- package/dist-types/ts3.4/commands/CreateEntitlementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateEnvironmentConnectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEntitlementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteEnvironmentConnectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListEnvironmentConnectorsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListVmEntitlementsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateEnvironmentConnectorCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/models/enums.d.ts +33 -0
- package/dist-types/ts3.4/models/models_0.d.ts +108 -0
- package/dist-types/ts3.4/pagination/ListEnvironmentConnectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListVmEntitlementsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +5 -5
- package/dist-cjs/endpoint/ruleset.js +0 -7
- package/dist-es/endpoint/ruleset.js +0 -4
- package/dist-types/endpoint/ruleset.d.ts +0 -2
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EvsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EvsClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateEnvironmentConnectorRequest,
|
|
10
|
+
UpdateEnvironmentConnectorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateEnvironmentConnectorCommandInput
|
|
15
|
+
extends UpdateEnvironmentConnectorRequest {}
|
|
16
|
+
export interface UpdateEnvironmentConnectorCommandOutput
|
|
17
|
+
extends UpdateEnvironmentConnectorResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateEnvironmentConnectorCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateEnvironmentConnectorCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateEnvironmentConnectorCommandInput,
|
|
24
|
+
UpdateEnvironmentConnectorCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: UpdateEnvironmentConnectorCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateEnvironmentConnectorCommandInput,
|
|
33
|
+
UpdateEnvironmentConnectorCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateEnvironmentConnectorCommand extends UpdateEnvironmentConnectorCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateEnvironmentConnectorRequest;
|
|
44
|
+
output: UpdateEnvironmentConnectorResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateEnvironmentConnectorCommandInput;
|
|
48
|
+
output: UpdateEnvironmentConnectorCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,14 +1,21 @@
|
|
|
1
1
|
export * from "./AssociateEipToVlanCommand";
|
|
2
|
+
export * from "./CreateEntitlementCommand";
|
|
2
3
|
export * from "./CreateEnvironmentCommand";
|
|
4
|
+
export * from "./CreateEnvironmentConnectorCommand";
|
|
3
5
|
export * from "./CreateEnvironmentHostCommand";
|
|
6
|
+
export * from "./DeleteEntitlementCommand";
|
|
4
7
|
export * from "./DeleteEnvironmentCommand";
|
|
8
|
+
export * from "./DeleteEnvironmentConnectorCommand";
|
|
5
9
|
export * from "./DeleteEnvironmentHostCommand";
|
|
6
10
|
export * from "./DisassociateEipFromVlanCommand";
|
|
7
11
|
export * from "./GetEnvironmentCommand";
|
|
8
12
|
export * from "./GetVersionsCommand";
|
|
13
|
+
export * from "./ListEnvironmentConnectorsCommand";
|
|
9
14
|
export * from "./ListEnvironmentHostsCommand";
|
|
10
15
|
export * from "./ListEnvironmentVlansCommand";
|
|
11
16
|
export * from "./ListEnvironmentsCommand";
|
|
12
17
|
export * from "./ListTagsForResourceCommand";
|
|
18
|
+
export * from "./ListVmEntitlementsCommand";
|
|
13
19
|
export * from "./TagResourceCommand";
|
|
14
20
|
export * from "./UntagResourceCommand";
|
|
21
|
+
export * from "./UpdateEnvironmentConnectorCommand";
|
|
@@ -14,6 +14,21 @@ export declare const ValidationExceptionReason: {
|
|
|
14
14
|
};
|
|
15
15
|
export type ValidationExceptionReason =
|
|
16
16
|
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
17
|
+
export declare const EntitlementType: {
|
|
18
|
+
readonly WINDOWS_SERVER: "WINDOWS_SERVER";
|
|
19
|
+
};
|
|
20
|
+
export type EntitlementType =
|
|
21
|
+
(typeof EntitlementType)[keyof typeof EntitlementType];
|
|
22
|
+
export declare const EntitlementStatus: {
|
|
23
|
+
readonly AT_RISK: "AT_RISK";
|
|
24
|
+
readonly CREATED: "CREATED";
|
|
25
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
26
|
+
readonly CREATING: "CREATING";
|
|
27
|
+
readonly DELETED: "DELETED";
|
|
28
|
+
readonly ENTITLEMENT_REMOVED: "ENTITLEMENT_REMOVED";
|
|
29
|
+
};
|
|
30
|
+
export type EntitlementStatus =
|
|
31
|
+
(typeof EntitlementStatus)[keyof typeof EntitlementStatus];
|
|
17
32
|
export declare const _InstanceType: {
|
|
18
33
|
readonly I4I_METAL: "i4i.metal";
|
|
19
34
|
};
|
|
@@ -34,6 +49,9 @@ export declare const CheckType: {
|
|
|
34
49
|
readonly KEY_COVERAGE: "KEY_COVERAGE";
|
|
35
50
|
readonly KEY_REUSE: "KEY_REUSE";
|
|
36
51
|
readonly REACHABILITY: "REACHABILITY";
|
|
52
|
+
readonly VCENTER_REACHABILITY: "VCENTER_REACHABILITY";
|
|
53
|
+
readonly VCENTER_VM_EVENT: "VCENTER_VM_EVENT";
|
|
54
|
+
readonly VCENTER_VM_SYNC: "VCENTER_VM_SYNC";
|
|
37
55
|
};
|
|
38
56
|
export type CheckType = (typeof CheckType)[keyof typeof CheckType];
|
|
39
57
|
export declare const EnvironmentState: {
|
|
@@ -45,6 +63,21 @@ export declare const EnvironmentState: {
|
|
|
45
63
|
};
|
|
46
64
|
export type EnvironmentState =
|
|
47
65
|
(typeof EnvironmentState)[keyof typeof EnvironmentState];
|
|
66
|
+
export declare const ConnectorType: {
|
|
67
|
+
readonly VCENTER: "VCENTER";
|
|
68
|
+
};
|
|
69
|
+
export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
|
|
70
|
+
export declare const ConnectorState: {
|
|
71
|
+
readonly ACTIVE: "ACTIVE";
|
|
72
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
73
|
+
readonly CREATING: "CREATING";
|
|
74
|
+
readonly DELETED: "DELETED";
|
|
75
|
+
readonly DELETING: "DELETING";
|
|
76
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
77
|
+
readonly UPDATING: "UPDATING";
|
|
78
|
+
};
|
|
79
|
+
export type ConnectorState =
|
|
80
|
+
(typeof ConnectorState)[keyof typeof ConnectorState];
|
|
48
81
|
export declare const HostState: {
|
|
49
82
|
readonly CREATED: "CREATED";
|
|
50
83
|
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
@@ -2,6 +2,10 @@ import {
|
|
|
2
2
|
_InstanceType,
|
|
3
3
|
CheckResult,
|
|
4
4
|
CheckType,
|
|
5
|
+
ConnectorState,
|
|
6
|
+
ConnectorType,
|
|
7
|
+
EntitlementStatus,
|
|
8
|
+
EntitlementType,
|
|
5
9
|
EnvironmentState,
|
|
6
10
|
HostState,
|
|
7
11
|
VcfVersion,
|
|
@@ -39,6 +43,32 @@ export interface ValidationExceptionField {
|
|
|
39
43
|
name: string | undefined;
|
|
40
44
|
message: string | undefined;
|
|
41
45
|
}
|
|
46
|
+
export interface CreateEntitlementRequest {
|
|
47
|
+
clientToken?: string | undefined;
|
|
48
|
+
environmentId: string | undefined;
|
|
49
|
+
connectorId: string | undefined;
|
|
50
|
+
entitlementType: EntitlementType | undefined;
|
|
51
|
+
vmIds: string[] | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface ErrorDetail {
|
|
54
|
+
errorCode: string | undefined;
|
|
55
|
+
errorMessage: string | undefined;
|
|
56
|
+
}
|
|
57
|
+
export interface VmEntitlement {
|
|
58
|
+
vmId?: string | undefined;
|
|
59
|
+
environmentId?: string | undefined;
|
|
60
|
+
connectorId?: string | undefined;
|
|
61
|
+
vmName?: string | undefined;
|
|
62
|
+
type?: EntitlementType | undefined;
|
|
63
|
+
status?: EntitlementStatus | undefined;
|
|
64
|
+
lastSyncedAt?: Date | undefined;
|
|
65
|
+
startedAt?: Date | undefined;
|
|
66
|
+
stoppedAt?: Date | undefined;
|
|
67
|
+
errorDetail?: ErrorDetail | undefined;
|
|
68
|
+
}
|
|
69
|
+
export interface CreateEntitlementResponse {
|
|
70
|
+
entitlements?: VmEntitlement[] | undefined;
|
|
71
|
+
}
|
|
42
72
|
export interface ConnectivityInfo {
|
|
43
73
|
privateRouteServerPeerings: string[] | undefined;
|
|
44
74
|
}
|
|
@@ -134,6 +164,35 @@ export interface Environment {
|
|
|
134
164
|
export interface CreateEnvironmentResponse {
|
|
135
165
|
environment?: Environment | undefined;
|
|
136
166
|
}
|
|
167
|
+
export interface CreateEnvironmentConnectorRequest {
|
|
168
|
+
clientToken?: string | undefined;
|
|
169
|
+
environmentId: string | undefined;
|
|
170
|
+
type: ConnectorType | undefined;
|
|
171
|
+
applianceFqdn: string | undefined;
|
|
172
|
+
secretIdentifier: string | undefined;
|
|
173
|
+
}
|
|
174
|
+
export interface ConnectorCheck {
|
|
175
|
+
type?: CheckType | undefined;
|
|
176
|
+
result?: CheckResult | undefined;
|
|
177
|
+
lastCheckAttempt?: Date | undefined;
|
|
178
|
+
impairedSince?: Date | undefined;
|
|
179
|
+
}
|
|
180
|
+
export interface Connector {
|
|
181
|
+
environmentId?: string | undefined;
|
|
182
|
+
connectorId?: string | undefined;
|
|
183
|
+
type?: ConnectorType | undefined;
|
|
184
|
+
applianceFqdn?: string | undefined;
|
|
185
|
+
secretArn?: string | undefined;
|
|
186
|
+
state?: ConnectorState | undefined;
|
|
187
|
+
stateDetails?: string | undefined;
|
|
188
|
+
status?: CheckResult | undefined;
|
|
189
|
+
checks?: ConnectorCheck[] | undefined;
|
|
190
|
+
createdAt?: Date | undefined;
|
|
191
|
+
modifiedAt?: Date | undefined;
|
|
192
|
+
}
|
|
193
|
+
export interface CreateEnvironmentConnectorResponse {
|
|
194
|
+
connector?: Connector | undefined;
|
|
195
|
+
}
|
|
137
196
|
export interface CreateEnvironmentHostRequest {
|
|
138
197
|
clientToken?: string | undefined;
|
|
139
198
|
environmentId: string | undefined;
|
|
@@ -171,6 +230,16 @@ export interface CreateEnvironmentHostResponse {
|
|
|
171
230
|
environmentSummary?: EnvironmentSummary | undefined;
|
|
172
231
|
host?: Host | undefined;
|
|
173
232
|
}
|
|
233
|
+
export interface DeleteEntitlementRequest {
|
|
234
|
+
clientToken?: string | undefined;
|
|
235
|
+
environmentId: string | undefined;
|
|
236
|
+
connectorId: string | undefined;
|
|
237
|
+
entitlementType: EntitlementType | undefined;
|
|
238
|
+
vmIds: string[] | undefined;
|
|
239
|
+
}
|
|
240
|
+
export interface DeleteEntitlementResponse {
|
|
241
|
+
entitlements?: VmEntitlement[] | undefined;
|
|
242
|
+
}
|
|
174
243
|
export interface DeleteEnvironmentRequest {
|
|
175
244
|
clientToken?: string | undefined;
|
|
176
245
|
environmentId: string | undefined;
|
|
@@ -178,6 +247,15 @@ export interface DeleteEnvironmentRequest {
|
|
|
178
247
|
export interface DeleteEnvironmentResponse {
|
|
179
248
|
environment?: Environment | undefined;
|
|
180
249
|
}
|
|
250
|
+
export interface DeleteEnvironmentConnectorRequest {
|
|
251
|
+
clientToken?: string | undefined;
|
|
252
|
+
environmentId: string | undefined;
|
|
253
|
+
connectorId: string | undefined;
|
|
254
|
+
}
|
|
255
|
+
export interface DeleteEnvironmentConnectorResponse {
|
|
256
|
+
connector?: Connector | undefined;
|
|
257
|
+
environmentSummary?: EnvironmentSummary | undefined;
|
|
258
|
+
}
|
|
181
259
|
export interface DeleteEnvironmentHostRequest {
|
|
182
260
|
clientToken?: string | undefined;
|
|
183
261
|
environmentId: string | undefined;
|
|
@@ -202,6 +280,15 @@ export interface GetEnvironmentRequest {
|
|
|
202
280
|
export interface GetEnvironmentResponse {
|
|
203
281
|
environment?: Environment | undefined;
|
|
204
282
|
}
|
|
283
|
+
export interface ListEnvironmentConnectorsRequest {
|
|
284
|
+
nextToken?: string | undefined;
|
|
285
|
+
maxResults?: number | undefined;
|
|
286
|
+
environmentId: string | undefined;
|
|
287
|
+
}
|
|
288
|
+
export interface ListEnvironmentConnectorsResponse {
|
|
289
|
+
nextToken?: string | undefined;
|
|
290
|
+
connectors?: Connector[] | undefined;
|
|
291
|
+
}
|
|
205
292
|
export interface ListEnvironmentHostsRequest {
|
|
206
293
|
nextToken?: string | undefined;
|
|
207
294
|
maxResults?: number | undefined;
|
|
@@ -229,6 +316,27 @@ export interface ListEnvironmentVlansResponse {
|
|
|
229
316
|
nextToken?: string | undefined;
|
|
230
317
|
environmentVlans?: Vlan[] | undefined;
|
|
231
318
|
}
|
|
319
|
+
export interface ListVmEntitlementsRequest {
|
|
320
|
+
nextToken?: string | undefined;
|
|
321
|
+
maxResults?: number | undefined;
|
|
322
|
+
environmentId: string | undefined;
|
|
323
|
+
connectorId: string | undefined;
|
|
324
|
+
entitlementType: EntitlementType | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface ListVmEntitlementsResponse {
|
|
327
|
+
nextToken?: string | undefined;
|
|
328
|
+
entitlements?: VmEntitlement[] | undefined;
|
|
329
|
+
}
|
|
330
|
+
export interface UpdateEnvironmentConnectorRequest {
|
|
331
|
+
clientToken?: string | undefined;
|
|
332
|
+
environmentId: string | undefined;
|
|
333
|
+
connectorId: string | undefined;
|
|
334
|
+
applianceFqdn?: string | undefined;
|
|
335
|
+
secretIdentifier?: string | undefined;
|
|
336
|
+
}
|
|
337
|
+
export interface UpdateEnvironmentConnectorResponse {
|
|
338
|
+
connector?: Connector | undefined;
|
|
339
|
+
}
|
|
232
340
|
export interface GetVersionsRequest {}
|
|
233
341
|
export interface InstanceTypeEsxVersionsInfo {
|
|
234
342
|
instanceType: _InstanceType | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListEnvironmentConnectorsCommandInput,
|
|
4
|
+
ListEnvironmentConnectorsCommandOutput,
|
|
5
|
+
} from "../commands/ListEnvironmentConnectorsCommand";
|
|
6
|
+
import { EvsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListEnvironmentConnectors: (
|
|
8
|
+
config: EvsPaginationConfiguration,
|
|
9
|
+
input: ListEnvironmentConnectorsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListEnvironmentConnectorsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListVmEntitlementsCommandInput,
|
|
4
|
+
ListVmEntitlementsCommandOutput,
|
|
5
|
+
} from "../commands/ListVmEntitlementsCommand";
|
|
6
|
+
import { EvsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListVmEntitlements: (
|
|
8
|
+
config: EvsPaginationConfiguration,
|
|
9
|
+
input: ListVmEntitlementsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListVmEntitlementsCommandOutput>;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListEnvironmentConnectorsPaginator";
|
|
2
3
|
export * from "./ListEnvironmentHostsPaginator";
|
|
3
4
|
export * from "./ListEnvironmentsPaginator";
|
|
4
5
|
export * from "./ListEnvironmentVlansPaginator";
|
|
6
|
+
export * from "./ListVmEntitlementsPaginator";
|
|
@@ -17,10 +17,20 @@ export declare var AssociateEipToVlanRequest$: StaticStructureSchema;
|
|
|
17
17
|
export declare var AssociateEipToVlanResponse$: StaticStructureSchema;
|
|
18
18
|
export declare var Check$: StaticStructureSchema;
|
|
19
19
|
export declare var ConnectivityInfo$: StaticStructureSchema;
|
|
20
|
+
export declare var Connector$: StaticStructureSchema;
|
|
21
|
+
export declare var ConnectorCheck$: StaticStructureSchema;
|
|
22
|
+
export declare var CreateEntitlementRequest$: StaticStructureSchema;
|
|
23
|
+
export declare var CreateEntitlementResponse$: StaticStructureSchema;
|
|
24
|
+
export declare var CreateEnvironmentConnectorRequest$: StaticStructureSchema;
|
|
25
|
+
export declare var CreateEnvironmentConnectorResponse$: StaticStructureSchema;
|
|
20
26
|
export declare var CreateEnvironmentHostRequest$: StaticStructureSchema;
|
|
21
27
|
export declare var CreateEnvironmentHostResponse$: StaticStructureSchema;
|
|
22
28
|
export declare var CreateEnvironmentRequest$: StaticStructureSchema;
|
|
23
29
|
export declare var CreateEnvironmentResponse$: StaticStructureSchema;
|
|
30
|
+
export declare var DeleteEntitlementRequest$: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteEntitlementResponse$: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteEnvironmentConnectorRequest$: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteEnvironmentConnectorResponse$: StaticStructureSchema;
|
|
24
34
|
export declare var DeleteEnvironmentHostRequest$: StaticStructureSchema;
|
|
25
35
|
export declare var DeleteEnvironmentHostResponse$: StaticStructureSchema;
|
|
26
36
|
export declare var DeleteEnvironmentRequest$: StaticStructureSchema;
|
|
@@ -30,6 +40,7 @@ export declare var DisassociateEipFromVlanResponse$: StaticStructureSchema;
|
|
|
30
40
|
export declare var EipAssociation$: StaticStructureSchema;
|
|
31
41
|
export declare var Environment$: StaticStructureSchema;
|
|
32
42
|
export declare var EnvironmentSummary$: StaticStructureSchema;
|
|
43
|
+
export declare var ErrorDetail$: StaticStructureSchema;
|
|
33
44
|
export declare var GetEnvironmentRequest$: StaticStructureSchema;
|
|
34
45
|
export declare var GetEnvironmentResponse$: StaticStructureSchema;
|
|
35
46
|
export declare var GetVersionsRequest$: StaticStructureSchema;
|
|
@@ -40,6 +51,8 @@ export declare var InitialVlanInfo$: StaticStructureSchema;
|
|
|
40
51
|
export declare var InitialVlans$: StaticStructureSchema;
|
|
41
52
|
export declare var InstanceTypeEsxVersionsInfo$: StaticStructureSchema;
|
|
42
53
|
export declare var LicenseInfo$: StaticStructureSchema;
|
|
54
|
+
export declare var ListEnvironmentConnectorsRequest$: StaticStructureSchema;
|
|
55
|
+
export declare var ListEnvironmentConnectorsResponse$: StaticStructureSchema;
|
|
43
56
|
export declare var ListEnvironmentHostsRequest$: StaticStructureSchema;
|
|
44
57
|
export declare var ListEnvironmentHostsResponse$: StaticStructureSchema;
|
|
45
58
|
export declare var ListEnvironmentsRequest$: StaticStructureSchema;
|
|
@@ -48,6 +61,8 @@ export declare var ListEnvironmentVlansRequest$: StaticStructureSchema;
|
|
|
48
61
|
export declare var ListEnvironmentVlansResponse$: StaticStructureSchema;
|
|
49
62
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
50
63
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
64
|
+
export declare var ListVmEntitlementsRequest$: StaticStructureSchema;
|
|
65
|
+
export declare var ListVmEntitlementsResponse$: StaticStructureSchema;
|
|
51
66
|
export declare var NetworkInterface$: StaticStructureSchema;
|
|
52
67
|
export declare var Secret$: StaticStructureSchema;
|
|
53
68
|
export declare var ServiceAccessSecurityGroups$: StaticStructureSchema;
|
|
@@ -55,21 +70,31 @@ export declare var TagResourceRequest$: StaticStructureSchema;
|
|
|
55
70
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
56
71
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
57
72
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
73
|
+
export declare var UpdateEnvironmentConnectorRequest$: StaticStructureSchema;
|
|
74
|
+
export declare var UpdateEnvironmentConnectorResponse$: StaticStructureSchema;
|
|
58
75
|
export declare var ValidationExceptionField$: StaticStructureSchema;
|
|
59
76
|
export declare var VcfHostnames$: StaticStructureSchema;
|
|
60
77
|
export declare var VcfVersionInfo$: StaticStructureSchema;
|
|
61
78
|
export declare var Vlan$: StaticStructureSchema;
|
|
79
|
+
export declare var VmEntitlement$: StaticStructureSchema;
|
|
62
80
|
export declare var AssociateEipToVlan$: StaticOperationSchema;
|
|
81
|
+
export declare var CreateEntitlement$: StaticOperationSchema;
|
|
63
82
|
export declare var CreateEnvironment$: StaticOperationSchema;
|
|
83
|
+
export declare var CreateEnvironmentConnector$: StaticOperationSchema;
|
|
64
84
|
export declare var CreateEnvironmentHost$: StaticOperationSchema;
|
|
85
|
+
export declare var DeleteEntitlement$: StaticOperationSchema;
|
|
65
86
|
export declare var DeleteEnvironment$: StaticOperationSchema;
|
|
87
|
+
export declare var DeleteEnvironmentConnector$: StaticOperationSchema;
|
|
66
88
|
export declare var DeleteEnvironmentHost$: StaticOperationSchema;
|
|
67
89
|
export declare var DisassociateEipFromVlan$: StaticOperationSchema;
|
|
68
90
|
export declare var GetEnvironment$: StaticOperationSchema;
|
|
69
91
|
export declare var GetVersions$: StaticOperationSchema;
|
|
92
|
+
export declare var ListEnvironmentConnectors$: StaticOperationSchema;
|
|
70
93
|
export declare var ListEnvironmentHosts$: StaticOperationSchema;
|
|
71
94
|
export declare var ListEnvironments$: StaticOperationSchema;
|
|
72
95
|
export declare var ListEnvironmentVlans$: StaticOperationSchema;
|
|
73
96
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
97
|
+
export declare var ListVmEntitlements$: StaticOperationSchema;
|
|
74
98
|
export declare var TagResource$: StaticOperationSchema;
|
|
75
99
|
export declare var UntagResource$: StaticOperationSchema;
|
|
100
|
+
export declare var UpdateEnvironmentConnector$: StaticOperationSchema;
|
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.1033.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-evs",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.2",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.33",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.32",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.12",
|
|
31
31
|
"@aws-sdk/types": "^3.973.8",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.7",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.18",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.16",
|
|
36
36
|
"@smithy/core": "^3.23.15",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ruleSet = void 0;
|
|
4
|
-
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
5
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "string" }, i = { [s]: true, "default": false, "type": "boolean" }, j = { [v]: "Endpoint" }, k = { [t]: c, [u]: [{ [v]: "UseFIPS" }, true] }, l = { [t]: c, [u]: [{ [v]: "UseDualStack" }, true] }, m = {}, n = { [t]: "getAttr", [u]: [{ [v]: g }, "supportsFIPS"] }, o = { [t]: c, [u]: [true, { [t]: "getAttr", [u]: [{ [v]: g }, "supportsDualStack"] }] }, p = [k], q = [l], r = [{ [v]: "Region" }];
|
|
6
|
-
const _data = { version: "1.0", parameters: { Region: h, UseDualStack: i, UseFIPS: i, Endpoint: h }, rules: [{ conditions: [{ [t]: b, [u]: [j] }], rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { rules: [{ conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: j, properties: m, headers: m }, type: e }], type: f }], type: f }, { rules: [{ conditions: [{ [t]: b, [u]: r }], rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: g }], rules: [{ conditions: [k, l], rules: [{ conditions: [{ [t]: c, [u]: [a, n] }, o], rules: [{ rules: [{ endpoint: { url: "https://evs-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: p, rules: [{ conditions: [{ [t]: c, [u]: [n, a] }], rules: [{ rules: [{ endpoint: { url: "https://evs-fips.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: q, rules: [{ conditions: [o], rules: [{ rules: [{ endpoint: { url: "https://evs.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { rules: [{ endpoint: { url: "https://evs.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
|
|
7
|
-
exports.ruleSet = _data;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
const s = "required", t = "fn", u = "argv", v = "ref";
|
|
2
|
-
const a = true, b = "isSet", c = "booleanEquals", d = "error", e = "endpoint", f = "tree", g = "PartitionResult", h = { [s]: false, "type": "string" }, i = { [s]: true, "default": false, "type": "boolean" }, j = { [v]: "Endpoint" }, k = { [t]: c, [u]: [{ [v]: "UseFIPS" }, true] }, l = { [t]: c, [u]: [{ [v]: "UseDualStack" }, true] }, m = {}, n = { [t]: "getAttr", [u]: [{ [v]: g }, "supportsFIPS"] }, o = { [t]: c, [u]: [true, { [t]: "getAttr", [u]: [{ [v]: g }, "supportsDualStack"] }] }, p = [k], q = [l], r = [{ [v]: "Region" }];
|
|
3
|
-
const _data = { version: "1.0", parameters: { Region: h, UseDualStack: i, UseFIPS: i, Endpoint: h }, rules: [{ conditions: [{ [t]: b, [u]: [j] }], rules: [{ conditions: p, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: d }, { rules: [{ conditions: q, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: d }, { endpoint: { url: j, properties: m, headers: m }, type: e }], type: f }], type: f }, { rules: [{ conditions: [{ [t]: b, [u]: r }], rules: [{ conditions: [{ [t]: "aws.partition", [u]: r, assign: g }], rules: [{ conditions: [k, l], rules: [{ conditions: [{ [t]: c, [u]: [a, n] }, o], rules: [{ rules: [{ endpoint: { url: "https://evs-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: d }], type: f }, { conditions: p, rules: [{ conditions: [{ [t]: c, [u]: [n, a] }], rules: [{ rules: [{ endpoint: { url: "https://evs-fips.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "FIPS is enabled but this partition does not support FIPS", type: d }], type: f }, { conditions: q, rules: [{ conditions: [o], rules: [{ rules: [{ endpoint: { url: "https://evs.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }, { error: "DualStack is enabled but this partition does not support DualStack", type: d }], type: f }, { rules: [{ endpoint: { url: "https://evs.{Region}.{PartitionResult#dnsSuffix}", properties: m, headers: m }, type: e }], type: f }], type: f }], type: f }, { error: "Invalid Configuration: Missing Region", type: d }], type: f }] };
|
|
4
|
-
export const ruleSet = _data;
|