@aws-sdk/client-evs 3.1086.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/Evs.d.ts +74 -83
- package/dist-types/ts3.4/EvsClient.d.ts +16 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/AssociateEipToVlanCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateEntitlementCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateEnvironmentConnectorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateEnvironmentHostCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteEntitlementCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteEnvironmentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteEnvironmentConnectorCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeleteEnvironmentHostCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociateEipFromVlanCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetDepotUrlCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetEnvironmentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetVersionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListEnvironmentConnectorsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListEnvironmentHostsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListEnvironmentVlansCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListEnvironmentsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVmEntitlementsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateEnvironmentConnectorCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -43,18 +43,12 @@ import {
|
|
|
43
43
|
DisassociateEipFromVlanCommandInput,
|
|
44
44
|
DisassociateEipFromVlanCommandOutput,
|
|
45
45
|
} from "./commands/DisassociateEipFromVlanCommand";
|
|
46
|
-
import {
|
|
47
|
-
GetDepotUrlCommandInput,
|
|
48
|
-
GetDepotUrlCommandOutput,
|
|
49
|
-
} from "./commands/GetDepotUrlCommand";
|
|
46
|
+
import { GetDepotUrlCommandInput, GetDepotUrlCommandOutput } from "./commands/GetDepotUrlCommand";
|
|
50
47
|
import {
|
|
51
48
|
GetEnvironmentCommandInput,
|
|
52
49
|
GetEnvironmentCommandOutput,
|
|
53
50
|
} from "./commands/GetEnvironmentCommand";
|
|
54
|
-
import {
|
|
55
|
-
GetVersionsCommandInput,
|
|
56
|
-
GetVersionsCommandOutput,
|
|
57
|
-
} from "./commands/GetVersionsCommand";
|
|
51
|
+
import { GetVersionsCommandInput, GetVersionsCommandOutput } from "./commands/GetVersionsCommand";
|
|
58
52
|
import {
|
|
59
53
|
ListEnvironmentConnectorsCommandInput,
|
|
60
54
|
ListEnvironmentConnectorsCommandOutput,
|
|
@@ -79,10 +73,7 @@ import {
|
|
|
79
73
|
ListVmEntitlementsCommandInput,
|
|
80
74
|
ListVmEntitlementsCommandOutput,
|
|
81
75
|
} from "./commands/ListVmEntitlementsCommand";
|
|
82
|
-
import {
|
|
83
|
-
TagResourceCommandInput,
|
|
84
|
-
TagResourceCommandOutput,
|
|
85
|
-
} from "./commands/TagResourceCommand";
|
|
76
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
86
77
|
import {
|
|
87
78
|
UntagResourceCommandInput,
|
|
88
79
|
UntagResourceCommandOutput,
|
|
@@ -95,326 +86,326 @@ import { EvsClient } from "./EvsClient";
|
|
|
95
86
|
export interface Evs {
|
|
96
87
|
associateEipToVlan(
|
|
97
88
|
args: AssociateEipToVlanCommandInput,
|
|
98
|
-
options?: __HttpHandlerOptions
|
|
89
|
+
options?: __HttpHandlerOptions,
|
|
99
90
|
): Promise<AssociateEipToVlanCommandOutput>;
|
|
100
91
|
associateEipToVlan(
|
|
101
92
|
args: AssociateEipToVlanCommandInput,
|
|
102
|
-
cb: (err: any, data?: AssociateEipToVlanCommandOutput) => void
|
|
93
|
+
cb: (err: any, data?: AssociateEipToVlanCommandOutput) => void,
|
|
103
94
|
): void;
|
|
104
95
|
associateEipToVlan(
|
|
105
96
|
args: AssociateEipToVlanCommandInput,
|
|
106
97
|
options: __HttpHandlerOptions,
|
|
107
|
-
cb: (err: any, data?: AssociateEipToVlanCommandOutput) => void
|
|
98
|
+
cb: (err: any, data?: AssociateEipToVlanCommandOutput) => void,
|
|
108
99
|
): void;
|
|
109
100
|
createEntitlement(
|
|
110
101
|
args: CreateEntitlementCommandInput,
|
|
111
|
-
options?: __HttpHandlerOptions
|
|
102
|
+
options?: __HttpHandlerOptions,
|
|
112
103
|
): Promise<CreateEntitlementCommandOutput>;
|
|
113
104
|
createEntitlement(
|
|
114
105
|
args: CreateEntitlementCommandInput,
|
|
115
|
-
cb: (err: any, data?: CreateEntitlementCommandOutput) => void
|
|
106
|
+
cb: (err: any, data?: CreateEntitlementCommandOutput) => void,
|
|
116
107
|
): void;
|
|
117
108
|
createEntitlement(
|
|
118
109
|
args: CreateEntitlementCommandInput,
|
|
119
110
|
options: __HttpHandlerOptions,
|
|
120
|
-
cb: (err: any, data?: CreateEntitlementCommandOutput) => void
|
|
111
|
+
cb: (err: any, data?: CreateEntitlementCommandOutput) => void,
|
|
121
112
|
): void;
|
|
122
113
|
createEnvironment(
|
|
123
114
|
args: CreateEnvironmentCommandInput,
|
|
124
|
-
options?: __HttpHandlerOptions
|
|
115
|
+
options?: __HttpHandlerOptions,
|
|
125
116
|
): Promise<CreateEnvironmentCommandOutput>;
|
|
126
117
|
createEnvironment(
|
|
127
118
|
args: CreateEnvironmentCommandInput,
|
|
128
|
-
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
119
|
+
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void,
|
|
129
120
|
): void;
|
|
130
121
|
createEnvironment(
|
|
131
122
|
args: CreateEnvironmentCommandInput,
|
|
132
123
|
options: __HttpHandlerOptions,
|
|
133
|
-
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void
|
|
124
|
+
cb: (err: any, data?: CreateEnvironmentCommandOutput) => void,
|
|
134
125
|
): void;
|
|
135
126
|
createEnvironmentConnector(
|
|
136
127
|
args: CreateEnvironmentConnectorCommandInput,
|
|
137
|
-
options?: __HttpHandlerOptions
|
|
128
|
+
options?: __HttpHandlerOptions,
|
|
138
129
|
): Promise<CreateEnvironmentConnectorCommandOutput>;
|
|
139
130
|
createEnvironmentConnector(
|
|
140
131
|
args: CreateEnvironmentConnectorCommandInput,
|
|
141
|
-
cb: (err: any, data?: CreateEnvironmentConnectorCommandOutput) => void
|
|
132
|
+
cb: (err: any, data?: CreateEnvironmentConnectorCommandOutput) => void,
|
|
142
133
|
): void;
|
|
143
134
|
createEnvironmentConnector(
|
|
144
135
|
args: CreateEnvironmentConnectorCommandInput,
|
|
145
136
|
options: __HttpHandlerOptions,
|
|
146
|
-
cb: (err: any, data?: CreateEnvironmentConnectorCommandOutput) => void
|
|
137
|
+
cb: (err: any, data?: CreateEnvironmentConnectorCommandOutput) => void,
|
|
147
138
|
): void;
|
|
148
139
|
createEnvironmentHost(
|
|
149
140
|
args: CreateEnvironmentHostCommandInput,
|
|
150
|
-
options?: __HttpHandlerOptions
|
|
141
|
+
options?: __HttpHandlerOptions,
|
|
151
142
|
): Promise<CreateEnvironmentHostCommandOutput>;
|
|
152
143
|
createEnvironmentHost(
|
|
153
144
|
args: CreateEnvironmentHostCommandInput,
|
|
154
|
-
cb: (err: any, data?: CreateEnvironmentHostCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: CreateEnvironmentHostCommandOutput) => void,
|
|
155
146
|
): void;
|
|
156
147
|
createEnvironmentHost(
|
|
157
148
|
args: CreateEnvironmentHostCommandInput,
|
|
158
149
|
options: __HttpHandlerOptions,
|
|
159
|
-
cb: (err: any, data?: CreateEnvironmentHostCommandOutput) => void
|
|
150
|
+
cb: (err: any, data?: CreateEnvironmentHostCommandOutput) => void,
|
|
160
151
|
): void;
|
|
161
152
|
deleteEntitlement(
|
|
162
153
|
args: DeleteEntitlementCommandInput,
|
|
163
|
-
options?: __HttpHandlerOptions
|
|
154
|
+
options?: __HttpHandlerOptions,
|
|
164
155
|
): Promise<DeleteEntitlementCommandOutput>;
|
|
165
156
|
deleteEntitlement(
|
|
166
157
|
args: DeleteEntitlementCommandInput,
|
|
167
|
-
cb: (err: any, data?: DeleteEntitlementCommandOutput) => void
|
|
158
|
+
cb: (err: any, data?: DeleteEntitlementCommandOutput) => void,
|
|
168
159
|
): void;
|
|
169
160
|
deleteEntitlement(
|
|
170
161
|
args: DeleteEntitlementCommandInput,
|
|
171
162
|
options: __HttpHandlerOptions,
|
|
172
|
-
cb: (err: any, data?: DeleteEntitlementCommandOutput) => void
|
|
163
|
+
cb: (err: any, data?: DeleteEntitlementCommandOutput) => void,
|
|
173
164
|
): void;
|
|
174
165
|
deleteEnvironment(
|
|
175
166
|
args: DeleteEnvironmentCommandInput,
|
|
176
|
-
options?: __HttpHandlerOptions
|
|
167
|
+
options?: __HttpHandlerOptions,
|
|
177
168
|
): Promise<DeleteEnvironmentCommandOutput>;
|
|
178
169
|
deleteEnvironment(
|
|
179
170
|
args: DeleteEnvironmentCommandInput,
|
|
180
|
-
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void,
|
|
181
172
|
): void;
|
|
182
173
|
deleteEnvironment(
|
|
183
174
|
args: DeleteEnvironmentCommandInput,
|
|
184
175
|
options: __HttpHandlerOptions,
|
|
185
|
-
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void
|
|
176
|
+
cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void,
|
|
186
177
|
): void;
|
|
187
178
|
deleteEnvironmentConnector(
|
|
188
179
|
args: DeleteEnvironmentConnectorCommandInput,
|
|
189
|
-
options?: __HttpHandlerOptions
|
|
180
|
+
options?: __HttpHandlerOptions,
|
|
190
181
|
): Promise<DeleteEnvironmentConnectorCommandOutput>;
|
|
191
182
|
deleteEnvironmentConnector(
|
|
192
183
|
args: DeleteEnvironmentConnectorCommandInput,
|
|
193
|
-
cb: (err: any, data?: DeleteEnvironmentConnectorCommandOutput) => void
|
|
184
|
+
cb: (err: any, data?: DeleteEnvironmentConnectorCommandOutput) => void,
|
|
194
185
|
): void;
|
|
195
186
|
deleteEnvironmentConnector(
|
|
196
187
|
args: DeleteEnvironmentConnectorCommandInput,
|
|
197
188
|
options: __HttpHandlerOptions,
|
|
198
|
-
cb: (err: any, data?: DeleteEnvironmentConnectorCommandOutput) => void
|
|
189
|
+
cb: (err: any, data?: DeleteEnvironmentConnectorCommandOutput) => void,
|
|
199
190
|
): void;
|
|
200
191
|
deleteEnvironmentHost(
|
|
201
192
|
args: DeleteEnvironmentHostCommandInput,
|
|
202
|
-
options?: __HttpHandlerOptions
|
|
193
|
+
options?: __HttpHandlerOptions,
|
|
203
194
|
): Promise<DeleteEnvironmentHostCommandOutput>;
|
|
204
195
|
deleteEnvironmentHost(
|
|
205
196
|
args: DeleteEnvironmentHostCommandInput,
|
|
206
|
-
cb: (err: any, data?: DeleteEnvironmentHostCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: DeleteEnvironmentHostCommandOutput) => void,
|
|
207
198
|
): void;
|
|
208
199
|
deleteEnvironmentHost(
|
|
209
200
|
args: DeleteEnvironmentHostCommandInput,
|
|
210
201
|
options: __HttpHandlerOptions,
|
|
211
|
-
cb: (err: any, data?: DeleteEnvironmentHostCommandOutput) => void
|
|
202
|
+
cb: (err: any, data?: DeleteEnvironmentHostCommandOutput) => void,
|
|
212
203
|
): void;
|
|
213
204
|
disassociateEipFromVlan(
|
|
214
205
|
args: DisassociateEipFromVlanCommandInput,
|
|
215
|
-
options?: __HttpHandlerOptions
|
|
206
|
+
options?: __HttpHandlerOptions,
|
|
216
207
|
): Promise<DisassociateEipFromVlanCommandOutput>;
|
|
217
208
|
disassociateEipFromVlan(
|
|
218
209
|
args: DisassociateEipFromVlanCommandInput,
|
|
219
|
-
cb: (err: any, data?: DisassociateEipFromVlanCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: DisassociateEipFromVlanCommandOutput) => void,
|
|
220
211
|
): void;
|
|
221
212
|
disassociateEipFromVlan(
|
|
222
213
|
args: DisassociateEipFromVlanCommandInput,
|
|
223
214
|
options: __HttpHandlerOptions,
|
|
224
|
-
cb: (err: any, data?: DisassociateEipFromVlanCommandOutput) => void
|
|
215
|
+
cb: (err: any, data?: DisassociateEipFromVlanCommandOutput) => void,
|
|
225
216
|
): void;
|
|
226
217
|
getDepotUrl(
|
|
227
218
|
args: GetDepotUrlCommandInput,
|
|
228
|
-
options?: __HttpHandlerOptions
|
|
219
|
+
options?: __HttpHandlerOptions,
|
|
229
220
|
): Promise<GetDepotUrlCommandOutput>;
|
|
230
221
|
getDepotUrl(
|
|
231
222
|
args: GetDepotUrlCommandInput,
|
|
232
|
-
cb: (err: any, data?: GetDepotUrlCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: GetDepotUrlCommandOutput) => void,
|
|
233
224
|
): void;
|
|
234
225
|
getDepotUrl(
|
|
235
226
|
args: GetDepotUrlCommandInput,
|
|
236
227
|
options: __HttpHandlerOptions,
|
|
237
|
-
cb: (err: any, data?: GetDepotUrlCommandOutput) => void
|
|
228
|
+
cb: (err: any, data?: GetDepotUrlCommandOutput) => void,
|
|
238
229
|
): void;
|
|
239
230
|
getEnvironment(
|
|
240
231
|
args: GetEnvironmentCommandInput,
|
|
241
|
-
options?: __HttpHandlerOptions
|
|
232
|
+
options?: __HttpHandlerOptions,
|
|
242
233
|
): Promise<GetEnvironmentCommandOutput>;
|
|
243
234
|
getEnvironment(
|
|
244
235
|
args: GetEnvironmentCommandInput,
|
|
245
|
-
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
236
|
+
cb: (err: any, data?: GetEnvironmentCommandOutput) => void,
|
|
246
237
|
): void;
|
|
247
238
|
getEnvironment(
|
|
248
239
|
args: GetEnvironmentCommandInput,
|
|
249
240
|
options: __HttpHandlerOptions,
|
|
250
|
-
cb: (err: any, data?: GetEnvironmentCommandOutput) => void
|
|
241
|
+
cb: (err: any, data?: GetEnvironmentCommandOutput) => void,
|
|
251
242
|
): void;
|
|
252
243
|
getVersions(): Promise<GetVersionsCommandOutput>;
|
|
253
244
|
getVersions(
|
|
254
245
|
args: GetVersionsCommandInput,
|
|
255
|
-
options?: __HttpHandlerOptions
|
|
246
|
+
options?: __HttpHandlerOptions,
|
|
256
247
|
): Promise<GetVersionsCommandOutput>;
|
|
257
248
|
getVersions(
|
|
258
249
|
args: GetVersionsCommandInput,
|
|
259
|
-
cb: (err: any, data?: GetVersionsCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: GetVersionsCommandOutput) => void,
|
|
260
251
|
): void;
|
|
261
252
|
getVersions(
|
|
262
253
|
args: GetVersionsCommandInput,
|
|
263
254
|
options: __HttpHandlerOptions,
|
|
264
|
-
cb: (err: any, data?: GetVersionsCommandOutput) => void
|
|
255
|
+
cb: (err: any, data?: GetVersionsCommandOutput) => void,
|
|
265
256
|
): void;
|
|
266
257
|
listEnvironmentConnectors(
|
|
267
258
|
args: ListEnvironmentConnectorsCommandInput,
|
|
268
|
-
options?: __HttpHandlerOptions
|
|
259
|
+
options?: __HttpHandlerOptions,
|
|
269
260
|
): Promise<ListEnvironmentConnectorsCommandOutput>;
|
|
270
261
|
listEnvironmentConnectors(
|
|
271
262
|
args: ListEnvironmentConnectorsCommandInput,
|
|
272
|
-
cb: (err: any, data?: ListEnvironmentConnectorsCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: ListEnvironmentConnectorsCommandOutput) => void,
|
|
273
264
|
): void;
|
|
274
265
|
listEnvironmentConnectors(
|
|
275
266
|
args: ListEnvironmentConnectorsCommandInput,
|
|
276
267
|
options: __HttpHandlerOptions,
|
|
277
|
-
cb: (err: any, data?: ListEnvironmentConnectorsCommandOutput) => void
|
|
268
|
+
cb: (err: any, data?: ListEnvironmentConnectorsCommandOutput) => void,
|
|
278
269
|
): void;
|
|
279
270
|
listEnvironmentHosts(
|
|
280
271
|
args: ListEnvironmentHostsCommandInput,
|
|
281
|
-
options?: __HttpHandlerOptions
|
|
272
|
+
options?: __HttpHandlerOptions,
|
|
282
273
|
): Promise<ListEnvironmentHostsCommandOutput>;
|
|
283
274
|
listEnvironmentHosts(
|
|
284
275
|
args: ListEnvironmentHostsCommandInput,
|
|
285
|
-
cb: (err: any, data?: ListEnvironmentHostsCommandOutput) => void
|
|
276
|
+
cb: (err: any, data?: ListEnvironmentHostsCommandOutput) => void,
|
|
286
277
|
): void;
|
|
287
278
|
listEnvironmentHosts(
|
|
288
279
|
args: ListEnvironmentHostsCommandInput,
|
|
289
280
|
options: __HttpHandlerOptions,
|
|
290
|
-
cb: (err: any, data?: ListEnvironmentHostsCommandOutput) => void
|
|
281
|
+
cb: (err: any, data?: ListEnvironmentHostsCommandOutput) => void,
|
|
291
282
|
): void;
|
|
292
283
|
listEnvironments(): Promise<ListEnvironmentsCommandOutput>;
|
|
293
284
|
listEnvironments(
|
|
294
285
|
args: ListEnvironmentsCommandInput,
|
|
295
|
-
options?: __HttpHandlerOptions
|
|
286
|
+
options?: __HttpHandlerOptions,
|
|
296
287
|
): Promise<ListEnvironmentsCommandOutput>;
|
|
297
288
|
listEnvironments(
|
|
298
289
|
args: ListEnvironmentsCommandInput,
|
|
299
|
-
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
290
|
+
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
|
|
300
291
|
): void;
|
|
301
292
|
listEnvironments(
|
|
302
293
|
args: ListEnvironmentsCommandInput,
|
|
303
294
|
options: __HttpHandlerOptions,
|
|
304
|
-
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void
|
|
295
|
+
cb: (err: any, data?: ListEnvironmentsCommandOutput) => void,
|
|
305
296
|
): void;
|
|
306
297
|
listEnvironmentVlans(
|
|
307
298
|
args: ListEnvironmentVlansCommandInput,
|
|
308
|
-
options?: __HttpHandlerOptions
|
|
299
|
+
options?: __HttpHandlerOptions,
|
|
309
300
|
): Promise<ListEnvironmentVlansCommandOutput>;
|
|
310
301
|
listEnvironmentVlans(
|
|
311
302
|
args: ListEnvironmentVlansCommandInput,
|
|
312
|
-
cb: (err: any, data?: ListEnvironmentVlansCommandOutput) => void
|
|
303
|
+
cb: (err: any, data?: ListEnvironmentVlansCommandOutput) => void,
|
|
313
304
|
): void;
|
|
314
305
|
listEnvironmentVlans(
|
|
315
306
|
args: ListEnvironmentVlansCommandInput,
|
|
316
307
|
options: __HttpHandlerOptions,
|
|
317
|
-
cb: (err: any, data?: ListEnvironmentVlansCommandOutput) => void
|
|
308
|
+
cb: (err: any, data?: ListEnvironmentVlansCommandOutput) => void,
|
|
318
309
|
): void;
|
|
319
310
|
listTagsForResource(
|
|
320
311
|
args: ListTagsForResourceCommandInput,
|
|
321
|
-
options?: __HttpHandlerOptions
|
|
312
|
+
options?: __HttpHandlerOptions,
|
|
322
313
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
323
314
|
listTagsForResource(
|
|
324
315
|
args: ListTagsForResourceCommandInput,
|
|
325
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
316
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
326
317
|
): void;
|
|
327
318
|
listTagsForResource(
|
|
328
319
|
args: ListTagsForResourceCommandInput,
|
|
329
320
|
options: __HttpHandlerOptions,
|
|
330
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
321
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
331
322
|
): void;
|
|
332
323
|
listVmEntitlements(
|
|
333
324
|
args: ListVmEntitlementsCommandInput,
|
|
334
|
-
options?: __HttpHandlerOptions
|
|
325
|
+
options?: __HttpHandlerOptions,
|
|
335
326
|
): Promise<ListVmEntitlementsCommandOutput>;
|
|
336
327
|
listVmEntitlements(
|
|
337
328
|
args: ListVmEntitlementsCommandInput,
|
|
338
|
-
cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void
|
|
329
|
+
cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void,
|
|
339
330
|
): void;
|
|
340
331
|
listVmEntitlements(
|
|
341
332
|
args: ListVmEntitlementsCommandInput,
|
|
342
333
|
options: __HttpHandlerOptions,
|
|
343
|
-
cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void
|
|
334
|
+
cb: (err: any, data?: ListVmEntitlementsCommandOutput) => void,
|
|
344
335
|
): void;
|
|
345
336
|
tagResource(
|
|
346
337
|
args: TagResourceCommandInput,
|
|
347
|
-
options?: __HttpHandlerOptions
|
|
338
|
+
options?: __HttpHandlerOptions,
|
|
348
339
|
): Promise<TagResourceCommandOutput>;
|
|
349
340
|
tagResource(
|
|
350
341
|
args: TagResourceCommandInput,
|
|
351
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
342
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
352
343
|
): void;
|
|
353
344
|
tagResource(
|
|
354
345
|
args: TagResourceCommandInput,
|
|
355
346
|
options: __HttpHandlerOptions,
|
|
356
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
347
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
357
348
|
): void;
|
|
358
349
|
untagResource(
|
|
359
350
|
args: UntagResourceCommandInput,
|
|
360
|
-
options?: __HttpHandlerOptions
|
|
351
|
+
options?: __HttpHandlerOptions,
|
|
361
352
|
): Promise<UntagResourceCommandOutput>;
|
|
362
353
|
untagResource(
|
|
363
354
|
args: UntagResourceCommandInput,
|
|
364
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
355
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
365
356
|
): void;
|
|
366
357
|
untagResource(
|
|
367
358
|
args: UntagResourceCommandInput,
|
|
368
359
|
options: __HttpHandlerOptions,
|
|
369
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
360
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
370
361
|
): void;
|
|
371
362
|
updateEnvironmentConnector(
|
|
372
363
|
args: UpdateEnvironmentConnectorCommandInput,
|
|
373
|
-
options?: __HttpHandlerOptions
|
|
364
|
+
options?: __HttpHandlerOptions,
|
|
374
365
|
): Promise<UpdateEnvironmentConnectorCommandOutput>;
|
|
375
366
|
updateEnvironmentConnector(
|
|
376
367
|
args: UpdateEnvironmentConnectorCommandInput,
|
|
377
|
-
cb: (err: any, data?: UpdateEnvironmentConnectorCommandOutput) => void
|
|
368
|
+
cb: (err: any, data?: UpdateEnvironmentConnectorCommandOutput) => void,
|
|
378
369
|
): void;
|
|
379
370
|
updateEnvironmentConnector(
|
|
380
371
|
args: UpdateEnvironmentConnectorCommandInput,
|
|
381
372
|
options: __HttpHandlerOptions,
|
|
382
|
-
cb: (err: any, data?: UpdateEnvironmentConnectorCommandOutput) => void
|
|
373
|
+
cb: (err: any, data?: UpdateEnvironmentConnectorCommandOutput) => void,
|
|
383
374
|
): void;
|
|
384
375
|
paginateListEnvironmentConnectors(
|
|
385
376
|
args: ListEnvironmentConnectorsCommandInput,
|
|
386
377
|
paginationConfig?: Pick<
|
|
387
378
|
PaginationConfiguration,
|
|
388
379
|
Exclude<keyof PaginationConfiguration, "client">
|
|
389
|
-
|
|
380
|
+
>,
|
|
390
381
|
): Paginator<ListEnvironmentConnectorsCommandOutput>;
|
|
391
382
|
paginateListEnvironmentHosts(
|
|
392
383
|
args: ListEnvironmentHostsCommandInput,
|
|
393
384
|
paginationConfig?: Pick<
|
|
394
385
|
PaginationConfiguration,
|
|
395
386
|
Exclude<keyof PaginationConfiguration, "client">
|
|
396
|
-
|
|
387
|
+
>,
|
|
397
388
|
): Paginator<ListEnvironmentHostsCommandOutput>;
|
|
398
389
|
paginateListEnvironments(
|
|
399
390
|
args?: ListEnvironmentsCommandInput,
|
|
400
391
|
paginationConfig?: Pick<
|
|
401
392
|
PaginationConfiguration,
|
|
402
393
|
Exclude<keyof PaginationConfiguration, "client">
|
|
403
|
-
|
|
394
|
+
>,
|
|
404
395
|
): Paginator<ListEnvironmentsCommandOutput>;
|
|
405
396
|
paginateListEnvironmentVlans(
|
|
406
397
|
args: ListEnvironmentVlansCommandInput,
|
|
407
398
|
paginationConfig?: Pick<
|
|
408
399
|
PaginationConfiguration,
|
|
409
400
|
Exclude<keyof PaginationConfiguration, "client">
|
|
410
|
-
|
|
401
|
+
>,
|
|
411
402
|
): Paginator<ListEnvironmentVlansCommandOutput>;
|
|
412
403
|
paginateListVmEntitlements(
|
|
413
404
|
args: ListVmEntitlementsCommandInput,
|
|
414
405
|
paginationConfig?: Pick<
|
|
415
406
|
PaginationConfiguration,
|
|
416
407
|
Exclude<keyof PaginationConfiguration, "client">
|
|
417
|
-
|
|
408
|
+
>,
|
|
418
409
|
): Paginator<ListVmEntitlementsCommandOutput>;
|
|
419
410
|
}
|
|
420
411
|
export declare class Evs extends EvsClient implements Evs {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -76,18 +73,12 @@ import {
|
|
|
76
73
|
DisassociateEipFromVlanCommandInput,
|
|
77
74
|
DisassociateEipFromVlanCommandOutput,
|
|
78
75
|
} from "./commands/DisassociateEipFromVlanCommand";
|
|
79
|
-
import {
|
|
80
|
-
GetDepotUrlCommandInput,
|
|
81
|
-
GetDepotUrlCommandOutput,
|
|
82
|
-
} from "./commands/GetDepotUrlCommand";
|
|
76
|
+
import { GetDepotUrlCommandInput, GetDepotUrlCommandOutput } from "./commands/GetDepotUrlCommand";
|
|
83
77
|
import {
|
|
84
78
|
GetEnvironmentCommandInput,
|
|
85
79
|
GetEnvironmentCommandOutput,
|
|
86
80
|
} from "./commands/GetEnvironmentCommand";
|
|
87
|
-
import {
|
|
88
|
-
GetVersionsCommandInput,
|
|
89
|
-
GetVersionsCommandOutput,
|
|
90
|
-
} from "./commands/GetVersionsCommand";
|
|
81
|
+
import { GetVersionsCommandInput, GetVersionsCommandOutput } from "./commands/GetVersionsCommand";
|
|
91
82
|
import {
|
|
92
83
|
ListEnvironmentConnectorsCommandInput,
|
|
93
84
|
ListEnvironmentConnectorsCommandOutput,
|
|
@@ -112,10 +103,7 @@ import {
|
|
|
112
103
|
ListVmEntitlementsCommandInput,
|
|
113
104
|
ListVmEntitlementsCommandOutput,
|
|
114
105
|
} from "./commands/ListVmEntitlementsCommand";
|
|
115
|
-
import {
|
|
116
|
-
TagResourceCommandInput,
|
|
117
|
-
TagResourceCommandOutput,
|
|
118
|
-
} from "./commands/TagResourceCommand";
|
|
106
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
119
107
|
import {
|
|
120
108
|
UntagResourceCommandInput,
|
|
121
109
|
UntagResourceCommandOutput,
|
|
@@ -177,8 +165,7 @@ export type ServiceOutputTypes =
|
|
|
177
165
|
| TagResourceCommandOutput
|
|
178
166
|
| UntagResourceCommandOutput
|
|
179
167
|
| UpdateEnvironmentConnectorCommandOutput;
|
|
180
|
-
export interface ClientDefaults
|
|
181
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
168
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
182
169
|
requestHandler?: __HttpHandlerUserInput;
|
|
183
170
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
184
171
|
urlParser?: __UrlParser;
|
|
@@ -203,9 +190,7 @@ export interface ClientDefaults
|
|
|
203
190
|
extensions?: RuntimeExtension[];
|
|
204
191
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
205
192
|
}
|
|
206
|
-
export type EvsClientConfigType = Partial<
|
|
207
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
208
|
-
> &
|
|
193
|
+
export type EvsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
209
194
|
ClientDefaults &
|
|
210
195
|
UserAgentInputConfig &
|
|
211
196
|
RetryInputConfig &
|
|
@@ -215,17 +200,16 @@ export type EvsClientConfigType = Partial<
|
|
|
215
200
|
HttpAuthSchemeInputConfig &
|
|
216
201
|
ClientInputEndpointParameters;
|
|
217
202
|
export interface EvsClientConfig extends EvsClientConfigType {}
|
|
218
|
-
export type EvsClientResolvedConfigType =
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
ClientResolvedEndpointParameters;
|
|
203
|
+
export type EvsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
204
|
+
Required<ClientDefaults> &
|
|
205
|
+
RuntimeExtensionsConfig &
|
|
206
|
+
UserAgentResolvedConfig &
|
|
207
|
+
RetryResolvedConfig &
|
|
208
|
+
RegionResolvedConfig &
|
|
209
|
+
HostHeaderResolvedConfig &
|
|
210
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
211
|
+
HttpAuthSchemeResolvedConfig &
|
|
212
|
+
ClientResolvedEndpointParameters;
|
|
229
213
|
export interface EvsClientResolvedConfig extends EvsClientResolvedConfigType {}
|
|
230
214
|
export declare class EvsClient extends __Client<
|
|
231
215
|
__HttpHandlerOptions,
|
|
@@ -7,17 +7,10 @@ import { EvsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: EvsHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: EvsHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): EvsHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -15,32 +15,29 @@ import { EvsClientResolvedConfig } from "../EvsClient";
|
|
|
15
15
|
export interface EvsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
16
|
region?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface EvsHttpAuthSchemeParametersProvider
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {}
|
|
18
|
+
export interface EvsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
EvsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
EvsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
25
24
|
export declare const defaultEvsHttpAuthSchemeParametersProvider: (
|
|
26
25
|
config: EvsClientResolvedConfig,
|
|
27
26
|
context: HandlerExecutionContext,
|
|
28
|
-
input: object
|
|
27
|
+
input: object,
|
|
29
28
|
) => Promise<EvsHttpAuthSchemeParameters>;
|
|
30
|
-
export interface EvsHttpAuthSchemeProvider
|
|
31
|
-
extends HttpAuthSchemeProvider<EvsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface EvsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<EvsHttpAuthSchemeParameters> {}
|
|
32
30
|
export declare const defaultEvsHttpAuthSchemeProvider: EvsHttpAuthSchemeProvider;
|
|
33
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
34
|
httpAuthSchemeProvider?: EvsHttpAuthSchemeProvider;
|
|
37
35
|
}
|
|
38
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
39
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
40
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
41
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
42
39
|
readonly httpAuthSchemeProvider: EvsHttpAuthSchemeProvider;
|
|
43
40
|
}
|
|
44
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
45
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
46
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceInputTypes,
|
|
5
|
-
ServiceOutputTypes,
|
|
6
|
-
} from "./EvsClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { EvsClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./EvsClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
EvsClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|