@aws-sdk/client-evs 3.1032.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
|
@@ -7,18 +7,34 @@ import {
|
|
|
7
7
|
AssociateEipToVlanCommandInput,
|
|
8
8
|
AssociateEipToVlanCommandOutput,
|
|
9
9
|
} from "./commands/AssociateEipToVlanCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateEntitlementCommandInput,
|
|
12
|
+
CreateEntitlementCommandOutput,
|
|
13
|
+
} from "./commands/CreateEntitlementCommand";
|
|
10
14
|
import {
|
|
11
15
|
CreateEnvironmentCommandInput,
|
|
12
16
|
CreateEnvironmentCommandOutput,
|
|
13
17
|
} from "./commands/CreateEnvironmentCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateEnvironmentConnectorCommandInput,
|
|
20
|
+
CreateEnvironmentConnectorCommandOutput,
|
|
21
|
+
} from "./commands/CreateEnvironmentConnectorCommand";
|
|
14
22
|
import {
|
|
15
23
|
CreateEnvironmentHostCommandInput,
|
|
16
24
|
CreateEnvironmentHostCommandOutput,
|
|
17
25
|
} from "./commands/CreateEnvironmentHostCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteEntitlementCommandInput,
|
|
28
|
+
DeleteEntitlementCommandOutput,
|
|
29
|
+
} from "./commands/DeleteEntitlementCommand";
|
|
18
30
|
import {
|
|
19
31
|
DeleteEnvironmentCommandInput,
|
|
20
32
|
DeleteEnvironmentCommandOutput,
|
|
21
33
|
} from "./commands/DeleteEnvironmentCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteEnvironmentConnectorCommandInput,
|
|
36
|
+
DeleteEnvironmentConnectorCommandOutput,
|
|
37
|
+
} from "./commands/DeleteEnvironmentConnectorCommand";
|
|
22
38
|
import {
|
|
23
39
|
DeleteEnvironmentHostCommandInput,
|
|
24
40
|
DeleteEnvironmentHostCommandOutput,
|
|
@@ -35,6 +51,10 @@ import {
|
|
|
35
51
|
GetVersionsCommandInput,
|
|
36
52
|
GetVersionsCommandOutput,
|
|
37
53
|
} from "./commands/GetVersionsCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListEnvironmentConnectorsCommandInput,
|
|
56
|
+
ListEnvironmentConnectorsCommandOutput,
|
|
57
|
+
} from "./commands/ListEnvironmentConnectorsCommand";
|
|
38
58
|
import {
|
|
39
59
|
ListEnvironmentHostsCommandInput,
|
|
40
60
|
ListEnvironmentHostsCommandOutput,
|
|
@@ -51,6 +71,10 @@ import {
|
|
|
51
71
|
ListTagsForResourceCommandInput,
|
|
52
72
|
ListTagsForResourceCommandOutput,
|
|
53
73
|
} from "./commands/ListTagsForResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListVmEntitlementsCommandInput,
|
|
76
|
+
ListVmEntitlementsCommandOutput,
|
|
77
|
+
} from "./commands/ListVmEntitlementsCommand";
|
|
54
78
|
import {
|
|
55
79
|
TagResourceCommandInput,
|
|
56
80
|
TagResourceCommandOutput,
|
|
@@ -59,6 +83,10 @@ import {
|
|
|
59
83
|
UntagResourceCommandInput,
|
|
60
84
|
UntagResourceCommandOutput,
|
|
61
85
|
} from "./commands/UntagResourceCommand";
|
|
86
|
+
import {
|
|
87
|
+
UpdateEnvironmentConnectorCommandInput,
|
|
88
|
+
UpdateEnvironmentConnectorCommandOutput,
|
|
89
|
+
} from "./commands/UpdateEnvironmentConnectorCommand";
|
|
62
90
|
import { EvsClient } from "./EvsClient";
|
|
63
91
|
export interface Evs {
|
|
64
92
|
associateEipToVlan(
|
|
@@ -74,6 +102,19 @@ export interface Evs {
|
|
|
74
102
|
options: __HttpHandlerOptions,
|
|
75
103
|
cb: (err: any, data?: AssociateEipToVlanCommandOutput) => void
|
|
76
104
|
): void;
|
|
105
|
+
createEntitlement(
|
|
106
|
+
args: CreateEntitlementCommandInput,
|
|
107
|
+
options?: __HttpHandlerOptions
|
|
108
|
+
): Promise<CreateEntitlementCommandOutput>;
|
|
109
|
+
createEntitlement(
|
|
110
|
+
args: CreateEntitlementCommandInput,
|
|
111
|
+
cb: (err: any, data?: CreateEntitlementCommandOutput) => void
|
|
112
|
+
): void;
|
|
113
|
+
createEntitlement(
|
|
114
|
+
args: CreateEntitlementCommandInput,
|
|
115
|
+
options: __HttpHandlerOptions,
|
|
116
|
+
cb: (err: any, data?: CreateEntitlementCommandOutput) => void
|
|
117
|
+
): void;
|
|
77
118
|
createEnvironment(
|
|
78
119
|
args: CreateEnvironmentCommandInput,
|
|
79
120
|
options?: __HttpHandlerOptions
|
|
@@ -87,6 +128,19 @@ export interface Evs {
|
|
|
87
128
|
options: __HttpHandlerOptions,
|
|
88
129
|
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
89
130
|
): void;
|
|
131
|
+
createEnvironmentConnector(
|
|
132
|
+
args: CreateEnvironmentConnectorCommandInput,
|
|
133
|
+
options?: __HttpHandlerOptions
|
|
134
|
+
): Promise<CreateEnvironmentConnectorCommandOutput>;
|
|
135
|
+
createEnvironmentConnector(
|
|
136
|
+
args: CreateEnvironmentConnectorCommandInput,
|
|
137
|
+
cb: (err: any, data?: CreateEnvironmentConnectorCommandOutput) => void
|
|
138
|
+
): void;
|
|
139
|
+
createEnvironmentConnector(
|
|
140
|
+
args: CreateEnvironmentConnectorCommandInput,
|
|
141
|
+
options: __HttpHandlerOptions,
|
|
142
|
+
cb: (err: any, data?: CreateEnvironmentConnectorCommandOutput) => void
|
|
143
|
+
): void;
|
|
90
144
|
createEnvironmentHost(
|
|
91
145
|
args: CreateEnvironmentHostCommandInput,
|
|
92
146
|
options?: __HttpHandlerOptions
|
|
@@ -100,6 +154,19 @@ export interface Evs {
|
|
|
100
154
|
options: __HttpHandlerOptions,
|
|
101
155
|
cb: (err: any, data?: CreateEnvironmentHostCommandOutput) => void
|
|
102
156
|
): void;
|
|
157
|
+
deleteEntitlement(
|
|
158
|
+
args: DeleteEntitlementCommandInput,
|
|
159
|
+
options?: __HttpHandlerOptions
|
|
160
|
+
): Promise<DeleteEntitlementCommandOutput>;
|
|
161
|
+
deleteEntitlement(
|
|
162
|
+
args: DeleteEntitlementCommandInput,
|
|
163
|
+
cb: (err: any, data?: DeleteEntitlementCommandOutput) => void
|
|
164
|
+
): void;
|
|
165
|
+
deleteEntitlement(
|
|
166
|
+
args: DeleteEntitlementCommandInput,
|
|
167
|
+
options: __HttpHandlerOptions,
|
|
168
|
+
cb: (err: any, data?: DeleteEntitlementCommandOutput) => void
|
|
169
|
+
): void;
|
|
103
170
|
deleteEnvironment(
|
|
104
171
|
args: DeleteEnvironmentCommandInput,
|
|
105
172
|
options?: __HttpHandlerOptions
|
|
@@ -113,6 +180,19 @@ export interface Evs {
|
|
|
113
180
|
options: __HttpHandlerOptions,
|
|
114
181
|
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
115
182
|
): void;
|
|
183
|
+
deleteEnvironmentConnector(
|
|
184
|
+
args: DeleteEnvironmentConnectorCommandInput,
|
|
185
|
+
options?: __HttpHandlerOptions
|
|
186
|
+
): Promise<DeleteEnvironmentConnectorCommandOutput>;
|
|
187
|
+
deleteEnvironmentConnector(
|
|
188
|
+
args: DeleteEnvironmentConnectorCommandInput,
|
|
189
|
+
cb: (err: any, data?: DeleteEnvironmentConnectorCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
deleteEnvironmentConnector(
|
|
192
|
+
args: DeleteEnvironmentConnectorCommandInput,
|
|
193
|
+
options: __HttpHandlerOptions,
|
|
194
|
+
cb: (err: any, data?: DeleteEnvironmentConnectorCommandOutput) => void
|
|
195
|
+
): void;
|
|
116
196
|
deleteEnvironmentHost(
|
|
117
197
|
args: DeleteEnvironmentHostCommandInput,
|
|
118
198
|
options?: __HttpHandlerOptions
|
|
@@ -166,6 +246,19 @@ export interface Evs {
|
|
|
166
246
|
options: __HttpHandlerOptions,
|
|
167
247
|
cb: (err: any, data?: GetVersionsCommandOutput) => void
|
|
168
248
|
): void;
|
|
249
|
+
listEnvironmentConnectors(
|
|
250
|
+
args: ListEnvironmentConnectorsCommandInput,
|
|
251
|
+
options?: __HttpHandlerOptions
|
|
252
|
+
): Promise<ListEnvironmentConnectorsCommandOutput>;
|
|
253
|
+
listEnvironmentConnectors(
|
|
254
|
+
args: ListEnvironmentConnectorsCommandInput,
|
|
255
|
+
cb: (err: any, data?: ListEnvironmentConnectorsCommandOutput) => void
|
|
256
|
+
): void;
|
|
257
|
+
listEnvironmentConnectors(
|
|
258
|
+
args: ListEnvironmentConnectorsCommandInput,
|
|
259
|
+
options: __HttpHandlerOptions,
|
|
260
|
+
cb: (err: any, data?: ListEnvironmentConnectorsCommandOutput) => void
|
|
261
|
+
): void;
|
|
169
262
|
listEnvironmentHosts(
|
|
170
263
|
args: ListEnvironmentHostsCommandInput,
|
|
171
264
|
options?: __HttpHandlerOptions
|
|
@@ -219,6 +312,19 @@ export interface Evs {
|
|
|
219
312
|
options: __HttpHandlerOptions,
|
|
220
313
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
221
314
|
): void;
|
|
315
|
+
listVmEntitlements(
|
|
316
|
+
args: ListVmEntitlementsCommandInput,
|
|
317
|
+
options?: __HttpHandlerOptions
|
|
318
|
+
): Promise<ListVmEntitlementsCommandOutput>;
|
|
319
|
+
listVmEntitlements(
|
|
320
|
+
args: ListVmEntitlementsCommandInput,
|
|
321
|
+
cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void
|
|
322
|
+
): void;
|
|
323
|
+
listVmEntitlements(
|
|
324
|
+
args: ListVmEntitlementsCommandInput,
|
|
325
|
+
options: __HttpHandlerOptions,
|
|
326
|
+
cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void
|
|
327
|
+
): void;
|
|
222
328
|
tagResource(
|
|
223
329
|
args: TagResourceCommandInput,
|
|
224
330
|
options?: __HttpHandlerOptions
|
|
@@ -245,6 +351,26 @@ export interface Evs {
|
|
|
245
351
|
options: __HttpHandlerOptions,
|
|
246
352
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
247
353
|
): void;
|
|
354
|
+
updateEnvironmentConnector(
|
|
355
|
+
args: UpdateEnvironmentConnectorCommandInput,
|
|
356
|
+
options?: __HttpHandlerOptions
|
|
357
|
+
): Promise<UpdateEnvironmentConnectorCommandOutput>;
|
|
358
|
+
updateEnvironmentConnector(
|
|
359
|
+
args: UpdateEnvironmentConnectorCommandInput,
|
|
360
|
+
cb: (err: any, data?: UpdateEnvironmentConnectorCommandOutput) => void
|
|
361
|
+
): void;
|
|
362
|
+
updateEnvironmentConnector(
|
|
363
|
+
args: UpdateEnvironmentConnectorCommandInput,
|
|
364
|
+
options: __HttpHandlerOptions,
|
|
365
|
+
cb: (err: any, data?: UpdateEnvironmentConnectorCommandOutput) => void
|
|
366
|
+
): void;
|
|
367
|
+
paginateListEnvironmentConnectors(
|
|
368
|
+
args: ListEnvironmentConnectorsCommandInput,
|
|
369
|
+
paginationConfig?: Pick<
|
|
370
|
+
PaginationConfiguration,
|
|
371
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
372
|
+
>
|
|
373
|
+
): Paginator<ListEnvironmentConnectorsCommandOutput>;
|
|
248
374
|
paginateListEnvironmentHosts(
|
|
249
375
|
args: ListEnvironmentHostsCommandInput,
|
|
250
376
|
paginationConfig?: Pick<
|
|
@@ -266,5 +392,12 @@ export interface Evs {
|
|
|
266
392
|
Exclude<keyof PaginationConfiguration, "client">
|
|
267
393
|
>
|
|
268
394
|
): Paginator<ListEnvironmentVlansCommandOutput>;
|
|
395
|
+
paginateListVmEntitlements(
|
|
396
|
+
args: ListVmEntitlementsCommandInput,
|
|
397
|
+
paginationConfig?: Pick<
|
|
398
|
+
PaginationConfiguration,
|
|
399
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
400
|
+
>
|
|
401
|
+
): Paginator<ListVmEntitlementsCommandOutput>;
|
|
269
402
|
}
|
|
270
403
|
export declare class Evs extends EvsClient implements Evs {}
|
|
@@ -48,18 +48,34 @@ import {
|
|
|
48
48
|
AssociateEipToVlanCommandInput,
|
|
49
49
|
AssociateEipToVlanCommandOutput,
|
|
50
50
|
} from "./commands/AssociateEipToVlanCommand";
|
|
51
|
+
import {
|
|
52
|
+
CreateEntitlementCommandInput,
|
|
53
|
+
CreateEntitlementCommandOutput,
|
|
54
|
+
} from "./commands/CreateEntitlementCommand";
|
|
51
55
|
import {
|
|
52
56
|
CreateEnvironmentCommandInput,
|
|
53
57
|
CreateEnvironmentCommandOutput,
|
|
54
58
|
} from "./commands/CreateEnvironmentCommand";
|
|
59
|
+
import {
|
|
60
|
+
CreateEnvironmentConnectorCommandInput,
|
|
61
|
+
CreateEnvironmentConnectorCommandOutput,
|
|
62
|
+
} from "./commands/CreateEnvironmentConnectorCommand";
|
|
55
63
|
import {
|
|
56
64
|
CreateEnvironmentHostCommandInput,
|
|
57
65
|
CreateEnvironmentHostCommandOutput,
|
|
58
66
|
} from "./commands/CreateEnvironmentHostCommand";
|
|
67
|
+
import {
|
|
68
|
+
DeleteEntitlementCommandInput,
|
|
69
|
+
DeleteEntitlementCommandOutput,
|
|
70
|
+
} from "./commands/DeleteEntitlementCommand";
|
|
59
71
|
import {
|
|
60
72
|
DeleteEnvironmentCommandInput,
|
|
61
73
|
DeleteEnvironmentCommandOutput,
|
|
62
74
|
} from "./commands/DeleteEnvironmentCommand";
|
|
75
|
+
import {
|
|
76
|
+
DeleteEnvironmentConnectorCommandInput,
|
|
77
|
+
DeleteEnvironmentConnectorCommandOutput,
|
|
78
|
+
} from "./commands/DeleteEnvironmentConnectorCommand";
|
|
63
79
|
import {
|
|
64
80
|
DeleteEnvironmentHostCommandInput,
|
|
65
81
|
DeleteEnvironmentHostCommandOutput,
|
|
@@ -76,6 +92,10 @@ import {
|
|
|
76
92
|
GetVersionsCommandInput,
|
|
77
93
|
GetVersionsCommandOutput,
|
|
78
94
|
} from "./commands/GetVersionsCommand";
|
|
95
|
+
import {
|
|
96
|
+
ListEnvironmentConnectorsCommandInput,
|
|
97
|
+
ListEnvironmentConnectorsCommandOutput,
|
|
98
|
+
} from "./commands/ListEnvironmentConnectorsCommand";
|
|
79
99
|
import {
|
|
80
100
|
ListEnvironmentHostsCommandInput,
|
|
81
101
|
ListEnvironmentHostsCommandOutput,
|
|
@@ -92,6 +112,10 @@ import {
|
|
|
92
112
|
ListTagsForResourceCommandInput,
|
|
93
113
|
ListTagsForResourceCommandOutput,
|
|
94
114
|
} from "./commands/ListTagsForResourceCommand";
|
|
115
|
+
import {
|
|
116
|
+
ListVmEntitlementsCommandInput,
|
|
117
|
+
ListVmEntitlementsCommandOutput,
|
|
118
|
+
} from "./commands/ListVmEntitlementsCommand";
|
|
95
119
|
import {
|
|
96
120
|
TagResourceCommandInput,
|
|
97
121
|
TagResourceCommandOutput,
|
|
@@ -100,6 +124,10 @@ import {
|
|
|
100
124
|
UntagResourceCommandInput,
|
|
101
125
|
UntagResourceCommandOutput,
|
|
102
126
|
} from "./commands/UntagResourceCommand";
|
|
127
|
+
import {
|
|
128
|
+
UpdateEnvironmentConnectorCommandInput,
|
|
129
|
+
UpdateEnvironmentConnectorCommandOutput,
|
|
130
|
+
} from "./commands/UpdateEnvironmentConnectorCommand";
|
|
103
131
|
import {
|
|
104
132
|
ClientInputEndpointParameters,
|
|
105
133
|
ClientResolvedEndpointParameters,
|
|
@@ -109,34 +137,48 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
|
109
137
|
export { __Client };
|
|
110
138
|
export type ServiceInputTypes =
|
|
111
139
|
| AssociateEipToVlanCommandInput
|
|
140
|
+
| CreateEntitlementCommandInput
|
|
112
141
|
| CreateEnvironmentCommandInput
|
|
142
|
+
| CreateEnvironmentConnectorCommandInput
|
|
113
143
|
| CreateEnvironmentHostCommandInput
|
|
144
|
+
| DeleteEntitlementCommandInput
|
|
114
145
|
| DeleteEnvironmentCommandInput
|
|
146
|
+
| DeleteEnvironmentConnectorCommandInput
|
|
115
147
|
| DeleteEnvironmentHostCommandInput
|
|
116
148
|
| DisassociateEipFromVlanCommandInput
|
|
117
149
|
| GetEnvironmentCommandInput
|
|
118
150
|
| GetVersionsCommandInput
|
|
151
|
+
| ListEnvironmentConnectorsCommandInput
|
|
119
152
|
| ListEnvironmentHostsCommandInput
|
|
120
153
|
| ListEnvironmentVlansCommandInput
|
|
121
154
|
| ListEnvironmentsCommandInput
|
|
122
155
|
| ListTagsForResourceCommandInput
|
|
156
|
+
| ListVmEntitlementsCommandInput
|
|
123
157
|
| TagResourceCommandInput
|
|
124
|
-
| UntagResourceCommandInput
|
|
158
|
+
| UntagResourceCommandInput
|
|
159
|
+
| UpdateEnvironmentConnectorCommandInput;
|
|
125
160
|
export type ServiceOutputTypes =
|
|
126
161
|
| AssociateEipToVlanCommandOutput
|
|
162
|
+
| CreateEntitlementCommandOutput
|
|
127
163
|
| CreateEnvironmentCommandOutput
|
|
164
|
+
| CreateEnvironmentConnectorCommandOutput
|
|
128
165
|
| CreateEnvironmentHostCommandOutput
|
|
166
|
+
| DeleteEntitlementCommandOutput
|
|
129
167
|
| DeleteEnvironmentCommandOutput
|
|
168
|
+
| DeleteEnvironmentConnectorCommandOutput
|
|
130
169
|
| DeleteEnvironmentHostCommandOutput
|
|
131
170
|
| DisassociateEipFromVlanCommandOutput
|
|
132
171
|
| GetEnvironmentCommandOutput
|
|
133
172
|
| GetVersionsCommandOutput
|
|
173
|
+
| ListEnvironmentConnectorsCommandOutput
|
|
134
174
|
| ListEnvironmentHostsCommandOutput
|
|
135
175
|
| ListEnvironmentVlansCommandOutput
|
|
136
176
|
| ListEnvironmentsCommandOutput
|
|
137
177
|
| ListTagsForResourceCommandOutput
|
|
178
|
+
| ListVmEntitlementsCommandOutput
|
|
138
179
|
| TagResourceCommandOutput
|
|
139
|
-
| UntagResourceCommandOutput
|
|
180
|
+
| UntagResourceCommandOutput
|
|
181
|
+
| UpdateEnvironmentConnectorCommandOutput;
|
|
140
182
|
export interface ClientDefaults
|
|
141
183
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
142
184
|
requestHandler?: __HttpHandlerUserInput;
|
|
@@ -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
|
+
CreateEntitlementRequest,
|
|
10
|
+
CreateEntitlementResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateEntitlementCommandInput
|
|
15
|
+
extends CreateEntitlementRequest {}
|
|
16
|
+
export interface CreateEntitlementCommandOutput
|
|
17
|
+
extends CreateEntitlementResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateEntitlementCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateEntitlementCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateEntitlementCommandInput,
|
|
24
|
+
CreateEntitlementCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateEntitlementCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateEntitlementCommandInput,
|
|
33
|
+
CreateEntitlementCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateEntitlementCommand extends CreateEntitlementCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateEntitlementRequest;
|
|
44
|
+
output: CreateEntitlementResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateEntitlementCommandInput;
|
|
48
|
+
output: CreateEntitlementCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
CreateEnvironmentConnectorRequest,
|
|
10
|
+
CreateEnvironmentConnectorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateEnvironmentConnectorCommandInput
|
|
15
|
+
extends CreateEnvironmentConnectorRequest {}
|
|
16
|
+
export interface CreateEnvironmentConnectorCommandOutput
|
|
17
|
+
extends CreateEnvironmentConnectorResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateEnvironmentConnectorCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateEnvironmentConnectorCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateEnvironmentConnectorCommandInput,
|
|
24
|
+
CreateEnvironmentConnectorCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateEnvironmentConnectorCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateEnvironmentConnectorCommandInput,
|
|
33
|
+
CreateEnvironmentConnectorCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateEnvironmentConnectorCommand extends CreateEnvironmentConnectorCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateEnvironmentConnectorRequest;
|
|
44
|
+
output: CreateEnvironmentConnectorResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateEnvironmentConnectorCommandInput;
|
|
48
|
+
output: CreateEnvironmentConnectorCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
DeleteEntitlementRequest,
|
|
10
|
+
DeleteEntitlementResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteEntitlementCommandInput
|
|
15
|
+
extends DeleteEntitlementRequest {}
|
|
16
|
+
export interface DeleteEntitlementCommandOutput
|
|
17
|
+
extends DeleteEntitlementResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteEntitlementCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteEntitlementCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteEntitlementCommandInput,
|
|
24
|
+
DeleteEntitlementCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteEntitlementCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteEntitlementCommandInput,
|
|
33
|
+
DeleteEntitlementCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteEntitlementCommand extends DeleteEntitlementCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteEntitlementRequest;
|
|
44
|
+
output: DeleteEntitlementResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteEntitlementCommandInput;
|
|
48
|
+
output: DeleteEntitlementCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
DeleteEnvironmentConnectorRequest,
|
|
10
|
+
DeleteEnvironmentConnectorResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteEnvironmentConnectorCommandInput
|
|
15
|
+
extends DeleteEnvironmentConnectorRequest {}
|
|
16
|
+
export interface DeleteEnvironmentConnectorCommandOutput
|
|
17
|
+
extends DeleteEnvironmentConnectorResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteEnvironmentConnectorCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteEnvironmentConnectorCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DeleteEnvironmentConnectorCommandInput,
|
|
24
|
+
DeleteEnvironmentConnectorCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteEnvironmentConnectorCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DeleteEnvironmentConnectorCommandInput,
|
|
33
|
+
DeleteEnvironmentConnectorCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DeleteEnvironmentConnectorCommand extends DeleteEnvironmentConnectorCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DeleteEnvironmentConnectorRequest;
|
|
44
|
+
output: DeleteEnvironmentConnectorResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DeleteEnvironmentConnectorCommandInput;
|
|
48
|
+
output: DeleteEnvironmentConnectorCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
ListEnvironmentConnectorsRequest,
|
|
10
|
+
ListEnvironmentConnectorsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListEnvironmentConnectorsCommandInput
|
|
15
|
+
extends ListEnvironmentConnectorsRequest {}
|
|
16
|
+
export interface ListEnvironmentConnectorsCommandOutput
|
|
17
|
+
extends ListEnvironmentConnectorsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListEnvironmentConnectorsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListEnvironmentConnectorsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListEnvironmentConnectorsCommandInput,
|
|
24
|
+
ListEnvironmentConnectorsCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListEnvironmentConnectorsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListEnvironmentConnectorsCommandInput,
|
|
33
|
+
ListEnvironmentConnectorsCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListEnvironmentConnectorsCommand extends ListEnvironmentConnectorsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListEnvironmentConnectorsRequest;
|
|
44
|
+
output: ListEnvironmentConnectorsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListEnvironmentConnectorsCommandInput;
|
|
48
|
+
output: ListEnvironmentConnectorsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -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
|
+
ListVmEntitlementsRequest,
|
|
10
|
+
ListVmEntitlementsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListVmEntitlementsCommandInput
|
|
15
|
+
extends ListVmEntitlementsRequest {}
|
|
16
|
+
export interface ListVmEntitlementsCommandOutput
|
|
17
|
+
extends ListVmEntitlementsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListVmEntitlementsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListVmEntitlementsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListVmEntitlementsCommandInput,
|
|
24
|
+
ListVmEntitlementsCommandOutput,
|
|
25
|
+
EvsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListVmEntitlementsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListVmEntitlementsCommandInput,
|
|
33
|
+
ListVmEntitlementsCommandOutput,
|
|
34
|
+
EvsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListVmEntitlementsCommand extends ListVmEntitlementsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: ListVmEntitlementsRequest;
|
|
44
|
+
output: ListVmEntitlementsResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: ListVmEntitlementsCommandInput;
|
|
48
|
+
output: ListVmEntitlementsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|