@aws-sdk/client-workspaces-web 3.721.0 → 3.726.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 +412 -254
- package/dist-es/WorkSpacesWebClient.js +1 -0
- package/dist-es/models/models_0.js +31 -16
- 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
|
@@ -281,7 +281,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
281
281
|
}, "resolveRuntimeExtensions");
|
|
282
282
|
|
|
283
283
|
// src/WorkSpacesWebClient.ts
|
|
284
|
-
var
|
|
284
|
+
var WorkSpacesWebClient = class extends import_smithy_client.Client {
|
|
285
|
+
static {
|
|
286
|
+
__name(this, "WorkSpacesWebClient");
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* The resolved configuration of WorkSpacesWebClient class. This is resolved and normalized from the {@link WorkSpacesWebClientConfig | constructor configuration interface}.
|
|
290
|
+
*/
|
|
291
|
+
config;
|
|
285
292
|
constructor(...[configuration]) {
|
|
286
293
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
287
294
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -291,7 +298,7 @@ var _WorkSpacesWebClient = class _WorkSpacesWebClient extends import_smithy_clie
|
|
|
291
298
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
292
299
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
293
300
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
294
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
301
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
295
302
|
super(_config_8);
|
|
296
303
|
this.config = _config_8;
|
|
297
304
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -319,8 +326,6 @@ var _WorkSpacesWebClient = class _WorkSpacesWebClient extends import_smithy_clie
|
|
|
319
326
|
super.destroy();
|
|
320
327
|
}
|
|
321
328
|
};
|
|
322
|
-
__name(_WorkSpacesWebClient, "WorkSpacesWebClient");
|
|
323
|
-
var WorkSpacesWebClient = _WorkSpacesWebClient;
|
|
324
329
|
|
|
325
330
|
// src/WorkSpacesWeb.ts
|
|
326
331
|
|
|
@@ -341,7 +346,10 @@ var import_uuid = require("uuid");
|
|
|
341
346
|
|
|
342
347
|
// src/models/WorkSpacesWebServiceException.ts
|
|
343
348
|
|
|
344
|
-
var
|
|
349
|
+
var WorkSpacesWebServiceException = class _WorkSpacesWebServiceException extends import_smithy_client.ServiceException {
|
|
350
|
+
static {
|
|
351
|
+
__name(this, "WorkSpacesWebServiceException");
|
|
352
|
+
}
|
|
345
353
|
/**
|
|
346
354
|
* @internal
|
|
347
355
|
*/
|
|
@@ -350,11 +358,14 @@ var _WorkSpacesWebServiceException = class _WorkSpacesWebServiceException extend
|
|
|
350
358
|
Object.setPrototypeOf(this, _WorkSpacesWebServiceException.prototype);
|
|
351
359
|
}
|
|
352
360
|
};
|
|
353
|
-
__name(_WorkSpacesWebServiceException, "WorkSpacesWebServiceException");
|
|
354
|
-
var WorkSpacesWebServiceException = _WorkSpacesWebServiceException;
|
|
355
361
|
|
|
356
362
|
// src/models/models_0.ts
|
|
357
|
-
var
|
|
363
|
+
var AccessDeniedException = class _AccessDeniedException extends WorkSpacesWebServiceException {
|
|
364
|
+
static {
|
|
365
|
+
__name(this, "AccessDeniedException");
|
|
366
|
+
}
|
|
367
|
+
name = "AccessDeniedException";
|
|
368
|
+
$fault = "client";
|
|
358
369
|
/**
|
|
359
370
|
* @internal
|
|
360
371
|
*/
|
|
@@ -364,14 +375,25 @@ var _AccessDeniedException = class _AccessDeniedException extends WorkSpacesWebS
|
|
|
364
375
|
$fault: "client",
|
|
365
376
|
...opts
|
|
366
377
|
});
|
|
367
|
-
this.name = "AccessDeniedException";
|
|
368
|
-
this.$fault = "client";
|
|
369
378
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
370
379
|
}
|
|
371
380
|
};
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
381
|
+
var ConflictException = class _ConflictException extends WorkSpacesWebServiceException {
|
|
382
|
+
static {
|
|
383
|
+
__name(this, "ConflictException");
|
|
384
|
+
}
|
|
385
|
+
name = "ConflictException";
|
|
386
|
+
$fault = "client";
|
|
387
|
+
/**
|
|
388
|
+
* <p>Identifier of the resource affected.</p>
|
|
389
|
+
* @public
|
|
390
|
+
*/
|
|
391
|
+
resourceId;
|
|
392
|
+
/**
|
|
393
|
+
* <p>Type of the resource affected.</p>
|
|
394
|
+
* @public
|
|
395
|
+
*/
|
|
396
|
+
resourceType;
|
|
375
397
|
/**
|
|
376
398
|
* @internal
|
|
377
399
|
*/
|
|
@@ -381,16 +403,22 @@ var _ConflictException = class _ConflictException extends WorkSpacesWebServiceEx
|
|
|
381
403
|
$fault: "client",
|
|
382
404
|
...opts
|
|
383
405
|
});
|
|
384
|
-
this.name = "ConflictException";
|
|
385
|
-
this.$fault = "client";
|
|
386
406
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
387
407
|
this.resourceId = opts.resourceId;
|
|
388
408
|
this.resourceType = opts.resourceType;
|
|
389
409
|
}
|
|
390
410
|
};
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
411
|
+
var InternalServerException = class _InternalServerException extends WorkSpacesWebServiceException {
|
|
412
|
+
static {
|
|
413
|
+
__name(this, "InternalServerException");
|
|
414
|
+
}
|
|
415
|
+
name = "InternalServerException";
|
|
416
|
+
$fault = "server";
|
|
417
|
+
/**
|
|
418
|
+
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
419
|
+
* @public
|
|
420
|
+
*/
|
|
421
|
+
retryAfterSeconds;
|
|
394
422
|
/**
|
|
395
423
|
* @internal
|
|
396
424
|
*/
|
|
@@ -400,15 +428,26 @@ var _InternalServerException = class _InternalServerException extends WorkSpaces
|
|
|
400
428
|
$fault: "server",
|
|
401
429
|
...opts
|
|
402
430
|
});
|
|
403
|
-
this.name = "InternalServerException";
|
|
404
|
-
this.$fault = "server";
|
|
405
431
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
406
432
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
407
433
|
}
|
|
408
434
|
};
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
435
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends WorkSpacesWebServiceException {
|
|
436
|
+
static {
|
|
437
|
+
__name(this, "ResourceNotFoundException");
|
|
438
|
+
}
|
|
439
|
+
name = "ResourceNotFoundException";
|
|
440
|
+
$fault = "client";
|
|
441
|
+
/**
|
|
442
|
+
* <p>Hypothetical identifier of the resource affected.</p>
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
445
|
+
resourceId;
|
|
446
|
+
/**
|
|
447
|
+
* <p>Hypothetical type of the resource affected.</p>
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
resourceType;
|
|
412
451
|
/**
|
|
413
452
|
* @internal
|
|
414
453
|
*/
|
|
@@ -418,16 +457,32 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends WorkSp
|
|
|
418
457
|
$fault: "client",
|
|
419
458
|
...opts
|
|
420
459
|
});
|
|
421
|
-
this.name = "ResourceNotFoundException";
|
|
422
|
-
this.$fault = "client";
|
|
423
460
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
424
461
|
this.resourceId = opts.resourceId;
|
|
425
462
|
this.resourceType = opts.resourceType;
|
|
426
463
|
}
|
|
427
464
|
};
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
465
|
+
var ThrottlingException = class _ThrottlingException extends WorkSpacesWebServiceException {
|
|
466
|
+
static {
|
|
467
|
+
__name(this, "ThrottlingException");
|
|
468
|
+
}
|
|
469
|
+
name = "ThrottlingException";
|
|
470
|
+
$fault = "client";
|
|
471
|
+
/**
|
|
472
|
+
* <p>The originating service.</p>
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
475
|
+
serviceCode;
|
|
476
|
+
/**
|
|
477
|
+
* <p>The originating quota.</p>
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
quotaCode;
|
|
481
|
+
/**
|
|
482
|
+
* <p>Advice to clients on when the call can be safely retried.</p>
|
|
483
|
+
* @public
|
|
484
|
+
*/
|
|
485
|
+
retryAfterSeconds;
|
|
431
486
|
/**
|
|
432
487
|
* @internal
|
|
433
488
|
*/
|
|
@@ -437,23 +492,34 @@ var _ThrottlingException = class _ThrottlingException extends WorkSpacesWebServi
|
|
|
437
492
|
$fault: "client",
|
|
438
493
|
...opts
|
|
439
494
|
});
|
|
440
|
-
this.name = "ThrottlingException";
|
|
441
|
-
this.$fault = "client";
|
|
442
495
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
443
496
|
this.serviceCode = opts.serviceCode;
|
|
444
497
|
this.quotaCode = opts.quotaCode;
|
|
445
498
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
446
499
|
}
|
|
447
500
|
};
|
|
448
|
-
__name(_ThrottlingException, "ThrottlingException");
|
|
449
|
-
var ThrottlingException = _ThrottlingException;
|
|
450
501
|
var ValidationExceptionReason = {
|
|
451
502
|
CANNOT_PARSE: "cannotParse",
|
|
452
503
|
FIELD_VALIDATION_FAILED: "fieldValidationFailed",
|
|
453
504
|
OTHER: "other",
|
|
454
505
|
UNKNOWN_OPERATION: "unknownOperation"
|
|
455
506
|
};
|
|
456
|
-
var
|
|
507
|
+
var ValidationException = class _ValidationException extends WorkSpacesWebServiceException {
|
|
508
|
+
static {
|
|
509
|
+
__name(this, "ValidationException");
|
|
510
|
+
}
|
|
511
|
+
name = "ValidationException";
|
|
512
|
+
$fault = "client";
|
|
513
|
+
/**
|
|
514
|
+
* <p>Reason the request failed validation</p>
|
|
515
|
+
* @public
|
|
516
|
+
*/
|
|
517
|
+
reason;
|
|
518
|
+
/**
|
|
519
|
+
* <p>The field that caused the error.</p>
|
|
520
|
+
* @public
|
|
521
|
+
*/
|
|
522
|
+
fieldList;
|
|
457
523
|
/**
|
|
458
524
|
* @internal
|
|
459
525
|
*/
|
|
@@ -463,20 +529,41 @@ var _ValidationException = class _ValidationException extends WorkSpacesWebServi
|
|
|
463
529
|
$fault: "client",
|
|
464
530
|
...opts
|
|
465
531
|
});
|
|
466
|
-
this.name = "ValidationException";
|
|
467
|
-
this.$fault = "client";
|
|
468
532
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
469
533
|
this.reason = opts.reason;
|
|
470
534
|
this.fieldList = opts.fieldList;
|
|
471
535
|
}
|
|
472
536
|
};
|
|
473
|
-
__name(_ValidationException, "ValidationException");
|
|
474
|
-
var ValidationException = _ValidationException;
|
|
475
537
|
var AuthenticationType = {
|
|
476
538
|
IAM_IDENTITY_CENTER: "IAM_Identity_Center",
|
|
477
539
|
STANDARD: "Standard"
|
|
478
540
|
};
|
|
479
|
-
var
|
|
541
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends WorkSpacesWebServiceException {
|
|
542
|
+
static {
|
|
543
|
+
__name(this, "ServiceQuotaExceededException");
|
|
544
|
+
}
|
|
545
|
+
name = "ServiceQuotaExceededException";
|
|
546
|
+
$fault = "client";
|
|
547
|
+
/**
|
|
548
|
+
* <p>Identifier of the resource affected.</p>
|
|
549
|
+
* @public
|
|
550
|
+
*/
|
|
551
|
+
resourceId;
|
|
552
|
+
/**
|
|
553
|
+
* <p> Type of the resource affected.</p>
|
|
554
|
+
* @public
|
|
555
|
+
*/
|
|
556
|
+
resourceType;
|
|
557
|
+
/**
|
|
558
|
+
* <p>The originating service.</p>
|
|
559
|
+
* @public
|
|
560
|
+
*/
|
|
561
|
+
serviceCode;
|
|
562
|
+
/**
|
|
563
|
+
* <p>The originating quota.</p>
|
|
564
|
+
* @public
|
|
565
|
+
*/
|
|
566
|
+
quotaCode;
|
|
480
567
|
/**
|
|
481
568
|
* @internal
|
|
482
569
|
*/
|
|
@@ -486,8 +573,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
486
573
|
$fault: "client",
|
|
487
574
|
...opts
|
|
488
575
|
});
|
|
489
|
-
this.name = "ServiceQuotaExceededException";
|
|
490
|
-
this.$fault = "client";
|
|
491
576
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
492
577
|
this.resourceId = opts.resourceId;
|
|
493
578
|
this.resourceType = opts.resourceType;
|
|
@@ -495,8 +580,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
495
580
|
this.quotaCode = opts.quotaCode;
|
|
496
581
|
}
|
|
497
582
|
};
|
|
498
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
499
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
500
583
|
var RedactionPlaceHolderType = {
|
|
501
584
|
CUSTOM_TEXT: "CustomText"
|
|
502
585
|
};
|
|
@@ -532,7 +615,17 @@ var PortalStatus = {
|
|
|
532
615
|
var RendererType = {
|
|
533
616
|
APPSTREAM: "AppStream"
|
|
534
617
|
};
|
|
535
|
-
var
|
|
618
|
+
var TooManyTagsException = class _TooManyTagsException extends WorkSpacesWebServiceException {
|
|
619
|
+
static {
|
|
620
|
+
__name(this, "TooManyTagsException");
|
|
621
|
+
}
|
|
622
|
+
name = "TooManyTagsException";
|
|
623
|
+
$fault = "client";
|
|
624
|
+
/**
|
|
625
|
+
* <p>Name of the resource affected.</p>
|
|
626
|
+
* @public
|
|
627
|
+
*/
|
|
628
|
+
resourceName;
|
|
536
629
|
/**
|
|
537
630
|
* @internal
|
|
538
631
|
*/
|
|
@@ -542,14 +635,10 @@ var _TooManyTagsException = class _TooManyTagsException extends WorkSpacesWebSer
|
|
|
542
635
|
$fault: "client",
|
|
543
636
|
...opts
|
|
544
637
|
});
|
|
545
|
-
this.name = "TooManyTagsException";
|
|
546
|
-
this.$fault = "client";
|
|
547
638
|
Object.setPrototypeOf(this, _TooManyTagsException.prototype);
|
|
548
639
|
this.resourceName = opts.resourceName;
|
|
549
640
|
}
|
|
550
641
|
};
|
|
551
|
-
__name(_TooManyTagsException, "TooManyTagsException");
|
|
552
|
-
var TooManyTagsException = _TooManyTagsException;
|
|
553
642
|
var EnabledType = {
|
|
554
643
|
DISABLED: "Disabled",
|
|
555
644
|
ENABLED: "Enabled"
|
|
@@ -2996,953 +3085,1021 @@ var _uALSA = "userAccessLoggingSettingsArn";
|
|
|
2996
3085
|
var _uSA = "userSettingsArn";
|
|
2997
3086
|
|
|
2998
3087
|
// src/commands/AssociateBrowserSettingsCommand.ts
|
|
2999
|
-
var
|
|
3088
|
+
var AssociateBrowserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3000
3089
|
return [
|
|
3001
3090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3002
3091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3003
3092
|
];
|
|
3004
3093
|
}).s("AWSErmineControlPlaneService", "AssociateBrowserSettings", {}).n("WorkSpacesWebClient", "AssociateBrowserSettingsCommand").f(void 0, void 0).ser(se_AssociateBrowserSettingsCommand).de(de_AssociateBrowserSettingsCommand).build() {
|
|
3094
|
+
static {
|
|
3095
|
+
__name(this, "AssociateBrowserSettingsCommand");
|
|
3096
|
+
}
|
|
3005
3097
|
};
|
|
3006
|
-
__name(_AssociateBrowserSettingsCommand, "AssociateBrowserSettingsCommand");
|
|
3007
|
-
var AssociateBrowserSettingsCommand = _AssociateBrowserSettingsCommand;
|
|
3008
3098
|
|
|
3009
3099
|
// src/commands/AssociateDataProtectionSettingsCommand.ts
|
|
3010
3100
|
|
|
3011
3101
|
|
|
3012
3102
|
|
|
3013
|
-
var
|
|
3103
|
+
var AssociateDataProtectionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3014
3104
|
return [
|
|
3015
3105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3016
3106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3017
3107
|
];
|
|
3018
3108
|
}).s("AWSErmineControlPlaneService", "AssociateDataProtectionSettings", {}).n("WorkSpacesWebClient", "AssociateDataProtectionSettingsCommand").f(void 0, void 0).ser(se_AssociateDataProtectionSettingsCommand).de(de_AssociateDataProtectionSettingsCommand).build() {
|
|
3109
|
+
static {
|
|
3110
|
+
__name(this, "AssociateDataProtectionSettingsCommand");
|
|
3111
|
+
}
|
|
3019
3112
|
};
|
|
3020
|
-
__name(_AssociateDataProtectionSettingsCommand, "AssociateDataProtectionSettingsCommand");
|
|
3021
|
-
var AssociateDataProtectionSettingsCommand = _AssociateDataProtectionSettingsCommand;
|
|
3022
3113
|
|
|
3023
3114
|
// src/commands/AssociateIpAccessSettingsCommand.ts
|
|
3024
3115
|
|
|
3025
3116
|
|
|
3026
3117
|
|
|
3027
|
-
var
|
|
3118
|
+
var AssociateIpAccessSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3028
3119
|
return [
|
|
3029
3120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3030
3121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3031
3122
|
];
|
|
3032
3123
|
}).s("AWSErmineControlPlaneService", "AssociateIpAccessSettings", {}).n("WorkSpacesWebClient", "AssociateIpAccessSettingsCommand").f(void 0, void 0).ser(se_AssociateIpAccessSettingsCommand).de(de_AssociateIpAccessSettingsCommand).build() {
|
|
3124
|
+
static {
|
|
3125
|
+
__name(this, "AssociateIpAccessSettingsCommand");
|
|
3126
|
+
}
|
|
3033
3127
|
};
|
|
3034
|
-
__name(_AssociateIpAccessSettingsCommand, "AssociateIpAccessSettingsCommand");
|
|
3035
|
-
var AssociateIpAccessSettingsCommand = _AssociateIpAccessSettingsCommand;
|
|
3036
3128
|
|
|
3037
3129
|
// src/commands/AssociateNetworkSettingsCommand.ts
|
|
3038
3130
|
|
|
3039
3131
|
|
|
3040
3132
|
|
|
3041
|
-
var
|
|
3133
|
+
var AssociateNetworkSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3042
3134
|
return [
|
|
3043
3135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3044
3136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3045
3137
|
];
|
|
3046
3138
|
}).s("AWSErmineControlPlaneService", "AssociateNetworkSettings", {}).n("WorkSpacesWebClient", "AssociateNetworkSettingsCommand").f(void 0, void 0).ser(se_AssociateNetworkSettingsCommand).de(de_AssociateNetworkSettingsCommand).build() {
|
|
3139
|
+
static {
|
|
3140
|
+
__name(this, "AssociateNetworkSettingsCommand");
|
|
3141
|
+
}
|
|
3047
3142
|
};
|
|
3048
|
-
__name(_AssociateNetworkSettingsCommand, "AssociateNetworkSettingsCommand");
|
|
3049
|
-
var AssociateNetworkSettingsCommand = _AssociateNetworkSettingsCommand;
|
|
3050
3143
|
|
|
3051
3144
|
// src/commands/AssociateTrustStoreCommand.ts
|
|
3052
3145
|
|
|
3053
3146
|
|
|
3054
3147
|
|
|
3055
|
-
var
|
|
3148
|
+
var AssociateTrustStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3056
3149
|
return [
|
|
3057
3150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3058
3151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3059
3152
|
];
|
|
3060
3153
|
}).s("AWSErmineControlPlaneService", "AssociateTrustStore", {}).n("WorkSpacesWebClient", "AssociateTrustStoreCommand").f(void 0, void 0).ser(se_AssociateTrustStoreCommand).de(de_AssociateTrustStoreCommand).build() {
|
|
3154
|
+
static {
|
|
3155
|
+
__name(this, "AssociateTrustStoreCommand");
|
|
3156
|
+
}
|
|
3061
3157
|
};
|
|
3062
|
-
__name(_AssociateTrustStoreCommand, "AssociateTrustStoreCommand");
|
|
3063
|
-
var AssociateTrustStoreCommand = _AssociateTrustStoreCommand;
|
|
3064
3158
|
|
|
3065
3159
|
// src/commands/AssociateUserAccessLoggingSettingsCommand.ts
|
|
3066
3160
|
|
|
3067
3161
|
|
|
3068
3162
|
|
|
3069
|
-
var
|
|
3163
|
+
var AssociateUserAccessLoggingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3070
3164
|
return [
|
|
3071
3165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3072
3166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3073
3167
|
];
|
|
3074
3168
|
}).s("AWSErmineControlPlaneService", "AssociateUserAccessLoggingSettings", {}).n("WorkSpacesWebClient", "AssociateUserAccessLoggingSettingsCommand").f(void 0, void 0).ser(se_AssociateUserAccessLoggingSettingsCommand).de(de_AssociateUserAccessLoggingSettingsCommand).build() {
|
|
3169
|
+
static {
|
|
3170
|
+
__name(this, "AssociateUserAccessLoggingSettingsCommand");
|
|
3171
|
+
}
|
|
3075
3172
|
};
|
|
3076
|
-
__name(_AssociateUserAccessLoggingSettingsCommand, "AssociateUserAccessLoggingSettingsCommand");
|
|
3077
|
-
var AssociateUserAccessLoggingSettingsCommand = _AssociateUserAccessLoggingSettingsCommand;
|
|
3078
3173
|
|
|
3079
3174
|
// src/commands/AssociateUserSettingsCommand.ts
|
|
3080
3175
|
|
|
3081
3176
|
|
|
3082
3177
|
|
|
3083
|
-
var
|
|
3178
|
+
var AssociateUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3084
3179
|
return [
|
|
3085
3180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3086
3181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3087
3182
|
];
|
|
3088
3183
|
}).s("AWSErmineControlPlaneService", "AssociateUserSettings", {}).n("WorkSpacesWebClient", "AssociateUserSettingsCommand").f(void 0, void 0).ser(se_AssociateUserSettingsCommand).de(de_AssociateUserSettingsCommand).build() {
|
|
3184
|
+
static {
|
|
3185
|
+
__name(this, "AssociateUserSettingsCommand");
|
|
3186
|
+
}
|
|
3089
3187
|
};
|
|
3090
|
-
__name(_AssociateUserSettingsCommand, "AssociateUserSettingsCommand");
|
|
3091
|
-
var AssociateUserSettingsCommand = _AssociateUserSettingsCommand;
|
|
3092
3188
|
|
|
3093
3189
|
// src/commands/CreateBrowserSettingsCommand.ts
|
|
3094
3190
|
|
|
3095
3191
|
|
|
3096
3192
|
|
|
3097
|
-
var
|
|
3193
|
+
var CreateBrowserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3098
3194
|
return [
|
|
3099
3195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3100
3196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3101
3197
|
];
|
|
3102
3198
|
}).s("AWSErmineControlPlaneService", "CreateBrowserSettings", {}).n("WorkSpacesWebClient", "CreateBrowserSettingsCommand").f(CreateBrowserSettingsRequestFilterSensitiveLog, void 0).ser(se_CreateBrowserSettingsCommand).de(de_CreateBrowserSettingsCommand).build() {
|
|
3199
|
+
static {
|
|
3200
|
+
__name(this, "CreateBrowserSettingsCommand");
|
|
3201
|
+
}
|
|
3103
3202
|
};
|
|
3104
|
-
__name(_CreateBrowserSettingsCommand, "CreateBrowserSettingsCommand");
|
|
3105
|
-
var CreateBrowserSettingsCommand = _CreateBrowserSettingsCommand;
|
|
3106
3203
|
|
|
3107
3204
|
// src/commands/CreateDataProtectionSettingsCommand.ts
|
|
3108
3205
|
|
|
3109
3206
|
|
|
3110
3207
|
|
|
3111
|
-
var
|
|
3208
|
+
var CreateDataProtectionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3112
3209
|
return [
|
|
3113
3210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3114
3211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3115
3212
|
];
|
|
3116
3213
|
}).s("AWSErmineControlPlaneService", "CreateDataProtectionSettings", {}).n("WorkSpacesWebClient", "CreateDataProtectionSettingsCommand").f(CreateDataProtectionSettingsRequestFilterSensitiveLog, void 0).ser(se_CreateDataProtectionSettingsCommand).de(de_CreateDataProtectionSettingsCommand).build() {
|
|
3214
|
+
static {
|
|
3215
|
+
__name(this, "CreateDataProtectionSettingsCommand");
|
|
3216
|
+
}
|
|
3117
3217
|
};
|
|
3118
|
-
__name(_CreateDataProtectionSettingsCommand, "CreateDataProtectionSettingsCommand");
|
|
3119
|
-
var CreateDataProtectionSettingsCommand = _CreateDataProtectionSettingsCommand;
|
|
3120
3218
|
|
|
3121
3219
|
// src/commands/CreateIdentityProviderCommand.ts
|
|
3122
3220
|
|
|
3123
3221
|
|
|
3124
3222
|
|
|
3125
|
-
var
|
|
3223
|
+
var CreateIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3126
3224
|
return [
|
|
3127
3225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3128
3226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3129
3227
|
];
|
|
3130
3228
|
}).s("AWSErmineControlPlaneService", "CreateIdentityProvider", {}).n("WorkSpacesWebClient", "CreateIdentityProviderCommand").f(CreateIdentityProviderRequestFilterSensitiveLog, void 0).ser(se_CreateIdentityProviderCommand).de(de_CreateIdentityProviderCommand).build() {
|
|
3229
|
+
static {
|
|
3230
|
+
__name(this, "CreateIdentityProviderCommand");
|
|
3231
|
+
}
|
|
3131
3232
|
};
|
|
3132
|
-
__name(_CreateIdentityProviderCommand, "CreateIdentityProviderCommand");
|
|
3133
|
-
var CreateIdentityProviderCommand = _CreateIdentityProviderCommand;
|
|
3134
3233
|
|
|
3135
3234
|
// src/commands/CreateIpAccessSettingsCommand.ts
|
|
3136
3235
|
|
|
3137
3236
|
|
|
3138
3237
|
|
|
3139
|
-
var
|
|
3238
|
+
var CreateIpAccessSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3140
3239
|
return [
|
|
3141
3240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3142
3241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3143
3242
|
];
|
|
3144
3243
|
}).s("AWSErmineControlPlaneService", "CreateIpAccessSettings", {}).n("WorkSpacesWebClient", "CreateIpAccessSettingsCommand").f(CreateIpAccessSettingsRequestFilterSensitiveLog, void 0).ser(se_CreateIpAccessSettingsCommand).de(de_CreateIpAccessSettingsCommand).build() {
|
|
3244
|
+
static {
|
|
3245
|
+
__name(this, "CreateIpAccessSettingsCommand");
|
|
3246
|
+
}
|
|
3145
3247
|
};
|
|
3146
|
-
__name(_CreateIpAccessSettingsCommand, "CreateIpAccessSettingsCommand");
|
|
3147
|
-
var CreateIpAccessSettingsCommand = _CreateIpAccessSettingsCommand;
|
|
3148
3248
|
|
|
3149
3249
|
// src/commands/CreateNetworkSettingsCommand.ts
|
|
3150
3250
|
|
|
3151
3251
|
|
|
3152
3252
|
|
|
3153
|
-
var
|
|
3253
|
+
var CreateNetworkSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3154
3254
|
return [
|
|
3155
3255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3156
3256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3157
3257
|
];
|
|
3158
3258
|
}).s("AWSErmineControlPlaneService", "CreateNetworkSettings", {}).n("WorkSpacesWebClient", "CreateNetworkSettingsCommand").f(CreateNetworkSettingsRequestFilterSensitiveLog, void 0).ser(se_CreateNetworkSettingsCommand).de(de_CreateNetworkSettingsCommand).build() {
|
|
3259
|
+
static {
|
|
3260
|
+
__name(this, "CreateNetworkSettingsCommand");
|
|
3261
|
+
}
|
|
3159
3262
|
};
|
|
3160
|
-
__name(_CreateNetworkSettingsCommand, "CreateNetworkSettingsCommand");
|
|
3161
|
-
var CreateNetworkSettingsCommand = _CreateNetworkSettingsCommand;
|
|
3162
3263
|
|
|
3163
3264
|
// src/commands/CreatePortalCommand.ts
|
|
3164
3265
|
|
|
3165
3266
|
|
|
3166
3267
|
|
|
3167
|
-
var
|
|
3268
|
+
var CreatePortalCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3168
3269
|
return [
|
|
3169
3270
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3170
3271
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3171
3272
|
];
|
|
3172
3273
|
}).s("AWSErmineControlPlaneService", "CreatePortal", {}).n("WorkSpacesWebClient", "CreatePortalCommand").f(CreatePortalRequestFilterSensitiveLog, void 0).ser(se_CreatePortalCommand).de(de_CreatePortalCommand).build() {
|
|
3274
|
+
static {
|
|
3275
|
+
__name(this, "CreatePortalCommand");
|
|
3276
|
+
}
|
|
3173
3277
|
};
|
|
3174
|
-
__name(_CreatePortalCommand, "CreatePortalCommand");
|
|
3175
|
-
var CreatePortalCommand = _CreatePortalCommand;
|
|
3176
3278
|
|
|
3177
3279
|
// src/commands/CreateTrustStoreCommand.ts
|
|
3178
3280
|
|
|
3179
3281
|
|
|
3180
3282
|
|
|
3181
|
-
var
|
|
3283
|
+
var CreateTrustStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3182
3284
|
return [
|
|
3183
3285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3184
3286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3185
3287
|
];
|
|
3186
3288
|
}).s("AWSErmineControlPlaneService", "CreateTrustStore", {}).n("WorkSpacesWebClient", "CreateTrustStoreCommand").f(CreateTrustStoreRequestFilterSensitiveLog, void 0).ser(se_CreateTrustStoreCommand).de(de_CreateTrustStoreCommand).build() {
|
|
3289
|
+
static {
|
|
3290
|
+
__name(this, "CreateTrustStoreCommand");
|
|
3291
|
+
}
|
|
3187
3292
|
};
|
|
3188
|
-
__name(_CreateTrustStoreCommand, "CreateTrustStoreCommand");
|
|
3189
|
-
var CreateTrustStoreCommand = _CreateTrustStoreCommand;
|
|
3190
3293
|
|
|
3191
3294
|
// src/commands/CreateUserAccessLoggingSettingsCommand.ts
|
|
3192
3295
|
|
|
3193
3296
|
|
|
3194
3297
|
|
|
3195
|
-
var
|
|
3298
|
+
var CreateUserAccessLoggingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3196
3299
|
return [
|
|
3197
3300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3198
3301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3199
3302
|
];
|
|
3200
3303
|
}).s("AWSErmineControlPlaneService", "CreateUserAccessLoggingSettings", {}).n("WorkSpacesWebClient", "CreateUserAccessLoggingSettingsCommand").f(CreateUserAccessLoggingSettingsRequestFilterSensitiveLog, void 0).ser(se_CreateUserAccessLoggingSettingsCommand).de(de_CreateUserAccessLoggingSettingsCommand).build() {
|
|
3304
|
+
static {
|
|
3305
|
+
__name(this, "CreateUserAccessLoggingSettingsCommand");
|
|
3306
|
+
}
|
|
3201
3307
|
};
|
|
3202
|
-
__name(_CreateUserAccessLoggingSettingsCommand, "CreateUserAccessLoggingSettingsCommand");
|
|
3203
|
-
var CreateUserAccessLoggingSettingsCommand = _CreateUserAccessLoggingSettingsCommand;
|
|
3204
3308
|
|
|
3205
3309
|
// src/commands/CreateUserSettingsCommand.ts
|
|
3206
3310
|
|
|
3207
3311
|
|
|
3208
3312
|
|
|
3209
|
-
var
|
|
3313
|
+
var CreateUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3210
3314
|
return [
|
|
3211
3315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3212
3316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3213
3317
|
];
|
|
3214
3318
|
}).s("AWSErmineControlPlaneService", "CreateUserSettings", {}).n("WorkSpacesWebClient", "CreateUserSettingsCommand").f(CreateUserSettingsRequestFilterSensitiveLog, void 0).ser(se_CreateUserSettingsCommand).de(de_CreateUserSettingsCommand).build() {
|
|
3319
|
+
static {
|
|
3320
|
+
__name(this, "CreateUserSettingsCommand");
|
|
3321
|
+
}
|
|
3215
3322
|
};
|
|
3216
|
-
__name(_CreateUserSettingsCommand, "CreateUserSettingsCommand");
|
|
3217
|
-
var CreateUserSettingsCommand = _CreateUserSettingsCommand;
|
|
3218
3323
|
|
|
3219
3324
|
// src/commands/DeleteBrowserSettingsCommand.ts
|
|
3220
3325
|
|
|
3221
3326
|
|
|
3222
3327
|
|
|
3223
|
-
var
|
|
3328
|
+
var DeleteBrowserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3224
3329
|
return [
|
|
3225
3330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3226
3331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3227
3332
|
];
|
|
3228
3333
|
}).s("AWSErmineControlPlaneService", "DeleteBrowserSettings", {}).n("WorkSpacesWebClient", "DeleteBrowserSettingsCommand").f(void 0, void 0).ser(se_DeleteBrowserSettingsCommand).de(de_DeleteBrowserSettingsCommand).build() {
|
|
3334
|
+
static {
|
|
3335
|
+
__name(this, "DeleteBrowserSettingsCommand");
|
|
3336
|
+
}
|
|
3229
3337
|
};
|
|
3230
|
-
__name(_DeleteBrowserSettingsCommand, "DeleteBrowserSettingsCommand");
|
|
3231
|
-
var DeleteBrowserSettingsCommand = _DeleteBrowserSettingsCommand;
|
|
3232
3338
|
|
|
3233
3339
|
// src/commands/DeleteDataProtectionSettingsCommand.ts
|
|
3234
3340
|
|
|
3235
3341
|
|
|
3236
3342
|
|
|
3237
|
-
var
|
|
3343
|
+
var DeleteDataProtectionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3238
3344
|
return [
|
|
3239
3345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3240
3346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3241
3347
|
];
|
|
3242
3348
|
}).s("AWSErmineControlPlaneService", "DeleteDataProtectionSettings", {}).n("WorkSpacesWebClient", "DeleteDataProtectionSettingsCommand").f(void 0, void 0).ser(se_DeleteDataProtectionSettingsCommand).de(de_DeleteDataProtectionSettingsCommand).build() {
|
|
3349
|
+
static {
|
|
3350
|
+
__name(this, "DeleteDataProtectionSettingsCommand");
|
|
3351
|
+
}
|
|
3243
3352
|
};
|
|
3244
|
-
__name(_DeleteDataProtectionSettingsCommand, "DeleteDataProtectionSettingsCommand");
|
|
3245
|
-
var DeleteDataProtectionSettingsCommand = _DeleteDataProtectionSettingsCommand;
|
|
3246
3353
|
|
|
3247
3354
|
// src/commands/DeleteIdentityProviderCommand.ts
|
|
3248
3355
|
|
|
3249
3356
|
|
|
3250
3357
|
|
|
3251
|
-
var
|
|
3358
|
+
var DeleteIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3252
3359
|
return [
|
|
3253
3360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3254
3361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3255
3362
|
];
|
|
3256
3363
|
}).s("AWSErmineControlPlaneService", "DeleteIdentityProvider", {}).n("WorkSpacesWebClient", "DeleteIdentityProviderCommand").f(void 0, void 0).ser(se_DeleteIdentityProviderCommand).de(de_DeleteIdentityProviderCommand).build() {
|
|
3364
|
+
static {
|
|
3365
|
+
__name(this, "DeleteIdentityProviderCommand");
|
|
3366
|
+
}
|
|
3257
3367
|
};
|
|
3258
|
-
__name(_DeleteIdentityProviderCommand, "DeleteIdentityProviderCommand");
|
|
3259
|
-
var DeleteIdentityProviderCommand = _DeleteIdentityProviderCommand;
|
|
3260
3368
|
|
|
3261
3369
|
// src/commands/DeleteIpAccessSettingsCommand.ts
|
|
3262
3370
|
|
|
3263
3371
|
|
|
3264
3372
|
|
|
3265
|
-
var
|
|
3373
|
+
var DeleteIpAccessSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3266
3374
|
return [
|
|
3267
3375
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3268
3376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3269
3377
|
];
|
|
3270
3378
|
}).s("AWSErmineControlPlaneService", "DeleteIpAccessSettings", {}).n("WorkSpacesWebClient", "DeleteIpAccessSettingsCommand").f(void 0, void 0).ser(se_DeleteIpAccessSettingsCommand).de(de_DeleteIpAccessSettingsCommand).build() {
|
|
3379
|
+
static {
|
|
3380
|
+
__name(this, "DeleteIpAccessSettingsCommand");
|
|
3381
|
+
}
|
|
3271
3382
|
};
|
|
3272
|
-
__name(_DeleteIpAccessSettingsCommand, "DeleteIpAccessSettingsCommand");
|
|
3273
|
-
var DeleteIpAccessSettingsCommand = _DeleteIpAccessSettingsCommand;
|
|
3274
3383
|
|
|
3275
3384
|
// src/commands/DeleteNetworkSettingsCommand.ts
|
|
3276
3385
|
|
|
3277
3386
|
|
|
3278
3387
|
|
|
3279
|
-
var
|
|
3388
|
+
var DeleteNetworkSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3280
3389
|
return [
|
|
3281
3390
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3282
3391
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3283
3392
|
];
|
|
3284
3393
|
}).s("AWSErmineControlPlaneService", "DeleteNetworkSettings", {}).n("WorkSpacesWebClient", "DeleteNetworkSettingsCommand").f(void 0, void 0).ser(se_DeleteNetworkSettingsCommand).de(de_DeleteNetworkSettingsCommand).build() {
|
|
3394
|
+
static {
|
|
3395
|
+
__name(this, "DeleteNetworkSettingsCommand");
|
|
3396
|
+
}
|
|
3285
3397
|
};
|
|
3286
|
-
__name(_DeleteNetworkSettingsCommand, "DeleteNetworkSettingsCommand");
|
|
3287
|
-
var DeleteNetworkSettingsCommand = _DeleteNetworkSettingsCommand;
|
|
3288
3398
|
|
|
3289
3399
|
// src/commands/DeletePortalCommand.ts
|
|
3290
3400
|
|
|
3291
3401
|
|
|
3292
3402
|
|
|
3293
|
-
var
|
|
3403
|
+
var DeletePortalCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3294
3404
|
return [
|
|
3295
3405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3296
3406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3297
3407
|
];
|
|
3298
3408
|
}).s("AWSErmineControlPlaneService", "DeletePortal", {}).n("WorkSpacesWebClient", "DeletePortalCommand").f(void 0, void 0).ser(se_DeletePortalCommand).de(de_DeletePortalCommand).build() {
|
|
3409
|
+
static {
|
|
3410
|
+
__name(this, "DeletePortalCommand");
|
|
3411
|
+
}
|
|
3299
3412
|
};
|
|
3300
|
-
__name(_DeletePortalCommand, "DeletePortalCommand");
|
|
3301
|
-
var DeletePortalCommand = _DeletePortalCommand;
|
|
3302
3413
|
|
|
3303
3414
|
// src/commands/DeleteTrustStoreCommand.ts
|
|
3304
3415
|
|
|
3305
3416
|
|
|
3306
3417
|
|
|
3307
|
-
var
|
|
3418
|
+
var DeleteTrustStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3308
3419
|
return [
|
|
3309
3420
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3310
3421
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3311
3422
|
];
|
|
3312
3423
|
}).s("AWSErmineControlPlaneService", "DeleteTrustStore", {}).n("WorkSpacesWebClient", "DeleteTrustStoreCommand").f(void 0, void 0).ser(se_DeleteTrustStoreCommand).de(de_DeleteTrustStoreCommand).build() {
|
|
3424
|
+
static {
|
|
3425
|
+
__name(this, "DeleteTrustStoreCommand");
|
|
3426
|
+
}
|
|
3313
3427
|
};
|
|
3314
|
-
__name(_DeleteTrustStoreCommand, "DeleteTrustStoreCommand");
|
|
3315
|
-
var DeleteTrustStoreCommand = _DeleteTrustStoreCommand;
|
|
3316
3428
|
|
|
3317
3429
|
// src/commands/DeleteUserAccessLoggingSettingsCommand.ts
|
|
3318
3430
|
|
|
3319
3431
|
|
|
3320
3432
|
|
|
3321
|
-
var
|
|
3433
|
+
var DeleteUserAccessLoggingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3322
3434
|
return [
|
|
3323
3435
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3324
3436
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3325
3437
|
];
|
|
3326
3438
|
}).s("AWSErmineControlPlaneService", "DeleteUserAccessLoggingSettings", {}).n("WorkSpacesWebClient", "DeleteUserAccessLoggingSettingsCommand").f(void 0, void 0).ser(se_DeleteUserAccessLoggingSettingsCommand).de(de_DeleteUserAccessLoggingSettingsCommand).build() {
|
|
3439
|
+
static {
|
|
3440
|
+
__name(this, "DeleteUserAccessLoggingSettingsCommand");
|
|
3441
|
+
}
|
|
3327
3442
|
};
|
|
3328
|
-
__name(_DeleteUserAccessLoggingSettingsCommand, "DeleteUserAccessLoggingSettingsCommand");
|
|
3329
|
-
var DeleteUserAccessLoggingSettingsCommand = _DeleteUserAccessLoggingSettingsCommand;
|
|
3330
3443
|
|
|
3331
3444
|
// src/commands/DeleteUserSettingsCommand.ts
|
|
3332
3445
|
|
|
3333
3446
|
|
|
3334
3447
|
|
|
3335
|
-
var
|
|
3448
|
+
var DeleteUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3336
3449
|
return [
|
|
3337
3450
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3338
3451
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3339
3452
|
];
|
|
3340
3453
|
}).s("AWSErmineControlPlaneService", "DeleteUserSettings", {}).n("WorkSpacesWebClient", "DeleteUserSettingsCommand").f(void 0, void 0).ser(se_DeleteUserSettingsCommand).de(de_DeleteUserSettingsCommand).build() {
|
|
3454
|
+
static {
|
|
3455
|
+
__name(this, "DeleteUserSettingsCommand");
|
|
3456
|
+
}
|
|
3341
3457
|
};
|
|
3342
|
-
__name(_DeleteUserSettingsCommand, "DeleteUserSettingsCommand");
|
|
3343
|
-
var DeleteUserSettingsCommand = _DeleteUserSettingsCommand;
|
|
3344
3458
|
|
|
3345
3459
|
// src/commands/DisassociateBrowserSettingsCommand.ts
|
|
3346
3460
|
|
|
3347
3461
|
|
|
3348
3462
|
|
|
3349
|
-
var
|
|
3463
|
+
var DisassociateBrowserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3350
3464
|
return [
|
|
3351
3465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3352
3466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3353
3467
|
];
|
|
3354
3468
|
}).s("AWSErmineControlPlaneService", "DisassociateBrowserSettings", {}).n("WorkSpacesWebClient", "DisassociateBrowserSettingsCommand").f(void 0, void 0).ser(se_DisassociateBrowserSettingsCommand).de(de_DisassociateBrowserSettingsCommand).build() {
|
|
3469
|
+
static {
|
|
3470
|
+
__name(this, "DisassociateBrowserSettingsCommand");
|
|
3471
|
+
}
|
|
3355
3472
|
};
|
|
3356
|
-
__name(_DisassociateBrowserSettingsCommand, "DisassociateBrowserSettingsCommand");
|
|
3357
|
-
var DisassociateBrowserSettingsCommand = _DisassociateBrowserSettingsCommand;
|
|
3358
3473
|
|
|
3359
3474
|
// src/commands/DisassociateDataProtectionSettingsCommand.ts
|
|
3360
3475
|
|
|
3361
3476
|
|
|
3362
3477
|
|
|
3363
|
-
var
|
|
3478
|
+
var DisassociateDataProtectionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3364
3479
|
return [
|
|
3365
3480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3366
3481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3367
3482
|
];
|
|
3368
3483
|
}).s("AWSErmineControlPlaneService", "DisassociateDataProtectionSettings", {}).n("WorkSpacesWebClient", "DisassociateDataProtectionSettingsCommand").f(void 0, void 0).ser(se_DisassociateDataProtectionSettingsCommand).de(de_DisassociateDataProtectionSettingsCommand).build() {
|
|
3484
|
+
static {
|
|
3485
|
+
__name(this, "DisassociateDataProtectionSettingsCommand");
|
|
3486
|
+
}
|
|
3369
3487
|
};
|
|
3370
|
-
__name(_DisassociateDataProtectionSettingsCommand, "DisassociateDataProtectionSettingsCommand");
|
|
3371
|
-
var DisassociateDataProtectionSettingsCommand = _DisassociateDataProtectionSettingsCommand;
|
|
3372
3488
|
|
|
3373
3489
|
// src/commands/DisassociateIpAccessSettingsCommand.ts
|
|
3374
3490
|
|
|
3375
3491
|
|
|
3376
3492
|
|
|
3377
|
-
var
|
|
3493
|
+
var DisassociateIpAccessSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3378
3494
|
return [
|
|
3379
3495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3380
3496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3381
3497
|
];
|
|
3382
3498
|
}).s("AWSErmineControlPlaneService", "DisassociateIpAccessSettings", {}).n("WorkSpacesWebClient", "DisassociateIpAccessSettingsCommand").f(void 0, void 0).ser(se_DisassociateIpAccessSettingsCommand).de(de_DisassociateIpAccessSettingsCommand).build() {
|
|
3499
|
+
static {
|
|
3500
|
+
__name(this, "DisassociateIpAccessSettingsCommand");
|
|
3501
|
+
}
|
|
3383
3502
|
};
|
|
3384
|
-
__name(_DisassociateIpAccessSettingsCommand, "DisassociateIpAccessSettingsCommand");
|
|
3385
|
-
var DisassociateIpAccessSettingsCommand = _DisassociateIpAccessSettingsCommand;
|
|
3386
3503
|
|
|
3387
3504
|
// src/commands/DisassociateNetworkSettingsCommand.ts
|
|
3388
3505
|
|
|
3389
3506
|
|
|
3390
3507
|
|
|
3391
|
-
var
|
|
3508
|
+
var DisassociateNetworkSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3392
3509
|
return [
|
|
3393
3510
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3394
3511
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3395
3512
|
];
|
|
3396
3513
|
}).s("AWSErmineControlPlaneService", "DisassociateNetworkSettings", {}).n("WorkSpacesWebClient", "DisassociateNetworkSettingsCommand").f(void 0, void 0).ser(se_DisassociateNetworkSettingsCommand).de(de_DisassociateNetworkSettingsCommand).build() {
|
|
3514
|
+
static {
|
|
3515
|
+
__name(this, "DisassociateNetworkSettingsCommand");
|
|
3516
|
+
}
|
|
3397
3517
|
};
|
|
3398
|
-
__name(_DisassociateNetworkSettingsCommand, "DisassociateNetworkSettingsCommand");
|
|
3399
|
-
var DisassociateNetworkSettingsCommand = _DisassociateNetworkSettingsCommand;
|
|
3400
3518
|
|
|
3401
3519
|
// src/commands/DisassociateTrustStoreCommand.ts
|
|
3402
3520
|
|
|
3403
3521
|
|
|
3404
3522
|
|
|
3405
|
-
var
|
|
3523
|
+
var DisassociateTrustStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3406
3524
|
return [
|
|
3407
3525
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3408
3526
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3409
3527
|
];
|
|
3410
3528
|
}).s("AWSErmineControlPlaneService", "DisassociateTrustStore", {}).n("WorkSpacesWebClient", "DisassociateTrustStoreCommand").f(void 0, void 0).ser(se_DisassociateTrustStoreCommand).de(de_DisassociateTrustStoreCommand).build() {
|
|
3529
|
+
static {
|
|
3530
|
+
__name(this, "DisassociateTrustStoreCommand");
|
|
3531
|
+
}
|
|
3411
3532
|
};
|
|
3412
|
-
__name(_DisassociateTrustStoreCommand, "DisassociateTrustStoreCommand");
|
|
3413
|
-
var DisassociateTrustStoreCommand = _DisassociateTrustStoreCommand;
|
|
3414
3533
|
|
|
3415
3534
|
// src/commands/DisassociateUserAccessLoggingSettingsCommand.ts
|
|
3416
3535
|
|
|
3417
3536
|
|
|
3418
3537
|
|
|
3419
|
-
var
|
|
3538
|
+
var DisassociateUserAccessLoggingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3420
3539
|
return [
|
|
3421
3540
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3422
3541
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3423
3542
|
];
|
|
3424
3543
|
}).s("AWSErmineControlPlaneService", "DisassociateUserAccessLoggingSettings", {}).n("WorkSpacesWebClient", "DisassociateUserAccessLoggingSettingsCommand").f(void 0, void 0).ser(se_DisassociateUserAccessLoggingSettingsCommand).de(de_DisassociateUserAccessLoggingSettingsCommand).build() {
|
|
3544
|
+
static {
|
|
3545
|
+
__name(this, "DisassociateUserAccessLoggingSettingsCommand");
|
|
3546
|
+
}
|
|
3425
3547
|
};
|
|
3426
|
-
__name(_DisassociateUserAccessLoggingSettingsCommand, "DisassociateUserAccessLoggingSettingsCommand");
|
|
3427
|
-
var DisassociateUserAccessLoggingSettingsCommand = _DisassociateUserAccessLoggingSettingsCommand;
|
|
3428
3548
|
|
|
3429
3549
|
// src/commands/DisassociateUserSettingsCommand.ts
|
|
3430
3550
|
|
|
3431
3551
|
|
|
3432
3552
|
|
|
3433
|
-
var
|
|
3553
|
+
var DisassociateUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3434
3554
|
return [
|
|
3435
3555
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3436
3556
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3437
3557
|
];
|
|
3438
3558
|
}).s("AWSErmineControlPlaneService", "DisassociateUserSettings", {}).n("WorkSpacesWebClient", "DisassociateUserSettingsCommand").f(void 0, void 0).ser(se_DisassociateUserSettingsCommand).de(de_DisassociateUserSettingsCommand).build() {
|
|
3559
|
+
static {
|
|
3560
|
+
__name(this, "DisassociateUserSettingsCommand");
|
|
3561
|
+
}
|
|
3439
3562
|
};
|
|
3440
|
-
__name(_DisassociateUserSettingsCommand, "DisassociateUserSettingsCommand");
|
|
3441
|
-
var DisassociateUserSettingsCommand = _DisassociateUserSettingsCommand;
|
|
3442
3563
|
|
|
3443
3564
|
// src/commands/ExpireSessionCommand.ts
|
|
3444
3565
|
|
|
3445
3566
|
|
|
3446
3567
|
|
|
3447
|
-
var
|
|
3568
|
+
var ExpireSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3448
3569
|
return [
|
|
3449
3570
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3450
3571
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3451
3572
|
];
|
|
3452
3573
|
}).s("AWSErmineControlPlaneService", "ExpireSession", {}).n("WorkSpacesWebClient", "ExpireSessionCommand").f(void 0, void 0).ser(se_ExpireSessionCommand).de(de_ExpireSessionCommand).build() {
|
|
3574
|
+
static {
|
|
3575
|
+
__name(this, "ExpireSessionCommand");
|
|
3576
|
+
}
|
|
3453
3577
|
};
|
|
3454
|
-
__name(_ExpireSessionCommand, "ExpireSessionCommand");
|
|
3455
|
-
var ExpireSessionCommand = _ExpireSessionCommand;
|
|
3456
3578
|
|
|
3457
3579
|
// src/commands/GetBrowserSettingsCommand.ts
|
|
3458
3580
|
|
|
3459
3581
|
|
|
3460
3582
|
|
|
3461
|
-
var
|
|
3583
|
+
var GetBrowserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3462
3584
|
return [
|
|
3463
3585
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3464
3586
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3465
3587
|
];
|
|
3466
3588
|
}).s("AWSErmineControlPlaneService", "GetBrowserSettings", {}).n("WorkSpacesWebClient", "GetBrowserSettingsCommand").f(void 0, GetBrowserSettingsResponseFilterSensitiveLog).ser(se_GetBrowserSettingsCommand).de(de_GetBrowserSettingsCommand).build() {
|
|
3589
|
+
static {
|
|
3590
|
+
__name(this, "GetBrowserSettingsCommand");
|
|
3591
|
+
}
|
|
3467
3592
|
};
|
|
3468
|
-
__name(_GetBrowserSettingsCommand, "GetBrowserSettingsCommand");
|
|
3469
|
-
var GetBrowserSettingsCommand = _GetBrowserSettingsCommand;
|
|
3470
3593
|
|
|
3471
3594
|
// src/commands/GetDataProtectionSettingsCommand.ts
|
|
3472
3595
|
|
|
3473
3596
|
|
|
3474
3597
|
|
|
3475
|
-
var
|
|
3598
|
+
var GetDataProtectionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3476
3599
|
return [
|
|
3477
3600
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3478
3601
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3479
3602
|
];
|
|
3480
3603
|
}).s("AWSErmineControlPlaneService", "GetDataProtectionSettings", {}).n("WorkSpacesWebClient", "GetDataProtectionSettingsCommand").f(void 0, GetDataProtectionSettingsResponseFilterSensitiveLog).ser(se_GetDataProtectionSettingsCommand).de(de_GetDataProtectionSettingsCommand).build() {
|
|
3604
|
+
static {
|
|
3605
|
+
__name(this, "GetDataProtectionSettingsCommand");
|
|
3606
|
+
}
|
|
3481
3607
|
};
|
|
3482
|
-
__name(_GetDataProtectionSettingsCommand, "GetDataProtectionSettingsCommand");
|
|
3483
|
-
var GetDataProtectionSettingsCommand = _GetDataProtectionSettingsCommand;
|
|
3484
3608
|
|
|
3485
3609
|
// src/commands/GetIdentityProviderCommand.ts
|
|
3486
3610
|
|
|
3487
3611
|
|
|
3488
3612
|
|
|
3489
|
-
var
|
|
3613
|
+
var GetIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3490
3614
|
return [
|
|
3491
3615
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3492
3616
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3493
3617
|
];
|
|
3494
3618
|
}).s("AWSErmineControlPlaneService", "GetIdentityProvider", {}).n("WorkSpacesWebClient", "GetIdentityProviderCommand").f(void 0, GetIdentityProviderResponseFilterSensitiveLog).ser(se_GetIdentityProviderCommand).de(de_GetIdentityProviderCommand).build() {
|
|
3619
|
+
static {
|
|
3620
|
+
__name(this, "GetIdentityProviderCommand");
|
|
3621
|
+
}
|
|
3495
3622
|
};
|
|
3496
|
-
__name(_GetIdentityProviderCommand, "GetIdentityProviderCommand");
|
|
3497
|
-
var GetIdentityProviderCommand = _GetIdentityProviderCommand;
|
|
3498
3623
|
|
|
3499
3624
|
// src/commands/GetIpAccessSettingsCommand.ts
|
|
3500
3625
|
|
|
3501
3626
|
|
|
3502
3627
|
|
|
3503
|
-
var
|
|
3628
|
+
var GetIpAccessSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3504
3629
|
return [
|
|
3505
3630
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3506
3631
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3507
3632
|
];
|
|
3508
3633
|
}).s("AWSErmineControlPlaneService", "GetIpAccessSettings", {}).n("WorkSpacesWebClient", "GetIpAccessSettingsCommand").f(void 0, GetIpAccessSettingsResponseFilterSensitiveLog).ser(se_GetIpAccessSettingsCommand).de(de_GetIpAccessSettingsCommand).build() {
|
|
3634
|
+
static {
|
|
3635
|
+
__name(this, "GetIpAccessSettingsCommand");
|
|
3636
|
+
}
|
|
3509
3637
|
};
|
|
3510
|
-
__name(_GetIpAccessSettingsCommand, "GetIpAccessSettingsCommand");
|
|
3511
|
-
var GetIpAccessSettingsCommand = _GetIpAccessSettingsCommand;
|
|
3512
3638
|
|
|
3513
3639
|
// src/commands/GetNetworkSettingsCommand.ts
|
|
3514
3640
|
|
|
3515
3641
|
|
|
3516
3642
|
|
|
3517
|
-
var
|
|
3643
|
+
var GetNetworkSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3518
3644
|
return [
|
|
3519
3645
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3520
3646
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3521
3647
|
];
|
|
3522
3648
|
}).s("AWSErmineControlPlaneService", "GetNetworkSettings", {}).n("WorkSpacesWebClient", "GetNetworkSettingsCommand").f(void 0, void 0).ser(se_GetNetworkSettingsCommand).de(de_GetNetworkSettingsCommand).build() {
|
|
3649
|
+
static {
|
|
3650
|
+
__name(this, "GetNetworkSettingsCommand");
|
|
3651
|
+
}
|
|
3523
3652
|
};
|
|
3524
|
-
__name(_GetNetworkSettingsCommand, "GetNetworkSettingsCommand");
|
|
3525
|
-
var GetNetworkSettingsCommand = _GetNetworkSettingsCommand;
|
|
3526
3653
|
|
|
3527
3654
|
// src/commands/GetPortalCommand.ts
|
|
3528
3655
|
|
|
3529
3656
|
|
|
3530
3657
|
|
|
3531
|
-
var
|
|
3658
|
+
var GetPortalCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3532
3659
|
return [
|
|
3533
3660
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3534
3661
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3535
3662
|
];
|
|
3536
3663
|
}).s("AWSErmineControlPlaneService", "GetPortal", {}).n("WorkSpacesWebClient", "GetPortalCommand").f(void 0, GetPortalResponseFilterSensitiveLog).ser(se_GetPortalCommand).de(de_GetPortalCommand).build() {
|
|
3664
|
+
static {
|
|
3665
|
+
__name(this, "GetPortalCommand");
|
|
3666
|
+
}
|
|
3537
3667
|
};
|
|
3538
|
-
__name(_GetPortalCommand, "GetPortalCommand");
|
|
3539
|
-
var GetPortalCommand = _GetPortalCommand;
|
|
3540
3668
|
|
|
3541
3669
|
// src/commands/GetPortalServiceProviderMetadataCommand.ts
|
|
3542
3670
|
|
|
3543
3671
|
|
|
3544
3672
|
|
|
3545
|
-
var
|
|
3673
|
+
var GetPortalServiceProviderMetadataCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3546
3674
|
return [
|
|
3547
3675
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3548
3676
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3549
3677
|
];
|
|
3550
3678
|
}).s("AWSErmineControlPlaneService", "GetPortalServiceProviderMetadata", {}).n("WorkSpacesWebClient", "GetPortalServiceProviderMetadataCommand").f(void 0, void 0).ser(se_GetPortalServiceProviderMetadataCommand).de(de_GetPortalServiceProviderMetadataCommand).build() {
|
|
3679
|
+
static {
|
|
3680
|
+
__name(this, "GetPortalServiceProviderMetadataCommand");
|
|
3681
|
+
}
|
|
3551
3682
|
};
|
|
3552
|
-
__name(_GetPortalServiceProviderMetadataCommand, "GetPortalServiceProviderMetadataCommand");
|
|
3553
|
-
var GetPortalServiceProviderMetadataCommand = _GetPortalServiceProviderMetadataCommand;
|
|
3554
3683
|
|
|
3555
3684
|
// src/commands/GetSessionCommand.ts
|
|
3556
3685
|
|
|
3557
3686
|
|
|
3558
3687
|
|
|
3559
|
-
var
|
|
3688
|
+
var GetSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3560
3689
|
return [
|
|
3561
3690
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3562
3691
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3563
3692
|
];
|
|
3564
3693
|
}).s("AWSErmineControlPlaneService", "GetSession", {}).n("WorkSpacesWebClient", "GetSessionCommand").f(void 0, GetSessionResponseFilterSensitiveLog).ser(se_GetSessionCommand).de(de_GetSessionCommand).build() {
|
|
3694
|
+
static {
|
|
3695
|
+
__name(this, "GetSessionCommand");
|
|
3696
|
+
}
|
|
3565
3697
|
};
|
|
3566
|
-
__name(_GetSessionCommand, "GetSessionCommand");
|
|
3567
|
-
var GetSessionCommand = _GetSessionCommand;
|
|
3568
3698
|
|
|
3569
3699
|
// src/commands/GetTrustStoreCertificateCommand.ts
|
|
3570
3700
|
|
|
3571
3701
|
|
|
3572
3702
|
|
|
3573
|
-
var
|
|
3703
|
+
var GetTrustStoreCertificateCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3574
3704
|
return [
|
|
3575
3705
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3576
3706
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3577
3707
|
];
|
|
3578
3708
|
}).s("AWSErmineControlPlaneService", "GetTrustStoreCertificate", {}).n("WorkSpacesWebClient", "GetTrustStoreCertificateCommand").f(void 0, void 0).ser(se_GetTrustStoreCertificateCommand).de(de_GetTrustStoreCertificateCommand).build() {
|
|
3709
|
+
static {
|
|
3710
|
+
__name(this, "GetTrustStoreCertificateCommand");
|
|
3711
|
+
}
|
|
3579
3712
|
};
|
|
3580
|
-
__name(_GetTrustStoreCertificateCommand, "GetTrustStoreCertificateCommand");
|
|
3581
|
-
var GetTrustStoreCertificateCommand = _GetTrustStoreCertificateCommand;
|
|
3582
3713
|
|
|
3583
3714
|
// src/commands/GetTrustStoreCommand.ts
|
|
3584
3715
|
|
|
3585
3716
|
|
|
3586
3717
|
|
|
3587
|
-
var
|
|
3718
|
+
var GetTrustStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3588
3719
|
return [
|
|
3589
3720
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3590
3721
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3591
3722
|
];
|
|
3592
3723
|
}).s("AWSErmineControlPlaneService", "GetTrustStore", {}).n("WorkSpacesWebClient", "GetTrustStoreCommand").f(void 0, void 0).ser(se_GetTrustStoreCommand).de(de_GetTrustStoreCommand).build() {
|
|
3724
|
+
static {
|
|
3725
|
+
__name(this, "GetTrustStoreCommand");
|
|
3726
|
+
}
|
|
3593
3727
|
};
|
|
3594
|
-
__name(_GetTrustStoreCommand, "GetTrustStoreCommand");
|
|
3595
|
-
var GetTrustStoreCommand = _GetTrustStoreCommand;
|
|
3596
3728
|
|
|
3597
3729
|
// src/commands/GetUserAccessLoggingSettingsCommand.ts
|
|
3598
3730
|
|
|
3599
3731
|
|
|
3600
3732
|
|
|
3601
|
-
var
|
|
3733
|
+
var GetUserAccessLoggingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3602
3734
|
return [
|
|
3603
3735
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3604
3736
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3605
3737
|
];
|
|
3606
3738
|
}).s("AWSErmineControlPlaneService", "GetUserAccessLoggingSettings", {}).n("WorkSpacesWebClient", "GetUserAccessLoggingSettingsCommand").f(void 0, void 0).ser(se_GetUserAccessLoggingSettingsCommand).de(de_GetUserAccessLoggingSettingsCommand).build() {
|
|
3739
|
+
static {
|
|
3740
|
+
__name(this, "GetUserAccessLoggingSettingsCommand");
|
|
3741
|
+
}
|
|
3607
3742
|
};
|
|
3608
|
-
__name(_GetUserAccessLoggingSettingsCommand, "GetUserAccessLoggingSettingsCommand");
|
|
3609
|
-
var GetUserAccessLoggingSettingsCommand = _GetUserAccessLoggingSettingsCommand;
|
|
3610
3743
|
|
|
3611
3744
|
// src/commands/GetUserSettingsCommand.ts
|
|
3612
3745
|
|
|
3613
3746
|
|
|
3614
3747
|
|
|
3615
|
-
var
|
|
3748
|
+
var GetUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3616
3749
|
return [
|
|
3617
3750
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3618
3751
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3619
3752
|
];
|
|
3620
3753
|
}).s("AWSErmineControlPlaneService", "GetUserSettings", {}).n("WorkSpacesWebClient", "GetUserSettingsCommand").f(void 0, GetUserSettingsResponseFilterSensitiveLog).ser(se_GetUserSettingsCommand).de(de_GetUserSettingsCommand).build() {
|
|
3754
|
+
static {
|
|
3755
|
+
__name(this, "GetUserSettingsCommand");
|
|
3756
|
+
}
|
|
3621
3757
|
};
|
|
3622
|
-
__name(_GetUserSettingsCommand, "GetUserSettingsCommand");
|
|
3623
|
-
var GetUserSettingsCommand = _GetUserSettingsCommand;
|
|
3624
3758
|
|
|
3625
3759
|
// src/commands/ListBrowserSettingsCommand.ts
|
|
3626
3760
|
|
|
3627
3761
|
|
|
3628
3762
|
|
|
3629
|
-
var
|
|
3763
|
+
var ListBrowserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3630
3764
|
return [
|
|
3631
3765
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3632
3766
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3633
3767
|
];
|
|
3634
3768
|
}).s("AWSErmineControlPlaneService", "ListBrowserSettings", {}).n("WorkSpacesWebClient", "ListBrowserSettingsCommand").f(void 0, void 0).ser(se_ListBrowserSettingsCommand).de(de_ListBrowserSettingsCommand).build() {
|
|
3769
|
+
static {
|
|
3770
|
+
__name(this, "ListBrowserSettingsCommand");
|
|
3771
|
+
}
|
|
3635
3772
|
};
|
|
3636
|
-
__name(_ListBrowserSettingsCommand, "ListBrowserSettingsCommand");
|
|
3637
|
-
var ListBrowserSettingsCommand = _ListBrowserSettingsCommand;
|
|
3638
3773
|
|
|
3639
3774
|
// src/commands/ListDataProtectionSettingsCommand.ts
|
|
3640
3775
|
|
|
3641
3776
|
|
|
3642
3777
|
|
|
3643
|
-
var
|
|
3778
|
+
var ListDataProtectionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3644
3779
|
return [
|
|
3645
3780
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3646
3781
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3647
3782
|
];
|
|
3648
3783
|
}).s("AWSErmineControlPlaneService", "ListDataProtectionSettings", {}).n("WorkSpacesWebClient", "ListDataProtectionSettingsCommand").f(void 0, ListDataProtectionSettingsResponseFilterSensitiveLog).ser(se_ListDataProtectionSettingsCommand).de(de_ListDataProtectionSettingsCommand).build() {
|
|
3784
|
+
static {
|
|
3785
|
+
__name(this, "ListDataProtectionSettingsCommand");
|
|
3786
|
+
}
|
|
3649
3787
|
};
|
|
3650
|
-
__name(_ListDataProtectionSettingsCommand, "ListDataProtectionSettingsCommand");
|
|
3651
|
-
var ListDataProtectionSettingsCommand = _ListDataProtectionSettingsCommand;
|
|
3652
3788
|
|
|
3653
3789
|
// src/commands/ListIdentityProvidersCommand.ts
|
|
3654
3790
|
|
|
3655
3791
|
|
|
3656
3792
|
|
|
3657
|
-
var
|
|
3793
|
+
var ListIdentityProvidersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3658
3794
|
return [
|
|
3659
3795
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3660
3796
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3661
3797
|
];
|
|
3662
3798
|
}).s("AWSErmineControlPlaneService", "ListIdentityProviders", {}).n("WorkSpacesWebClient", "ListIdentityProvidersCommand").f(void 0, ListIdentityProvidersResponseFilterSensitiveLog).ser(se_ListIdentityProvidersCommand).de(de_ListIdentityProvidersCommand).build() {
|
|
3799
|
+
static {
|
|
3800
|
+
__name(this, "ListIdentityProvidersCommand");
|
|
3801
|
+
}
|
|
3663
3802
|
};
|
|
3664
|
-
__name(_ListIdentityProvidersCommand, "ListIdentityProvidersCommand");
|
|
3665
|
-
var ListIdentityProvidersCommand = _ListIdentityProvidersCommand;
|
|
3666
3803
|
|
|
3667
3804
|
// src/commands/ListIpAccessSettingsCommand.ts
|
|
3668
3805
|
|
|
3669
3806
|
|
|
3670
3807
|
|
|
3671
|
-
var
|
|
3808
|
+
var ListIpAccessSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3672
3809
|
return [
|
|
3673
3810
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3674
3811
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3675
3812
|
];
|
|
3676
3813
|
}).s("AWSErmineControlPlaneService", "ListIpAccessSettings", {}).n("WorkSpacesWebClient", "ListIpAccessSettingsCommand").f(void 0, ListIpAccessSettingsResponseFilterSensitiveLog).ser(se_ListIpAccessSettingsCommand).de(de_ListIpAccessSettingsCommand).build() {
|
|
3814
|
+
static {
|
|
3815
|
+
__name(this, "ListIpAccessSettingsCommand");
|
|
3816
|
+
}
|
|
3677
3817
|
};
|
|
3678
|
-
__name(_ListIpAccessSettingsCommand, "ListIpAccessSettingsCommand");
|
|
3679
|
-
var ListIpAccessSettingsCommand = _ListIpAccessSettingsCommand;
|
|
3680
3818
|
|
|
3681
3819
|
// src/commands/ListNetworkSettingsCommand.ts
|
|
3682
3820
|
|
|
3683
3821
|
|
|
3684
3822
|
|
|
3685
|
-
var
|
|
3823
|
+
var ListNetworkSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3686
3824
|
return [
|
|
3687
3825
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3688
3826
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3689
3827
|
];
|
|
3690
3828
|
}).s("AWSErmineControlPlaneService", "ListNetworkSettings", {}).n("WorkSpacesWebClient", "ListNetworkSettingsCommand").f(void 0, void 0).ser(se_ListNetworkSettingsCommand).de(de_ListNetworkSettingsCommand).build() {
|
|
3829
|
+
static {
|
|
3830
|
+
__name(this, "ListNetworkSettingsCommand");
|
|
3831
|
+
}
|
|
3691
3832
|
};
|
|
3692
|
-
__name(_ListNetworkSettingsCommand, "ListNetworkSettingsCommand");
|
|
3693
|
-
var ListNetworkSettingsCommand = _ListNetworkSettingsCommand;
|
|
3694
3833
|
|
|
3695
3834
|
// src/commands/ListPortalsCommand.ts
|
|
3696
3835
|
|
|
3697
3836
|
|
|
3698
3837
|
|
|
3699
|
-
var
|
|
3838
|
+
var ListPortalsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3700
3839
|
return [
|
|
3701
3840
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3702
3841
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3703
3842
|
];
|
|
3704
3843
|
}).s("AWSErmineControlPlaneService", "ListPortals", {}).n("WorkSpacesWebClient", "ListPortalsCommand").f(void 0, ListPortalsResponseFilterSensitiveLog).ser(se_ListPortalsCommand).de(de_ListPortalsCommand).build() {
|
|
3844
|
+
static {
|
|
3845
|
+
__name(this, "ListPortalsCommand");
|
|
3846
|
+
}
|
|
3705
3847
|
};
|
|
3706
|
-
__name(_ListPortalsCommand, "ListPortalsCommand");
|
|
3707
|
-
var ListPortalsCommand = _ListPortalsCommand;
|
|
3708
3848
|
|
|
3709
3849
|
// src/commands/ListSessionsCommand.ts
|
|
3710
3850
|
|
|
3711
3851
|
|
|
3712
3852
|
|
|
3713
|
-
var
|
|
3853
|
+
var ListSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3714
3854
|
return [
|
|
3715
3855
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3716
3856
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3717
3857
|
];
|
|
3718
3858
|
}).s("AWSErmineControlPlaneService", "ListSessions", {}).n("WorkSpacesWebClient", "ListSessionsCommand").f(ListSessionsRequestFilterSensitiveLog, ListSessionsResponseFilterSensitiveLog).ser(se_ListSessionsCommand).de(de_ListSessionsCommand).build() {
|
|
3859
|
+
static {
|
|
3860
|
+
__name(this, "ListSessionsCommand");
|
|
3861
|
+
}
|
|
3719
3862
|
};
|
|
3720
|
-
__name(_ListSessionsCommand, "ListSessionsCommand");
|
|
3721
|
-
var ListSessionsCommand = _ListSessionsCommand;
|
|
3722
3863
|
|
|
3723
3864
|
// src/commands/ListTagsForResourceCommand.ts
|
|
3724
3865
|
|
|
3725
3866
|
|
|
3726
3867
|
|
|
3727
|
-
var
|
|
3868
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3728
3869
|
return [
|
|
3729
3870
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3730
3871
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3731
3872
|
];
|
|
3732
3873
|
}).s("AWSErmineControlPlaneService", "ListTagsForResource", {}).n("WorkSpacesWebClient", "ListTagsForResourceCommand").f(void 0, ListTagsForResourceResponseFilterSensitiveLog).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
3874
|
+
static {
|
|
3875
|
+
__name(this, "ListTagsForResourceCommand");
|
|
3876
|
+
}
|
|
3733
3877
|
};
|
|
3734
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
3735
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
3736
3878
|
|
|
3737
3879
|
// src/commands/ListTrustStoreCertificatesCommand.ts
|
|
3738
3880
|
|
|
3739
3881
|
|
|
3740
3882
|
|
|
3741
|
-
var
|
|
3883
|
+
var ListTrustStoreCertificatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3742
3884
|
return [
|
|
3743
3885
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3744
3886
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3745
3887
|
];
|
|
3746
3888
|
}).s("AWSErmineControlPlaneService", "ListTrustStoreCertificates", {}).n("WorkSpacesWebClient", "ListTrustStoreCertificatesCommand").f(void 0, void 0).ser(se_ListTrustStoreCertificatesCommand).de(de_ListTrustStoreCertificatesCommand).build() {
|
|
3889
|
+
static {
|
|
3890
|
+
__name(this, "ListTrustStoreCertificatesCommand");
|
|
3891
|
+
}
|
|
3747
3892
|
};
|
|
3748
|
-
__name(_ListTrustStoreCertificatesCommand, "ListTrustStoreCertificatesCommand");
|
|
3749
|
-
var ListTrustStoreCertificatesCommand = _ListTrustStoreCertificatesCommand;
|
|
3750
3893
|
|
|
3751
3894
|
// src/commands/ListTrustStoresCommand.ts
|
|
3752
3895
|
|
|
3753
3896
|
|
|
3754
3897
|
|
|
3755
|
-
var
|
|
3898
|
+
var ListTrustStoresCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3756
3899
|
return [
|
|
3757
3900
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3758
3901
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3759
3902
|
];
|
|
3760
3903
|
}).s("AWSErmineControlPlaneService", "ListTrustStores", {}).n("WorkSpacesWebClient", "ListTrustStoresCommand").f(void 0, void 0).ser(se_ListTrustStoresCommand).de(de_ListTrustStoresCommand).build() {
|
|
3904
|
+
static {
|
|
3905
|
+
__name(this, "ListTrustStoresCommand");
|
|
3906
|
+
}
|
|
3761
3907
|
};
|
|
3762
|
-
__name(_ListTrustStoresCommand, "ListTrustStoresCommand");
|
|
3763
|
-
var ListTrustStoresCommand = _ListTrustStoresCommand;
|
|
3764
3908
|
|
|
3765
3909
|
// src/commands/ListUserAccessLoggingSettingsCommand.ts
|
|
3766
3910
|
|
|
3767
3911
|
|
|
3768
3912
|
|
|
3769
|
-
var
|
|
3913
|
+
var ListUserAccessLoggingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3770
3914
|
return [
|
|
3771
3915
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3772
3916
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3773
3917
|
];
|
|
3774
3918
|
}).s("AWSErmineControlPlaneService", "ListUserAccessLoggingSettings", {}).n("WorkSpacesWebClient", "ListUserAccessLoggingSettingsCommand").f(void 0, void 0).ser(se_ListUserAccessLoggingSettingsCommand).de(de_ListUserAccessLoggingSettingsCommand).build() {
|
|
3919
|
+
static {
|
|
3920
|
+
__name(this, "ListUserAccessLoggingSettingsCommand");
|
|
3921
|
+
}
|
|
3775
3922
|
};
|
|
3776
|
-
__name(_ListUserAccessLoggingSettingsCommand, "ListUserAccessLoggingSettingsCommand");
|
|
3777
|
-
var ListUserAccessLoggingSettingsCommand = _ListUserAccessLoggingSettingsCommand;
|
|
3778
3923
|
|
|
3779
3924
|
// src/commands/ListUserSettingsCommand.ts
|
|
3780
3925
|
|
|
3781
3926
|
|
|
3782
3927
|
|
|
3783
|
-
var
|
|
3928
|
+
var ListUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3784
3929
|
return [
|
|
3785
3930
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3786
3931
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3787
3932
|
];
|
|
3788
3933
|
}).s("AWSErmineControlPlaneService", "ListUserSettings", {}).n("WorkSpacesWebClient", "ListUserSettingsCommand").f(void 0, ListUserSettingsResponseFilterSensitiveLog).ser(se_ListUserSettingsCommand).de(de_ListUserSettingsCommand).build() {
|
|
3934
|
+
static {
|
|
3935
|
+
__name(this, "ListUserSettingsCommand");
|
|
3936
|
+
}
|
|
3789
3937
|
};
|
|
3790
|
-
__name(_ListUserSettingsCommand, "ListUserSettingsCommand");
|
|
3791
|
-
var ListUserSettingsCommand = _ListUserSettingsCommand;
|
|
3792
3938
|
|
|
3793
3939
|
// src/commands/TagResourceCommand.ts
|
|
3794
3940
|
|
|
3795
3941
|
|
|
3796
3942
|
|
|
3797
|
-
var
|
|
3943
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3798
3944
|
return [
|
|
3799
3945
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3800
3946
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3801
3947
|
];
|
|
3802
3948
|
}).s("AWSErmineControlPlaneService", "TagResource", {}).n("WorkSpacesWebClient", "TagResourceCommand").f(TagResourceRequestFilterSensitiveLog, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
3949
|
+
static {
|
|
3950
|
+
__name(this, "TagResourceCommand");
|
|
3951
|
+
}
|
|
3803
3952
|
};
|
|
3804
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
3805
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
3806
3953
|
|
|
3807
3954
|
// src/commands/UntagResourceCommand.ts
|
|
3808
3955
|
|
|
3809
3956
|
|
|
3810
3957
|
|
|
3811
|
-
var
|
|
3958
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3812
3959
|
return [
|
|
3813
3960
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3814
3961
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3815
3962
|
];
|
|
3816
3963
|
}).s("AWSErmineControlPlaneService", "UntagResource", {}).n("WorkSpacesWebClient", "UntagResourceCommand").f(UntagResourceRequestFilterSensitiveLog, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
3964
|
+
static {
|
|
3965
|
+
__name(this, "UntagResourceCommand");
|
|
3966
|
+
}
|
|
3817
3967
|
};
|
|
3818
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
3819
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
3820
3968
|
|
|
3821
3969
|
// src/commands/UpdateBrowserSettingsCommand.ts
|
|
3822
3970
|
|
|
3823
3971
|
|
|
3824
3972
|
|
|
3825
|
-
var
|
|
3973
|
+
var UpdateBrowserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3826
3974
|
return [
|
|
3827
3975
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3828
3976
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3829
3977
|
];
|
|
3830
3978
|
}).s("AWSErmineControlPlaneService", "UpdateBrowserSettings", {}).n("WorkSpacesWebClient", "UpdateBrowserSettingsCommand").f(UpdateBrowserSettingsRequestFilterSensitiveLog, UpdateBrowserSettingsResponseFilterSensitiveLog).ser(se_UpdateBrowserSettingsCommand).de(de_UpdateBrowserSettingsCommand).build() {
|
|
3979
|
+
static {
|
|
3980
|
+
__name(this, "UpdateBrowserSettingsCommand");
|
|
3981
|
+
}
|
|
3831
3982
|
};
|
|
3832
|
-
__name(_UpdateBrowserSettingsCommand, "UpdateBrowserSettingsCommand");
|
|
3833
|
-
var UpdateBrowserSettingsCommand = _UpdateBrowserSettingsCommand;
|
|
3834
3983
|
|
|
3835
3984
|
// src/commands/UpdateDataProtectionSettingsCommand.ts
|
|
3836
3985
|
|
|
3837
3986
|
|
|
3838
3987
|
|
|
3839
|
-
var
|
|
3988
|
+
var UpdateDataProtectionSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3840
3989
|
return [
|
|
3841
3990
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3842
3991
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3843
3992
|
];
|
|
3844
3993
|
}).s("AWSErmineControlPlaneService", "UpdateDataProtectionSettings", {}).n("WorkSpacesWebClient", "UpdateDataProtectionSettingsCommand").f(UpdateDataProtectionSettingsRequestFilterSensitiveLog, UpdateDataProtectionSettingsResponseFilterSensitiveLog).ser(se_UpdateDataProtectionSettingsCommand).de(de_UpdateDataProtectionSettingsCommand).build() {
|
|
3994
|
+
static {
|
|
3995
|
+
__name(this, "UpdateDataProtectionSettingsCommand");
|
|
3996
|
+
}
|
|
3845
3997
|
};
|
|
3846
|
-
__name(_UpdateDataProtectionSettingsCommand, "UpdateDataProtectionSettingsCommand");
|
|
3847
|
-
var UpdateDataProtectionSettingsCommand = _UpdateDataProtectionSettingsCommand;
|
|
3848
3998
|
|
|
3849
3999
|
// src/commands/UpdateIdentityProviderCommand.ts
|
|
3850
4000
|
|
|
3851
4001
|
|
|
3852
4002
|
|
|
3853
|
-
var
|
|
4003
|
+
var UpdateIdentityProviderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3854
4004
|
return [
|
|
3855
4005
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3856
4006
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3857
4007
|
];
|
|
3858
4008
|
}).s("AWSErmineControlPlaneService", "UpdateIdentityProvider", {}).n("WorkSpacesWebClient", "UpdateIdentityProviderCommand").f(UpdateIdentityProviderRequestFilterSensitiveLog, UpdateIdentityProviderResponseFilterSensitiveLog).ser(se_UpdateIdentityProviderCommand).de(de_UpdateIdentityProviderCommand).build() {
|
|
4009
|
+
static {
|
|
4010
|
+
__name(this, "UpdateIdentityProviderCommand");
|
|
4011
|
+
}
|
|
3859
4012
|
};
|
|
3860
|
-
__name(_UpdateIdentityProviderCommand, "UpdateIdentityProviderCommand");
|
|
3861
|
-
var UpdateIdentityProviderCommand = _UpdateIdentityProviderCommand;
|
|
3862
4013
|
|
|
3863
4014
|
// src/commands/UpdateIpAccessSettingsCommand.ts
|
|
3864
4015
|
|
|
3865
4016
|
|
|
3866
4017
|
|
|
3867
|
-
var
|
|
4018
|
+
var UpdateIpAccessSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3868
4019
|
return [
|
|
3869
4020
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3870
4021
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3871
4022
|
];
|
|
3872
4023
|
}).s("AWSErmineControlPlaneService", "UpdateIpAccessSettings", {}).n("WorkSpacesWebClient", "UpdateIpAccessSettingsCommand").f(UpdateIpAccessSettingsRequestFilterSensitiveLog, UpdateIpAccessSettingsResponseFilterSensitiveLog).ser(se_UpdateIpAccessSettingsCommand).de(de_UpdateIpAccessSettingsCommand).build() {
|
|
4024
|
+
static {
|
|
4025
|
+
__name(this, "UpdateIpAccessSettingsCommand");
|
|
4026
|
+
}
|
|
3873
4027
|
};
|
|
3874
|
-
__name(_UpdateIpAccessSettingsCommand, "UpdateIpAccessSettingsCommand");
|
|
3875
|
-
var UpdateIpAccessSettingsCommand = _UpdateIpAccessSettingsCommand;
|
|
3876
4028
|
|
|
3877
4029
|
// src/commands/UpdateNetworkSettingsCommand.ts
|
|
3878
4030
|
|
|
3879
4031
|
|
|
3880
4032
|
|
|
3881
|
-
var
|
|
4033
|
+
var UpdateNetworkSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3882
4034
|
return [
|
|
3883
4035
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3884
4036
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3885
4037
|
];
|
|
3886
4038
|
}).s("AWSErmineControlPlaneService", "UpdateNetworkSettings", {}).n("WorkSpacesWebClient", "UpdateNetworkSettingsCommand").f(void 0, void 0).ser(se_UpdateNetworkSettingsCommand).de(de_UpdateNetworkSettingsCommand).build() {
|
|
4039
|
+
static {
|
|
4040
|
+
__name(this, "UpdateNetworkSettingsCommand");
|
|
4041
|
+
}
|
|
3887
4042
|
};
|
|
3888
|
-
__name(_UpdateNetworkSettingsCommand, "UpdateNetworkSettingsCommand");
|
|
3889
|
-
var UpdateNetworkSettingsCommand = _UpdateNetworkSettingsCommand;
|
|
3890
4043
|
|
|
3891
4044
|
// src/commands/UpdatePortalCommand.ts
|
|
3892
4045
|
|
|
3893
4046
|
|
|
3894
4047
|
|
|
3895
|
-
var
|
|
4048
|
+
var UpdatePortalCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3896
4049
|
return [
|
|
3897
4050
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3898
4051
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3899
4052
|
];
|
|
3900
4053
|
}).s("AWSErmineControlPlaneService", "UpdatePortal", {}).n("WorkSpacesWebClient", "UpdatePortalCommand").f(UpdatePortalRequestFilterSensitiveLog, UpdatePortalResponseFilterSensitiveLog).ser(se_UpdatePortalCommand).de(de_UpdatePortalCommand).build() {
|
|
4054
|
+
static {
|
|
4055
|
+
__name(this, "UpdatePortalCommand");
|
|
4056
|
+
}
|
|
3901
4057
|
};
|
|
3902
|
-
__name(_UpdatePortalCommand, "UpdatePortalCommand");
|
|
3903
|
-
var UpdatePortalCommand = _UpdatePortalCommand;
|
|
3904
4058
|
|
|
3905
4059
|
// src/commands/UpdateTrustStoreCommand.ts
|
|
3906
4060
|
|
|
3907
4061
|
|
|
3908
4062
|
|
|
3909
|
-
var
|
|
4063
|
+
var UpdateTrustStoreCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3910
4064
|
return [
|
|
3911
4065
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3912
4066
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3913
4067
|
];
|
|
3914
4068
|
}).s("AWSErmineControlPlaneService", "UpdateTrustStore", {}).n("WorkSpacesWebClient", "UpdateTrustStoreCommand").f(void 0, void 0).ser(se_UpdateTrustStoreCommand).de(de_UpdateTrustStoreCommand).build() {
|
|
4069
|
+
static {
|
|
4070
|
+
__name(this, "UpdateTrustStoreCommand");
|
|
4071
|
+
}
|
|
3915
4072
|
};
|
|
3916
|
-
__name(_UpdateTrustStoreCommand, "UpdateTrustStoreCommand");
|
|
3917
|
-
var UpdateTrustStoreCommand = _UpdateTrustStoreCommand;
|
|
3918
4073
|
|
|
3919
4074
|
// src/commands/UpdateUserAccessLoggingSettingsCommand.ts
|
|
3920
4075
|
|
|
3921
4076
|
|
|
3922
4077
|
|
|
3923
|
-
var
|
|
4078
|
+
var UpdateUserAccessLoggingSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3924
4079
|
return [
|
|
3925
4080
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3926
4081
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3927
4082
|
];
|
|
3928
4083
|
}).s("AWSErmineControlPlaneService", "UpdateUserAccessLoggingSettings", {}).n("WorkSpacesWebClient", "UpdateUserAccessLoggingSettingsCommand").f(void 0, void 0).ser(se_UpdateUserAccessLoggingSettingsCommand).de(de_UpdateUserAccessLoggingSettingsCommand).build() {
|
|
4084
|
+
static {
|
|
4085
|
+
__name(this, "UpdateUserAccessLoggingSettingsCommand");
|
|
4086
|
+
}
|
|
3929
4087
|
};
|
|
3930
|
-
__name(_UpdateUserAccessLoggingSettingsCommand, "UpdateUserAccessLoggingSettingsCommand");
|
|
3931
|
-
var UpdateUserAccessLoggingSettingsCommand = _UpdateUserAccessLoggingSettingsCommand;
|
|
3932
4088
|
|
|
3933
4089
|
// src/commands/UpdateUserSettingsCommand.ts
|
|
3934
4090
|
|
|
3935
4091
|
|
|
3936
4092
|
|
|
3937
|
-
var
|
|
4093
|
+
var UpdateUserSettingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3938
4094
|
return [
|
|
3939
4095
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3940
4096
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3941
4097
|
];
|
|
3942
4098
|
}).s("AWSErmineControlPlaneService", "UpdateUserSettings", {}).n("WorkSpacesWebClient", "UpdateUserSettingsCommand").f(UpdateUserSettingsRequestFilterSensitiveLog, UpdateUserSettingsResponseFilterSensitiveLog).ser(se_UpdateUserSettingsCommand).de(de_UpdateUserSettingsCommand).build() {
|
|
4099
|
+
static {
|
|
4100
|
+
__name(this, "UpdateUserSettingsCommand");
|
|
4101
|
+
}
|
|
3943
4102
|
};
|
|
3944
|
-
__name(_UpdateUserSettingsCommand, "UpdateUserSettingsCommand");
|
|
3945
|
-
var UpdateUserSettingsCommand = _UpdateUserSettingsCommand;
|
|
3946
4103
|
|
|
3947
4104
|
// src/WorkSpacesWeb.ts
|
|
3948
4105
|
var commands = {
|
|
@@ -4015,10 +4172,11 @@ var commands = {
|
|
|
4015
4172
|
UpdateUserAccessLoggingSettingsCommand,
|
|
4016
4173
|
UpdateUserSettingsCommand
|
|
4017
4174
|
};
|
|
4018
|
-
var
|
|
4175
|
+
var WorkSpacesWeb = class extends WorkSpacesWebClient {
|
|
4176
|
+
static {
|
|
4177
|
+
__name(this, "WorkSpacesWeb");
|
|
4178
|
+
}
|
|
4019
4179
|
};
|
|
4020
|
-
__name(_WorkSpacesWeb, "WorkSpacesWeb");
|
|
4021
|
-
var WorkSpacesWeb = _WorkSpacesWeb;
|
|
4022
4180
|
(0, import_smithy_client.createAggregatedClient)(commands, WorkSpacesWeb);
|
|
4023
4181
|
|
|
4024
4182
|
// src/pagination/ListBrowserSettingsPaginator.ts
|