@aws-sdk/client-workspaces-thin-client 3.721.0 → 3.723.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 +193 -93
- package/dist-es/WorkSpacesThinClientClient.js +1 -0
- package/dist-es/models/models_0.js +28 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -183,7 +183,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
183
183
|
}, "resolveRuntimeExtensions");
|
|
184
184
|
|
|
185
185
|
// src/WorkSpacesThinClientClient.ts
|
|
186
|
-
var
|
|
186
|
+
var WorkSpacesThinClientClient = class extends import_smithy_client.Client {
|
|
187
|
+
static {
|
|
188
|
+
__name(this, "WorkSpacesThinClientClient");
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* The resolved configuration of WorkSpacesThinClientClient class. This is resolved and normalized from the {@link WorkSpacesThinClientClientConfig | constructor configuration interface}.
|
|
192
|
+
*/
|
|
193
|
+
config;
|
|
187
194
|
constructor(...[configuration]) {
|
|
188
195
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
189
196
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -193,7 +200,7 @@ var _WorkSpacesThinClientClient = class _WorkSpacesThinClientClient extends impo
|
|
|
193
200
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
194
201
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
195
202
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
196
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
203
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
197
204
|
super(_config_8);
|
|
198
205
|
this.config = _config_8;
|
|
199
206
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -221,8 +228,6 @@ var _WorkSpacesThinClientClient = class _WorkSpacesThinClientClient extends impo
|
|
|
221
228
|
super.destroy();
|
|
222
229
|
}
|
|
223
230
|
};
|
|
224
|
-
__name(_WorkSpacesThinClientClient, "WorkSpacesThinClientClient");
|
|
225
|
-
var WorkSpacesThinClientClient = _WorkSpacesThinClientClient;
|
|
226
231
|
|
|
227
232
|
// src/WorkSpacesThinClient.ts
|
|
228
233
|
|
|
@@ -237,7 +242,10 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
237
242
|
|
|
238
243
|
// src/models/WorkSpacesThinClientServiceException.ts
|
|
239
244
|
|
|
240
|
-
var
|
|
245
|
+
var WorkSpacesThinClientServiceException = class _WorkSpacesThinClientServiceException extends import_smithy_client.ServiceException {
|
|
246
|
+
static {
|
|
247
|
+
__name(this, "WorkSpacesThinClientServiceException");
|
|
248
|
+
}
|
|
241
249
|
/**
|
|
242
250
|
* @internal
|
|
243
251
|
*/
|
|
@@ -246,11 +254,14 @@ var _WorkSpacesThinClientServiceException = class _WorkSpacesThinClientServiceEx
|
|
|
246
254
|
Object.setPrototypeOf(this, _WorkSpacesThinClientServiceException.prototype);
|
|
247
255
|
}
|
|
248
256
|
};
|
|
249
|
-
__name(_WorkSpacesThinClientServiceException, "WorkSpacesThinClientServiceException");
|
|
250
|
-
var WorkSpacesThinClientServiceException = _WorkSpacesThinClientServiceException;
|
|
251
257
|
|
|
252
258
|
// src/models/models_0.ts
|
|
253
|
-
var
|
|
259
|
+
var AccessDeniedException = class _AccessDeniedException extends WorkSpacesThinClientServiceException {
|
|
260
|
+
static {
|
|
261
|
+
__name(this, "AccessDeniedException");
|
|
262
|
+
}
|
|
263
|
+
name = "AccessDeniedException";
|
|
264
|
+
$fault = "client";
|
|
254
265
|
/**
|
|
255
266
|
* @internal
|
|
256
267
|
*/
|
|
@@ -260,18 +271,29 @@ var _AccessDeniedException = class _AccessDeniedException extends WorkSpacesThin
|
|
|
260
271
|
$fault: "client",
|
|
261
272
|
...opts
|
|
262
273
|
});
|
|
263
|
-
this.name = "AccessDeniedException";
|
|
264
|
-
this.$fault = "client";
|
|
265
274
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
266
275
|
}
|
|
267
276
|
};
|
|
268
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
269
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
270
277
|
var ApplyTimeOf = {
|
|
271
278
|
DEVICE: "DEVICE",
|
|
272
279
|
UTC: "UTC"
|
|
273
280
|
};
|
|
274
|
-
var
|
|
281
|
+
var ConflictException = class _ConflictException extends WorkSpacesThinClientServiceException {
|
|
282
|
+
static {
|
|
283
|
+
__name(this, "ConflictException");
|
|
284
|
+
}
|
|
285
|
+
name = "ConflictException";
|
|
286
|
+
$fault = "client";
|
|
287
|
+
/**
|
|
288
|
+
* <p>The ID of the resource associated with the request.</p>
|
|
289
|
+
* @public
|
|
290
|
+
*/
|
|
291
|
+
resourceId;
|
|
292
|
+
/**
|
|
293
|
+
* <p>The type of the resource associated with the request.</p>
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
296
|
+
resourceType;
|
|
275
297
|
/**
|
|
276
298
|
* @internal
|
|
277
299
|
*/
|
|
@@ -281,15 +303,11 @@ var _ConflictException = class _ConflictException extends WorkSpacesThinClientSe
|
|
|
281
303
|
$fault: "client",
|
|
282
304
|
...opts
|
|
283
305
|
});
|
|
284
|
-
this.name = "ConflictException";
|
|
285
|
-
this.$fault = "client";
|
|
286
306
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
287
307
|
this.resourceId = opts.resourceId;
|
|
288
308
|
this.resourceType = opts.resourceType;
|
|
289
309
|
}
|
|
290
310
|
};
|
|
291
|
-
__name(_ConflictException, "ConflictException");
|
|
292
|
-
var ConflictException = _ConflictException;
|
|
293
311
|
var DayOfWeek = {
|
|
294
312
|
FRIDAY: "FRIDAY",
|
|
295
313
|
MONDAY: "MONDAY",
|
|
@@ -316,7 +334,17 @@ var DesktopType = {
|
|
|
316
334
|
WORKSPACES: "workspaces",
|
|
317
335
|
WORKSPACES_WEB: "workspaces-web"
|
|
318
336
|
};
|
|
319
|
-
var
|
|
337
|
+
var InternalServerException = class _InternalServerException extends WorkSpacesThinClientServiceException {
|
|
338
|
+
static {
|
|
339
|
+
__name(this, "InternalServerException");
|
|
340
|
+
}
|
|
341
|
+
name = "InternalServerException";
|
|
342
|
+
$fault = "server";
|
|
343
|
+
/**
|
|
344
|
+
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
retryAfterSeconds;
|
|
320
348
|
/**
|
|
321
349
|
* @internal
|
|
322
350
|
*/
|
|
@@ -326,15 +354,26 @@ var _InternalServerException = class _InternalServerException extends WorkSpaces
|
|
|
326
354
|
$fault: "server",
|
|
327
355
|
...opts
|
|
328
356
|
});
|
|
329
|
-
this.name = "InternalServerException";
|
|
330
|
-
this.$fault = "server";
|
|
331
357
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
332
358
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
333
359
|
}
|
|
334
360
|
};
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
361
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends WorkSpacesThinClientServiceException {
|
|
362
|
+
static {
|
|
363
|
+
__name(this, "ResourceNotFoundException");
|
|
364
|
+
}
|
|
365
|
+
name = "ResourceNotFoundException";
|
|
366
|
+
$fault = "client";
|
|
367
|
+
/**
|
|
368
|
+
* <p>The ID of the resource associated with the request.</p>
|
|
369
|
+
* @public
|
|
370
|
+
*/
|
|
371
|
+
resourceId;
|
|
372
|
+
/**
|
|
373
|
+
* <p>The type of the resource associated with the request.</p>
|
|
374
|
+
* @public
|
|
375
|
+
*/
|
|
376
|
+
resourceType;
|
|
338
377
|
/**
|
|
339
378
|
* @internal
|
|
340
379
|
*/
|
|
@@ -344,16 +383,37 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends WorkSp
|
|
|
344
383
|
$fault: "client",
|
|
345
384
|
...opts
|
|
346
385
|
});
|
|
347
|
-
this.name = "ResourceNotFoundException";
|
|
348
|
-
this.$fault = "client";
|
|
349
386
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
350
387
|
this.resourceId = opts.resourceId;
|
|
351
388
|
this.resourceType = opts.resourceType;
|
|
352
389
|
}
|
|
353
390
|
};
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
391
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends WorkSpacesThinClientServiceException {
|
|
392
|
+
static {
|
|
393
|
+
__name(this, "ServiceQuotaExceededException");
|
|
394
|
+
}
|
|
395
|
+
name = "ServiceQuotaExceededException";
|
|
396
|
+
$fault = "client";
|
|
397
|
+
/**
|
|
398
|
+
* <p>The ID of the resource that exceeds the service quota.</p>
|
|
399
|
+
* @public
|
|
400
|
+
*/
|
|
401
|
+
resourceId;
|
|
402
|
+
/**
|
|
403
|
+
* <p>The type of the resource that exceeds the service quota.</p>
|
|
404
|
+
* @public
|
|
405
|
+
*/
|
|
406
|
+
resourceType;
|
|
407
|
+
/**
|
|
408
|
+
* <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
serviceCode;
|
|
412
|
+
/**
|
|
413
|
+
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
414
|
+
* @public
|
|
415
|
+
*/
|
|
416
|
+
quotaCode;
|
|
357
417
|
/**
|
|
358
418
|
* @internal
|
|
359
419
|
*/
|
|
@@ -363,8 +423,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
363
423
|
$fault: "client",
|
|
364
424
|
...opts
|
|
365
425
|
});
|
|
366
|
-
this.name = "ServiceQuotaExceededException";
|
|
367
|
-
this.$fault = "client";
|
|
368
426
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
369
427
|
this.resourceId = opts.resourceId;
|
|
370
428
|
this.resourceType = opts.resourceType;
|
|
@@ -372,9 +430,27 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
372
430
|
this.quotaCode = opts.quotaCode;
|
|
373
431
|
}
|
|
374
432
|
};
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
433
|
+
var ThrottlingException = class _ThrottlingException extends WorkSpacesThinClientServiceException {
|
|
434
|
+
static {
|
|
435
|
+
__name(this, "ThrottlingException");
|
|
436
|
+
}
|
|
437
|
+
name = "ThrottlingException";
|
|
438
|
+
$fault = "client";
|
|
439
|
+
/**
|
|
440
|
+
* <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
serviceCode;
|
|
444
|
+
/**
|
|
445
|
+
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
quotaCode;
|
|
449
|
+
/**
|
|
450
|
+
* <p>The number of seconds to wait before retrying the next request.</p>
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
retryAfterSeconds;
|
|
378
454
|
/**
|
|
379
455
|
* @internal
|
|
380
456
|
*/
|
|
@@ -384,23 +460,34 @@ var _ThrottlingException = class _ThrottlingException extends WorkSpacesThinClie
|
|
|
384
460
|
$fault: "client",
|
|
385
461
|
...opts
|
|
386
462
|
});
|
|
387
|
-
this.name = "ThrottlingException";
|
|
388
|
-
this.$fault = "client";
|
|
389
463
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
390
464
|
this.serviceCode = opts.serviceCode;
|
|
391
465
|
this.quotaCode = opts.quotaCode;
|
|
392
466
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
393
467
|
}
|
|
394
468
|
};
|
|
395
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
396
|
-
var ThrottlingException = _ThrottlingException;
|
|
397
469
|
var ValidationExceptionReason = {
|
|
398
470
|
CANNOT_PARSE: "cannotParse",
|
|
399
471
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
400
472
|
OTHER: "other",
|
|
401
473
|
UNKNOWN_OPERATION: "unknownOperation"
|
|
402
474
|
};
|
|
403
|
-
var
|
|
475
|
+
var ValidationException = class _ValidationException extends WorkSpacesThinClientServiceException {
|
|
476
|
+
static {
|
|
477
|
+
__name(this, "ValidationException");
|
|
478
|
+
}
|
|
479
|
+
name = "ValidationException";
|
|
480
|
+
$fault = "client";
|
|
481
|
+
/**
|
|
482
|
+
* <p>The reason for the exception.</p>
|
|
483
|
+
* @public
|
|
484
|
+
*/
|
|
485
|
+
reason;
|
|
486
|
+
/**
|
|
487
|
+
* <p>A list of fields that didn't validate.</p>
|
|
488
|
+
* @public
|
|
489
|
+
*/
|
|
490
|
+
fieldList;
|
|
404
491
|
/**
|
|
405
492
|
* @internal
|
|
406
493
|
*/
|
|
@@ -410,15 +497,11 @@ var _ValidationException = class _ValidationException extends WorkSpacesThinClie
|
|
|
410
497
|
$fault: "client",
|
|
411
498
|
...opts
|
|
412
499
|
});
|
|
413
|
-
this.name = "ValidationException";
|
|
414
|
-
this.$fault = "client";
|
|
415
500
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
416
501
|
this.reason = opts.reason;
|
|
417
502
|
this.fieldList = opts.fieldList;
|
|
418
503
|
}
|
|
419
504
|
};
|
|
420
|
-
__name(_ValidationException, "ValidationException");
|
|
421
|
-
var ValidationException = _ValidationException;
|
|
422
505
|
var TargetDeviceStatus = {
|
|
423
506
|
ARCHIVED: "ARCHIVED",
|
|
424
507
|
DEREGISTERED: "DEREGISTERED"
|
|
@@ -1380,225 +1463,241 @@ var _ra = "retry-after";
|
|
|
1380
1463
|
var _tK = "tagKeys";
|
|
1381
1464
|
|
|
1382
1465
|
// src/commands/CreateEnvironmentCommand.ts
|
|
1383
|
-
var
|
|
1466
|
+
var CreateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1384
1467
|
return [
|
|
1385
1468
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1386
1469
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1387
1470
|
];
|
|
1388
1471
|
}).s("ThinClient", "CreateEnvironment", {}).n("WorkSpacesThinClientClient", "CreateEnvironmentCommand").f(CreateEnvironmentRequestFilterSensitiveLog, CreateEnvironmentResponseFilterSensitiveLog).ser(se_CreateEnvironmentCommand).de(de_CreateEnvironmentCommand).build() {
|
|
1472
|
+
static {
|
|
1473
|
+
__name(this, "CreateEnvironmentCommand");
|
|
1474
|
+
}
|
|
1389
1475
|
};
|
|
1390
|
-
__name(_CreateEnvironmentCommand, "CreateEnvironmentCommand");
|
|
1391
|
-
var CreateEnvironmentCommand = _CreateEnvironmentCommand;
|
|
1392
1476
|
|
|
1393
1477
|
// src/commands/DeleteDeviceCommand.ts
|
|
1394
1478
|
|
|
1395
1479
|
|
|
1396
1480
|
|
|
1397
|
-
var
|
|
1481
|
+
var DeleteDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1398
1482
|
return [
|
|
1399
1483
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1400
1484
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1401
1485
|
];
|
|
1402
1486
|
}).s("ThinClient", "DeleteDevice", {}).n("WorkSpacesThinClientClient", "DeleteDeviceCommand").f(void 0, void 0).ser(se_DeleteDeviceCommand).de(de_DeleteDeviceCommand).build() {
|
|
1487
|
+
static {
|
|
1488
|
+
__name(this, "DeleteDeviceCommand");
|
|
1489
|
+
}
|
|
1403
1490
|
};
|
|
1404
|
-
__name(_DeleteDeviceCommand, "DeleteDeviceCommand");
|
|
1405
|
-
var DeleteDeviceCommand = _DeleteDeviceCommand;
|
|
1406
1491
|
|
|
1407
1492
|
// src/commands/DeleteEnvironmentCommand.ts
|
|
1408
1493
|
|
|
1409
1494
|
|
|
1410
1495
|
|
|
1411
|
-
var
|
|
1496
|
+
var DeleteEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1412
1497
|
return [
|
|
1413
1498
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1414
1499
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1415
1500
|
];
|
|
1416
1501
|
}).s("ThinClient", "DeleteEnvironment", {}).n("WorkSpacesThinClientClient", "DeleteEnvironmentCommand").f(void 0, void 0).ser(se_DeleteEnvironmentCommand).de(de_DeleteEnvironmentCommand).build() {
|
|
1502
|
+
static {
|
|
1503
|
+
__name(this, "DeleteEnvironmentCommand");
|
|
1504
|
+
}
|
|
1417
1505
|
};
|
|
1418
|
-
__name(_DeleteEnvironmentCommand, "DeleteEnvironmentCommand");
|
|
1419
|
-
var DeleteEnvironmentCommand = _DeleteEnvironmentCommand;
|
|
1420
1506
|
|
|
1421
1507
|
// src/commands/DeregisterDeviceCommand.ts
|
|
1422
1508
|
|
|
1423
1509
|
|
|
1424
1510
|
|
|
1425
|
-
var
|
|
1511
|
+
var DeregisterDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1426
1512
|
return [
|
|
1427
1513
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1428
1514
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1429
1515
|
];
|
|
1430
1516
|
}).s("ThinClient", "DeregisterDevice", {}).n("WorkSpacesThinClientClient", "DeregisterDeviceCommand").f(void 0, void 0).ser(se_DeregisterDeviceCommand).de(de_DeregisterDeviceCommand).build() {
|
|
1517
|
+
static {
|
|
1518
|
+
__name(this, "DeregisterDeviceCommand");
|
|
1519
|
+
}
|
|
1431
1520
|
};
|
|
1432
|
-
__name(_DeregisterDeviceCommand, "DeregisterDeviceCommand");
|
|
1433
|
-
var DeregisterDeviceCommand = _DeregisterDeviceCommand;
|
|
1434
1521
|
|
|
1435
1522
|
// src/commands/GetDeviceCommand.ts
|
|
1436
1523
|
|
|
1437
1524
|
|
|
1438
1525
|
|
|
1439
|
-
var
|
|
1526
|
+
var GetDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1440
1527
|
return [
|
|
1441
1528
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1442
1529
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1443
1530
|
];
|
|
1444
1531
|
}).s("ThinClient", "GetDevice", {}).n("WorkSpacesThinClientClient", "GetDeviceCommand").f(void 0, GetDeviceResponseFilterSensitiveLog).ser(se_GetDeviceCommand).de(de_GetDeviceCommand).build() {
|
|
1532
|
+
static {
|
|
1533
|
+
__name(this, "GetDeviceCommand");
|
|
1534
|
+
}
|
|
1445
1535
|
};
|
|
1446
|
-
__name(_GetDeviceCommand, "GetDeviceCommand");
|
|
1447
|
-
var GetDeviceCommand = _GetDeviceCommand;
|
|
1448
1536
|
|
|
1449
1537
|
// src/commands/GetEnvironmentCommand.ts
|
|
1450
1538
|
|
|
1451
1539
|
|
|
1452
1540
|
|
|
1453
|
-
var
|
|
1541
|
+
var GetEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1454
1542
|
return [
|
|
1455
1543
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1456
1544
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1457
1545
|
];
|
|
1458
1546
|
}).s("ThinClient", "GetEnvironment", {}).n("WorkSpacesThinClientClient", "GetEnvironmentCommand").f(void 0, GetEnvironmentResponseFilterSensitiveLog).ser(se_GetEnvironmentCommand).de(de_GetEnvironmentCommand).build() {
|
|
1547
|
+
static {
|
|
1548
|
+
__name(this, "GetEnvironmentCommand");
|
|
1549
|
+
}
|
|
1459
1550
|
};
|
|
1460
|
-
__name(_GetEnvironmentCommand, "GetEnvironmentCommand");
|
|
1461
|
-
var GetEnvironmentCommand = _GetEnvironmentCommand;
|
|
1462
1551
|
|
|
1463
1552
|
// src/commands/GetSoftwareSetCommand.ts
|
|
1464
1553
|
|
|
1465
1554
|
|
|
1466
1555
|
|
|
1467
|
-
var
|
|
1556
|
+
var GetSoftwareSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1468
1557
|
return [
|
|
1469
1558
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1470
1559
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1471
1560
|
];
|
|
1472
1561
|
}).s("ThinClient", "GetSoftwareSet", {}).n("WorkSpacesThinClientClient", "GetSoftwareSetCommand").f(void 0, GetSoftwareSetResponseFilterSensitiveLog).ser(se_GetSoftwareSetCommand).de(de_GetSoftwareSetCommand).build() {
|
|
1562
|
+
static {
|
|
1563
|
+
__name(this, "GetSoftwareSetCommand");
|
|
1564
|
+
}
|
|
1473
1565
|
};
|
|
1474
|
-
__name(_GetSoftwareSetCommand, "GetSoftwareSetCommand");
|
|
1475
|
-
var GetSoftwareSetCommand = _GetSoftwareSetCommand;
|
|
1476
1566
|
|
|
1477
1567
|
// src/commands/ListDevicesCommand.ts
|
|
1478
1568
|
|
|
1479
1569
|
|
|
1480
1570
|
|
|
1481
|
-
var
|
|
1571
|
+
var ListDevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1482
1572
|
return [
|
|
1483
1573
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1484
1574
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1485
1575
|
];
|
|
1486
1576
|
}).s("ThinClient", "ListDevices", {}).n("WorkSpacesThinClientClient", "ListDevicesCommand").f(void 0, ListDevicesResponseFilterSensitiveLog).ser(se_ListDevicesCommand).de(de_ListDevicesCommand).build() {
|
|
1577
|
+
static {
|
|
1578
|
+
__name(this, "ListDevicesCommand");
|
|
1579
|
+
}
|
|
1487
1580
|
};
|
|
1488
|
-
__name(_ListDevicesCommand, "ListDevicesCommand");
|
|
1489
|
-
var ListDevicesCommand = _ListDevicesCommand;
|
|
1490
1581
|
|
|
1491
1582
|
// src/commands/ListEnvironmentsCommand.ts
|
|
1492
1583
|
|
|
1493
1584
|
|
|
1494
1585
|
|
|
1495
|
-
var
|
|
1586
|
+
var ListEnvironmentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1496
1587
|
return [
|
|
1497
1588
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1498
1589
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1499
1590
|
];
|
|
1500
1591
|
}).s("ThinClient", "ListEnvironments", {}).n("WorkSpacesThinClientClient", "ListEnvironmentsCommand").f(void 0, ListEnvironmentsResponseFilterSensitiveLog).ser(se_ListEnvironmentsCommand).de(de_ListEnvironmentsCommand).build() {
|
|
1592
|
+
static {
|
|
1593
|
+
__name(this, "ListEnvironmentsCommand");
|
|
1594
|
+
}
|
|
1501
1595
|
};
|
|
1502
|
-
__name(_ListEnvironmentsCommand, "ListEnvironmentsCommand");
|
|
1503
|
-
var ListEnvironmentsCommand = _ListEnvironmentsCommand;
|
|
1504
1596
|
|
|
1505
1597
|
// src/commands/ListSoftwareSetsCommand.ts
|
|
1506
1598
|
|
|
1507
1599
|
|
|
1508
1600
|
|
|
1509
|
-
var
|
|
1601
|
+
var ListSoftwareSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1510
1602
|
return [
|
|
1511
1603
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1512
1604
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1513
1605
|
];
|
|
1514
1606
|
}).s("ThinClient", "ListSoftwareSets", {}).n("WorkSpacesThinClientClient", "ListSoftwareSetsCommand").f(void 0, void 0).ser(se_ListSoftwareSetsCommand).de(de_ListSoftwareSetsCommand).build() {
|
|
1607
|
+
static {
|
|
1608
|
+
__name(this, "ListSoftwareSetsCommand");
|
|
1609
|
+
}
|
|
1515
1610
|
};
|
|
1516
|
-
__name(_ListSoftwareSetsCommand, "ListSoftwareSetsCommand");
|
|
1517
|
-
var ListSoftwareSetsCommand = _ListSoftwareSetsCommand;
|
|
1518
1611
|
|
|
1519
1612
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1520
1613
|
|
|
1521
1614
|
|
|
1522
1615
|
|
|
1523
|
-
var
|
|
1616
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1524
1617
|
return [
|
|
1525
1618
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1526
1619
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1527
1620
|
];
|
|
1528
1621
|
}).s("ThinClient", "ListTagsForResource", {}).n("WorkSpacesThinClientClient", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceResponseFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1622
|
+
static {
|
|
1623
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1624
|
+
}
|
|
1529
1625
|
};
|
|
1530
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1531
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1532
1626
|
|
|
1533
1627
|
// src/commands/TagResourceCommand.ts
|
|
1534
1628
|
|
|
1535
1629
|
|
|
1536
1630
|
|
|
1537
|
-
var
|
|
1631
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1538
1632
|
return [
|
|
1539
1633
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1540
1634
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1541
1635
|
];
|
|
1542
1636
|
}).s("ThinClient", "TagResource", {}).n("WorkSpacesThinClientClient", "TagResourceCommand").f(TagResourceRequestFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1637
|
+
static {
|
|
1638
|
+
__name(this, "TagResourceCommand");
|
|
1639
|
+
}
|
|
1543
1640
|
};
|
|
1544
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1545
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1546
1641
|
|
|
1547
1642
|
// src/commands/UntagResourceCommand.ts
|
|
1548
1643
|
|
|
1549
1644
|
|
|
1550
1645
|
|
|
1551
|
-
var
|
|
1646
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1552
1647
|
return [
|
|
1553
1648
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1554
1649
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1555
1650
|
];
|
|
1556
1651
|
}).s("ThinClient", "UntagResource", {}).n("WorkSpacesThinClientClient", "UntagResourceCommand").f(UntagResourceRequestFilterSensitiveLog, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1652
|
+
static {
|
|
1653
|
+
__name(this, "UntagResourceCommand");
|
|
1654
|
+
}
|
|
1557
1655
|
};
|
|
1558
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1559
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1560
1656
|
|
|
1561
1657
|
// src/commands/UpdateDeviceCommand.ts
|
|
1562
1658
|
|
|
1563
1659
|
|
|
1564
1660
|
|
|
1565
|
-
var
|
|
1661
|
+
var UpdateDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1566
1662
|
return [
|
|
1567
1663
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1568
1664
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1569
1665
|
];
|
|
1570
1666
|
}).s("ThinClient", "UpdateDevice", {}).n("WorkSpacesThinClientClient", "UpdateDeviceCommand").f(UpdateDeviceRequestFilterSensitiveLog, UpdateDeviceResponseFilterSensitiveLog).ser(se_UpdateDeviceCommand).de(de_UpdateDeviceCommand).build() {
|
|
1667
|
+
static {
|
|
1668
|
+
__name(this, "UpdateDeviceCommand");
|
|
1669
|
+
}
|
|
1571
1670
|
};
|
|
1572
|
-
__name(_UpdateDeviceCommand, "UpdateDeviceCommand");
|
|
1573
|
-
var UpdateDeviceCommand = _UpdateDeviceCommand;
|
|
1574
1671
|
|
|
1575
1672
|
// src/commands/UpdateEnvironmentCommand.ts
|
|
1576
1673
|
|
|
1577
1674
|
|
|
1578
1675
|
|
|
1579
|
-
var
|
|
1676
|
+
var UpdateEnvironmentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1580
1677
|
return [
|
|
1581
1678
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1582
1679
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1583
1680
|
];
|
|
1584
1681
|
}).s("ThinClient", "UpdateEnvironment", {}).n("WorkSpacesThinClientClient", "UpdateEnvironmentCommand").f(UpdateEnvironmentRequestFilterSensitiveLog, UpdateEnvironmentResponseFilterSensitiveLog).ser(se_UpdateEnvironmentCommand).de(de_UpdateEnvironmentCommand).build() {
|
|
1682
|
+
static {
|
|
1683
|
+
__name(this, "UpdateEnvironmentCommand");
|
|
1684
|
+
}
|
|
1585
1685
|
};
|
|
1586
|
-
__name(_UpdateEnvironmentCommand, "UpdateEnvironmentCommand");
|
|
1587
|
-
var UpdateEnvironmentCommand = _UpdateEnvironmentCommand;
|
|
1588
1686
|
|
|
1589
1687
|
// src/commands/UpdateSoftwareSetCommand.ts
|
|
1590
1688
|
|
|
1591
1689
|
|
|
1592
1690
|
|
|
1593
|
-
var
|
|
1691
|
+
var UpdateSoftwareSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1594
1692
|
return [
|
|
1595
1693
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1596
1694
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1597
1695
|
];
|
|
1598
1696
|
}).s("ThinClient", "UpdateSoftwareSet", {}).n("WorkSpacesThinClientClient", "UpdateSoftwareSetCommand").f(void 0, void 0).ser(se_UpdateSoftwareSetCommand).de(de_UpdateSoftwareSetCommand).build() {
|
|
1697
|
+
static {
|
|
1698
|
+
__name(this, "UpdateSoftwareSetCommand");
|
|
1699
|
+
}
|
|
1599
1700
|
};
|
|
1600
|
-
__name(_UpdateSoftwareSetCommand, "UpdateSoftwareSetCommand");
|
|
1601
|
-
var UpdateSoftwareSetCommand = _UpdateSoftwareSetCommand;
|
|
1602
1701
|
|
|
1603
1702
|
// src/WorkSpacesThinClient.ts
|
|
1604
1703
|
var commands = {
|
|
@@ -1619,10 +1718,11 @@ var commands = {
|
|
|
1619
1718
|
UpdateEnvironmentCommand,
|
|
1620
1719
|
UpdateSoftwareSetCommand
|
|
1621
1720
|
};
|
|
1622
|
-
var
|
|
1721
|
+
var WorkSpacesThinClient = class extends WorkSpacesThinClientClient {
|
|
1722
|
+
static {
|
|
1723
|
+
__name(this, "WorkSpacesThinClient");
|
|
1724
|
+
}
|
|
1623
1725
|
};
|
|
1624
|
-
__name(_WorkSpacesThinClient, "WorkSpacesThinClient");
|
|
1625
|
-
var WorkSpacesThinClient = _WorkSpacesThinClient;
|
|
1626
1726
|
(0, import_smithy_client.createAggregatedClient)(commands, WorkSpacesThinClient);
|
|
1627
1727
|
|
|
1628
1728
|
// src/pagination/ListDevicesPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class WorkSpacesThinClientClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { WorkSpacesThinClientServiceException as __BaseException } from "./WorkSpacesThinClientServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
4
6
|
constructor(opts) {
|
|
5
7
|
super({
|
|
6
8
|
name: "AccessDeniedException",
|
|
7
9
|
$fault: "client",
|
|
8
10
|
...opts,
|
|
9
11
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
12
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -17,14 +17,16 @@ export const ApplyTimeOf = {
|
|
|
17
17
|
UTC: "UTC",
|
|
18
18
|
};
|
|
19
19
|
export class ConflictException extends __BaseException {
|
|
20
|
+
name = "ConflictException";
|
|
21
|
+
$fault = "client";
|
|
22
|
+
resourceId;
|
|
23
|
+
resourceType;
|
|
20
24
|
constructor(opts) {
|
|
21
25
|
super({
|
|
22
26
|
name: "ConflictException",
|
|
23
27
|
$fault: "client",
|
|
24
28
|
...opts,
|
|
25
29
|
});
|
|
26
|
-
this.name = "ConflictException";
|
|
27
|
-
this.$fault = "client";
|
|
28
30
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
29
31
|
this.resourceId = opts.resourceId;
|
|
30
32
|
this.resourceType = opts.resourceType;
|
|
@@ -57,41 +59,48 @@ export const DesktopType = {
|
|
|
57
59
|
WORKSPACES_WEB: "workspaces-web",
|
|
58
60
|
};
|
|
59
61
|
export class InternalServerException extends __BaseException {
|
|
62
|
+
name = "InternalServerException";
|
|
63
|
+
$fault = "server";
|
|
64
|
+
retryAfterSeconds;
|
|
60
65
|
constructor(opts) {
|
|
61
66
|
super({
|
|
62
67
|
name: "InternalServerException",
|
|
63
68
|
$fault: "server",
|
|
64
69
|
...opts,
|
|
65
70
|
});
|
|
66
|
-
this.name = "InternalServerException";
|
|
67
|
-
this.$fault = "server";
|
|
68
71
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
69
72
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
70
73
|
}
|
|
71
74
|
}
|
|
72
75
|
export class ResourceNotFoundException extends __BaseException {
|
|
76
|
+
name = "ResourceNotFoundException";
|
|
77
|
+
$fault = "client";
|
|
78
|
+
resourceId;
|
|
79
|
+
resourceType;
|
|
73
80
|
constructor(opts) {
|
|
74
81
|
super({
|
|
75
82
|
name: "ResourceNotFoundException",
|
|
76
83
|
$fault: "client",
|
|
77
84
|
...opts,
|
|
78
85
|
});
|
|
79
|
-
this.name = "ResourceNotFoundException";
|
|
80
|
-
this.$fault = "client";
|
|
81
86
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
82
87
|
this.resourceId = opts.resourceId;
|
|
83
88
|
this.resourceType = opts.resourceType;
|
|
84
89
|
}
|
|
85
90
|
}
|
|
86
91
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
92
|
+
name = "ServiceQuotaExceededException";
|
|
93
|
+
$fault = "client";
|
|
94
|
+
resourceId;
|
|
95
|
+
resourceType;
|
|
96
|
+
serviceCode;
|
|
97
|
+
quotaCode;
|
|
87
98
|
constructor(opts) {
|
|
88
99
|
super({
|
|
89
100
|
name: "ServiceQuotaExceededException",
|
|
90
101
|
$fault: "client",
|
|
91
102
|
...opts,
|
|
92
103
|
});
|
|
93
|
-
this.name = "ServiceQuotaExceededException";
|
|
94
|
-
this.$fault = "client";
|
|
95
104
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
96
105
|
this.resourceId = opts.resourceId;
|
|
97
106
|
this.resourceType = opts.resourceType;
|
|
@@ -100,14 +109,17 @@ export class ServiceQuotaExceededException extends __BaseException {
|
|
|
100
109
|
}
|
|
101
110
|
}
|
|
102
111
|
export class ThrottlingException extends __BaseException {
|
|
112
|
+
name = "ThrottlingException";
|
|
113
|
+
$fault = "client";
|
|
114
|
+
serviceCode;
|
|
115
|
+
quotaCode;
|
|
116
|
+
retryAfterSeconds;
|
|
103
117
|
constructor(opts) {
|
|
104
118
|
super({
|
|
105
119
|
name: "ThrottlingException",
|
|
106
120
|
$fault: "client",
|
|
107
121
|
...opts,
|
|
108
122
|
});
|
|
109
|
-
this.name = "ThrottlingException";
|
|
110
|
-
this.$fault = "client";
|
|
111
123
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
112
124
|
this.serviceCode = opts.serviceCode;
|
|
113
125
|
this.quotaCode = opts.quotaCode;
|
|
@@ -121,14 +133,16 @@ export const ValidationExceptionReason = {
|
|
|
121
133
|
UNKNOWN_OPERATION: "unknownOperation",
|
|
122
134
|
};
|
|
123
135
|
export class ValidationException extends __BaseException {
|
|
136
|
+
name = "ValidationException";
|
|
137
|
+
$fault = "client";
|
|
138
|
+
reason;
|
|
139
|
+
fieldList;
|
|
124
140
|
constructor(opts) {
|
|
125
141
|
super({
|
|
126
142
|
name: "ValidationException",
|
|
127
143
|
$fault: "client",
|
|
128
144
|
...opts,
|
|
129
145
|
});
|
|
130
|
-
this.name = "ValidationException";
|
|
131
|
-
this.$fault = "client";
|
|
132
146
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
133
147
|
this.reason = opts.reason;
|
|
134
148
|
this.fieldList = opts.fieldList;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: WorkSpacesThinClientClientConfig
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
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> | undefined;
|
|
34
|
+
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;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -52,11 +54,21 @@ export declare const getRuntimeConfig: (
|
|
|
52
54
|
| import("@smithy/types").RetryStrategyV2
|
|
53
55
|
| undefined;
|
|
54
56
|
endpoint?:
|
|
55
|
-
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
57
|
+
| ((
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
) &
|
|
64
|
+
(
|
|
65
|
+
| string
|
|
66
|
+
| import("@smithy/types").Provider<string>
|
|
67
|
+
| import("@smithy/types").Endpoint
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
69
|
+
| import("@smithy/types").EndpointV2
|
|
70
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
71
|
+
))
|
|
60
72
|
| undefined;
|
|
61
73
|
endpointProvider: (
|
|
62
74
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-workspaces-thin-client",
|
|
3
3
|
"description": "AWS SDK for JavaScript Workspaces Thin Client Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-workspaces-thin-client",
|
|
@@ -20,58 +20,58 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"@types/uuid": "^9.0.1",
|
|
62
62
|
"tslib": "^2.6.2",
|
|
63
63
|
"uuid": "^9.0.1"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@tsconfig/
|
|
67
|
-
"@types/node": "^
|
|
66
|
+
"@tsconfig/node18": "18.2.4",
|
|
67
|
+
"@types/node": "^18.19.69",
|
|
68
68
|
"concurrently": "7.0.0",
|
|
69
69
|
"downlevel-dts": "0.10.1",
|
|
70
70
|
"rimraf": "3.0.2",
|
|
71
|
-
"typescript": "~
|
|
71
|
+
"typescript": "~5.2.2"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
|
-
"node": ">=
|
|
74
|
+
"node": ">=18.0.0"
|
|
75
75
|
},
|
|
76
76
|
"typesVersions": {
|
|
77
77
|
"<4.0": {
|