@aws-sdk/client-workspaces-thin-client 3.952.0 → 3.953.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 +233 -154
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/CreateEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeleteDeviceCommand.js +2 -2
- package/dist-es/commands/DeleteEnvironmentCommand.js +2 -2
- package/dist-es/commands/DeregisterDeviceCommand.js +2 -2
- package/dist-es/commands/GetDeviceCommand.js +2 -2
- package/dist-es/commands/GetEnvironmentCommand.js +2 -2
- package/dist-es/commands/GetSoftwareSetCommand.js +2 -2
- package/dist-es/commands/ListDevicesCommand.js +2 -2
- package/dist-es/commands/ListEnvironmentsCommand.js +2 -2
- package/dist-es/commands/ListSoftwareSetsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateDeviceCommand.js +2 -2
- package/dist-es/commands/UpdateEnvironmentCommand.js +2 -2
- package/dist-es/commands/UpdateSoftwareSetCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +139 -125
- package/dist-types/WorkSpacesThinClientClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +66 -80
- package/dist-types/ts3.4/WorkSpacesThinClientClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +65 -82
- package/package.json +34 -34
|
@@ -150,18 +150,18 @@ const _v = "version";
|
|
|
150
150
|
const _vS = "validationStatus";
|
|
151
151
|
const n0 = "com.amazonaws.workspacesthinclient";
|
|
152
152
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
153
|
-
import { AccessDeniedException
|
|
154
|
-
import { WorkSpacesThinClientServiceException
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
export var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
161
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
162
|
-
export var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
163
|
-
TypeRegistry.for(n0).registerError(ConflictException
|
|
164
|
-
export var CreateEnvironmentRequest = [
|
|
153
|
+
import { AccessDeniedException, ConflictException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
154
|
+
import { WorkSpacesThinClientServiceException } from "../models/WorkSpacesThinClientServiceException";
|
|
155
|
+
var ActivationCode = [0, n0, _AC, 8, 0];
|
|
156
|
+
var DesktopEndpoint = [0, n0, _DE, 8, 0];
|
|
157
|
+
var DeviceName = [0, n0, _DN, 8, 0];
|
|
158
|
+
var EnvironmentName = [0, n0, _EN, 8, 0];
|
|
159
|
+
var UserId = [0, n0, _UI, 8, 0];
|
|
160
|
+
export var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
161
|
+
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
162
|
+
export var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
163
|
+
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
164
|
+
export var CreateEnvironmentRequest$ = [
|
|
165
165
|
3,
|
|
166
166
|
n0,
|
|
167
167
|
_CER,
|
|
@@ -172,7 +172,7 @@ export var CreateEnvironmentRequest = [
|
|
|
172
172
|
0,
|
|
173
173
|
[() => DesktopEndpoint, 0],
|
|
174
174
|
0,
|
|
175
|
-
() => MaintenanceWindow
|
|
175
|
+
() => MaintenanceWindow$,
|
|
176
176
|
0,
|
|
177
177
|
0,
|
|
178
178
|
0,
|
|
@@ -181,8 +181,15 @@ export var CreateEnvironmentRequest = [
|
|
|
181
181
|
[() => DeviceCreationTagsMap, 0],
|
|
182
182
|
],
|
|
183
183
|
];
|
|
184
|
-
export var CreateEnvironmentResponse = [
|
|
185
|
-
|
|
184
|
+
export var CreateEnvironmentResponse$ = [
|
|
185
|
+
3,
|
|
186
|
+
n0,
|
|
187
|
+
_CERr,
|
|
188
|
+
0,
|
|
189
|
+
[_en],
|
|
190
|
+
[[() => EnvironmentSummary$, 0]],
|
|
191
|
+
];
|
|
192
|
+
export var DeleteDeviceRequest$ = [
|
|
186
193
|
3,
|
|
187
194
|
n0,
|
|
188
195
|
_DDR,
|
|
@@ -193,8 +200,8 @@ export var DeleteDeviceRequest = [
|
|
|
193
200
|
[0, { [_iT]: 1, [_hQ]: _cT }],
|
|
194
201
|
],
|
|
195
202
|
];
|
|
196
|
-
export var DeleteDeviceResponse = [3, n0, _DDRe, 0, [], []];
|
|
197
|
-
export var DeleteEnvironmentRequest = [
|
|
203
|
+
export var DeleteDeviceResponse$ = [3, n0, _DDRe, 0, [], []];
|
|
204
|
+
export var DeleteEnvironmentRequest$ = [
|
|
198
205
|
3,
|
|
199
206
|
n0,
|
|
200
207
|
_DER,
|
|
@@ -205,10 +212,10 @@ export var DeleteEnvironmentRequest = [
|
|
|
205
212
|
[0, { [_iT]: 1, [_hQ]: _cT }],
|
|
206
213
|
],
|
|
207
214
|
];
|
|
208
|
-
export var DeleteEnvironmentResponse = [3, n0, _DERe, 0, [], []];
|
|
209
|
-
export var DeregisterDeviceRequest = [3, n0, _DDRer, 0, [_i, _tDS, _cT], [[0, 1], 0, [0, 4]]];
|
|
210
|
-
export var DeregisterDeviceResponse = [3, n0, _DDRere, 0, [], []];
|
|
211
|
-
export var Device = [
|
|
215
|
+
export var DeleteEnvironmentResponse$ = [3, n0, _DERe, 0, [], []];
|
|
216
|
+
export var DeregisterDeviceRequest$ = [3, n0, _DDRer, 0, [_i, _tDS, _cT], [[0, 1], 0, [0, 4]]];
|
|
217
|
+
export var DeregisterDeviceResponse$ = [3, n0, _DDRere, 0, [], []];
|
|
218
|
+
export var Device$ = [
|
|
212
219
|
3,
|
|
213
220
|
n0,
|
|
214
221
|
_D,
|
|
@@ -238,7 +245,7 @@ export var Device = [
|
|
|
238
245
|
],
|
|
239
246
|
[0, 0, [() => DeviceName, 0], 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, 0, [() => UserId, 0]],
|
|
240
247
|
];
|
|
241
|
-
export var DeviceSummary = [
|
|
248
|
+
export var DeviceSummary$ = [
|
|
242
249
|
3,
|
|
243
250
|
n0,
|
|
244
251
|
_DS,
|
|
@@ -246,7 +253,7 @@ export var DeviceSummary = [
|
|
|
246
253
|
[_i, _sN, _n, _mo, _eI, _s, _cSSI, _dSSI, _pSSI, _sSUS, _lCA, _lPA, _cA, _uA, _a, _lUI],
|
|
247
254
|
[0, 0, [() => DeviceName, 0], 0, 0, 0, 0, 0, 0, 0, 4, 4, 4, 4, 0, [() => UserId, 0]],
|
|
248
255
|
];
|
|
249
|
-
export var Environment = [
|
|
256
|
+
export var Environment$ = [
|
|
250
257
|
3,
|
|
251
258
|
n0,
|
|
252
259
|
_E,
|
|
@@ -261,7 +268,7 @@ export var Environment = [
|
|
|
261
268
|
[() => ActivationCode, 0],
|
|
262
269
|
1,
|
|
263
270
|
0,
|
|
264
|
-
() => MaintenanceWindow
|
|
271
|
+
() => MaintenanceWindow$,
|
|
265
272
|
0,
|
|
266
273
|
0,
|
|
267
274
|
0,
|
|
@@ -274,7 +281,7 @@ export var Environment = [
|
|
|
274
281
|
[() => DeviceCreationTagsMap, 0],
|
|
275
282
|
],
|
|
276
283
|
];
|
|
277
|
-
export var EnvironmentSummary = [
|
|
284
|
+
export var EnvironmentSummary$ = [
|
|
278
285
|
3,
|
|
279
286
|
n0,
|
|
280
287
|
_ES,
|
|
@@ -288,7 +295,7 @@ export var EnvironmentSummary = [
|
|
|
288
295
|
0,
|
|
289
296
|
[() => ActivationCode, 0],
|
|
290
297
|
0,
|
|
291
|
-
() => MaintenanceWindow
|
|
298
|
+
() => MaintenanceWindow$,
|
|
292
299
|
0,
|
|
293
300
|
0,
|
|
294
301
|
0,
|
|
@@ -297,13 +304,13 @@ export var EnvironmentSummary = [
|
|
|
297
304
|
0,
|
|
298
305
|
],
|
|
299
306
|
];
|
|
300
|
-
export var GetDeviceRequest = [3, n0, _GDR, 0, [_i], [[0, 1]]];
|
|
301
|
-
export var GetDeviceResponse = [3, n0, _GDRe, 0, [_d], [[() => Device
|
|
302
|
-
export var GetEnvironmentRequest = [3, n0, _GER, 0, [_i], [[0, 1]]];
|
|
303
|
-
export var GetEnvironmentResponse = [3, n0, _GERe, 0, [_en], [[() => Environment
|
|
304
|
-
export var GetSoftwareSetRequest = [3, n0, _GSSR, 0, [_i], [[0, 1]]];
|
|
305
|
-
export var GetSoftwareSetResponse = [3, n0, _GSSRe, 0, [_sS], [() => SoftwareSet]];
|
|
306
|
-
export var InternalServerException = [
|
|
307
|
+
export var GetDeviceRequest$ = [3, n0, _GDR, 0, [_i], [[0, 1]]];
|
|
308
|
+
export var GetDeviceResponse$ = [3, n0, _GDRe, 0, [_d], [[() => Device$, 0]]];
|
|
309
|
+
export var GetEnvironmentRequest$ = [3, n0, _GER, 0, [_i], [[0, 1]]];
|
|
310
|
+
export var GetEnvironmentResponse$ = [3, n0, _GERe, 0, [_en], [[() => Environment$, 0]]];
|
|
311
|
+
export var GetSoftwareSetRequest$ = [3, n0, _GSSR, 0, [_i], [[0, 1]]];
|
|
312
|
+
export var GetSoftwareSetResponse$ = [3, n0, _GSSRe, 0, [_sS], [() => SoftwareSet$]];
|
|
313
|
+
export var InternalServerException$ = [
|
|
307
314
|
-3,
|
|
308
315
|
n0,
|
|
309
316
|
_ISE,
|
|
@@ -311,8 +318,8 @@ export var InternalServerException = [
|
|
|
311
318
|
[_m, _rAS],
|
|
312
319
|
[0, [1, { [_hH]: _RA }]],
|
|
313
320
|
];
|
|
314
|
-
TypeRegistry.for(n0).registerError(InternalServerException
|
|
315
|
-
export var ListDevicesRequest = [
|
|
321
|
+
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
322
|
+
export var ListDevicesRequest$ = [
|
|
316
323
|
3,
|
|
317
324
|
n0,
|
|
318
325
|
_LDR,
|
|
@@ -323,8 +330,8 @@ export var ListDevicesRequest = [
|
|
|
323
330
|
[1, { [_hQ]: _mR }],
|
|
324
331
|
],
|
|
325
332
|
];
|
|
326
|
-
export var ListDevicesResponse = [3, n0, _LDRi, 0, [_de, _nT], [[() => DeviceList, 0], 0]];
|
|
327
|
-
export var ListEnvironmentsRequest = [
|
|
333
|
+
export var ListDevicesResponse$ = [3, n0, _LDRi, 0, [_de, _nT], [[() => DeviceList, 0], 0]];
|
|
334
|
+
export var ListEnvironmentsRequest$ = [
|
|
328
335
|
3,
|
|
329
336
|
n0,
|
|
330
337
|
_LER,
|
|
@@ -335,7 +342,7 @@ export var ListEnvironmentsRequest = [
|
|
|
335
342
|
[1, { [_hQ]: _mR }],
|
|
336
343
|
],
|
|
337
344
|
];
|
|
338
|
-
export var ListEnvironmentsResponse = [
|
|
345
|
+
export var ListEnvironmentsResponse$ = [
|
|
339
346
|
3,
|
|
340
347
|
n0,
|
|
341
348
|
_LERi,
|
|
@@ -343,7 +350,7 @@ export var ListEnvironmentsResponse = [
|
|
|
343
350
|
[_env, _nT],
|
|
344
351
|
[[() => EnvironmentList, 0], 0],
|
|
345
352
|
];
|
|
346
|
-
export var ListSoftwareSetsRequest = [
|
|
353
|
+
export var ListSoftwareSetsRequest$ = [
|
|
347
354
|
3,
|
|
348
355
|
n0,
|
|
349
356
|
_LSSR,
|
|
@@ -354,7 +361,7 @@ export var ListSoftwareSetsRequest = [
|
|
|
354
361
|
[1, { [_hQ]: _mR }],
|
|
355
362
|
],
|
|
356
363
|
];
|
|
357
|
-
export var ListSoftwareSetsResponse = [
|
|
364
|
+
export var ListSoftwareSetsResponse$ = [
|
|
358
365
|
3,
|
|
359
366
|
n0,
|
|
360
367
|
_LSSRi,
|
|
@@ -362,9 +369,9 @@ export var ListSoftwareSetsResponse = [
|
|
|
362
369
|
[_sSo, _nT],
|
|
363
370
|
[() => SoftwareSetList, 0],
|
|
364
371
|
];
|
|
365
|
-
export var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
366
|
-
export var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [[() => TagsMap, 0]]];
|
|
367
|
-
export var MaintenanceWindow = [
|
|
372
|
+
export var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rA], [[0, 1]]];
|
|
373
|
+
export var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [[() => TagsMap, 0]]];
|
|
374
|
+
export var MaintenanceWindow$ = [
|
|
368
375
|
3,
|
|
369
376
|
n0,
|
|
370
377
|
_MW,
|
|
@@ -372,7 +379,7 @@ export var MaintenanceWindow = [
|
|
|
372
379
|
[_ty, _sTH, _sTM, _eTH, _eTM, _dOTW, _aTO],
|
|
373
380
|
[0, 1, 1, 1, 1, 64 | 0, 0],
|
|
374
381
|
];
|
|
375
|
-
export var ResourceNotFoundException = [
|
|
382
|
+
export var ResourceNotFoundException$ = [
|
|
376
383
|
-3,
|
|
377
384
|
n0,
|
|
378
385
|
_RNFE,
|
|
@@ -380,8 +387,8 @@ export var ResourceNotFoundException = [
|
|
|
380
387
|
[_m, _rI, _rT],
|
|
381
388
|
[0, 0, 0],
|
|
382
389
|
];
|
|
383
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
384
|
-
export var ServiceQuotaExceededException = [
|
|
390
|
+
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
391
|
+
export var ServiceQuotaExceededException$ = [
|
|
385
392
|
-3,
|
|
386
393
|
n0,
|
|
387
394
|
_SQEE,
|
|
@@ -389,9 +396,9 @@ export var ServiceQuotaExceededException = [
|
|
|
389
396
|
[_m, _rI, _rT, _sC, _qC],
|
|
390
397
|
[0, 0, 0, 0, 0],
|
|
391
398
|
];
|
|
392
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
393
|
-
export var Software = [3, n0, _S, 0, [_n, _v], [0, 0]];
|
|
394
|
-
export var SoftwareSet = [
|
|
399
|
+
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
400
|
+
export var Software$ = [3, n0, _S, 0, [_n, _v], [0, 0]];
|
|
401
|
+
export var SoftwareSet$ = [
|
|
395
402
|
3,
|
|
396
403
|
n0,
|
|
397
404
|
_SS,
|
|
@@ -399,7 +406,7 @@ export var SoftwareSet = [
|
|
|
399
406
|
[_i, _v, _rAe, _sU, _vS, _so, _a],
|
|
400
407
|
[0, 0, 4, 4, 0, () => SoftwareList, 0],
|
|
401
408
|
];
|
|
402
|
-
export var SoftwareSetSummary = [
|
|
409
|
+
export var SoftwareSetSummary$ = [
|
|
403
410
|
3,
|
|
404
411
|
n0,
|
|
405
412
|
_SSS,
|
|
@@ -407,7 +414,7 @@ export var SoftwareSetSummary = [
|
|
|
407
414
|
[_i, _v, _rAe, _sU, _vS, _a],
|
|
408
415
|
[0, 0, 4, 4, 0, 0],
|
|
409
416
|
];
|
|
410
|
-
export var TagResourceRequest = [
|
|
417
|
+
export var TagResourceRequest$ = [
|
|
411
418
|
3,
|
|
412
419
|
n0,
|
|
413
420
|
_TRR,
|
|
@@ -418,8 +425,8 @@ export var TagResourceRequest = [
|
|
|
418
425
|
[() => TagsMap, 0],
|
|
419
426
|
],
|
|
420
427
|
];
|
|
421
|
-
export var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
422
|
-
export var ThrottlingException = [
|
|
428
|
+
export var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
429
|
+
export var ThrottlingException$ = [
|
|
423
430
|
-3,
|
|
424
431
|
n0,
|
|
425
432
|
_TE,
|
|
@@ -427,8 +434,8 @@ export var ThrottlingException = [
|
|
|
427
434
|
[_m, _sC, _qC, _rAS],
|
|
428
435
|
[0, 0, 0, [1, { [_hH]: _RA }]],
|
|
429
436
|
];
|
|
430
|
-
TypeRegistry.for(n0).registerError(ThrottlingException
|
|
431
|
-
export var UntagResourceRequest = [
|
|
437
|
+
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
438
|
+
export var UntagResourceRequest$ = [
|
|
432
439
|
3,
|
|
433
440
|
n0,
|
|
434
441
|
_URR,
|
|
@@ -439,8 +446,8 @@ export var UntagResourceRequest = [
|
|
|
439
446
|
[() => TagKeys, { [_hQ]: _tK }],
|
|
440
447
|
],
|
|
441
448
|
];
|
|
442
|
-
export var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
443
|
-
export var UpdateDeviceRequest = [
|
|
449
|
+
export var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
450
|
+
export var UpdateDeviceRequest$ = [
|
|
444
451
|
3,
|
|
445
452
|
n0,
|
|
446
453
|
_UDR,
|
|
@@ -448,8 +455,8 @@ export var UpdateDeviceRequest = [
|
|
|
448
455
|
[_i, _n, _dSSI, _sSUS],
|
|
449
456
|
[[0, 1], [() => DeviceName, 0], 0, 0],
|
|
450
457
|
];
|
|
451
|
-
export var UpdateDeviceResponse = [3, n0, _UDRp, 0, [_d], [[() => DeviceSummary
|
|
452
|
-
export var UpdateEnvironmentRequest = [
|
|
458
|
+
export var UpdateDeviceResponse$ = [3, n0, _UDRp, 0, [_d], [[() => DeviceSummary$, 0]]];
|
|
459
|
+
export var UpdateEnvironmentRequest$ = [
|
|
453
460
|
3,
|
|
454
461
|
n0,
|
|
455
462
|
_UER,
|
|
@@ -461,16 +468,23 @@ export var UpdateEnvironmentRequest = [
|
|
|
461
468
|
0,
|
|
462
469
|
[() => DesktopEndpoint, 0],
|
|
463
470
|
0,
|
|
464
|
-
() => MaintenanceWindow
|
|
471
|
+
() => MaintenanceWindow$,
|
|
465
472
|
0,
|
|
466
473
|
0,
|
|
467
474
|
[() => DeviceCreationTagsMap, 0],
|
|
468
475
|
],
|
|
469
476
|
];
|
|
470
|
-
export var UpdateEnvironmentResponse = [
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
477
|
+
export var UpdateEnvironmentResponse$ = [
|
|
478
|
+
3,
|
|
479
|
+
n0,
|
|
480
|
+
_UERp,
|
|
481
|
+
0,
|
|
482
|
+
[_en],
|
|
483
|
+
[[() => EnvironmentSummary$, 0]],
|
|
484
|
+
];
|
|
485
|
+
export var UpdateSoftwareSetRequest$ = [3, n0, _USSR, 0, [_i, _vS], [[0, 1], 0]];
|
|
486
|
+
export var UpdateSoftwareSetResponse$ = [3, n0, _USSRp, 0, [], []];
|
|
487
|
+
export var ValidationException$ = [
|
|
474
488
|
-3,
|
|
475
489
|
n0,
|
|
476
490
|
_VE,
|
|
@@ -478,9 +492,9 @@ export var ValidationException = [
|
|
|
478
492
|
[_m, _r, _fL],
|
|
479
493
|
[0, 0, () => ValidationExceptionFieldList],
|
|
480
494
|
];
|
|
481
|
-
TypeRegistry.for(n0).registerError(ValidationException
|
|
482
|
-
export var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
483
|
-
export var WorkSpacesThinClientServiceException = [
|
|
495
|
+
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
496
|
+
export var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
497
|
+
export var WorkSpacesThinClientServiceException$ = [
|
|
484
498
|
-3,
|
|
485
499
|
_sm,
|
|
486
500
|
"WorkSpacesThinClientServiceException",
|
|
@@ -488,141 +502,141 @@ export var WorkSpacesThinClientServiceException = [
|
|
|
488
502
|
[],
|
|
489
503
|
[],
|
|
490
504
|
];
|
|
491
|
-
TypeRegistry.for(_sm).registerError(WorkSpacesThinClientServiceException
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
export var CreateEnvironment = [
|
|
505
|
+
TypeRegistry.for(_sm).registerError(WorkSpacesThinClientServiceException$, WorkSpacesThinClientServiceException);
|
|
506
|
+
var DayOfWeekList = 64 | 0;
|
|
507
|
+
var DeviceList = [1, n0, _DL, 0, [() => DeviceSummary$, 0]];
|
|
508
|
+
var EnvironmentList = [1, n0, _EL, 0, [() => EnvironmentSummary$, 0]];
|
|
509
|
+
var SoftwareList = [1, n0, _SL, 0, () => Software$];
|
|
510
|
+
var SoftwareSetList = [1, n0, _SSL, 0, () => SoftwareSetSummary$];
|
|
511
|
+
var TagKeys = [1, n0, _TK, 8, 0];
|
|
512
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
513
|
+
var DeviceCreationTagsMap = [2, n0, _DCTM, 8, 0, 0];
|
|
514
|
+
var TagsMap = [2, n0, _TM, 8, 0, 0];
|
|
515
|
+
export var CreateEnvironment$ = [
|
|
502
516
|
9,
|
|
503
517
|
n0,
|
|
504
518
|
_CEr,
|
|
505
519
|
{ [_h]: ["POST", "/environments", 201], [_end]: ["api."] },
|
|
506
|
-
() => CreateEnvironmentRequest
|
|
507
|
-
() => CreateEnvironmentResponse
|
|
520
|
+
() => CreateEnvironmentRequest$,
|
|
521
|
+
() => CreateEnvironmentResponse$,
|
|
508
522
|
];
|
|
509
|
-
export var DeleteDevice = [
|
|
523
|
+
export var DeleteDevice$ = [
|
|
510
524
|
9,
|
|
511
525
|
n0,
|
|
512
526
|
_DD,
|
|
513
527
|
{ [_h]: ["DELETE", "/devices/{id}", 204], [_end]: ["api."] },
|
|
514
|
-
() => DeleteDeviceRequest
|
|
515
|
-
() => DeleteDeviceResponse
|
|
528
|
+
() => DeleteDeviceRequest$,
|
|
529
|
+
() => DeleteDeviceResponse$,
|
|
516
530
|
];
|
|
517
|
-
export var DeleteEnvironment = [
|
|
531
|
+
export var DeleteEnvironment$ = [
|
|
518
532
|
9,
|
|
519
533
|
n0,
|
|
520
534
|
_DEe,
|
|
521
535
|
{ [_h]: ["DELETE", "/environments/{id}", 204], [_end]: ["api."] },
|
|
522
|
-
() => DeleteEnvironmentRequest
|
|
523
|
-
() => DeleteEnvironmentResponse
|
|
536
|
+
() => DeleteEnvironmentRequest$,
|
|
537
|
+
() => DeleteEnvironmentResponse$,
|
|
524
538
|
];
|
|
525
|
-
export var DeregisterDevice = [
|
|
539
|
+
export var DeregisterDevice$ = [
|
|
526
540
|
9,
|
|
527
541
|
n0,
|
|
528
542
|
_DDe,
|
|
529
543
|
{ [_h]: ["POST", "/deregister-device/{id}", 202], [_end]: ["api."] },
|
|
530
|
-
() => DeregisterDeviceRequest
|
|
531
|
-
() => DeregisterDeviceResponse
|
|
544
|
+
() => DeregisterDeviceRequest$,
|
|
545
|
+
() => DeregisterDeviceResponse$,
|
|
532
546
|
];
|
|
533
|
-
export var GetDevice = [
|
|
547
|
+
export var GetDevice$ = [
|
|
534
548
|
9,
|
|
535
549
|
n0,
|
|
536
550
|
_GD,
|
|
537
551
|
{ [_h]: ["GET", "/devices/{id}", 200], [_end]: ["api."] },
|
|
538
|
-
() => GetDeviceRequest
|
|
539
|
-
() => GetDeviceResponse
|
|
552
|
+
() => GetDeviceRequest$,
|
|
553
|
+
() => GetDeviceResponse$,
|
|
540
554
|
];
|
|
541
|
-
export var GetEnvironment = [
|
|
555
|
+
export var GetEnvironment$ = [
|
|
542
556
|
9,
|
|
543
557
|
n0,
|
|
544
558
|
_GE,
|
|
545
559
|
{ [_h]: ["GET", "/environments/{id}", 200], [_end]: ["api."] },
|
|
546
|
-
() => GetEnvironmentRequest
|
|
547
|
-
() => GetEnvironmentResponse
|
|
560
|
+
() => GetEnvironmentRequest$,
|
|
561
|
+
() => GetEnvironmentResponse$,
|
|
548
562
|
];
|
|
549
|
-
export var GetSoftwareSet = [
|
|
563
|
+
export var GetSoftwareSet$ = [
|
|
550
564
|
9,
|
|
551
565
|
n0,
|
|
552
566
|
_GSS,
|
|
553
567
|
{ [_h]: ["GET", "/softwaresets/{id}", 200], [_end]: ["api."] },
|
|
554
|
-
() => GetSoftwareSetRequest
|
|
555
|
-
() => GetSoftwareSetResponse
|
|
568
|
+
() => GetSoftwareSetRequest$,
|
|
569
|
+
() => GetSoftwareSetResponse$,
|
|
556
570
|
];
|
|
557
|
-
export var ListDevices = [
|
|
571
|
+
export var ListDevices$ = [
|
|
558
572
|
9,
|
|
559
573
|
n0,
|
|
560
574
|
_LD,
|
|
561
575
|
{ [_h]: ["GET", "/devices", 200], [_end]: ["api."] },
|
|
562
|
-
() => ListDevicesRequest
|
|
563
|
-
() => ListDevicesResponse
|
|
576
|
+
() => ListDevicesRequest$,
|
|
577
|
+
() => ListDevicesResponse$,
|
|
564
578
|
];
|
|
565
|
-
export var ListEnvironments = [
|
|
579
|
+
export var ListEnvironments$ = [
|
|
566
580
|
9,
|
|
567
581
|
n0,
|
|
568
582
|
_LE,
|
|
569
583
|
{ [_h]: ["GET", "/environments", 200], [_end]: ["api."] },
|
|
570
|
-
() => ListEnvironmentsRequest
|
|
571
|
-
() => ListEnvironmentsResponse
|
|
584
|
+
() => ListEnvironmentsRequest$,
|
|
585
|
+
() => ListEnvironmentsResponse$,
|
|
572
586
|
];
|
|
573
|
-
export var ListSoftwareSets = [
|
|
587
|
+
export var ListSoftwareSets$ = [
|
|
574
588
|
9,
|
|
575
589
|
n0,
|
|
576
590
|
_LSS,
|
|
577
591
|
{ [_h]: ["GET", "/softwaresets", 200], [_end]: ["api."] },
|
|
578
|
-
() => ListSoftwareSetsRequest
|
|
579
|
-
() => ListSoftwareSetsResponse
|
|
592
|
+
() => ListSoftwareSetsRequest$,
|
|
593
|
+
() => ListSoftwareSetsResponse$,
|
|
580
594
|
];
|
|
581
|
-
export var ListTagsForResource = [
|
|
595
|
+
export var ListTagsForResource$ = [
|
|
582
596
|
9,
|
|
583
597
|
n0,
|
|
584
598
|
_LTFR,
|
|
585
599
|
{ [_h]: ["GET", "/tags/{resourceArn}", 200], [_end]: ["api."] },
|
|
586
|
-
() => ListTagsForResourceRequest
|
|
587
|
-
() => ListTagsForResourceResponse
|
|
600
|
+
() => ListTagsForResourceRequest$,
|
|
601
|
+
() => ListTagsForResourceResponse$,
|
|
588
602
|
];
|
|
589
|
-
export var TagResource = [
|
|
603
|
+
export var TagResource$ = [
|
|
590
604
|
9,
|
|
591
605
|
n0,
|
|
592
606
|
_TR,
|
|
593
607
|
{ [_h]: ["POST", "/tags/{resourceArn}", 200], [_end]: ["api."] },
|
|
594
|
-
() => TagResourceRequest
|
|
595
|
-
() => TagResourceResponse
|
|
608
|
+
() => TagResourceRequest$,
|
|
609
|
+
() => TagResourceResponse$,
|
|
596
610
|
];
|
|
597
|
-
export var UntagResource = [
|
|
611
|
+
export var UntagResource$ = [
|
|
598
612
|
9,
|
|
599
613
|
n0,
|
|
600
614
|
_UR,
|
|
601
615
|
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200], [_end]: ["api."] },
|
|
602
|
-
() => UntagResourceRequest
|
|
603
|
-
() => UntagResourceResponse
|
|
616
|
+
() => UntagResourceRequest$,
|
|
617
|
+
() => UntagResourceResponse$,
|
|
604
618
|
];
|
|
605
|
-
export var UpdateDevice = [
|
|
619
|
+
export var UpdateDevice$ = [
|
|
606
620
|
9,
|
|
607
621
|
n0,
|
|
608
622
|
_UD,
|
|
609
623
|
{ [_h]: ["PATCH", "/devices/{id}", 200], [_end]: ["api."] },
|
|
610
|
-
() => UpdateDeviceRequest
|
|
611
|
-
() => UpdateDeviceResponse
|
|
624
|
+
() => UpdateDeviceRequest$,
|
|
625
|
+
() => UpdateDeviceResponse$,
|
|
612
626
|
];
|
|
613
|
-
export var UpdateEnvironment = [
|
|
627
|
+
export var UpdateEnvironment$ = [
|
|
614
628
|
9,
|
|
615
629
|
n0,
|
|
616
630
|
_UE,
|
|
617
631
|
{ [_h]: ["PATCH", "/environments/{id}", 200], [_end]: ["api."] },
|
|
618
|
-
() => UpdateEnvironmentRequest
|
|
619
|
-
() => UpdateEnvironmentResponse
|
|
632
|
+
() => UpdateEnvironmentRequest$,
|
|
633
|
+
() => UpdateEnvironmentResponse$,
|
|
620
634
|
];
|
|
621
|
-
export var UpdateSoftwareSet = [
|
|
635
|
+
export var UpdateSoftwareSet$ = [
|
|
622
636
|
9,
|
|
623
637
|
n0,
|
|
624
638
|
_USS,
|
|
625
639
|
{ [_h]: ["PATCH", "/softwaresets/{id}", 204], [_end]: ["api."] },
|
|
626
|
-
() => UpdateSoftwareSetRequest
|
|
627
|
-
() => UpdateSoftwareSetResponse
|
|
640
|
+
() => UpdateSoftwareSetRequest$,
|
|
641
|
+
() => UpdateSoftwareSetResponse$,
|
|
628
642
|
];
|
|
@@ -5,7 +5,7 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type
|
|
8
|
+
import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
|
|
11
11
|
import { DeleteDeviceCommandInput, DeleteDeviceCommandOutput } from "./commands/DeleteDeviceCommand";
|
|
@@ -157,15 +157,6 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
157
157
|
* Optional extensions
|
|
158
158
|
*/
|
|
159
159
|
extensions?: RuntimeExtension[];
|
|
160
|
-
/**
|
|
161
|
-
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
162
|
-
* may be overridden. A default will always be set by the client.
|
|
163
|
-
* Available options depend on the service's supported protocols and will not be validated by
|
|
164
|
-
* the client.
|
|
165
|
-
* @alpha
|
|
166
|
-
*
|
|
167
|
-
*/
|
|
168
|
-
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
169
160
|
/**
|
|
170
161
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
171
162
|
*/
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { WorkSpacesThinClientExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
+
export * from "./schemas/schemas_0";
|
|
12
13
|
export * from "./pagination";
|
|
13
14
|
export * from "./models/enums";
|
|
14
15
|
export * from "./models/errors";
|
|
@@ -17,8 +17,13 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
17
17
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
-
apiVersion: string;
|
|
21
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
22
27
|
urlParser: import("@smithy/types").UrlParser;
|
|
23
28
|
base64Decoder: import("@smithy/types").Decoder;
|
|
24
29
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -29,7 +34,6 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
29
34
|
profile?: string;
|
|
30
35
|
logger: import("@smithy/types").Logger;
|
|
31
36
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
33
37
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
34
38
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
35
39
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -19,8 +19,13 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
-
apiVersion: string;
|
|
23
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
24
29
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
30
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
31
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -31,7 +36,6 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
31
36
|
profile?: string;
|
|
32
37
|
logger: import("@smithy/types").Logger;
|
|
33
38
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
35
39
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
36
40
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
37
41
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -6,8 +6,13 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
6
6
|
runtime: string;
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
-
apiVersion: string;
|
|
10
9
|
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
11
16
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
17
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
18
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -27,7 +32,6 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
27
32
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
33
|
logger: import("@smithy/types").Logger;
|
|
29
34
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
31
35
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
32
36
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
37
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
1
2
|
import type { WorkSpacesThinClientClientConfig } from "./WorkSpacesThinClientClient";
|
|
2
3
|
/**
|
|
3
4
|
* @internal
|
|
@@ -14,7 +15,11 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
14
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").WorkSpacesThinClientHttpAuthSchemeProvider;
|
|
15
16
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
17
|
logger: import("@smithy/types").Logger;
|
|
17
|
-
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
18
23
|
serviceId: string;
|
|
19
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
20
25
|
utf8Decoder: import("@smithy/types").Decoder;
|