@aws-sdk/client-appstream 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 +487 -317
- package/dist-es/AppStreamClient.js +1 -0
- package/dist-es/models/models_0.js +42 -28
- 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 +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -286,7 +286,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
286
286
|
}, "resolveRuntimeExtensions");
|
|
287
287
|
|
|
288
288
|
// src/AppStreamClient.ts
|
|
289
|
-
var
|
|
289
|
+
var AppStreamClient = class extends import_smithy_client.Client {
|
|
290
|
+
static {
|
|
291
|
+
__name(this, "AppStreamClient");
|
|
292
|
+
}
|
|
293
|
+
/**
|
|
294
|
+
* The resolved configuration of AppStreamClient class. This is resolved and normalized from the {@link AppStreamClientConfig | constructor configuration interface}.
|
|
295
|
+
*/
|
|
296
|
+
config;
|
|
290
297
|
constructor(...[configuration]) {
|
|
291
298
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
292
299
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -296,7 +303,7 @@ var _AppStreamClient = class _AppStreamClient extends import_smithy_client.Clien
|
|
|
296
303
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
297
304
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
298
305
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
299
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
306
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
300
307
|
super(_config_8);
|
|
301
308
|
this.config = _config_8;
|
|
302
309
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -324,8 +331,6 @@ var _AppStreamClient = class _AppStreamClient extends import_smithy_client.Clien
|
|
|
324
331
|
super.destroy();
|
|
325
332
|
}
|
|
326
333
|
};
|
|
327
|
-
__name(_AppStreamClient, "AppStreamClient");
|
|
328
|
-
var AppStreamClient = _AppStreamClient;
|
|
329
334
|
|
|
330
335
|
// src/AppStream.ts
|
|
331
336
|
|
|
@@ -342,7 +347,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
342
347
|
|
|
343
348
|
// src/models/AppStreamServiceException.ts
|
|
344
349
|
|
|
345
|
-
var
|
|
350
|
+
var AppStreamServiceException = class _AppStreamServiceException extends import_smithy_client.ServiceException {
|
|
351
|
+
static {
|
|
352
|
+
__name(this, "AppStreamServiceException");
|
|
353
|
+
}
|
|
346
354
|
/**
|
|
347
355
|
* @internal
|
|
348
356
|
*/
|
|
@@ -351,8 +359,6 @@ var _AppStreamServiceException = class _AppStreamServiceException extends import
|
|
|
351
359
|
Object.setPrototypeOf(this, _AppStreamServiceException.prototype);
|
|
352
360
|
}
|
|
353
361
|
};
|
|
354
|
-
__name(_AppStreamServiceException, "AppStreamServiceException");
|
|
355
|
-
var AppStreamServiceException = _AppStreamServiceException;
|
|
356
362
|
|
|
357
363
|
// src/models/models_0.ts
|
|
358
364
|
|
|
@@ -443,7 +449,17 @@ var AppVisibility = {
|
|
|
443
449
|
ALL: "ALL",
|
|
444
450
|
ASSOCIATED: "ASSOCIATED"
|
|
445
451
|
};
|
|
446
|
-
var
|
|
452
|
+
var ConcurrentModificationException = class _ConcurrentModificationException extends AppStreamServiceException {
|
|
453
|
+
static {
|
|
454
|
+
__name(this, "ConcurrentModificationException");
|
|
455
|
+
}
|
|
456
|
+
name = "ConcurrentModificationException";
|
|
457
|
+
$fault = "client";
|
|
458
|
+
/**
|
|
459
|
+
* <p>The error message in the exception.</p>
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
462
|
+
Message;
|
|
447
463
|
/**
|
|
448
464
|
* @internal
|
|
449
465
|
*/
|
|
@@ -453,15 +469,21 @@ var _ConcurrentModificationException = class _ConcurrentModificationException ex
|
|
|
453
469
|
$fault: "client",
|
|
454
470
|
...opts
|
|
455
471
|
});
|
|
456
|
-
this.name = "ConcurrentModificationException";
|
|
457
|
-
this.$fault = "client";
|
|
458
472
|
Object.setPrototypeOf(this, _ConcurrentModificationException.prototype);
|
|
459
473
|
this.Message = opts.Message;
|
|
460
474
|
}
|
|
461
475
|
};
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
476
|
+
var InvalidParameterCombinationException = class _InvalidParameterCombinationException extends AppStreamServiceException {
|
|
477
|
+
static {
|
|
478
|
+
__name(this, "InvalidParameterCombinationException");
|
|
479
|
+
}
|
|
480
|
+
name = "InvalidParameterCombinationException";
|
|
481
|
+
$fault = "client";
|
|
482
|
+
/**
|
|
483
|
+
* <p>The error message in the exception.</p>
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
486
|
+
Message;
|
|
465
487
|
/**
|
|
466
488
|
* @internal
|
|
467
489
|
*/
|
|
@@ -471,15 +493,21 @@ var _InvalidParameterCombinationException = class _InvalidParameterCombinationEx
|
|
|
471
493
|
$fault: "client",
|
|
472
494
|
...opts
|
|
473
495
|
});
|
|
474
|
-
this.name = "InvalidParameterCombinationException";
|
|
475
|
-
this.$fault = "client";
|
|
476
496
|
Object.setPrototypeOf(this, _InvalidParameterCombinationException.prototype);
|
|
477
497
|
this.Message = opts.Message;
|
|
478
498
|
}
|
|
479
499
|
};
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
500
|
+
var LimitExceededException = class _LimitExceededException extends AppStreamServiceException {
|
|
501
|
+
static {
|
|
502
|
+
__name(this, "LimitExceededException");
|
|
503
|
+
}
|
|
504
|
+
name = "LimitExceededException";
|
|
505
|
+
$fault = "client";
|
|
506
|
+
/**
|
|
507
|
+
* <p>The error message in the exception.</p>
|
|
508
|
+
* @public
|
|
509
|
+
*/
|
|
510
|
+
Message;
|
|
483
511
|
/**
|
|
484
512
|
* @internal
|
|
485
513
|
*/
|
|
@@ -489,15 +517,21 @@ var _LimitExceededException = class _LimitExceededException extends AppStreamSer
|
|
|
489
517
|
$fault: "client",
|
|
490
518
|
...opts
|
|
491
519
|
});
|
|
492
|
-
this.name = "LimitExceededException";
|
|
493
|
-
this.$fault = "client";
|
|
494
520
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
495
521
|
this.Message = opts.Message;
|
|
496
522
|
}
|
|
497
523
|
};
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
524
|
+
var OperationNotPermittedException = class _OperationNotPermittedException extends AppStreamServiceException {
|
|
525
|
+
static {
|
|
526
|
+
__name(this, "OperationNotPermittedException");
|
|
527
|
+
}
|
|
528
|
+
name = "OperationNotPermittedException";
|
|
529
|
+
$fault = "client";
|
|
530
|
+
/**
|
|
531
|
+
* <p>The error message in the exception.</p>
|
|
532
|
+
* @public
|
|
533
|
+
*/
|
|
534
|
+
Message;
|
|
501
535
|
/**
|
|
502
536
|
* @internal
|
|
503
537
|
*/
|
|
@@ -507,15 +541,21 @@ var _OperationNotPermittedException = class _OperationNotPermittedException exte
|
|
|
507
541
|
$fault: "client",
|
|
508
542
|
...opts
|
|
509
543
|
});
|
|
510
|
-
this.name = "OperationNotPermittedException";
|
|
511
|
-
this.$fault = "client";
|
|
512
544
|
Object.setPrototypeOf(this, _OperationNotPermittedException.prototype);
|
|
513
545
|
this.Message = opts.Message;
|
|
514
546
|
}
|
|
515
547
|
};
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
548
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends AppStreamServiceException {
|
|
549
|
+
static {
|
|
550
|
+
__name(this, "ResourceNotFoundException");
|
|
551
|
+
}
|
|
552
|
+
name = "ResourceNotFoundException";
|
|
553
|
+
$fault = "client";
|
|
554
|
+
/**
|
|
555
|
+
* <p>The error message in the exception.</p>
|
|
556
|
+
* @public
|
|
557
|
+
*/
|
|
558
|
+
Message;
|
|
519
559
|
/**
|
|
520
560
|
* @internal
|
|
521
561
|
*/
|
|
@@ -525,15 +565,21 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends AppStr
|
|
|
525
565
|
$fault: "client",
|
|
526
566
|
...opts
|
|
527
567
|
});
|
|
528
|
-
this.name = "ResourceNotFoundException";
|
|
529
|
-
this.$fault = "client";
|
|
530
568
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
531
569
|
this.Message = opts.Message;
|
|
532
570
|
}
|
|
533
571
|
};
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
572
|
+
var EntitlementNotFoundException = class _EntitlementNotFoundException extends AppStreamServiceException {
|
|
573
|
+
static {
|
|
574
|
+
__name(this, "EntitlementNotFoundException");
|
|
575
|
+
}
|
|
576
|
+
name = "EntitlementNotFoundException";
|
|
577
|
+
$fault = "client";
|
|
578
|
+
/**
|
|
579
|
+
* <p>The error message in the exception.</p>
|
|
580
|
+
* @public
|
|
581
|
+
*/
|
|
582
|
+
Message;
|
|
537
583
|
/**
|
|
538
584
|
* @internal
|
|
539
585
|
*/
|
|
@@ -543,15 +589,21 @@ var _EntitlementNotFoundException = class _EntitlementNotFoundException extends
|
|
|
543
589
|
$fault: "client",
|
|
544
590
|
...opts
|
|
545
591
|
});
|
|
546
|
-
this.name = "EntitlementNotFoundException";
|
|
547
|
-
this.$fault = "client";
|
|
548
592
|
Object.setPrototypeOf(this, _EntitlementNotFoundException.prototype);
|
|
549
593
|
this.Message = opts.Message;
|
|
550
594
|
}
|
|
551
595
|
};
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
596
|
+
var IncompatibleImageException = class _IncompatibleImageException extends AppStreamServiceException {
|
|
597
|
+
static {
|
|
598
|
+
__name(this, "IncompatibleImageException");
|
|
599
|
+
}
|
|
600
|
+
name = "IncompatibleImageException";
|
|
601
|
+
$fault = "client";
|
|
602
|
+
/**
|
|
603
|
+
* <p>The error message in the exception.</p>
|
|
604
|
+
* @public
|
|
605
|
+
*/
|
|
606
|
+
Message;
|
|
555
607
|
/**
|
|
556
608
|
* @internal
|
|
557
609
|
*/
|
|
@@ -561,15 +613,21 @@ var _IncompatibleImageException = class _IncompatibleImageException extends AppS
|
|
|
561
613
|
$fault: "client",
|
|
562
614
|
...opts
|
|
563
615
|
});
|
|
564
|
-
this.name = "IncompatibleImageException";
|
|
565
|
-
this.$fault = "client";
|
|
566
616
|
Object.setPrototypeOf(this, _IncompatibleImageException.prototype);
|
|
567
617
|
this.Message = opts.Message;
|
|
568
618
|
}
|
|
569
619
|
};
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
620
|
+
var InvalidAccountStatusException = class _InvalidAccountStatusException extends AppStreamServiceException {
|
|
621
|
+
static {
|
|
622
|
+
__name(this, "InvalidAccountStatusException");
|
|
623
|
+
}
|
|
624
|
+
name = "InvalidAccountStatusException";
|
|
625
|
+
$fault = "client";
|
|
626
|
+
/**
|
|
627
|
+
* <p>The error message in the exception.</p>
|
|
628
|
+
* @public
|
|
629
|
+
*/
|
|
630
|
+
Message;
|
|
573
631
|
/**
|
|
574
632
|
* @internal
|
|
575
633
|
*/
|
|
@@ -579,14 +637,10 @@ var _InvalidAccountStatusException = class _InvalidAccountStatusException extend
|
|
|
579
637
|
$fault: "client",
|
|
580
638
|
...opts
|
|
581
639
|
});
|
|
582
|
-
this.name = "InvalidAccountStatusException";
|
|
583
|
-
this.$fault = "client";
|
|
584
640
|
Object.setPrototypeOf(this, _InvalidAccountStatusException.prototype);
|
|
585
641
|
this.Message = opts.Message;
|
|
586
642
|
}
|
|
587
643
|
};
|
|
588
|
-
__name(_InvalidAccountStatusException, "InvalidAccountStatusException");
|
|
589
|
-
var InvalidAccountStatusException = _InvalidAccountStatusException;
|
|
590
644
|
var AuthenticationType = {
|
|
591
645
|
API: "API",
|
|
592
646
|
AWS_AD: "AWS_AD",
|
|
@@ -604,7 +658,17 @@ var CertificateBasedAuthStatus = {
|
|
|
604
658
|
ENABLED: "ENABLED",
|
|
605
659
|
ENABLED_NO_DIRECTORY_LOGIN_FALLBACK: "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"
|
|
606
660
|
};
|
|
607
|
-
var
|
|
661
|
+
var ResourceAlreadyExistsException = class _ResourceAlreadyExistsException extends AppStreamServiceException {
|
|
662
|
+
static {
|
|
663
|
+
__name(this, "ResourceAlreadyExistsException");
|
|
664
|
+
}
|
|
665
|
+
name = "ResourceAlreadyExistsException";
|
|
666
|
+
$fault = "client";
|
|
667
|
+
/**
|
|
668
|
+
* <p>The error message in the exception.</p>
|
|
669
|
+
* @public
|
|
670
|
+
*/
|
|
671
|
+
Message;
|
|
608
672
|
/**
|
|
609
673
|
* @internal
|
|
610
674
|
*/
|
|
@@ -614,15 +678,21 @@ var _ResourceAlreadyExistsException = class _ResourceAlreadyExistsException exte
|
|
|
614
678
|
$fault: "client",
|
|
615
679
|
...opts
|
|
616
680
|
});
|
|
617
|
-
this.name = "ResourceAlreadyExistsException";
|
|
618
|
-
this.$fault = "client";
|
|
619
681
|
Object.setPrototypeOf(this, _ResourceAlreadyExistsException.prototype);
|
|
620
682
|
this.Message = opts.Message;
|
|
621
683
|
}
|
|
622
684
|
};
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
685
|
+
var ResourceNotAvailableException = class _ResourceNotAvailableException extends AppStreamServiceException {
|
|
686
|
+
static {
|
|
687
|
+
__name(this, "ResourceNotAvailableException");
|
|
688
|
+
}
|
|
689
|
+
name = "ResourceNotAvailableException";
|
|
690
|
+
$fault = "client";
|
|
691
|
+
/**
|
|
692
|
+
* <p>The error message in the exception.</p>
|
|
693
|
+
* @public
|
|
694
|
+
*/
|
|
695
|
+
Message;
|
|
626
696
|
/**
|
|
627
697
|
* @internal
|
|
628
698
|
*/
|
|
@@ -632,15 +702,21 @@ var _ResourceNotAvailableException = class _ResourceNotAvailableException extend
|
|
|
632
702
|
$fault: "client",
|
|
633
703
|
...opts
|
|
634
704
|
});
|
|
635
|
-
this.name = "ResourceNotAvailableException";
|
|
636
|
-
this.$fault = "client";
|
|
637
705
|
Object.setPrototypeOf(this, _ResourceNotAvailableException.prototype);
|
|
638
706
|
this.Message = opts.Message;
|
|
639
707
|
}
|
|
640
708
|
};
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
709
|
+
var InvalidRoleException = class _InvalidRoleException extends AppStreamServiceException {
|
|
710
|
+
static {
|
|
711
|
+
__name(this, "InvalidRoleException");
|
|
712
|
+
}
|
|
713
|
+
name = "InvalidRoleException";
|
|
714
|
+
$fault = "client";
|
|
715
|
+
/**
|
|
716
|
+
* <p>The error message in the exception.</p>
|
|
717
|
+
* @public
|
|
718
|
+
*/
|
|
719
|
+
Message;
|
|
644
720
|
/**
|
|
645
721
|
* @internal
|
|
646
722
|
*/
|
|
@@ -650,15 +726,21 @@ var _InvalidRoleException = class _InvalidRoleException extends AppStreamService
|
|
|
650
726
|
$fault: "client",
|
|
651
727
|
...opts
|
|
652
728
|
});
|
|
653
|
-
this.name = "InvalidRoleException";
|
|
654
|
-
this.$fault = "client";
|
|
655
729
|
Object.setPrototypeOf(this, _InvalidRoleException.prototype);
|
|
656
730
|
this.Message = opts.Message;
|
|
657
731
|
}
|
|
658
732
|
};
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
733
|
+
var RequestLimitExceededException = class _RequestLimitExceededException extends AppStreamServiceException {
|
|
734
|
+
static {
|
|
735
|
+
__name(this, "RequestLimitExceededException");
|
|
736
|
+
}
|
|
737
|
+
name = "RequestLimitExceededException";
|
|
738
|
+
$fault = "client";
|
|
739
|
+
/**
|
|
740
|
+
* <p>The error message in the exception.</p>
|
|
741
|
+
* @public
|
|
742
|
+
*/
|
|
743
|
+
Message;
|
|
662
744
|
/**
|
|
663
745
|
* @internal
|
|
664
746
|
*/
|
|
@@ -668,15 +750,21 @@ var _RequestLimitExceededException = class _RequestLimitExceededException extend
|
|
|
668
750
|
$fault: "client",
|
|
669
751
|
...opts
|
|
670
752
|
});
|
|
671
|
-
this.name = "RequestLimitExceededException";
|
|
672
|
-
this.$fault = "client";
|
|
673
753
|
Object.setPrototypeOf(this, _RequestLimitExceededException.prototype);
|
|
674
754
|
this.Message = opts.Message;
|
|
675
755
|
}
|
|
676
756
|
};
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
757
|
+
var EntitlementAlreadyExistsException = class _EntitlementAlreadyExistsException extends AppStreamServiceException {
|
|
758
|
+
static {
|
|
759
|
+
__name(this, "EntitlementAlreadyExistsException");
|
|
760
|
+
}
|
|
761
|
+
name = "EntitlementAlreadyExistsException";
|
|
762
|
+
$fault = "client";
|
|
763
|
+
/**
|
|
764
|
+
* <p>The error message in the exception.</p>
|
|
765
|
+
* @public
|
|
766
|
+
*/
|
|
767
|
+
Message;
|
|
680
768
|
/**
|
|
681
769
|
* @internal
|
|
682
770
|
*/
|
|
@@ -686,14 +774,10 @@ var _EntitlementAlreadyExistsException = class _EntitlementAlreadyExistsExceptio
|
|
|
686
774
|
$fault: "client",
|
|
687
775
|
...opts
|
|
688
776
|
});
|
|
689
|
-
this.name = "EntitlementAlreadyExistsException";
|
|
690
|
-
this.$fault = "client";
|
|
691
777
|
Object.setPrototypeOf(this, _EntitlementAlreadyExistsException.prototype);
|
|
692
778
|
this.Message = opts.Message;
|
|
693
779
|
}
|
|
694
780
|
};
|
|
695
|
-
__name(_EntitlementAlreadyExistsException, "EntitlementAlreadyExistsException");
|
|
696
|
-
var EntitlementAlreadyExistsException = _EntitlementAlreadyExistsException;
|
|
697
781
|
var FleetType = {
|
|
698
782
|
ALWAYS_ON: "ALWAYS_ON",
|
|
699
783
|
ELASTIC: "ELASTIC",
|
|
@@ -791,7 +875,17 @@ var MessageAction = {
|
|
|
791
875
|
RESEND: "RESEND",
|
|
792
876
|
SUPPRESS: "SUPPRESS"
|
|
793
877
|
};
|
|
794
|
-
var
|
|
878
|
+
var ResourceInUseException = class _ResourceInUseException extends AppStreamServiceException {
|
|
879
|
+
static {
|
|
880
|
+
__name(this, "ResourceInUseException");
|
|
881
|
+
}
|
|
882
|
+
name = "ResourceInUseException";
|
|
883
|
+
$fault = "client";
|
|
884
|
+
/**
|
|
885
|
+
* <p>The error message in the exception.</p>
|
|
886
|
+
* @public
|
|
887
|
+
*/
|
|
888
|
+
Message;
|
|
795
889
|
/**
|
|
796
890
|
* @internal
|
|
797
891
|
*/
|
|
@@ -801,14 +895,10 @@ var _ResourceInUseException = class _ResourceInUseException extends AppStreamSer
|
|
|
801
895
|
$fault: "client",
|
|
802
896
|
...opts
|
|
803
897
|
});
|
|
804
|
-
this.name = "ResourceInUseException";
|
|
805
|
-
this.$fault = "client";
|
|
806
898
|
Object.setPrototypeOf(this, _ResourceInUseException.prototype);
|
|
807
899
|
this.Message = opts.Message;
|
|
808
900
|
}
|
|
809
901
|
};
|
|
810
|
-
__name(_ResourceInUseException, "ResourceInUseException");
|
|
811
|
-
var ResourceInUseException = _ResourceInUseException;
|
|
812
902
|
var SessionConnectionState = {
|
|
813
903
|
CONNECTED: "CONNECTED",
|
|
814
904
|
NOT_CONNECTED: "NOT_CONNECTED"
|
|
@@ -3185,1107 +3275,1186 @@ function sharedHeaders(operation) {
|
|
|
3185
3275
|
__name(sharedHeaders, "sharedHeaders");
|
|
3186
3276
|
|
|
3187
3277
|
// src/commands/AssociateAppBlockBuilderAppBlockCommand.ts
|
|
3188
|
-
var
|
|
3278
|
+
var AssociateAppBlockBuilderAppBlockCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3189
3279
|
return [
|
|
3190
3280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3191
3281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3192
3282
|
];
|
|
3193
3283
|
}).s("PhotonAdminProxyService", "AssociateAppBlockBuilderAppBlock", {}).n("AppStreamClient", "AssociateAppBlockBuilderAppBlockCommand").f(void 0, void 0).ser(se_AssociateAppBlockBuilderAppBlockCommand).de(de_AssociateAppBlockBuilderAppBlockCommand).build() {
|
|
3284
|
+
static {
|
|
3285
|
+
__name(this, "AssociateAppBlockBuilderAppBlockCommand");
|
|
3286
|
+
}
|
|
3194
3287
|
};
|
|
3195
|
-
__name(_AssociateAppBlockBuilderAppBlockCommand, "AssociateAppBlockBuilderAppBlockCommand");
|
|
3196
|
-
var AssociateAppBlockBuilderAppBlockCommand = _AssociateAppBlockBuilderAppBlockCommand;
|
|
3197
3288
|
|
|
3198
3289
|
// src/commands/AssociateApplicationFleetCommand.ts
|
|
3199
3290
|
|
|
3200
3291
|
|
|
3201
3292
|
|
|
3202
|
-
var
|
|
3293
|
+
var AssociateApplicationFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3203
3294
|
return [
|
|
3204
3295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3205
3296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3206
3297
|
];
|
|
3207
3298
|
}).s("PhotonAdminProxyService", "AssociateApplicationFleet", {}).n("AppStreamClient", "AssociateApplicationFleetCommand").f(void 0, void 0).ser(se_AssociateApplicationFleetCommand).de(de_AssociateApplicationFleetCommand).build() {
|
|
3299
|
+
static {
|
|
3300
|
+
__name(this, "AssociateApplicationFleetCommand");
|
|
3301
|
+
}
|
|
3208
3302
|
};
|
|
3209
|
-
__name(_AssociateApplicationFleetCommand, "AssociateApplicationFleetCommand");
|
|
3210
|
-
var AssociateApplicationFleetCommand = _AssociateApplicationFleetCommand;
|
|
3211
3303
|
|
|
3212
3304
|
// src/commands/AssociateApplicationToEntitlementCommand.ts
|
|
3213
3305
|
|
|
3214
3306
|
|
|
3215
3307
|
|
|
3216
|
-
var
|
|
3308
|
+
var AssociateApplicationToEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3217
3309
|
return [
|
|
3218
3310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3219
3311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3220
3312
|
];
|
|
3221
3313
|
}).s("PhotonAdminProxyService", "AssociateApplicationToEntitlement", {}).n("AppStreamClient", "AssociateApplicationToEntitlementCommand").f(void 0, void 0).ser(se_AssociateApplicationToEntitlementCommand).de(de_AssociateApplicationToEntitlementCommand).build() {
|
|
3314
|
+
static {
|
|
3315
|
+
__name(this, "AssociateApplicationToEntitlementCommand");
|
|
3316
|
+
}
|
|
3222
3317
|
};
|
|
3223
|
-
__name(_AssociateApplicationToEntitlementCommand, "AssociateApplicationToEntitlementCommand");
|
|
3224
|
-
var AssociateApplicationToEntitlementCommand = _AssociateApplicationToEntitlementCommand;
|
|
3225
3318
|
|
|
3226
3319
|
// src/commands/AssociateFleetCommand.ts
|
|
3227
3320
|
|
|
3228
3321
|
|
|
3229
3322
|
|
|
3230
|
-
var
|
|
3323
|
+
var AssociateFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3231
3324
|
return [
|
|
3232
3325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3233
3326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3234
3327
|
];
|
|
3235
3328
|
}).s("PhotonAdminProxyService", "AssociateFleet", {}).n("AppStreamClient", "AssociateFleetCommand").f(void 0, void 0).ser(se_AssociateFleetCommand).de(de_AssociateFleetCommand).build() {
|
|
3329
|
+
static {
|
|
3330
|
+
__name(this, "AssociateFleetCommand");
|
|
3331
|
+
}
|
|
3236
3332
|
};
|
|
3237
|
-
__name(_AssociateFleetCommand, "AssociateFleetCommand");
|
|
3238
|
-
var AssociateFleetCommand = _AssociateFleetCommand;
|
|
3239
3333
|
|
|
3240
3334
|
// src/commands/BatchAssociateUserStackCommand.ts
|
|
3241
3335
|
|
|
3242
3336
|
|
|
3243
3337
|
|
|
3244
|
-
var
|
|
3338
|
+
var BatchAssociateUserStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3245
3339
|
return [
|
|
3246
3340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3247
3341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3248
3342
|
];
|
|
3249
3343
|
}).s("PhotonAdminProxyService", "BatchAssociateUserStack", {}).n("AppStreamClient", "BatchAssociateUserStackCommand").f(BatchAssociateUserStackRequestFilterSensitiveLog, BatchAssociateUserStackResultFilterSensitiveLog).ser(se_BatchAssociateUserStackCommand).de(de_BatchAssociateUserStackCommand).build() {
|
|
3344
|
+
static {
|
|
3345
|
+
__name(this, "BatchAssociateUserStackCommand");
|
|
3346
|
+
}
|
|
3250
3347
|
};
|
|
3251
|
-
__name(_BatchAssociateUserStackCommand, "BatchAssociateUserStackCommand");
|
|
3252
|
-
var BatchAssociateUserStackCommand = _BatchAssociateUserStackCommand;
|
|
3253
3348
|
|
|
3254
3349
|
// src/commands/BatchDisassociateUserStackCommand.ts
|
|
3255
3350
|
|
|
3256
3351
|
|
|
3257
3352
|
|
|
3258
|
-
var
|
|
3353
|
+
var BatchDisassociateUserStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3259
3354
|
return [
|
|
3260
3355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3261
3356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3262
3357
|
];
|
|
3263
3358
|
}).s("PhotonAdminProxyService", "BatchDisassociateUserStack", {}).n("AppStreamClient", "BatchDisassociateUserStackCommand").f(BatchDisassociateUserStackRequestFilterSensitiveLog, BatchDisassociateUserStackResultFilterSensitiveLog).ser(se_BatchDisassociateUserStackCommand).de(de_BatchDisassociateUserStackCommand).build() {
|
|
3359
|
+
static {
|
|
3360
|
+
__name(this, "BatchDisassociateUserStackCommand");
|
|
3361
|
+
}
|
|
3264
3362
|
};
|
|
3265
|
-
__name(_BatchDisassociateUserStackCommand, "BatchDisassociateUserStackCommand");
|
|
3266
|
-
var BatchDisassociateUserStackCommand = _BatchDisassociateUserStackCommand;
|
|
3267
3363
|
|
|
3268
3364
|
// src/commands/CopyImageCommand.ts
|
|
3269
3365
|
|
|
3270
3366
|
|
|
3271
3367
|
|
|
3272
|
-
var
|
|
3368
|
+
var CopyImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3273
3369
|
return [
|
|
3274
3370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3275
3371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3276
3372
|
];
|
|
3277
3373
|
}).s("PhotonAdminProxyService", "CopyImage", {}).n("AppStreamClient", "CopyImageCommand").f(void 0, void 0).ser(se_CopyImageCommand).de(de_CopyImageCommand).build() {
|
|
3374
|
+
static {
|
|
3375
|
+
__name(this, "CopyImageCommand");
|
|
3376
|
+
}
|
|
3278
3377
|
};
|
|
3279
|
-
__name(_CopyImageCommand, "CopyImageCommand");
|
|
3280
|
-
var CopyImageCommand = _CopyImageCommand;
|
|
3281
3378
|
|
|
3282
3379
|
// src/commands/CreateAppBlockBuilderCommand.ts
|
|
3283
3380
|
|
|
3284
3381
|
|
|
3285
3382
|
|
|
3286
|
-
var
|
|
3383
|
+
var CreateAppBlockBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3287
3384
|
return [
|
|
3288
3385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3289
3386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3290
3387
|
];
|
|
3291
3388
|
}).s("PhotonAdminProxyService", "CreateAppBlockBuilder", {}).n("AppStreamClient", "CreateAppBlockBuilderCommand").f(void 0, void 0).ser(se_CreateAppBlockBuilderCommand).de(de_CreateAppBlockBuilderCommand).build() {
|
|
3389
|
+
static {
|
|
3390
|
+
__name(this, "CreateAppBlockBuilderCommand");
|
|
3391
|
+
}
|
|
3292
3392
|
};
|
|
3293
|
-
__name(_CreateAppBlockBuilderCommand, "CreateAppBlockBuilderCommand");
|
|
3294
|
-
var CreateAppBlockBuilderCommand = _CreateAppBlockBuilderCommand;
|
|
3295
3393
|
|
|
3296
3394
|
// src/commands/CreateAppBlockBuilderStreamingURLCommand.ts
|
|
3297
3395
|
|
|
3298
3396
|
|
|
3299
3397
|
|
|
3300
|
-
var
|
|
3398
|
+
var CreateAppBlockBuilderStreamingURLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3301
3399
|
return [
|
|
3302
3400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3303
3401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3304
3402
|
];
|
|
3305
3403
|
}).s("PhotonAdminProxyService", "CreateAppBlockBuilderStreamingURL", {}).n("AppStreamClient", "CreateAppBlockBuilderStreamingURLCommand").f(void 0, void 0).ser(se_CreateAppBlockBuilderStreamingURLCommand).de(de_CreateAppBlockBuilderStreamingURLCommand).build() {
|
|
3404
|
+
static {
|
|
3405
|
+
__name(this, "CreateAppBlockBuilderStreamingURLCommand");
|
|
3406
|
+
}
|
|
3306
3407
|
};
|
|
3307
|
-
__name(_CreateAppBlockBuilderStreamingURLCommand, "CreateAppBlockBuilderStreamingURLCommand");
|
|
3308
|
-
var CreateAppBlockBuilderStreamingURLCommand = _CreateAppBlockBuilderStreamingURLCommand;
|
|
3309
3408
|
|
|
3310
3409
|
// src/commands/CreateAppBlockCommand.ts
|
|
3311
3410
|
|
|
3312
3411
|
|
|
3313
3412
|
|
|
3314
|
-
var
|
|
3413
|
+
var CreateAppBlockCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3315
3414
|
return [
|
|
3316
3415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3317
3416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3318
3417
|
];
|
|
3319
3418
|
}).s("PhotonAdminProxyService", "CreateAppBlock", {}).n("AppStreamClient", "CreateAppBlockCommand").f(void 0, void 0).ser(se_CreateAppBlockCommand).de(de_CreateAppBlockCommand).build() {
|
|
3419
|
+
static {
|
|
3420
|
+
__name(this, "CreateAppBlockCommand");
|
|
3421
|
+
}
|
|
3320
3422
|
};
|
|
3321
|
-
__name(_CreateAppBlockCommand, "CreateAppBlockCommand");
|
|
3322
|
-
var CreateAppBlockCommand = _CreateAppBlockCommand;
|
|
3323
3423
|
|
|
3324
3424
|
// src/commands/CreateApplicationCommand.ts
|
|
3325
3425
|
|
|
3326
3426
|
|
|
3327
3427
|
|
|
3328
|
-
var
|
|
3428
|
+
var CreateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3329
3429
|
return [
|
|
3330
3430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3331
3431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3332
3432
|
];
|
|
3333
3433
|
}).s("PhotonAdminProxyService", "CreateApplication", {}).n("AppStreamClient", "CreateApplicationCommand").f(void 0, void 0).ser(se_CreateApplicationCommand).de(de_CreateApplicationCommand).build() {
|
|
3434
|
+
static {
|
|
3435
|
+
__name(this, "CreateApplicationCommand");
|
|
3436
|
+
}
|
|
3334
3437
|
};
|
|
3335
|
-
__name(_CreateApplicationCommand, "CreateApplicationCommand");
|
|
3336
|
-
var CreateApplicationCommand = _CreateApplicationCommand;
|
|
3337
3438
|
|
|
3338
3439
|
// src/commands/CreateDirectoryConfigCommand.ts
|
|
3339
3440
|
|
|
3340
3441
|
|
|
3341
3442
|
|
|
3342
|
-
var
|
|
3443
|
+
var CreateDirectoryConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3343
3444
|
return [
|
|
3344
3445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3345
3446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3346
3447
|
];
|
|
3347
3448
|
}).s("PhotonAdminProxyService", "CreateDirectoryConfig", {}).n("AppStreamClient", "CreateDirectoryConfigCommand").f(CreateDirectoryConfigRequestFilterSensitiveLog, CreateDirectoryConfigResultFilterSensitiveLog).ser(se_CreateDirectoryConfigCommand).de(de_CreateDirectoryConfigCommand).build() {
|
|
3449
|
+
static {
|
|
3450
|
+
__name(this, "CreateDirectoryConfigCommand");
|
|
3451
|
+
}
|
|
3348
3452
|
};
|
|
3349
|
-
__name(_CreateDirectoryConfigCommand, "CreateDirectoryConfigCommand");
|
|
3350
|
-
var CreateDirectoryConfigCommand = _CreateDirectoryConfigCommand;
|
|
3351
3453
|
|
|
3352
3454
|
// src/commands/CreateEntitlementCommand.ts
|
|
3353
3455
|
|
|
3354
3456
|
|
|
3355
3457
|
|
|
3356
|
-
var
|
|
3458
|
+
var CreateEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3357
3459
|
return [
|
|
3358
3460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3359
3461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3360
3462
|
];
|
|
3361
3463
|
}).s("PhotonAdminProxyService", "CreateEntitlement", {}).n("AppStreamClient", "CreateEntitlementCommand").f(void 0, void 0).ser(se_CreateEntitlementCommand).de(de_CreateEntitlementCommand).build() {
|
|
3464
|
+
static {
|
|
3465
|
+
__name(this, "CreateEntitlementCommand");
|
|
3466
|
+
}
|
|
3362
3467
|
};
|
|
3363
|
-
__name(_CreateEntitlementCommand, "CreateEntitlementCommand");
|
|
3364
|
-
var CreateEntitlementCommand = _CreateEntitlementCommand;
|
|
3365
3468
|
|
|
3366
3469
|
// src/commands/CreateFleetCommand.ts
|
|
3367
3470
|
|
|
3368
3471
|
|
|
3369
3472
|
|
|
3370
|
-
var
|
|
3473
|
+
var CreateFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3371
3474
|
return [
|
|
3372
3475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3373
3476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3374
3477
|
];
|
|
3375
3478
|
}).s("PhotonAdminProxyService", "CreateFleet", {}).n("AppStreamClient", "CreateFleetCommand").f(void 0, void 0).ser(se_CreateFleetCommand).de(de_CreateFleetCommand).build() {
|
|
3479
|
+
static {
|
|
3480
|
+
__name(this, "CreateFleetCommand");
|
|
3481
|
+
}
|
|
3376
3482
|
};
|
|
3377
|
-
__name(_CreateFleetCommand, "CreateFleetCommand");
|
|
3378
|
-
var CreateFleetCommand = _CreateFleetCommand;
|
|
3379
3483
|
|
|
3380
3484
|
// src/commands/CreateImageBuilderCommand.ts
|
|
3381
3485
|
|
|
3382
3486
|
|
|
3383
3487
|
|
|
3384
|
-
var
|
|
3488
|
+
var CreateImageBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3385
3489
|
return [
|
|
3386
3490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3387
3491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3388
3492
|
];
|
|
3389
3493
|
}).s("PhotonAdminProxyService", "CreateImageBuilder", {}).n("AppStreamClient", "CreateImageBuilderCommand").f(void 0, void 0).ser(se_CreateImageBuilderCommand).de(de_CreateImageBuilderCommand).build() {
|
|
3494
|
+
static {
|
|
3495
|
+
__name(this, "CreateImageBuilderCommand");
|
|
3496
|
+
}
|
|
3390
3497
|
};
|
|
3391
|
-
__name(_CreateImageBuilderCommand, "CreateImageBuilderCommand");
|
|
3392
|
-
var CreateImageBuilderCommand = _CreateImageBuilderCommand;
|
|
3393
3498
|
|
|
3394
3499
|
// src/commands/CreateImageBuilderStreamingURLCommand.ts
|
|
3395
3500
|
|
|
3396
3501
|
|
|
3397
3502
|
|
|
3398
|
-
var
|
|
3503
|
+
var CreateImageBuilderStreamingURLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3399
3504
|
return [
|
|
3400
3505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3401
3506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3402
3507
|
];
|
|
3403
3508
|
}).s("PhotonAdminProxyService", "CreateImageBuilderStreamingURL", {}).n("AppStreamClient", "CreateImageBuilderStreamingURLCommand").f(void 0, void 0).ser(se_CreateImageBuilderStreamingURLCommand).de(de_CreateImageBuilderStreamingURLCommand).build() {
|
|
3509
|
+
static {
|
|
3510
|
+
__name(this, "CreateImageBuilderStreamingURLCommand");
|
|
3511
|
+
}
|
|
3404
3512
|
};
|
|
3405
|
-
__name(_CreateImageBuilderStreamingURLCommand, "CreateImageBuilderStreamingURLCommand");
|
|
3406
|
-
var CreateImageBuilderStreamingURLCommand = _CreateImageBuilderStreamingURLCommand;
|
|
3407
3513
|
|
|
3408
3514
|
// src/commands/CreateStackCommand.ts
|
|
3409
3515
|
|
|
3410
3516
|
|
|
3411
3517
|
|
|
3412
|
-
var
|
|
3518
|
+
var CreateStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3413
3519
|
return [
|
|
3414
3520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3415
3521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3416
3522
|
];
|
|
3417
3523
|
}).s("PhotonAdminProxyService", "CreateStack", {}).n("AppStreamClient", "CreateStackCommand").f(void 0, void 0).ser(se_CreateStackCommand).de(de_CreateStackCommand).build() {
|
|
3524
|
+
static {
|
|
3525
|
+
__name(this, "CreateStackCommand");
|
|
3526
|
+
}
|
|
3418
3527
|
};
|
|
3419
|
-
__name(_CreateStackCommand, "CreateStackCommand");
|
|
3420
|
-
var CreateStackCommand = _CreateStackCommand;
|
|
3421
3528
|
|
|
3422
3529
|
// src/commands/CreateStreamingURLCommand.ts
|
|
3423
3530
|
|
|
3424
3531
|
|
|
3425
3532
|
|
|
3426
|
-
var
|
|
3533
|
+
var CreateStreamingURLCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3427
3534
|
return [
|
|
3428
3535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3429
3536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3430
3537
|
];
|
|
3431
3538
|
}).s("PhotonAdminProxyService", "CreateStreamingURL", {}).n("AppStreamClient", "CreateStreamingURLCommand").f(void 0, void 0).ser(se_CreateStreamingURLCommand).de(de_CreateStreamingURLCommand).build() {
|
|
3539
|
+
static {
|
|
3540
|
+
__name(this, "CreateStreamingURLCommand");
|
|
3541
|
+
}
|
|
3432
3542
|
};
|
|
3433
|
-
__name(_CreateStreamingURLCommand, "CreateStreamingURLCommand");
|
|
3434
|
-
var CreateStreamingURLCommand = _CreateStreamingURLCommand;
|
|
3435
3543
|
|
|
3436
3544
|
// src/commands/CreateThemeForStackCommand.ts
|
|
3437
3545
|
|
|
3438
3546
|
|
|
3439
3547
|
|
|
3440
|
-
var
|
|
3548
|
+
var CreateThemeForStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3441
3549
|
return [
|
|
3442
3550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3443
3551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3444
3552
|
];
|
|
3445
3553
|
}).s("PhotonAdminProxyService", "CreateThemeForStack", {}).n("AppStreamClient", "CreateThemeForStackCommand").f(void 0, void 0).ser(se_CreateThemeForStackCommand).de(de_CreateThemeForStackCommand).build() {
|
|
3554
|
+
static {
|
|
3555
|
+
__name(this, "CreateThemeForStackCommand");
|
|
3556
|
+
}
|
|
3446
3557
|
};
|
|
3447
|
-
__name(_CreateThemeForStackCommand, "CreateThemeForStackCommand");
|
|
3448
|
-
var CreateThemeForStackCommand = _CreateThemeForStackCommand;
|
|
3449
3558
|
|
|
3450
3559
|
// src/commands/CreateUpdatedImageCommand.ts
|
|
3451
3560
|
|
|
3452
3561
|
|
|
3453
3562
|
|
|
3454
|
-
var
|
|
3563
|
+
var CreateUpdatedImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3455
3564
|
return [
|
|
3456
3565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3457
3566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3458
3567
|
];
|
|
3459
3568
|
}).s("PhotonAdminProxyService", "CreateUpdatedImage", {}).n("AppStreamClient", "CreateUpdatedImageCommand").f(void 0, void 0).ser(se_CreateUpdatedImageCommand).de(de_CreateUpdatedImageCommand).build() {
|
|
3569
|
+
static {
|
|
3570
|
+
__name(this, "CreateUpdatedImageCommand");
|
|
3571
|
+
}
|
|
3460
3572
|
};
|
|
3461
|
-
__name(_CreateUpdatedImageCommand, "CreateUpdatedImageCommand");
|
|
3462
|
-
var CreateUpdatedImageCommand = _CreateUpdatedImageCommand;
|
|
3463
3573
|
|
|
3464
3574
|
// src/commands/CreateUsageReportSubscriptionCommand.ts
|
|
3465
3575
|
|
|
3466
3576
|
|
|
3467
3577
|
|
|
3468
|
-
var
|
|
3578
|
+
var CreateUsageReportSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3469
3579
|
return [
|
|
3470
3580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3471
3581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3472
3582
|
];
|
|
3473
3583
|
}).s("PhotonAdminProxyService", "CreateUsageReportSubscription", {}).n("AppStreamClient", "CreateUsageReportSubscriptionCommand").f(void 0, void 0).ser(se_CreateUsageReportSubscriptionCommand).de(de_CreateUsageReportSubscriptionCommand).build() {
|
|
3584
|
+
static {
|
|
3585
|
+
__name(this, "CreateUsageReportSubscriptionCommand");
|
|
3586
|
+
}
|
|
3474
3587
|
};
|
|
3475
|
-
__name(_CreateUsageReportSubscriptionCommand, "CreateUsageReportSubscriptionCommand");
|
|
3476
|
-
var CreateUsageReportSubscriptionCommand = _CreateUsageReportSubscriptionCommand;
|
|
3477
3588
|
|
|
3478
3589
|
// src/commands/CreateUserCommand.ts
|
|
3479
3590
|
|
|
3480
3591
|
|
|
3481
3592
|
|
|
3482
|
-
var
|
|
3593
|
+
var CreateUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3483
3594
|
return [
|
|
3484
3595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3485
3596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3486
3597
|
];
|
|
3487
3598
|
}).s("PhotonAdminProxyService", "CreateUser", {}).n("AppStreamClient", "CreateUserCommand").f(CreateUserRequestFilterSensitiveLog, void 0).ser(se_CreateUserCommand).de(de_CreateUserCommand).build() {
|
|
3599
|
+
static {
|
|
3600
|
+
__name(this, "CreateUserCommand");
|
|
3601
|
+
}
|
|
3488
3602
|
};
|
|
3489
|
-
__name(_CreateUserCommand, "CreateUserCommand");
|
|
3490
|
-
var CreateUserCommand = _CreateUserCommand;
|
|
3491
3603
|
|
|
3492
3604
|
// src/commands/DeleteAppBlockBuilderCommand.ts
|
|
3493
3605
|
|
|
3494
3606
|
|
|
3495
3607
|
|
|
3496
|
-
var
|
|
3608
|
+
var DeleteAppBlockBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3497
3609
|
return [
|
|
3498
3610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3499
3611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3500
3612
|
];
|
|
3501
3613
|
}).s("PhotonAdminProxyService", "DeleteAppBlockBuilder", {}).n("AppStreamClient", "DeleteAppBlockBuilderCommand").f(void 0, void 0).ser(se_DeleteAppBlockBuilderCommand).de(de_DeleteAppBlockBuilderCommand).build() {
|
|
3614
|
+
static {
|
|
3615
|
+
__name(this, "DeleteAppBlockBuilderCommand");
|
|
3616
|
+
}
|
|
3502
3617
|
};
|
|
3503
|
-
__name(_DeleteAppBlockBuilderCommand, "DeleteAppBlockBuilderCommand");
|
|
3504
|
-
var DeleteAppBlockBuilderCommand = _DeleteAppBlockBuilderCommand;
|
|
3505
3618
|
|
|
3506
3619
|
// src/commands/DeleteAppBlockCommand.ts
|
|
3507
3620
|
|
|
3508
3621
|
|
|
3509
3622
|
|
|
3510
|
-
var
|
|
3623
|
+
var DeleteAppBlockCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3511
3624
|
return [
|
|
3512
3625
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3513
3626
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3514
3627
|
];
|
|
3515
3628
|
}).s("PhotonAdminProxyService", "DeleteAppBlock", {}).n("AppStreamClient", "DeleteAppBlockCommand").f(void 0, void 0).ser(se_DeleteAppBlockCommand).de(de_DeleteAppBlockCommand).build() {
|
|
3629
|
+
static {
|
|
3630
|
+
__name(this, "DeleteAppBlockCommand");
|
|
3631
|
+
}
|
|
3516
3632
|
};
|
|
3517
|
-
__name(_DeleteAppBlockCommand, "DeleteAppBlockCommand");
|
|
3518
|
-
var DeleteAppBlockCommand = _DeleteAppBlockCommand;
|
|
3519
3633
|
|
|
3520
3634
|
// src/commands/DeleteApplicationCommand.ts
|
|
3521
3635
|
|
|
3522
3636
|
|
|
3523
3637
|
|
|
3524
|
-
var
|
|
3638
|
+
var DeleteApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3525
3639
|
return [
|
|
3526
3640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3527
3641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3528
3642
|
];
|
|
3529
3643
|
}).s("PhotonAdminProxyService", "DeleteApplication", {}).n("AppStreamClient", "DeleteApplicationCommand").f(void 0, void 0).ser(se_DeleteApplicationCommand).de(de_DeleteApplicationCommand).build() {
|
|
3644
|
+
static {
|
|
3645
|
+
__name(this, "DeleteApplicationCommand");
|
|
3646
|
+
}
|
|
3530
3647
|
};
|
|
3531
|
-
__name(_DeleteApplicationCommand, "DeleteApplicationCommand");
|
|
3532
|
-
var DeleteApplicationCommand = _DeleteApplicationCommand;
|
|
3533
3648
|
|
|
3534
3649
|
// src/commands/DeleteDirectoryConfigCommand.ts
|
|
3535
3650
|
|
|
3536
3651
|
|
|
3537
3652
|
|
|
3538
|
-
var
|
|
3653
|
+
var DeleteDirectoryConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3539
3654
|
return [
|
|
3540
3655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3541
3656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3542
3657
|
];
|
|
3543
3658
|
}).s("PhotonAdminProxyService", "DeleteDirectoryConfig", {}).n("AppStreamClient", "DeleteDirectoryConfigCommand").f(void 0, void 0).ser(se_DeleteDirectoryConfigCommand).de(de_DeleteDirectoryConfigCommand).build() {
|
|
3659
|
+
static {
|
|
3660
|
+
__name(this, "DeleteDirectoryConfigCommand");
|
|
3661
|
+
}
|
|
3544
3662
|
};
|
|
3545
|
-
__name(_DeleteDirectoryConfigCommand, "DeleteDirectoryConfigCommand");
|
|
3546
|
-
var DeleteDirectoryConfigCommand = _DeleteDirectoryConfigCommand;
|
|
3547
3663
|
|
|
3548
3664
|
// src/commands/DeleteEntitlementCommand.ts
|
|
3549
3665
|
|
|
3550
3666
|
|
|
3551
3667
|
|
|
3552
|
-
var
|
|
3668
|
+
var DeleteEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3553
3669
|
return [
|
|
3554
3670
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3555
3671
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3556
3672
|
];
|
|
3557
3673
|
}).s("PhotonAdminProxyService", "DeleteEntitlement", {}).n("AppStreamClient", "DeleteEntitlementCommand").f(void 0, void 0).ser(se_DeleteEntitlementCommand).de(de_DeleteEntitlementCommand).build() {
|
|
3674
|
+
static {
|
|
3675
|
+
__name(this, "DeleteEntitlementCommand");
|
|
3676
|
+
}
|
|
3558
3677
|
};
|
|
3559
|
-
__name(_DeleteEntitlementCommand, "DeleteEntitlementCommand");
|
|
3560
|
-
var DeleteEntitlementCommand = _DeleteEntitlementCommand;
|
|
3561
3678
|
|
|
3562
3679
|
// src/commands/DeleteFleetCommand.ts
|
|
3563
3680
|
|
|
3564
3681
|
|
|
3565
3682
|
|
|
3566
|
-
var
|
|
3683
|
+
var DeleteFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3567
3684
|
return [
|
|
3568
3685
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3569
3686
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3570
3687
|
];
|
|
3571
3688
|
}).s("PhotonAdminProxyService", "DeleteFleet", {}).n("AppStreamClient", "DeleteFleetCommand").f(void 0, void 0).ser(se_DeleteFleetCommand).de(de_DeleteFleetCommand).build() {
|
|
3689
|
+
static {
|
|
3690
|
+
__name(this, "DeleteFleetCommand");
|
|
3691
|
+
}
|
|
3572
3692
|
};
|
|
3573
|
-
__name(_DeleteFleetCommand, "DeleteFleetCommand");
|
|
3574
|
-
var DeleteFleetCommand = _DeleteFleetCommand;
|
|
3575
3693
|
|
|
3576
3694
|
// src/commands/DeleteImageBuilderCommand.ts
|
|
3577
3695
|
|
|
3578
3696
|
|
|
3579
3697
|
|
|
3580
|
-
var
|
|
3698
|
+
var DeleteImageBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3581
3699
|
return [
|
|
3582
3700
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3583
3701
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3584
3702
|
];
|
|
3585
3703
|
}).s("PhotonAdminProxyService", "DeleteImageBuilder", {}).n("AppStreamClient", "DeleteImageBuilderCommand").f(void 0, void 0).ser(se_DeleteImageBuilderCommand).de(de_DeleteImageBuilderCommand).build() {
|
|
3704
|
+
static {
|
|
3705
|
+
__name(this, "DeleteImageBuilderCommand");
|
|
3706
|
+
}
|
|
3586
3707
|
};
|
|
3587
|
-
__name(_DeleteImageBuilderCommand, "DeleteImageBuilderCommand");
|
|
3588
|
-
var DeleteImageBuilderCommand = _DeleteImageBuilderCommand;
|
|
3589
3708
|
|
|
3590
3709
|
// src/commands/DeleteImageCommand.ts
|
|
3591
3710
|
|
|
3592
3711
|
|
|
3593
3712
|
|
|
3594
|
-
var
|
|
3713
|
+
var DeleteImageCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3595
3714
|
return [
|
|
3596
3715
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3597
3716
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3598
3717
|
];
|
|
3599
3718
|
}).s("PhotonAdminProxyService", "DeleteImage", {}).n("AppStreamClient", "DeleteImageCommand").f(void 0, void 0).ser(se_DeleteImageCommand).de(de_DeleteImageCommand).build() {
|
|
3719
|
+
static {
|
|
3720
|
+
__name(this, "DeleteImageCommand");
|
|
3721
|
+
}
|
|
3600
3722
|
};
|
|
3601
|
-
__name(_DeleteImageCommand, "DeleteImageCommand");
|
|
3602
|
-
var DeleteImageCommand = _DeleteImageCommand;
|
|
3603
3723
|
|
|
3604
3724
|
// src/commands/DeleteImagePermissionsCommand.ts
|
|
3605
3725
|
|
|
3606
3726
|
|
|
3607
3727
|
|
|
3608
|
-
var
|
|
3728
|
+
var DeleteImagePermissionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3609
3729
|
return [
|
|
3610
3730
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3611
3731
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3612
3732
|
];
|
|
3613
3733
|
}).s("PhotonAdminProxyService", "DeleteImagePermissions", {}).n("AppStreamClient", "DeleteImagePermissionsCommand").f(void 0, void 0).ser(se_DeleteImagePermissionsCommand).de(de_DeleteImagePermissionsCommand).build() {
|
|
3734
|
+
static {
|
|
3735
|
+
__name(this, "DeleteImagePermissionsCommand");
|
|
3736
|
+
}
|
|
3614
3737
|
};
|
|
3615
|
-
__name(_DeleteImagePermissionsCommand, "DeleteImagePermissionsCommand");
|
|
3616
|
-
var DeleteImagePermissionsCommand = _DeleteImagePermissionsCommand;
|
|
3617
3738
|
|
|
3618
3739
|
// src/commands/DeleteStackCommand.ts
|
|
3619
3740
|
|
|
3620
3741
|
|
|
3621
3742
|
|
|
3622
|
-
var
|
|
3743
|
+
var DeleteStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3623
3744
|
return [
|
|
3624
3745
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3625
3746
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3626
3747
|
];
|
|
3627
3748
|
}).s("PhotonAdminProxyService", "DeleteStack", {}).n("AppStreamClient", "DeleteStackCommand").f(void 0, void 0).ser(se_DeleteStackCommand).de(de_DeleteStackCommand).build() {
|
|
3749
|
+
static {
|
|
3750
|
+
__name(this, "DeleteStackCommand");
|
|
3751
|
+
}
|
|
3628
3752
|
};
|
|
3629
|
-
__name(_DeleteStackCommand, "DeleteStackCommand");
|
|
3630
|
-
var DeleteStackCommand = _DeleteStackCommand;
|
|
3631
3753
|
|
|
3632
3754
|
// src/commands/DeleteThemeForStackCommand.ts
|
|
3633
3755
|
|
|
3634
3756
|
|
|
3635
3757
|
|
|
3636
|
-
var
|
|
3758
|
+
var DeleteThemeForStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3637
3759
|
return [
|
|
3638
3760
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3639
3761
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3640
3762
|
];
|
|
3641
3763
|
}).s("PhotonAdminProxyService", "DeleteThemeForStack", {}).n("AppStreamClient", "DeleteThemeForStackCommand").f(void 0, void 0).ser(se_DeleteThemeForStackCommand).de(de_DeleteThemeForStackCommand).build() {
|
|
3764
|
+
static {
|
|
3765
|
+
__name(this, "DeleteThemeForStackCommand");
|
|
3766
|
+
}
|
|
3642
3767
|
};
|
|
3643
|
-
__name(_DeleteThemeForStackCommand, "DeleteThemeForStackCommand");
|
|
3644
|
-
var DeleteThemeForStackCommand = _DeleteThemeForStackCommand;
|
|
3645
3768
|
|
|
3646
3769
|
// src/commands/DeleteUsageReportSubscriptionCommand.ts
|
|
3647
3770
|
|
|
3648
3771
|
|
|
3649
3772
|
|
|
3650
|
-
var
|
|
3773
|
+
var DeleteUsageReportSubscriptionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3651
3774
|
return [
|
|
3652
3775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3653
3776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3654
3777
|
];
|
|
3655
3778
|
}).s("PhotonAdminProxyService", "DeleteUsageReportSubscription", {}).n("AppStreamClient", "DeleteUsageReportSubscriptionCommand").f(void 0, void 0).ser(se_DeleteUsageReportSubscriptionCommand).de(de_DeleteUsageReportSubscriptionCommand).build() {
|
|
3779
|
+
static {
|
|
3780
|
+
__name(this, "DeleteUsageReportSubscriptionCommand");
|
|
3781
|
+
}
|
|
3656
3782
|
};
|
|
3657
|
-
__name(_DeleteUsageReportSubscriptionCommand, "DeleteUsageReportSubscriptionCommand");
|
|
3658
|
-
var DeleteUsageReportSubscriptionCommand = _DeleteUsageReportSubscriptionCommand;
|
|
3659
3783
|
|
|
3660
3784
|
// src/commands/DeleteUserCommand.ts
|
|
3661
3785
|
|
|
3662
3786
|
|
|
3663
3787
|
|
|
3664
|
-
var
|
|
3788
|
+
var DeleteUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3665
3789
|
return [
|
|
3666
3790
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3667
3791
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3668
3792
|
];
|
|
3669
3793
|
}).s("PhotonAdminProxyService", "DeleteUser", {}).n("AppStreamClient", "DeleteUserCommand").f(DeleteUserRequestFilterSensitiveLog, void 0).ser(se_DeleteUserCommand).de(de_DeleteUserCommand).build() {
|
|
3794
|
+
static {
|
|
3795
|
+
__name(this, "DeleteUserCommand");
|
|
3796
|
+
}
|
|
3670
3797
|
};
|
|
3671
|
-
__name(_DeleteUserCommand, "DeleteUserCommand");
|
|
3672
|
-
var DeleteUserCommand = _DeleteUserCommand;
|
|
3673
3798
|
|
|
3674
3799
|
// src/commands/DescribeAppBlockBuilderAppBlockAssociationsCommand.ts
|
|
3675
3800
|
|
|
3676
3801
|
|
|
3677
3802
|
|
|
3678
|
-
var
|
|
3803
|
+
var DescribeAppBlockBuilderAppBlockAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3679
3804
|
return [
|
|
3680
3805
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3681
3806
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3682
3807
|
];
|
|
3683
3808
|
}).s("PhotonAdminProxyService", "DescribeAppBlockBuilderAppBlockAssociations", {}).n("AppStreamClient", "DescribeAppBlockBuilderAppBlockAssociationsCommand").f(void 0, void 0).ser(se_DescribeAppBlockBuilderAppBlockAssociationsCommand).de(de_DescribeAppBlockBuilderAppBlockAssociationsCommand).build() {
|
|
3809
|
+
static {
|
|
3810
|
+
__name(this, "DescribeAppBlockBuilderAppBlockAssociationsCommand");
|
|
3811
|
+
}
|
|
3684
3812
|
};
|
|
3685
|
-
__name(_DescribeAppBlockBuilderAppBlockAssociationsCommand, "DescribeAppBlockBuilderAppBlockAssociationsCommand");
|
|
3686
|
-
var DescribeAppBlockBuilderAppBlockAssociationsCommand = _DescribeAppBlockBuilderAppBlockAssociationsCommand;
|
|
3687
3813
|
|
|
3688
3814
|
// src/commands/DescribeAppBlockBuildersCommand.ts
|
|
3689
3815
|
|
|
3690
3816
|
|
|
3691
3817
|
|
|
3692
|
-
var
|
|
3818
|
+
var DescribeAppBlockBuildersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3693
3819
|
return [
|
|
3694
3820
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3695
3821
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3696
3822
|
];
|
|
3697
3823
|
}).s("PhotonAdminProxyService", "DescribeAppBlockBuilders", {}).n("AppStreamClient", "DescribeAppBlockBuildersCommand").f(void 0, void 0).ser(se_DescribeAppBlockBuildersCommand).de(de_DescribeAppBlockBuildersCommand).build() {
|
|
3824
|
+
static {
|
|
3825
|
+
__name(this, "DescribeAppBlockBuildersCommand");
|
|
3826
|
+
}
|
|
3698
3827
|
};
|
|
3699
|
-
__name(_DescribeAppBlockBuildersCommand, "DescribeAppBlockBuildersCommand");
|
|
3700
|
-
var DescribeAppBlockBuildersCommand = _DescribeAppBlockBuildersCommand;
|
|
3701
3828
|
|
|
3702
3829
|
// src/commands/DescribeAppBlocksCommand.ts
|
|
3703
3830
|
|
|
3704
3831
|
|
|
3705
3832
|
|
|
3706
|
-
var
|
|
3833
|
+
var DescribeAppBlocksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3707
3834
|
return [
|
|
3708
3835
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3709
3836
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3710
3837
|
];
|
|
3711
3838
|
}).s("PhotonAdminProxyService", "DescribeAppBlocks", {}).n("AppStreamClient", "DescribeAppBlocksCommand").f(void 0, void 0).ser(se_DescribeAppBlocksCommand).de(de_DescribeAppBlocksCommand).build() {
|
|
3839
|
+
static {
|
|
3840
|
+
__name(this, "DescribeAppBlocksCommand");
|
|
3841
|
+
}
|
|
3712
3842
|
};
|
|
3713
|
-
__name(_DescribeAppBlocksCommand, "DescribeAppBlocksCommand");
|
|
3714
|
-
var DescribeAppBlocksCommand = _DescribeAppBlocksCommand;
|
|
3715
3843
|
|
|
3716
3844
|
// src/commands/DescribeApplicationFleetAssociationsCommand.ts
|
|
3717
3845
|
|
|
3718
3846
|
|
|
3719
3847
|
|
|
3720
|
-
var
|
|
3848
|
+
var DescribeApplicationFleetAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3721
3849
|
return [
|
|
3722
3850
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3723
3851
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3724
3852
|
];
|
|
3725
3853
|
}).s("PhotonAdminProxyService", "DescribeApplicationFleetAssociations", {}).n("AppStreamClient", "DescribeApplicationFleetAssociationsCommand").f(void 0, void 0).ser(se_DescribeApplicationFleetAssociationsCommand).de(de_DescribeApplicationFleetAssociationsCommand).build() {
|
|
3854
|
+
static {
|
|
3855
|
+
__name(this, "DescribeApplicationFleetAssociationsCommand");
|
|
3856
|
+
}
|
|
3726
3857
|
};
|
|
3727
|
-
__name(_DescribeApplicationFleetAssociationsCommand, "DescribeApplicationFleetAssociationsCommand");
|
|
3728
|
-
var DescribeApplicationFleetAssociationsCommand = _DescribeApplicationFleetAssociationsCommand;
|
|
3729
3858
|
|
|
3730
3859
|
// src/commands/DescribeApplicationsCommand.ts
|
|
3731
3860
|
|
|
3732
3861
|
|
|
3733
3862
|
|
|
3734
|
-
var
|
|
3863
|
+
var DescribeApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3735
3864
|
return [
|
|
3736
3865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3737
3866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3738
3867
|
];
|
|
3739
3868
|
}).s("PhotonAdminProxyService", "DescribeApplications", {}).n("AppStreamClient", "DescribeApplicationsCommand").f(void 0, void 0).ser(se_DescribeApplicationsCommand).de(de_DescribeApplicationsCommand).build() {
|
|
3869
|
+
static {
|
|
3870
|
+
__name(this, "DescribeApplicationsCommand");
|
|
3871
|
+
}
|
|
3740
3872
|
};
|
|
3741
|
-
__name(_DescribeApplicationsCommand, "DescribeApplicationsCommand");
|
|
3742
|
-
var DescribeApplicationsCommand = _DescribeApplicationsCommand;
|
|
3743
3873
|
|
|
3744
3874
|
// src/commands/DescribeDirectoryConfigsCommand.ts
|
|
3745
3875
|
|
|
3746
3876
|
|
|
3747
3877
|
|
|
3748
|
-
var
|
|
3878
|
+
var DescribeDirectoryConfigsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3749
3879
|
return [
|
|
3750
3880
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3751
3881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3752
3882
|
];
|
|
3753
3883
|
}).s("PhotonAdminProxyService", "DescribeDirectoryConfigs", {}).n("AppStreamClient", "DescribeDirectoryConfigsCommand").f(void 0, DescribeDirectoryConfigsResultFilterSensitiveLog).ser(se_DescribeDirectoryConfigsCommand).de(de_DescribeDirectoryConfigsCommand).build() {
|
|
3884
|
+
static {
|
|
3885
|
+
__name(this, "DescribeDirectoryConfigsCommand");
|
|
3886
|
+
}
|
|
3754
3887
|
};
|
|
3755
|
-
__name(_DescribeDirectoryConfigsCommand, "DescribeDirectoryConfigsCommand");
|
|
3756
|
-
var DescribeDirectoryConfigsCommand = _DescribeDirectoryConfigsCommand;
|
|
3757
3888
|
|
|
3758
3889
|
// src/commands/DescribeEntitlementsCommand.ts
|
|
3759
3890
|
|
|
3760
3891
|
|
|
3761
3892
|
|
|
3762
|
-
var
|
|
3893
|
+
var DescribeEntitlementsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3763
3894
|
return [
|
|
3764
3895
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3765
3896
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3766
3897
|
];
|
|
3767
3898
|
}).s("PhotonAdminProxyService", "DescribeEntitlements", {}).n("AppStreamClient", "DescribeEntitlementsCommand").f(void 0, void 0).ser(se_DescribeEntitlementsCommand).de(de_DescribeEntitlementsCommand).build() {
|
|
3899
|
+
static {
|
|
3900
|
+
__name(this, "DescribeEntitlementsCommand");
|
|
3901
|
+
}
|
|
3768
3902
|
};
|
|
3769
|
-
__name(_DescribeEntitlementsCommand, "DescribeEntitlementsCommand");
|
|
3770
|
-
var DescribeEntitlementsCommand = _DescribeEntitlementsCommand;
|
|
3771
3903
|
|
|
3772
3904
|
// src/commands/DescribeFleetsCommand.ts
|
|
3773
3905
|
|
|
3774
3906
|
|
|
3775
3907
|
|
|
3776
|
-
var
|
|
3908
|
+
var DescribeFleetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3777
3909
|
return [
|
|
3778
3910
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3779
3911
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3780
3912
|
];
|
|
3781
3913
|
}).s("PhotonAdminProxyService", "DescribeFleets", {}).n("AppStreamClient", "DescribeFleetsCommand").f(void 0, void 0).ser(se_DescribeFleetsCommand).de(de_DescribeFleetsCommand).build() {
|
|
3914
|
+
static {
|
|
3915
|
+
__name(this, "DescribeFleetsCommand");
|
|
3916
|
+
}
|
|
3782
3917
|
};
|
|
3783
|
-
__name(_DescribeFleetsCommand, "DescribeFleetsCommand");
|
|
3784
|
-
var DescribeFleetsCommand = _DescribeFleetsCommand;
|
|
3785
3918
|
|
|
3786
3919
|
// src/commands/DescribeImageBuildersCommand.ts
|
|
3787
3920
|
|
|
3788
3921
|
|
|
3789
3922
|
|
|
3790
|
-
var
|
|
3923
|
+
var DescribeImageBuildersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3791
3924
|
return [
|
|
3792
3925
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3793
3926
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3794
3927
|
];
|
|
3795
3928
|
}).s("PhotonAdminProxyService", "DescribeImageBuilders", {}).n("AppStreamClient", "DescribeImageBuildersCommand").f(void 0, void 0).ser(se_DescribeImageBuildersCommand).de(de_DescribeImageBuildersCommand).build() {
|
|
3929
|
+
static {
|
|
3930
|
+
__name(this, "DescribeImageBuildersCommand");
|
|
3931
|
+
}
|
|
3796
3932
|
};
|
|
3797
|
-
__name(_DescribeImageBuildersCommand, "DescribeImageBuildersCommand");
|
|
3798
|
-
var DescribeImageBuildersCommand = _DescribeImageBuildersCommand;
|
|
3799
3933
|
|
|
3800
3934
|
// src/commands/DescribeImagePermissionsCommand.ts
|
|
3801
3935
|
|
|
3802
3936
|
|
|
3803
3937
|
|
|
3804
|
-
var
|
|
3938
|
+
var DescribeImagePermissionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3805
3939
|
return [
|
|
3806
3940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3807
3941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3808
3942
|
];
|
|
3809
3943
|
}).s("PhotonAdminProxyService", "DescribeImagePermissions", {}).n("AppStreamClient", "DescribeImagePermissionsCommand").f(void 0, void 0).ser(se_DescribeImagePermissionsCommand).de(de_DescribeImagePermissionsCommand).build() {
|
|
3944
|
+
static {
|
|
3945
|
+
__name(this, "DescribeImagePermissionsCommand");
|
|
3946
|
+
}
|
|
3810
3947
|
};
|
|
3811
|
-
__name(_DescribeImagePermissionsCommand, "DescribeImagePermissionsCommand");
|
|
3812
|
-
var DescribeImagePermissionsCommand = _DescribeImagePermissionsCommand;
|
|
3813
3948
|
|
|
3814
3949
|
// src/commands/DescribeImagesCommand.ts
|
|
3815
3950
|
|
|
3816
3951
|
|
|
3817
3952
|
|
|
3818
|
-
var
|
|
3953
|
+
var DescribeImagesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3819
3954
|
return [
|
|
3820
3955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3821
3956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3822
3957
|
];
|
|
3823
3958
|
}).s("PhotonAdminProxyService", "DescribeImages", {}).n("AppStreamClient", "DescribeImagesCommand").f(void 0, void 0).ser(se_DescribeImagesCommand).de(de_DescribeImagesCommand).build() {
|
|
3959
|
+
static {
|
|
3960
|
+
__name(this, "DescribeImagesCommand");
|
|
3961
|
+
}
|
|
3824
3962
|
};
|
|
3825
|
-
__name(_DescribeImagesCommand, "DescribeImagesCommand");
|
|
3826
|
-
var DescribeImagesCommand = _DescribeImagesCommand;
|
|
3827
3963
|
|
|
3828
3964
|
// src/commands/DescribeSessionsCommand.ts
|
|
3829
3965
|
|
|
3830
3966
|
|
|
3831
3967
|
|
|
3832
|
-
var
|
|
3968
|
+
var DescribeSessionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3833
3969
|
return [
|
|
3834
3970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3835
3971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3836
3972
|
];
|
|
3837
3973
|
}).s("PhotonAdminProxyService", "DescribeSessions", {}).n("AppStreamClient", "DescribeSessionsCommand").f(void 0, void 0).ser(se_DescribeSessionsCommand).de(de_DescribeSessionsCommand).build() {
|
|
3974
|
+
static {
|
|
3975
|
+
__name(this, "DescribeSessionsCommand");
|
|
3976
|
+
}
|
|
3838
3977
|
};
|
|
3839
|
-
__name(_DescribeSessionsCommand, "DescribeSessionsCommand");
|
|
3840
|
-
var DescribeSessionsCommand = _DescribeSessionsCommand;
|
|
3841
3978
|
|
|
3842
3979
|
// src/commands/DescribeStacksCommand.ts
|
|
3843
3980
|
|
|
3844
3981
|
|
|
3845
3982
|
|
|
3846
|
-
var
|
|
3983
|
+
var DescribeStacksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3847
3984
|
return [
|
|
3848
3985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3849
3986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3850
3987
|
];
|
|
3851
3988
|
}).s("PhotonAdminProxyService", "DescribeStacks", {}).n("AppStreamClient", "DescribeStacksCommand").f(void 0, void 0).ser(se_DescribeStacksCommand).de(de_DescribeStacksCommand).build() {
|
|
3989
|
+
static {
|
|
3990
|
+
__name(this, "DescribeStacksCommand");
|
|
3991
|
+
}
|
|
3852
3992
|
};
|
|
3853
|
-
__name(_DescribeStacksCommand, "DescribeStacksCommand");
|
|
3854
|
-
var DescribeStacksCommand = _DescribeStacksCommand;
|
|
3855
3993
|
|
|
3856
3994
|
// src/commands/DescribeThemeForStackCommand.ts
|
|
3857
3995
|
|
|
3858
3996
|
|
|
3859
3997
|
|
|
3860
|
-
var
|
|
3998
|
+
var DescribeThemeForStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3861
3999
|
return [
|
|
3862
4000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3863
4001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3864
4002
|
];
|
|
3865
4003
|
}).s("PhotonAdminProxyService", "DescribeThemeForStack", {}).n("AppStreamClient", "DescribeThemeForStackCommand").f(void 0, void 0).ser(se_DescribeThemeForStackCommand).de(de_DescribeThemeForStackCommand).build() {
|
|
4004
|
+
static {
|
|
4005
|
+
__name(this, "DescribeThemeForStackCommand");
|
|
4006
|
+
}
|
|
3866
4007
|
};
|
|
3867
|
-
__name(_DescribeThemeForStackCommand, "DescribeThemeForStackCommand");
|
|
3868
|
-
var DescribeThemeForStackCommand = _DescribeThemeForStackCommand;
|
|
3869
4008
|
|
|
3870
4009
|
// src/commands/DescribeUsageReportSubscriptionsCommand.ts
|
|
3871
4010
|
|
|
3872
4011
|
|
|
3873
4012
|
|
|
3874
|
-
var
|
|
4013
|
+
var DescribeUsageReportSubscriptionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3875
4014
|
return [
|
|
3876
4015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3877
4016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3878
4017
|
];
|
|
3879
4018
|
}).s("PhotonAdminProxyService", "DescribeUsageReportSubscriptions", {}).n("AppStreamClient", "DescribeUsageReportSubscriptionsCommand").f(void 0, void 0).ser(se_DescribeUsageReportSubscriptionsCommand).de(de_DescribeUsageReportSubscriptionsCommand).build() {
|
|
4019
|
+
static {
|
|
4020
|
+
__name(this, "DescribeUsageReportSubscriptionsCommand");
|
|
4021
|
+
}
|
|
3880
4022
|
};
|
|
3881
|
-
__name(_DescribeUsageReportSubscriptionsCommand, "DescribeUsageReportSubscriptionsCommand");
|
|
3882
|
-
var DescribeUsageReportSubscriptionsCommand = _DescribeUsageReportSubscriptionsCommand;
|
|
3883
4023
|
|
|
3884
4024
|
// src/commands/DescribeUsersCommand.ts
|
|
3885
4025
|
|
|
3886
4026
|
|
|
3887
4027
|
|
|
3888
|
-
var
|
|
4028
|
+
var DescribeUsersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3889
4029
|
return [
|
|
3890
4030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3891
4031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3892
4032
|
];
|
|
3893
4033
|
}).s("PhotonAdminProxyService", "DescribeUsers", {}).n("AppStreamClient", "DescribeUsersCommand").f(void 0, DescribeUsersResultFilterSensitiveLog).ser(se_DescribeUsersCommand).de(de_DescribeUsersCommand).build() {
|
|
4034
|
+
static {
|
|
4035
|
+
__name(this, "DescribeUsersCommand");
|
|
4036
|
+
}
|
|
3894
4037
|
};
|
|
3895
|
-
__name(_DescribeUsersCommand, "DescribeUsersCommand");
|
|
3896
|
-
var DescribeUsersCommand = _DescribeUsersCommand;
|
|
3897
4038
|
|
|
3898
4039
|
// src/commands/DescribeUserStackAssociationsCommand.ts
|
|
3899
4040
|
|
|
3900
4041
|
|
|
3901
4042
|
|
|
3902
|
-
var
|
|
4043
|
+
var DescribeUserStackAssociationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3903
4044
|
return [
|
|
3904
4045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3905
4046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3906
4047
|
];
|
|
3907
4048
|
}).s("PhotonAdminProxyService", "DescribeUserStackAssociations", {}).n("AppStreamClient", "DescribeUserStackAssociationsCommand").f(DescribeUserStackAssociationsRequestFilterSensitiveLog, DescribeUserStackAssociationsResultFilterSensitiveLog).ser(se_DescribeUserStackAssociationsCommand).de(de_DescribeUserStackAssociationsCommand).build() {
|
|
4049
|
+
static {
|
|
4050
|
+
__name(this, "DescribeUserStackAssociationsCommand");
|
|
4051
|
+
}
|
|
3908
4052
|
};
|
|
3909
|
-
__name(_DescribeUserStackAssociationsCommand, "DescribeUserStackAssociationsCommand");
|
|
3910
|
-
var DescribeUserStackAssociationsCommand = _DescribeUserStackAssociationsCommand;
|
|
3911
4053
|
|
|
3912
4054
|
// src/commands/DisableUserCommand.ts
|
|
3913
4055
|
|
|
3914
4056
|
|
|
3915
4057
|
|
|
3916
|
-
var
|
|
4058
|
+
var DisableUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3917
4059
|
return [
|
|
3918
4060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3919
4061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3920
4062
|
];
|
|
3921
4063
|
}).s("PhotonAdminProxyService", "DisableUser", {}).n("AppStreamClient", "DisableUserCommand").f(DisableUserRequestFilterSensitiveLog, void 0).ser(se_DisableUserCommand).de(de_DisableUserCommand).build() {
|
|
4064
|
+
static {
|
|
4065
|
+
__name(this, "DisableUserCommand");
|
|
4066
|
+
}
|
|
3922
4067
|
};
|
|
3923
|
-
__name(_DisableUserCommand, "DisableUserCommand");
|
|
3924
|
-
var DisableUserCommand = _DisableUserCommand;
|
|
3925
4068
|
|
|
3926
4069
|
// src/commands/DisassociateAppBlockBuilderAppBlockCommand.ts
|
|
3927
4070
|
|
|
3928
4071
|
|
|
3929
4072
|
|
|
3930
|
-
var
|
|
4073
|
+
var DisassociateAppBlockBuilderAppBlockCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3931
4074
|
return [
|
|
3932
4075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3933
4076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3934
4077
|
];
|
|
3935
4078
|
}).s("PhotonAdminProxyService", "DisassociateAppBlockBuilderAppBlock", {}).n("AppStreamClient", "DisassociateAppBlockBuilderAppBlockCommand").f(void 0, void 0).ser(se_DisassociateAppBlockBuilderAppBlockCommand).de(de_DisassociateAppBlockBuilderAppBlockCommand).build() {
|
|
4079
|
+
static {
|
|
4080
|
+
__name(this, "DisassociateAppBlockBuilderAppBlockCommand");
|
|
4081
|
+
}
|
|
3936
4082
|
};
|
|
3937
|
-
__name(_DisassociateAppBlockBuilderAppBlockCommand, "DisassociateAppBlockBuilderAppBlockCommand");
|
|
3938
|
-
var DisassociateAppBlockBuilderAppBlockCommand = _DisassociateAppBlockBuilderAppBlockCommand;
|
|
3939
4083
|
|
|
3940
4084
|
// src/commands/DisassociateApplicationFleetCommand.ts
|
|
3941
4085
|
|
|
3942
4086
|
|
|
3943
4087
|
|
|
3944
|
-
var
|
|
4088
|
+
var DisassociateApplicationFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3945
4089
|
return [
|
|
3946
4090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3947
4091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3948
4092
|
];
|
|
3949
4093
|
}).s("PhotonAdminProxyService", "DisassociateApplicationFleet", {}).n("AppStreamClient", "DisassociateApplicationFleetCommand").f(void 0, void 0).ser(se_DisassociateApplicationFleetCommand).de(de_DisassociateApplicationFleetCommand).build() {
|
|
4094
|
+
static {
|
|
4095
|
+
__name(this, "DisassociateApplicationFleetCommand");
|
|
4096
|
+
}
|
|
3950
4097
|
};
|
|
3951
|
-
__name(_DisassociateApplicationFleetCommand, "DisassociateApplicationFleetCommand");
|
|
3952
|
-
var DisassociateApplicationFleetCommand = _DisassociateApplicationFleetCommand;
|
|
3953
4098
|
|
|
3954
4099
|
// src/commands/DisassociateApplicationFromEntitlementCommand.ts
|
|
3955
4100
|
|
|
3956
4101
|
|
|
3957
4102
|
|
|
3958
|
-
var
|
|
4103
|
+
var DisassociateApplicationFromEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3959
4104
|
return [
|
|
3960
4105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3961
4106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3962
4107
|
];
|
|
3963
4108
|
}).s("PhotonAdminProxyService", "DisassociateApplicationFromEntitlement", {}).n("AppStreamClient", "DisassociateApplicationFromEntitlementCommand").f(void 0, void 0).ser(se_DisassociateApplicationFromEntitlementCommand).de(de_DisassociateApplicationFromEntitlementCommand).build() {
|
|
4109
|
+
static {
|
|
4110
|
+
__name(this, "DisassociateApplicationFromEntitlementCommand");
|
|
4111
|
+
}
|
|
3964
4112
|
};
|
|
3965
|
-
__name(_DisassociateApplicationFromEntitlementCommand, "DisassociateApplicationFromEntitlementCommand");
|
|
3966
|
-
var DisassociateApplicationFromEntitlementCommand = _DisassociateApplicationFromEntitlementCommand;
|
|
3967
4113
|
|
|
3968
4114
|
// src/commands/DisassociateFleetCommand.ts
|
|
3969
4115
|
|
|
3970
4116
|
|
|
3971
4117
|
|
|
3972
|
-
var
|
|
4118
|
+
var DisassociateFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3973
4119
|
return [
|
|
3974
4120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3975
4121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3976
4122
|
];
|
|
3977
4123
|
}).s("PhotonAdminProxyService", "DisassociateFleet", {}).n("AppStreamClient", "DisassociateFleetCommand").f(void 0, void 0).ser(se_DisassociateFleetCommand).de(de_DisassociateFleetCommand).build() {
|
|
4124
|
+
static {
|
|
4125
|
+
__name(this, "DisassociateFleetCommand");
|
|
4126
|
+
}
|
|
3978
4127
|
};
|
|
3979
|
-
__name(_DisassociateFleetCommand, "DisassociateFleetCommand");
|
|
3980
|
-
var DisassociateFleetCommand = _DisassociateFleetCommand;
|
|
3981
4128
|
|
|
3982
4129
|
// src/commands/EnableUserCommand.ts
|
|
3983
4130
|
|
|
3984
4131
|
|
|
3985
4132
|
|
|
3986
|
-
var
|
|
4133
|
+
var EnableUserCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3987
4134
|
return [
|
|
3988
4135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3989
4136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3990
4137
|
];
|
|
3991
4138
|
}).s("PhotonAdminProxyService", "EnableUser", {}).n("AppStreamClient", "EnableUserCommand").f(EnableUserRequestFilterSensitiveLog, void 0).ser(se_EnableUserCommand).de(de_EnableUserCommand).build() {
|
|
4139
|
+
static {
|
|
4140
|
+
__name(this, "EnableUserCommand");
|
|
4141
|
+
}
|
|
3992
4142
|
};
|
|
3993
|
-
__name(_EnableUserCommand, "EnableUserCommand");
|
|
3994
|
-
var EnableUserCommand = _EnableUserCommand;
|
|
3995
4143
|
|
|
3996
4144
|
// src/commands/ExpireSessionCommand.ts
|
|
3997
4145
|
|
|
3998
4146
|
|
|
3999
4147
|
|
|
4000
|
-
var
|
|
4148
|
+
var ExpireSessionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4001
4149
|
return [
|
|
4002
4150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4003
4151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4004
4152
|
];
|
|
4005
4153
|
}).s("PhotonAdminProxyService", "ExpireSession", {}).n("AppStreamClient", "ExpireSessionCommand").f(void 0, void 0).ser(se_ExpireSessionCommand).de(de_ExpireSessionCommand).build() {
|
|
4154
|
+
static {
|
|
4155
|
+
__name(this, "ExpireSessionCommand");
|
|
4156
|
+
}
|
|
4006
4157
|
};
|
|
4007
|
-
__name(_ExpireSessionCommand, "ExpireSessionCommand");
|
|
4008
|
-
var ExpireSessionCommand = _ExpireSessionCommand;
|
|
4009
4158
|
|
|
4010
4159
|
// src/commands/ListAssociatedFleetsCommand.ts
|
|
4011
4160
|
|
|
4012
4161
|
|
|
4013
4162
|
|
|
4014
|
-
var
|
|
4163
|
+
var ListAssociatedFleetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4015
4164
|
return [
|
|
4016
4165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4017
4166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4018
4167
|
];
|
|
4019
4168
|
}).s("PhotonAdminProxyService", "ListAssociatedFleets", {}).n("AppStreamClient", "ListAssociatedFleetsCommand").f(void 0, void 0).ser(se_ListAssociatedFleetsCommand).de(de_ListAssociatedFleetsCommand).build() {
|
|
4169
|
+
static {
|
|
4170
|
+
__name(this, "ListAssociatedFleetsCommand");
|
|
4171
|
+
}
|
|
4020
4172
|
};
|
|
4021
|
-
__name(_ListAssociatedFleetsCommand, "ListAssociatedFleetsCommand");
|
|
4022
|
-
var ListAssociatedFleetsCommand = _ListAssociatedFleetsCommand;
|
|
4023
4173
|
|
|
4024
4174
|
// src/commands/ListAssociatedStacksCommand.ts
|
|
4025
4175
|
|
|
4026
4176
|
|
|
4027
4177
|
|
|
4028
|
-
var
|
|
4178
|
+
var ListAssociatedStacksCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4029
4179
|
return [
|
|
4030
4180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4031
4181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4032
4182
|
];
|
|
4033
4183
|
}).s("PhotonAdminProxyService", "ListAssociatedStacks", {}).n("AppStreamClient", "ListAssociatedStacksCommand").f(void 0, void 0).ser(se_ListAssociatedStacksCommand).de(de_ListAssociatedStacksCommand).build() {
|
|
4184
|
+
static {
|
|
4185
|
+
__name(this, "ListAssociatedStacksCommand");
|
|
4186
|
+
}
|
|
4034
4187
|
};
|
|
4035
|
-
__name(_ListAssociatedStacksCommand, "ListAssociatedStacksCommand");
|
|
4036
|
-
var ListAssociatedStacksCommand = _ListAssociatedStacksCommand;
|
|
4037
4188
|
|
|
4038
4189
|
// src/commands/ListEntitledApplicationsCommand.ts
|
|
4039
4190
|
|
|
4040
4191
|
|
|
4041
4192
|
|
|
4042
|
-
var
|
|
4193
|
+
var ListEntitledApplicationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4043
4194
|
return [
|
|
4044
4195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4045
4196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4046
4197
|
];
|
|
4047
4198
|
}).s("PhotonAdminProxyService", "ListEntitledApplications", {}).n("AppStreamClient", "ListEntitledApplicationsCommand").f(void 0, void 0).ser(se_ListEntitledApplicationsCommand).de(de_ListEntitledApplicationsCommand).build() {
|
|
4199
|
+
static {
|
|
4200
|
+
__name(this, "ListEntitledApplicationsCommand");
|
|
4201
|
+
}
|
|
4048
4202
|
};
|
|
4049
|
-
__name(_ListEntitledApplicationsCommand, "ListEntitledApplicationsCommand");
|
|
4050
|
-
var ListEntitledApplicationsCommand = _ListEntitledApplicationsCommand;
|
|
4051
4203
|
|
|
4052
4204
|
// src/commands/ListTagsForResourceCommand.ts
|
|
4053
4205
|
|
|
4054
4206
|
|
|
4055
4207
|
|
|
4056
|
-
var
|
|
4208
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4057
4209
|
return [
|
|
4058
4210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4059
4211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4060
4212
|
];
|
|
4061
4213
|
}).s("PhotonAdminProxyService", "ListTagsForResource", {}).n("AppStreamClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
4214
|
+
static {
|
|
4215
|
+
__name(this, "ListTagsForResourceCommand");
|
|
4216
|
+
}
|
|
4062
4217
|
};
|
|
4063
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
4064
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
4065
4218
|
|
|
4066
4219
|
// src/commands/StartAppBlockBuilderCommand.ts
|
|
4067
4220
|
|
|
4068
4221
|
|
|
4069
4222
|
|
|
4070
|
-
var
|
|
4223
|
+
var StartAppBlockBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4071
4224
|
return [
|
|
4072
4225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4073
4226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4074
4227
|
];
|
|
4075
4228
|
}).s("PhotonAdminProxyService", "StartAppBlockBuilder", {}).n("AppStreamClient", "StartAppBlockBuilderCommand").f(void 0, void 0).ser(se_StartAppBlockBuilderCommand).de(de_StartAppBlockBuilderCommand).build() {
|
|
4229
|
+
static {
|
|
4230
|
+
__name(this, "StartAppBlockBuilderCommand");
|
|
4231
|
+
}
|
|
4076
4232
|
};
|
|
4077
|
-
__name(_StartAppBlockBuilderCommand, "StartAppBlockBuilderCommand");
|
|
4078
|
-
var StartAppBlockBuilderCommand = _StartAppBlockBuilderCommand;
|
|
4079
4233
|
|
|
4080
4234
|
// src/commands/StartFleetCommand.ts
|
|
4081
4235
|
|
|
4082
4236
|
|
|
4083
4237
|
|
|
4084
|
-
var
|
|
4238
|
+
var StartFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4085
4239
|
return [
|
|
4086
4240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4087
4241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4088
4242
|
];
|
|
4089
4243
|
}).s("PhotonAdminProxyService", "StartFleet", {}).n("AppStreamClient", "StartFleetCommand").f(void 0, void 0).ser(se_StartFleetCommand).de(de_StartFleetCommand).build() {
|
|
4244
|
+
static {
|
|
4245
|
+
__name(this, "StartFleetCommand");
|
|
4246
|
+
}
|
|
4090
4247
|
};
|
|
4091
|
-
__name(_StartFleetCommand, "StartFleetCommand");
|
|
4092
|
-
var StartFleetCommand = _StartFleetCommand;
|
|
4093
4248
|
|
|
4094
4249
|
// src/commands/StartImageBuilderCommand.ts
|
|
4095
4250
|
|
|
4096
4251
|
|
|
4097
4252
|
|
|
4098
|
-
var
|
|
4253
|
+
var StartImageBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4099
4254
|
return [
|
|
4100
4255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4101
4256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4102
4257
|
];
|
|
4103
4258
|
}).s("PhotonAdminProxyService", "StartImageBuilder", {}).n("AppStreamClient", "StartImageBuilderCommand").f(void 0, void 0).ser(se_StartImageBuilderCommand).de(de_StartImageBuilderCommand).build() {
|
|
4259
|
+
static {
|
|
4260
|
+
__name(this, "StartImageBuilderCommand");
|
|
4261
|
+
}
|
|
4104
4262
|
};
|
|
4105
|
-
__name(_StartImageBuilderCommand, "StartImageBuilderCommand");
|
|
4106
|
-
var StartImageBuilderCommand = _StartImageBuilderCommand;
|
|
4107
4263
|
|
|
4108
4264
|
// src/commands/StopAppBlockBuilderCommand.ts
|
|
4109
4265
|
|
|
4110
4266
|
|
|
4111
4267
|
|
|
4112
|
-
var
|
|
4268
|
+
var StopAppBlockBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4113
4269
|
return [
|
|
4114
4270
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4115
4271
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4116
4272
|
];
|
|
4117
4273
|
}).s("PhotonAdminProxyService", "StopAppBlockBuilder", {}).n("AppStreamClient", "StopAppBlockBuilderCommand").f(void 0, void 0).ser(se_StopAppBlockBuilderCommand).de(de_StopAppBlockBuilderCommand).build() {
|
|
4274
|
+
static {
|
|
4275
|
+
__name(this, "StopAppBlockBuilderCommand");
|
|
4276
|
+
}
|
|
4118
4277
|
};
|
|
4119
|
-
__name(_StopAppBlockBuilderCommand, "StopAppBlockBuilderCommand");
|
|
4120
|
-
var StopAppBlockBuilderCommand = _StopAppBlockBuilderCommand;
|
|
4121
4278
|
|
|
4122
4279
|
// src/commands/StopFleetCommand.ts
|
|
4123
4280
|
|
|
4124
4281
|
|
|
4125
4282
|
|
|
4126
|
-
var
|
|
4283
|
+
var StopFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4127
4284
|
return [
|
|
4128
4285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4129
4286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4130
4287
|
];
|
|
4131
4288
|
}).s("PhotonAdminProxyService", "StopFleet", {}).n("AppStreamClient", "StopFleetCommand").f(void 0, void 0).ser(se_StopFleetCommand).de(de_StopFleetCommand).build() {
|
|
4289
|
+
static {
|
|
4290
|
+
__name(this, "StopFleetCommand");
|
|
4291
|
+
}
|
|
4132
4292
|
};
|
|
4133
|
-
__name(_StopFleetCommand, "StopFleetCommand");
|
|
4134
|
-
var StopFleetCommand = _StopFleetCommand;
|
|
4135
4293
|
|
|
4136
4294
|
// src/commands/StopImageBuilderCommand.ts
|
|
4137
4295
|
|
|
4138
4296
|
|
|
4139
4297
|
|
|
4140
|
-
var
|
|
4298
|
+
var StopImageBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4141
4299
|
return [
|
|
4142
4300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4143
4301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4144
4302
|
];
|
|
4145
4303
|
}).s("PhotonAdminProxyService", "StopImageBuilder", {}).n("AppStreamClient", "StopImageBuilderCommand").f(void 0, void 0).ser(se_StopImageBuilderCommand).de(de_StopImageBuilderCommand).build() {
|
|
4304
|
+
static {
|
|
4305
|
+
__name(this, "StopImageBuilderCommand");
|
|
4306
|
+
}
|
|
4146
4307
|
};
|
|
4147
|
-
__name(_StopImageBuilderCommand, "StopImageBuilderCommand");
|
|
4148
|
-
var StopImageBuilderCommand = _StopImageBuilderCommand;
|
|
4149
4308
|
|
|
4150
4309
|
// src/commands/TagResourceCommand.ts
|
|
4151
4310
|
|
|
4152
4311
|
|
|
4153
4312
|
|
|
4154
|
-
var
|
|
4313
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4155
4314
|
return [
|
|
4156
4315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4157
4316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4158
4317
|
];
|
|
4159
4318
|
}).s("PhotonAdminProxyService", "TagResource", {}).n("AppStreamClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4319
|
+
static {
|
|
4320
|
+
__name(this, "TagResourceCommand");
|
|
4321
|
+
}
|
|
4160
4322
|
};
|
|
4161
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4162
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4163
4323
|
|
|
4164
4324
|
// src/commands/UntagResourceCommand.ts
|
|
4165
4325
|
|
|
4166
4326
|
|
|
4167
4327
|
|
|
4168
|
-
var
|
|
4328
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4169
4329
|
return [
|
|
4170
4330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4171
4331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4172
4332
|
];
|
|
4173
4333
|
}).s("PhotonAdminProxyService", "UntagResource", {}).n("AppStreamClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4334
|
+
static {
|
|
4335
|
+
__name(this, "UntagResourceCommand");
|
|
4336
|
+
}
|
|
4174
4337
|
};
|
|
4175
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4176
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4177
4338
|
|
|
4178
4339
|
// src/commands/UpdateAppBlockBuilderCommand.ts
|
|
4179
4340
|
|
|
4180
4341
|
|
|
4181
4342
|
|
|
4182
|
-
var
|
|
4343
|
+
var UpdateAppBlockBuilderCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4183
4344
|
return [
|
|
4184
4345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4185
4346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4186
4347
|
];
|
|
4187
4348
|
}).s("PhotonAdminProxyService", "UpdateAppBlockBuilder", {}).n("AppStreamClient", "UpdateAppBlockBuilderCommand").f(void 0, void 0).ser(se_UpdateAppBlockBuilderCommand).de(de_UpdateAppBlockBuilderCommand).build() {
|
|
4349
|
+
static {
|
|
4350
|
+
__name(this, "UpdateAppBlockBuilderCommand");
|
|
4351
|
+
}
|
|
4188
4352
|
};
|
|
4189
|
-
__name(_UpdateAppBlockBuilderCommand, "UpdateAppBlockBuilderCommand");
|
|
4190
|
-
var UpdateAppBlockBuilderCommand = _UpdateAppBlockBuilderCommand;
|
|
4191
4353
|
|
|
4192
4354
|
// src/commands/UpdateApplicationCommand.ts
|
|
4193
4355
|
|
|
4194
4356
|
|
|
4195
4357
|
|
|
4196
|
-
var
|
|
4358
|
+
var UpdateApplicationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4197
4359
|
return [
|
|
4198
4360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4199
4361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4200
4362
|
];
|
|
4201
4363
|
}).s("PhotonAdminProxyService", "UpdateApplication", {}).n("AppStreamClient", "UpdateApplicationCommand").f(void 0, void 0).ser(se_UpdateApplicationCommand).de(de_UpdateApplicationCommand).build() {
|
|
4364
|
+
static {
|
|
4365
|
+
__name(this, "UpdateApplicationCommand");
|
|
4366
|
+
}
|
|
4202
4367
|
};
|
|
4203
|
-
__name(_UpdateApplicationCommand, "UpdateApplicationCommand");
|
|
4204
|
-
var UpdateApplicationCommand = _UpdateApplicationCommand;
|
|
4205
4368
|
|
|
4206
4369
|
// src/commands/UpdateDirectoryConfigCommand.ts
|
|
4207
4370
|
|
|
4208
4371
|
|
|
4209
4372
|
|
|
4210
|
-
var
|
|
4373
|
+
var UpdateDirectoryConfigCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4211
4374
|
return [
|
|
4212
4375
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4213
4376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4214
4377
|
];
|
|
4215
4378
|
}).s("PhotonAdminProxyService", "UpdateDirectoryConfig", {}).n("AppStreamClient", "UpdateDirectoryConfigCommand").f(UpdateDirectoryConfigRequestFilterSensitiveLog, UpdateDirectoryConfigResultFilterSensitiveLog).ser(se_UpdateDirectoryConfigCommand).de(de_UpdateDirectoryConfigCommand).build() {
|
|
4379
|
+
static {
|
|
4380
|
+
__name(this, "UpdateDirectoryConfigCommand");
|
|
4381
|
+
}
|
|
4216
4382
|
};
|
|
4217
|
-
__name(_UpdateDirectoryConfigCommand, "UpdateDirectoryConfigCommand");
|
|
4218
|
-
var UpdateDirectoryConfigCommand = _UpdateDirectoryConfigCommand;
|
|
4219
4383
|
|
|
4220
4384
|
// src/commands/UpdateEntitlementCommand.ts
|
|
4221
4385
|
|
|
4222
4386
|
|
|
4223
4387
|
|
|
4224
|
-
var
|
|
4388
|
+
var UpdateEntitlementCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4225
4389
|
return [
|
|
4226
4390
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4227
4391
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4228
4392
|
];
|
|
4229
4393
|
}).s("PhotonAdminProxyService", "UpdateEntitlement", {}).n("AppStreamClient", "UpdateEntitlementCommand").f(void 0, void 0).ser(se_UpdateEntitlementCommand).de(de_UpdateEntitlementCommand).build() {
|
|
4394
|
+
static {
|
|
4395
|
+
__name(this, "UpdateEntitlementCommand");
|
|
4396
|
+
}
|
|
4230
4397
|
};
|
|
4231
|
-
__name(_UpdateEntitlementCommand, "UpdateEntitlementCommand");
|
|
4232
|
-
var UpdateEntitlementCommand = _UpdateEntitlementCommand;
|
|
4233
4398
|
|
|
4234
4399
|
// src/commands/UpdateFleetCommand.ts
|
|
4235
4400
|
|
|
4236
4401
|
|
|
4237
4402
|
|
|
4238
|
-
var
|
|
4403
|
+
var UpdateFleetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4239
4404
|
return [
|
|
4240
4405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4241
4406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4242
4407
|
];
|
|
4243
4408
|
}).s("PhotonAdminProxyService", "UpdateFleet", {}).n("AppStreamClient", "UpdateFleetCommand").f(void 0, void 0).ser(se_UpdateFleetCommand).de(de_UpdateFleetCommand).build() {
|
|
4409
|
+
static {
|
|
4410
|
+
__name(this, "UpdateFleetCommand");
|
|
4411
|
+
}
|
|
4244
4412
|
};
|
|
4245
|
-
__name(_UpdateFleetCommand, "UpdateFleetCommand");
|
|
4246
|
-
var UpdateFleetCommand = _UpdateFleetCommand;
|
|
4247
4413
|
|
|
4248
4414
|
// src/commands/UpdateImagePermissionsCommand.ts
|
|
4249
4415
|
|
|
4250
4416
|
|
|
4251
4417
|
|
|
4252
|
-
var
|
|
4418
|
+
var UpdateImagePermissionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4253
4419
|
return [
|
|
4254
4420
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4255
4421
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4256
4422
|
];
|
|
4257
4423
|
}).s("PhotonAdminProxyService", "UpdateImagePermissions", {}).n("AppStreamClient", "UpdateImagePermissionsCommand").f(void 0, void 0).ser(se_UpdateImagePermissionsCommand).de(de_UpdateImagePermissionsCommand).build() {
|
|
4424
|
+
static {
|
|
4425
|
+
__name(this, "UpdateImagePermissionsCommand");
|
|
4426
|
+
}
|
|
4258
4427
|
};
|
|
4259
|
-
__name(_UpdateImagePermissionsCommand, "UpdateImagePermissionsCommand");
|
|
4260
|
-
var UpdateImagePermissionsCommand = _UpdateImagePermissionsCommand;
|
|
4261
4428
|
|
|
4262
4429
|
// src/commands/UpdateStackCommand.ts
|
|
4263
4430
|
|
|
4264
4431
|
|
|
4265
4432
|
|
|
4266
|
-
var
|
|
4433
|
+
var UpdateStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4267
4434
|
return [
|
|
4268
4435
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4269
4436
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4270
4437
|
];
|
|
4271
4438
|
}).s("PhotonAdminProxyService", "UpdateStack", {}).n("AppStreamClient", "UpdateStackCommand").f(void 0, void 0).ser(se_UpdateStackCommand).de(de_UpdateStackCommand).build() {
|
|
4439
|
+
static {
|
|
4440
|
+
__name(this, "UpdateStackCommand");
|
|
4441
|
+
}
|
|
4272
4442
|
};
|
|
4273
|
-
__name(_UpdateStackCommand, "UpdateStackCommand");
|
|
4274
|
-
var UpdateStackCommand = _UpdateStackCommand;
|
|
4275
4443
|
|
|
4276
4444
|
// src/commands/UpdateThemeForStackCommand.ts
|
|
4277
4445
|
|
|
4278
4446
|
|
|
4279
4447
|
|
|
4280
|
-
var
|
|
4448
|
+
var UpdateThemeForStackCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4281
4449
|
return [
|
|
4282
4450
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4283
4451
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4284
4452
|
];
|
|
4285
4453
|
}).s("PhotonAdminProxyService", "UpdateThemeForStack", {}).n("AppStreamClient", "UpdateThemeForStackCommand").f(void 0, void 0).ser(se_UpdateThemeForStackCommand).de(de_UpdateThemeForStackCommand).build() {
|
|
4454
|
+
static {
|
|
4455
|
+
__name(this, "UpdateThemeForStackCommand");
|
|
4456
|
+
}
|
|
4286
4457
|
};
|
|
4287
|
-
__name(_UpdateThemeForStackCommand, "UpdateThemeForStackCommand");
|
|
4288
|
-
var UpdateThemeForStackCommand = _UpdateThemeForStackCommand;
|
|
4289
4458
|
|
|
4290
4459
|
// src/AppStream.ts
|
|
4291
4460
|
var commands = {
|
|
@@ -4369,10 +4538,11 @@ var commands = {
|
|
|
4369
4538
|
UpdateStackCommand,
|
|
4370
4539
|
UpdateThemeForStackCommand
|
|
4371
4540
|
};
|
|
4372
|
-
var
|
|
4541
|
+
var AppStream = class extends AppStreamClient {
|
|
4542
|
+
static {
|
|
4543
|
+
__name(this, "AppStream");
|
|
4544
|
+
}
|
|
4373
4545
|
};
|
|
4374
|
-
__name(_AppStream, "AppStream");
|
|
4375
|
-
var AppStream = _AppStream;
|
|
4376
4546
|
(0, import_smithy_client.createAggregatedClient)(commands, AppStream);
|
|
4377
4547
|
|
|
4378
4548
|
// src/pagination/DescribeAppBlockBuilderAppBlockAssociationsPaginator.ts
|