@aws-sdk/client-appstream 3.932.0 → 3.933.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/README.md +45 -13
- package/dist-cjs/index.js +312 -42
- package/dist-es/AppStream.js +8 -0
- package/dist-es/commands/CreateExportImageTaskCommand.js +16 -0
- package/dist-es/commands/CreateImportedImageCommand.js +16 -0
- package/dist-es/commands/GetExportImageTaskCommand.js +16 -0
- package/dist-es/commands/ListExportImageTasksCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +60 -27
- package/dist-es/schemas/schemas_0.js +194 -16
- package/dist-types/AppStream.d.ts +36 -6
- package/dist-types/AppStreamClient.d.ts +12 -8
- package/dist-types/commands/CreateAppBlockBuilderCommand.d.ts +2 -2
- package/dist-types/commands/CreateAppBlockCommand.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/CreateDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/CreateEntitlementCommand.d.ts +1 -1
- package/dist-types/commands/CreateExportImageTaskCommand.d.ts +118 -0
- package/dist-types/commands/CreateFleetCommand.d.ts +8 -2
- package/dist-types/commands/CreateImageBuilderCommand.d.ts +9 -3
- package/dist-types/commands/CreateImportedImageCommand.d.ts +186 -0
- package/dist-types/commands/CreateStreamingURLCommand.d.ts +1 -1
- package/dist-types/commands/CreateUpdatedImageCommand.d.ts +6 -5
- package/dist-types/commands/DeleteDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/DeleteImageBuilderCommand.d.ts +5 -2
- package/dist-types/commands/DeleteImageCommand.d.ts +4 -3
- package/dist-types/commands/DescribeAppBlockBuildersCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDirectoryConfigsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFleetsCommand.d.ts +4 -1
- package/dist-types/commands/DescribeImageBuildersCommand.d.ts +5 -2
- package/dist-types/commands/DescribeImagesCommand.d.ts +4 -3
- package/dist-types/commands/DisableUserCommand.d.ts +1 -1
- package/dist-types/commands/EnableUserCommand.d.ts +1 -1
- package/dist-types/commands/GetExportImageTaskCommand.d.ts +97 -0
- package/dist-types/commands/ListExportImageTasksCommand.d.ts +106 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -2
- package/dist-types/commands/StartAppBlockBuilderCommand.d.ts +2 -2
- package/dist-types/commands/StartFleetCommand.d.ts +1 -1
- package/dist-types/commands/StartImageBuilderCommand.d.ts +5 -2
- package/dist-types/commands/StopAppBlockBuilderCommand.d.ts +1 -1
- package/dist-types/commands/StopImageBuilderCommand.d.ts +5 -2
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAppBlockBuilderCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDirectoryConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFleetCommand.d.ts +9 -3
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +6 -6
- package/dist-types/models/models_0.d.ts +822 -503
- package/dist-types/schemas/schemas_0.d.ts +24 -0
- package/dist-types/ts3.4/AppStream.d.ts +70 -0
- package/dist-types/ts3.4/AppStreamClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateExportImageTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateImportedImageCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetExportImageTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListExportImageTasksCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +176 -68
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +24 -0
- package/package.json +3 -3
package/dist-cjs/index.js
CHANGED
|
@@ -131,6 +131,10 @@ const Action = {
|
|
|
131
131
|
FILE_UPLOAD: "FILE_UPLOAD",
|
|
132
132
|
PRINTING_TO_LOCAL_DEVICE: "PRINTING_TO_LOCAL_DEVICE",
|
|
133
133
|
};
|
|
134
|
+
const AgentSoftwareVersion = {
|
|
135
|
+
ALWAYS_LATEST: "ALWAYS_LATEST",
|
|
136
|
+
CURRENT_LATEST: "CURRENT_LATEST",
|
|
137
|
+
};
|
|
134
138
|
const PackagingType = {
|
|
135
139
|
APPSTREAM2: "APPSTREAM2",
|
|
136
140
|
CUSTOM: "CUSTOM",
|
|
@@ -170,6 +174,7 @@ const FleetErrorCode = {
|
|
|
170
174
|
STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION",
|
|
171
175
|
SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES",
|
|
172
176
|
SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND",
|
|
177
|
+
VALIDATION_ERROR: "VALIDATION_ERROR",
|
|
173
178
|
};
|
|
174
179
|
const AppBlockBuilderPlatformType = {
|
|
175
180
|
WINDOWS_SERVER_2019: "WINDOWS_SERVER_2019",
|
|
@@ -404,6 +409,11 @@ let EntitlementAlreadyExistsException$1 = class EntitlementAlreadyExistsExceptio
|
|
|
404
409
|
this.Message = opts.Message;
|
|
405
410
|
}
|
|
406
411
|
};
|
|
412
|
+
const ExportImageTaskState = {
|
|
413
|
+
COMPLETED: "COMPLETED",
|
|
414
|
+
EXPORTING: "EXPORTING",
|
|
415
|
+
FAILED: "FAILED",
|
|
416
|
+
};
|
|
407
417
|
const FleetType = {
|
|
408
418
|
ALWAYS_ON: "ALWAYS_ON",
|
|
409
419
|
ELASTIC: "ELASTIC",
|
|
@@ -427,6 +437,7 @@ const ImageBuilderState = {
|
|
|
427
437
|
DELETING: "DELETING",
|
|
428
438
|
FAILED: "FAILED",
|
|
429
439
|
PENDING: "PENDING",
|
|
440
|
+
PENDING_IMAGE_IMPORT: "PENDING_IMAGE_IMPORT",
|
|
430
441
|
PENDING_QUALIFICATION: "PENDING_QUALIFICATION",
|
|
431
442
|
PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS",
|
|
432
443
|
REBOOTING: "REBOOTING",
|
|
@@ -442,33 +453,6 @@ const ImageBuilderStateChangeReasonCode = {
|
|
|
442
453
|
IMAGE_UNAVAILABLE: "IMAGE_UNAVAILABLE",
|
|
443
454
|
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
444
455
|
};
|
|
445
|
-
const StorageConnectorType = {
|
|
446
|
-
GOOGLE_DRIVE: "GOOGLE_DRIVE",
|
|
447
|
-
HOMEFOLDERS: "HOMEFOLDERS",
|
|
448
|
-
ONE_DRIVE: "ONE_DRIVE",
|
|
449
|
-
};
|
|
450
|
-
const PreferredProtocol = {
|
|
451
|
-
TCP: "TCP",
|
|
452
|
-
UDP: "UDP",
|
|
453
|
-
};
|
|
454
|
-
const Permission = {
|
|
455
|
-
DISABLED: "DISABLED",
|
|
456
|
-
ENABLED: "ENABLED",
|
|
457
|
-
};
|
|
458
|
-
const StackErrorCode = {
|
|
459
|
-
INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR",
|
|
460
|
-
STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR",
|
|
461
|
-
};
|
|
462
|
-
const ThemeStyling = {
|
|
463
|
-
BLUE: "BLUE",
|
|
464
|
-
LIGHT_BLUE: "LIGHT_BLUE",
|
|
465
|
-
PINK: "PINK",
|
|
466
|
-
RED: "RED",
|
|
467
|
-
};
|
|
468
|
-
const ThemeState = {
|
|
469
|
-
DISABLED: "DISABLED",
|
|
470
|
-
ENABLED: "ENABLED",
|
|
471
|
-
};
|
|
472
456
|
const DynamicAppProvidersEnabled = {
|
|
473
457
|
DISABLED: "DISABLED",
|
|
474
458
|
ENABLED: "ENABLED",
|
|
@@ -477,6 +461,10 @@ const ImageSharedWithOthers = {
|
|
|
477
461
|
FALSE: "FALSE",
|
|
478
462
|
TRUE: "TRUE",
|
|
479
463
|
};
|
|
464
|
+
const ImageType = {
|
|
465
|
+
CUSTOM: "CUSTOM",
|
|
466
|
+
NATIVE: "NATIVE",
|
|
467
|
+
};
|
|
480
468
|
const ImageState = {
|
|
481
469
|
AVAILABLE: "AVAILABLE",
|
|
482
470
|
COPYING: "COPYING",
|
|
@@ -485,10 +473,13 @@ const ImageState = {
|
|
|
485
473
|
FAILED: "FAILED",
|
|
486
474
|
IMPORTING: "IMPORTING",
|
|
487
475
|
PENDING: "PENDING",
|
|
476
|
+
VALIDATING: "VALIDATING",
|
|
488
477
|
};
|
|
489
478
|
const ImageStateChangeReasonCode = {
|
|
490
479
|
IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE",
|
|
491
480
|
IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE",
|
|
481
|
+
IMAGE_IMPORT_FAILURE: "IMAGE_IMPORT_FAILURE",
|
|
482
|
+
IMAGE_UPDATE_FAILURE: "IMAGE_UPDATE_FAILURE",
|
|
492
483
|
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
493
484
|
};
|
|
494
485
|
const VisibilityType = {
|
|
@@ -496,6 +487,47 @@ const VisibilityType = {
|
|
|
496
487
|
PUBLIC: "PUBLIC",
|
|
497
488
|
SHARED: "SHARED",
|
|
498
489
|
};
|
|
490
|
+
let DryRunOperationException$1 = class DryRunOperationException extends AppStreamServiceException$1 {
|
|
491
|
+
name = "DryRunOperationException";
|
|
492
|
+
$fault = "client";
|
|
493
|
+
Message;
|
|
494
|
+
constructor(opts) {
|
|
495
|
+
super({
|
|
496
|
+
name: "DryRunOperationException",
|
|
497
|
+
$fault: "client",
|
|
498
|
+
...opts,
|
|
499
|
+
});
|
|
500
|
+
Object.setPrototypeOf(this, DryRunOperationException.prototype);
|
|
501
|
+
this.Message = opts.Message;
|
|
502
|
+
}
|
|
503
|
+
};
|
|
504
|
+
const StorageConnectorType = {
|
|
505
|
+
GOOGLE_DRIVE: "GOOGLE_DRIVE",
|
|
506
|
+
HOMEFOLDERS: "HOMEFOLDERS",
|
|
507
|
+
ONE_DRIVE: "ONE_DRIVE",
|
|
508
|
+
};
|
|
509
|
+
const PreferredProtocol = {
|
|
510
|
+
TCP: "TCP",
|
|
511
|
+
UDP: "UDP",
|
|
512
|
+
};
|
|
513
|
+
const Permission = {
|
|
514
|
+
DISABLED: "DISABLED",
|
|
515
|
+
ENABLED: "ENABLED",
|
|
516
|
+
};
|
|
517
|
+
const StackErrorCode = {
|
|
518
|
+
INTERNAL_SERVICE_ERROR: "INTERNAL_SERVICE_ERROR",
|
|
519
|
+
STORAGE_CONNECTOR_ERROR: "STORAGE_CONNECTOR_ERROR",
|
|
520
|
+
};
|
|
521
|
+
const ThemeStyling = {
|
|
522
|
+
BLUE: "BLUE",
|
|
523
|
+
LIGHT_BLUE: "LIGHT_BLUE",
|
|
524
|
+
PINK: "PINK",
|
|
525
|
+
RED: "RED",
|
|
526
|
+
};
|
|
527
|
+
const ThemeState = {
|
|
528
|
+
DISABLED: "DISABLED",
|
|
529
|
+
ENABLED: "ENABLED",
|
|
530
|
+
};
|
|
499
531
|
const UsageReportSchedule = {
|
|
500
532
|
DAILY: "DAILY",
|
|
501
533
|
};
|
|
@@ -546,6 +578,7 @@ const FleetAttribute = {
|
|
|
546
578
|
MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE",
|
|
547
579
|
SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION",
|
|
548
580
|
USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS",
|
|
581
|
+
VOLUME_CONFIGURATION: "VOLUME_CONFIGURATION",
|
|
549
582
|
VPC_CONFIGURATION: "VPC_CONFIGURATION",
|
|
550
583
|
VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS",
|
|
551
584
|
};
|
|
@@ -577,6 +610,7 @@ const _AAFR = "AssociateApplicationFleetRequest";
|
|
|
577
610
|
const _AAFRs = "AssociateApplicationFleetResult";
|
|
578
611
|
const _AALUL = "AdminAppLicenseUsageList";
|
|
579
612
|
const _AALUR = "AdminAppLicenseUsageRecord";
|
|
613
|
+
const _AAP = "AbsoluteAppPath";
|
|
580
614
|
const _AATE = "AssociateApplicationToEntitlement";
|
|
581
615
|
const _AATER = "AssociateApplicationToEntitlementRequest";
|
|
582
616
|
const _AATERs = "AssociateApplicationToEntitlementResult";
|
|
@@ -594,6 +628,9 @@ const _ABBSCR = "AppBlockBuilderStateChangeReason";
|
|
|
594
628
|
const _ABBp = "AppBlockBuilders";
|
|
595
629
|
const _ABE = "AppBlockErrors";
|
|
596
630
|
const _ABp = "AppBlocks";
|
|
631
|
+
const _AC = "ApplicationConfig";
|
|
632
|
+
const _ACC = "AppCatalogConfig";
|
|
633
|
+
const _AD = "AmiDescription";
|
|
597
634
|
const _AE = "AccessEndpoint";
|
|
598
635
|
const _AEL = "AccessEndpointList";
|
|
599
636
|
const _AEc = "AccessEndpoints";
|
|
@@ -604,9 +641,13 @@ const _AFAp = "ApplicationFleetAssociations";
|
|
|
604
641
|
const _AFR = "AssociateFleetRequest";
|
|
605
642
|
const _AFRs = "AssociateFleetResult";
|
|
606
643
|
const _AI = "ApplicationIdentifier";
|
|
644
|
+
const _AIP = "AbsoluteIconPath";
|
|
645
|
+
const _AIm = "AmiId";
|
|
607
646
|
const _AIp = "ApplicationId";
|
|
608
647
|
const _ALU = "AppLicenseUsages";
|
|
648
|
+
const _AMP = "AbsoluteManifestPath";
|
|
609
649
|
const _AN = "AccountName";
|
|
650
|
+
const _ANm = "AmiName";
|
|
610
651
|
const _AP = "AccountPassword";
|
|
611
652
|
const _AR = "AssociatedResource";
|
|
612
653
|
const _AS = "ApplicationSettings";
|
|
@@ -614,6 +655,7 @@ const _ASR = "ApplicationSettingsResponse";
|
|
|
614
655
|
const _ASTIB = "AssociateSoftwareToImageBuilder";
|
|
615
656
|
const _ASTIBR = "AssociateSoftwareToImageBuilderRequest";
|
|
616
657
|
const _ASTIBRs = "AssociateSoftwareToImageBuilderResult";
|
|
658
|
+
const _ASV = "AgentSoftwareVersion";
|
|
617
659
|
const _AT = "AuthenticationType";
|
|
618
660
|
const _ATD = "AttributesToDelete";
|
|
619
661
|
const _AUS = "AvailableUserSessions";
|
|
@@ -651,10 +693,14 @@ const _CARr = "CreateApplicationResult";
|
|
|
651
693
|
const _CBAP = "CertificateBasedAuthProperties";
|
|
652
694
|
const _CC = "ComputeCapacity";
|
|
653
695
|
const _CCS = "ComputeCapacityStatus";
|
|
696
|
+
const _CD = "CreatedDate";
|
|
654
697
|
const _CDC = "CreateDirectoryConfig";
|
|
655
698
|
const _CDCR = "CreateDirectoryConfigRequest";
|
|
656
699
|
const _CDCRr = "CreateDirectoryConfigResult";
|
|
657
700
|
const _CE = "CreateEntitlement";
|
|
701
|
+
const _CEIT = "CreateExportImageTask";
|
|
702
|
+
const _CEITR = "CreateExportImageTaskRequest";
|
|
703
|
+
const _CEITRr = "CreateExportImageTaskResult";
|
|
658
704
|
const _CER = "CreateEntitlementRequest";
|
|
659
705
|
const _CERr = "CreateEntitlementResult";
|
|
660
706
|
const _CF = "CreateFleet";
|
|
@@ -667,6 +713,9 @@ const _CIBRr = "CreateImageBuilderResult";
|
|
|
667
713
|
const _CIBSURL = "CreateImageBuilderStreamingURL";
|
|
668
714
|
const _CIBSURLR = "CreateImageBuilderStreamingURLRequest";
|
|
669
715
|
const _CIBSURLRr = "CreateImageBuilderStreamingURLResult";
|
|
716
|
+
const _CII = "CreateImportedImage";
|
|
717
|
+
const _CIIR = "CreateImportedImageRequest";
|
|
718
|
+
const _CIIRr = "CreateImportedImageResult";
|
|
670
719
|
const _CIR = "CopyImageRequest";
|
|
671
720
|
const _CIRo = "CopyImageResponse";
|
|
672
721
|
const _CME = "ConcurrentModificationException";
|
|
@@ -781,6 +830,8 @@ const _DNi = "DirectoryName";
|
|
|
781
830
|
const _DNir = "DirectoryNames";
|
|
782
831
|
const _DR = "DestinationRegion";
|
|
783
832
|
const _DRAC = "DomainsRequireAdminConsent";
|
|
833
|
+
const _DROE = "DryRunOperationException";
|
|
834
|
+
const _DRr = "DryRun";
|
|
784
835
|
const _DS = "DesiredSessions";
|
|
785
836
|
const _DSA = "DescribeSoftwareAssociations";
|
|
786
837
|
const _DSAR = "DescribeSoftwareAssociationsRequest";
|
|
@@ -841,6 +892,8 @@ const _EDL = "ErrorDetailsList";
|
|
|
841
892
|
const _EHD = "EmbedHostDomains";
|
|
842
893
|
const _EI = "EniId";
|
|
843
894
|
const _EIA = "EniIpv6Addresses";
|
|
895
|
+
const _EIT = "ExportImageTask";
|
|
896
|
+
const _EITx = "ExportImageTasks";
|
|
844
897
|
const _EL = "EntitlementList";
|
|
845
898
|
const _EM = "ErrorMessage";
|
|
846
899
|
const _EN = "EntitlementName";
|
|
@@ -867,10 +920,16 @@ const _FLURL = "FooterLinkURL";
|
|
|
867
920
|
const _FLl = "FleetList";
|
|
868
921
|
const _FN = "FleetName";
|
|
869
922
|
const _FNi = "FirstName";
|
|
923
|
+
const _FP = "FilePath";
|
|
870
924
|
const _FSL = "FaviconS3Location";
|
|
871
925
|
const _FT = "FleetType";
|
|
872
926
|
const _FURL = "FeedbackURL";
|
|
927
|
+
const _Fi = "Filter";
|
|
928
|
+
const _Fil = "Filters";
|
|
873
929
|
const _Fl = "Fleets";
|
|
930
|
+
const _GEIT = "GetExportImageTask";
|
|
931
|
+
const _GEITR = "GetExportImageTaskRequest";
|
|
932
|
+
const _GEITRe = "GetExportImageTaskResult";
|
|
874
933
|
const _I = "Image";
|
|
875
934
|
const _IA = "ImageArn";
|
|
876
935
|
const _IASE = "InvalidAccountStatusException";
|
|
@@ -886,6 +945,7 @@ const _IE = "ImageErrors";
|
|
|
886
945
|
const _IF = "InstanceFamilies";
|
|
887
946
|
const _II = "InstanceId";
|
|
888
947
|
const _IIE = "IncompatibleImageException";
|
|
948
|
+
const _IIT = "IntendedInstanceType";
|
|
889
949
|
const _IL = "ImageList";
|
|
890
950
|
const _IN = "ImageName";
|
|
891
951
|
const _IP = "ImagePermissions";
|
|
@@ -896,6 +956,7 @@ const _ISCR = "ImageStateChangeReason";
|
|
|
896
956
|
const _ISL = "IconS3Location";
|
|
897
957
|
const _ISWO = "ImageSharedWithOthers";
|
|
898
958
|
const _IT = "InstanceType";
|
|
959
|
+
const _ITm = "ImageType";
|
|
899
960
|
const _IU = "InUse";
|
|
900
961
|
const _IURL = "IconURL";
|
|
901
962
|
const _Id = "Id";
|
|
@@ -912,11 +973,14 @@ const _LEA = "ListEntitledApplications";
|
|
|
912
973
|
const _LEAR = "ListEntitledApplicationsRequest";
|
|
913
974
|
const _LEARi = "ListEntitledApplicationsResult";
|
|
914
975
|
const _LEE = "LimitExceededException";
|
|
976
|
+
const _LEIT = "ListExportImageTasks";
|
|
977
|
+
const _LEITR = "ListExportImageTasksRequest";
|
|
978
|
+
const _LEITRi = "ListExportImageTasksResult";
|
|
915
979
|
const _LGRD = "LastGeneratedReportDate";
|
|
916
980
|
const _LMT = "LastModifiedTime";
|
|
917
981
|
const _LN = "LastName";
|
|
918
|
-
const _LP = "
|
|
919
|
-
const _LPa = "
|
|
982
|
+
const _LP = "LaunchParameters";
|
|
983
|
+
const _LPa = "LaunchPath";
|
|
920
984
|
const _LRGEE = "LastReportGenerationExecutionError";
|
|
921
985
|
const _LRGEEa = "LastReportGenerationExecutionErrors";
|
|
922
986
|
const _LT = "LicenseType";
|
|
@@ -961,6 +1025,8 @@ const _RLEE = "RequestLimitExceededException";
|
|
|
961
1025
|
const _RNAE = "ResourceNotAvailableException";
|
|
962
1026
|
const _RNFE = "ResourceNotFoundException";
|
|
963
1027
|
const _RURL = "RedirectURL";
|
|
1028
|
+
const _RVC = "RootVolumeConfig";
|
|
1029
|
+
const _RVCu = "RuntimeValidationConfig";
|
|
964
1030
|
const _S = "State";
|
|
965
1031
|
const _SA = "SoftwareAssociations";
|
|
966
1032
|
const _SAAI = "SharedAwsAccountIds";
|
|
@@ -971,7 +1037,8 @@ const _SABBRto = "StopAppBlockBuilderRequest";
|
|
|
971
1037
|
const _SABBRtop = "StopAppBlockBuilderResult";
|
|
972
1038
|
const _SABBt = "StopAppBlockBuilder";
|
|
973
1039
|
const _SAC = "ServiceAccountCredentials";
|
|
974
|
-
const _SAI = "
|
|
1040
|
+
const _SAI = "SourceAmiId";
|
|
1041
|
+
const _SAIh = "SharedAccountId";
|
|
975
1042
|
const _SAL = "SoftwareAssociationsList";
|
|
976
1043
|
const _SB = "S3Bucket";
|
|
977
1044
|
const _SBN = "S3BucketName";
|
|
@@ -1037,13 +1104,15 @@ const _T = "Tags";
|
|
|
1037
1104
|
const _TFL = "ThemeFooterLinks";
|
|
1038
1105
|
const _TFLh = "ThemeFooterLink";
|
|
1039
1106
|
const _TFURL = "ThemeFaviconURL";
|
|
1107
|
+
const _TI = "TaskId";
|
|
1040
1108
|
const _TIS = "TimeoutInSeconds";
|
|
1041
1109
|
const _TK = "TagKeys";
|
|
1042
1110
|
const _TOLURL = "ThemeOrganizationLogoURL";
|
|
1043
1111
|
const _TR = "TagResource";
|
|
1044
1112
|
const _TRR = "TagResourceRequest";
|
|
1045
1113
|
const _TRRa = "TagResourceResponse";
|
|
1046
|
-
const _TS = "
|
|
1114
|
+
const _TS = "TagSpecifications";
|
|
1115
|
+
const _TSh = "ThemeStyling";
|
|
1047
1116
|
const _TT = "TitleText";
|
|
1048
1117
|
const _TTT = "ThemeTitleText";
|
|
1049
1118
|
const _Th = "Theme";
|
|
@@ -1097,8 +1166,11 @@ const _Us = "Users";
|
|
|
1097
1166
|
const _Use = "User";
|
|
1098
1167
|
const _V = "Validity";
|
|
1099
1168
|
const _VC = "VpcConfig";
|
|
1169
|
+
const _VCo = "VolumeConfig";
|
|
1100
1170
|
const _VI = "VpceId";
|
|
1171
|
+
const _VSIG = "VolumeSizeInGb";
|
|
1101
1172
|
const _Va = "Value";
|
|
1173
|
+
const _Val = "Values";
|
|
1102
1174
|
const _Vi = "Visibility";
|
|
1103
1175
|
const _WD = "WorkingDirectory";
|
|
1104
1176
|
const _aF = "allowFleet";
|
|
@@ -1121,6 +1193,8 @@ const _sAI = "sharedAccountId";
|
|
|
1121
1193
|
const n0 = "com.amazonaws.appstream";
|
|
1122
1194
|
var AccountName = [0, n0, _AN, 8, 0];
|
|
1123
1195
|
var AccountPassword = [0, n0, _AP, 8, 0];
|
|
1196
|
+
var FilePath = [0, n0, _FP, 8, 0];
|
|
1197
|
+
var LaunchParameters = [0, n0, _LP, 8, 0];
|
|
1124
1198
|
var UserAttributeValue = [0, n0, _UAV, 8, 0];
|
|
1125
1199
|
var Username = [0, n0, _U, 8, 0];
|
|
1126
1200
|
var AccessEndpoint = [3, n0, _AE, 0, [_ET, _VI], [0, 0]];
|
|
@@ -1170,9 +1244,25 @@ var Application = [
|
|
|
1170
1244
|
n0,
|
|
1171
1245
|
_Ap,
|
|
1172
1246
|
0,
|
|
1173
|
-
[_N, _DN, _IURL,
|
|
1247
|
+
[_N, _DN, _IURL, _LPa, _LP, _E, _Me, _WD, _D, _A, _ABA, _ISL, _Pl, _IF, _CT],
|
|
1174
1248
|
[0, 0, 0, 0, 0, 2, 128 | 0, 0, 0, 0, 0, () => S3Location, 64 | 0, 64 | 0, 4],
|
|
1175
1249
|
];
|
|
1250
|
+
var ApplicationConfig = [
|
|
1251
|
+
3,
|
|
1252
|
+
n0,
|
|
1253
|
+
_AC,
|
|
1254
|
+
8,
|
|
1255
|
+
[_N, _DN, _AAP, _AIP, _AMP, _WD, _LP],
|
|
1256
|
+
[
|
|
1257
|
+
0,
|
|
1258
|
+
0,
|
|
1259
|
+
[() => FilePath, 0],
|
|
1260
|
+
[() => FilePath, 0],
|
|
1261
|
+
[() => FilePath, 0],
|
|
1262
|
+
[() => FilePath, 0],
|
|
1263
|
+
[() => LaunchParameters, 0],
|
|
1264
|
+
],
|
|
1265
|
+
];
|
|
1176
1266
|
var ApplicationFleetAssociation = [3, n0, _AFA, 0, [_FN, _AA], [0, 0]];
|
|
1177
1267
|
var ApplicationSettings = [3, n0, _AS, 0, [_E, _SG], [2, 0]];
|
|
1178
1268
|
var ApplicationSettingsResponse = [3, n0, _ASR, 0, [_E, _SG, _SBN], [2, 0, 0]];
|
|
@@ -1309,7 +1399,7 @@ var CreateApplicationRequest = [
|
|
|
1309
1399
|
n0,
|
|
1310
1400
|
_CAR,
|
|
1311
1401
|
0,
|
|
1312
|
-
[_N, _DN, _D, _ISL,
|
|
1402
|
+
[_N, _DN, _D, _ISL, _LPa, _WD, _LP, _Pl, _IF, _ABA, _T],
|
|
1313
1403
|
[0, 0, 0, () => S3Location, 0, 0, 0, 64 | 0, 64 | 0, 0, 128 | 0],
|
|
1314
1404
|
];
|
|
1315
1405
|
var CreateApplicationResult = [3, n0, _CARr, 0, [_Ap], [() => Application]];
|
|
@@ -1331,6 +1421,15 @@ var CreateEntitlementRequest = [
|
|
|
1331
1421
|
[0, 0, 0, 0, () => EntitlementAttributeList],
|
|
1332
1422
|
];
|
|
1333
1423
|
var CreateEntitlementResult = [3, n0, _CERr, 0, [_En], [() => Entitlement]];
|
|
1424
|
+
var CreateExportImageTaskRequest = [
|
|
1425
|
+
3,
|
|
1426
|
+
n0,
|
|
1427
|
+
_CEITR,
|
|
1428
|
+
0,
|
|
1429
|
+
[_IN, _ANm, _IRA, _TS, _AD],
|
|
1430
|
+
[0, 0, 0, 128 | 0, 0],
|
|
1431
|
+
];
|
|
1432
|
+
var CreateExportImageTaskResult = [3, n0, _CEITRr, 0, [_EIT], [() => ExportImageTask]];
|
|
1334
1433
|
var CreateFleetRequest = [
|
|
1335
1434
|
3,
|
|
1336
1435
|
n0,
|
|
@@ -1359,6 +1458,7 @@ var CreateFleetRequest = [
|
|
|
1359
1458
|
_UDFS,
|
|
1360
1459
|
_SSSL,
|
|
1361
1460
|
_MSPI,
|
|
1461
|
+
_RVC,
|
|
1362
1462
|
],
|
|
1363
1463
|
[
|
|
1364
1464
|
0,
|
|
@@ -1383,6 +1483,7 @@ var CreateFleetRequest = [
|
|
|
1383
1483
|
64 | 0,
|
|
1384
1484
|
() => S3Location,
|
|
1385
1485
|
1,
|
|
1486
|
+
() => VolumeConfig,
|
|
1386
1487
|
],
|
|
1387
1488
|
];
|
|
1388
1489
|
var CreateFleetResult = [3, n0, _CFRr, 0, [_F], [() => Fleet]];
|
|
@@ -1391,12 +1492,38 @@ var CreateImageBuilderRequest = [
|
|
|
1391
1492
|
n0,
|
|
1392
1493
|
_CIBR,
|
|
1393
1494
|
0,
|
|
1394
|
-
[_N, _IN, _IA, _IT, _D, _DN, _VC, _IRA, _EDIA, _DJI, _AAV, _T, _AEc, _STI, _STU],
|
|
1395
|
-
[
|
|
1495
|
+
[_N, _IN, _IA, _IT, _D, _DN, _VC, _IRA, _EDIA, _DJI, _AAV, _T, _AEc, _RVC, _STI, _STU],
|
|
1496
|
+
[
|
|
1497
|
+
0,
|
|
1498
|
+
0,
|
|
1499
|
+
0,
|
|
1500
|
+
0,
|
|
1501
|
+
0,
|
|
1502
|
+
0,
|
|
1503
|
+
() => VpcConfig,
|
|
1504
|
+
0,
|
|
1505
|
+
2,
|
|
1506
|
+
() => DomainJoinInfo,
|
|
1507
|
+
0,
|
|
1508
|
+
128 | 0,
|
|
1509
|
+
() => AccessEndpointList,
|
|
1510
|
+
() => VolumeConfig,
|
|
1511
|
+
64 | 0,
|
|
1512
|
+
64 | 0,
|
|
1513
|
+
],
|
|
1396
1514
|
];
|
|
1397
1515
|
var CreateImageBuilderResult = [3, n0, _CIBRr, 0, [_IB], [() => ImageBuilder]];
|
|
1398
1516
|
var CreateImageBuilderStreamingURLRequest = [3, n0, _CIBSURLR, 0, [_N, _V], [0, 1]];
|
|
1399
1517
|
var CreateImageBuilderStreamingURLResult = [3, n0, _CIBSURLRr, 0, [_SURL, _Ex], [0, 4]];
|
|
1518
|
+
var CreateImportedImageRequest = [
|
|
1519
|
+
3,
|
|
1520
|
+
n0,
|
|
1521
|
+
_CIIR,
|
|
1522
|
+
0,
|
|
1523
|
+
[_N, _SAI, _IRA, _D, _DN, _T, _RVCu, _ASV, _ACC, _DRr],
|
|
1524
|
+
[0, 0, 0, 0, 0, 128 | 0, () => RuntimeValidationConfig, 0, [() => AppCatalogConfig, 0], 2],
|
|
1525
|
+
];
|
|
1526
|
+
var CreateImportedImageResult = [3, n0, _CIIRr, 0, [_I], [() => Image]];
|
|
1400
1527
|
var CreateStackRequest = [
|
|
1401
1528
|
3,
|
|
1402
1529
|
n0,
|
|
@@ -1433,7 +1560,7 @@ var CreateThemeForStackRequest = [
|
|
|
1433
1560
|
n0,
|
|
1434
1561
|
_CTFSR,
|
|
1435
1562
|
0,
|
|
1436
|
-
[_SN, _FL, _TT,
|
|
1563
|
+
[_SN, _FL, _TT, _TSh, _OLSL, _FSL],
|
|
1437
1564
|
[0, () => ThemeFooterLinks, 0, 0, () => S3Location, () => S3Location],
|
|
1438
1565
|
];
|
|
1439
1566
|
var CreateThemeForStackResult = [3, n0, _CTFSRr, 0, [_Th], [() => Theme]];
|
|
@@ -1471,7 +1598,7 @@ var DeleteFleetRequest = [3, n0, _DFR, 0, [_N], [0]];
|
|
|
1471
1598
|
var DeleteFleetResult = [3, n0, _DFRe, 0, [], []];
|
|
1472
1599
|
var DeleteImageBuilderRequest = [3, n0, _DIBR, 0, [_N], [0]];
|
|
1473
1600
|
var DeleteImageBuilderResult = [3, n0, _DIBRe, 0, [_IB], [() => ImageBuilder]];
|
|
1474
|
-
var DeleteImagePermissionsRequest = [3, n0, _DIPR, 0, [_N,
|
|
1601
|
+
var DeleteImagePermissionsRequest = [3, n0, _DIPR, 0, [_N, _SAIh], [0, 0]];
|
|
1475
1602
|
var DeleteImagePermissionsResult = [3, n0, _DIPRe, 0, [], []];
|
|
1476
1603
|
var DeleteImageRequest = [3, n0, _DIR, 0, [_N], [0]];
|
|
1477
1604
|
var DeleteImageResult = [3, n0, _DIRe, 0, [_I], [() => Image]];
|
|
@@ -1703,6 +1830,18 @@ var DisassociateSoftwareFromImageBuilderRequest = [
|
|
|
1703
1830
|
];
|
|
1704
1831
|
var DisassociateSoftwareFromImageBuilderResult = [3, n0, _DSFIBRi, 0, [], []];
|
|
1705
1832
|
var DomainJoinInfo = [3, n0, _DJI, 0, [_DNi, _OUDNr], [0, 0]];
|
|
1833
|
+
var DryRunOperationException = [
|
|
1834
|
+
-3,
|
|
1835
|
+
n0,
|
|
1836
|
+
_DROE,
|
|
1837
|
+
{
|
|
1838
|
+
[_er]: _c,
|
|
1839
|
+
[_hE]: 412,
|
|
1840
|
+
},
|
|
1841
|
+
[_M],
|
|
1842
|
+
[0],
|
|
1843
|
+
];
|
|
1844
|
+
schema.TypeRegistry.for(n0).registerError(DryRunOperationException, DryRunOperationException$1);
|
|
1706
1845
|
var EnableUserRequest = [3, n0, _EUR, 0, [_UN, _AT], [[() => Username, 0], 0]];
|
|
1707
1846
|
var EnableUserResult = [3, n0, _EURn, 0, [], []];
|
|
1708
1847
|
var EntitledApplication = [3, n0, _EA, 0, [_AI], [0]];
|
|
@@ -1742,6 +1881,15 @@ schema.TypeRegistry.for(n0).registerError(EntitlementNotFoundException, Entitlem
|
|
|
1742
1881
|
var ErrorDetails = [3, n0, _ED, 0, [_EC, _EM], [0, 0]];
|
|
1743
1882
|
var ExpireSessionRequest = [3, n0, _ESR, 0, [_SI], [0]];
|
|
1744
1883
|
var ExpireSessionResult = [3, n0, _ESRx, 0, [], []];
|
|
1884
|
+
var ExportImageTask = [
|
|
1885
|
+
3,
|
|
1886
|
+
n0,
|
|
1887
|
+
_EIT,
|
|
1888
|
+
0,
|
|
1889
|
+
[_TI, _IA, _ANm, _CD, _AD, _S, _AIm, _TS, _ED],
|
|
1890
|
+
[0, 0, 0, 4, 0, 0, 0, 128 | 0, () => ErrorDetailsList],
|
|
1891
|
+
];
|
|
1892
|
+
var Filter = [3, n0, _Fi, 0, [_N, _Val], [0, 64 | 0]];
|
|
1745
1893
|
var Fleet = [
|
|
1746
1894
|
3,
|
|
1747
1895
|
n0,
|
|
@@ -1773,6 +1921,7 @@ var Fleet = [
|
|
|
1773
1921
|
_UDFS,
|
|
1774
1922
|
_SSSL,
|
|
1775
1923
|
_MSPI,
|
|
1924
|
+
_RVC,
|
|
1776
1925
|
],
|
|
1777
1926
|
[
|
|
1778
1927
|
0,
|
|
@@ -1800,9 +1949,12 @@ var Fleet = [
|
|
|
1800
1949
|
64 | 0,
|
|
1801
1950
|
() => S3Location,
|
|
1802
1951
|
1,
|
|
1952
|
+
() => VolumeConfig,
|
|
1803
1953
|
],
|
|
1804
1954
|
];
|
|
1805
1955
|
var FleetError = [3, n0, _FEl, 0, [_EC, _EM], [0, 0]];
|
|
1956
|
+
var GetExportImageTaskRequest = [3, n0, _GEITR, 0, [_TI], [0]];
|
|
1957
|
+
var GetExportImageTaskResult = [3, n0, _GEITRe, 0, [_EIT], [() => ExportImageTask]];
|
|
1806
1958
|
var Image = [
|
|
1807
1959
|
3,
|
|
1808
1960
|
n0,
|
|
@@ -1831,6 +1983,7 @@ var Image = [
|
|
|
1831
1983
|
_DAPE,
|
|
1832
1984
|
_ISWO,
|
|
1833
1985
|
_MSI,
|
|
1986
|
+
_ITm,
|
|
1834
1987
|
],
|
|
1835
1988
|
[
|
|
1836
1989
|
0,
|
|
@@ -1855,6 +2008,7 @@ var Image = [
|
|
|
1855
2008
|
0,
|
|
1856
2009
|
0,
|
|
1857
2010
|
2,
|
|
2011
|
+
0,
|
|
1858
2012
|
],
|
|
1859
2013
|
];
|
|
1860
2014
|
var ImageBuilder = [
|
|
@@ -1862,7 +2016,7 @@ var ImageBuilder = [
|
|
|
1862
2016
|
n0,
|
|
1863
2017
|
_IB,
|
|
1864
2018
|
0,
|
|
1865
|
-
[_N, _A, _IA, _D, _DN, _VC, _IT, _P, _IRA, _S, _SCR, _CT, _EDIA, _DJI, _NAC, _IBE, _AAV, _AEc, _LAAV],
|
|
2019
|
+
[_N, _A, _IA, _D, _DN, _VC, _IT, _P, _IRA, _S, _SCR, _CT, _EDIA, _DJI, _NAC, _IBE, _AAV, _AEc, _RVC, _LAAV],
|
|
1866
2020
|
[
|
|
1867
2021
|
0,
|
|
1868
2022
|
0,
|
|
@@ -1882,6 +2036,7 @@ var ImageBuilder = [
|
|
|
1882
2036
|
() => ResourceErrors,
|
|
1883
2037
|
0,
|
|
1884
2038
|
() => AccessEndpointList,
|
|
2039
|
+
() => VolumeConfig,
|
|
1885
2040
|
0,
|
|
1886
2041
|
],
|
|
1887
2042
|
];
|
|
@@ -1969,6 +2124,22 @@ var ListEntitledApplicationsResult = [
|
|
|
1969
2124
|
[_EAnt, _NT],
|
|
1970
2125
|
[() => EntitledApplicationList, 0],
|
|
1971
2126
|
];
|
|
2127
|
+
var ListExportImageTasksRequest = [
|
|
2128
|
+
3,
|
|
2129
|
+
n0,
|
|
2130
|
+
_LEITR,
|
|
2131
|
+
0,
|
|
2132
|
+
[_Fil, _MR, _NT],
|
|
2133
|
+
[() => Filters, 1, 0],
|
|
2134
|
+
];
|
|
2135
|
+
var ListExportImageTasksResult = [
|
|
2136
|
+
3,
|
|
2137
|
+
n0,
|
|
2138
|
+
_LEITRi,
|
|
2139
|
+
0,
|
|
2140
|
+
[_EITx, _NT],
|
|
2141
|
+
[() => ExportImageTasks, 0],
|
|
2142
|
+
];
|
|
1972
2143
|
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_RA], [0]];
|
|
1973
2144
|
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_T], [128 | 0]];
|
|
1974
2145
|
var NetworkAccessConfiguration = [3, n0, _NAC, 0, [_EPIA, _EIA, _EI], [0, 64 | 0, 0]];
|
|
@@ -2045,6 +2216,7 @@ var ResourceNotFoundException = [
|
|
|
2045
2216
|
[0],
|
|
2046
2217
|
];
|
|
2047
2218
|
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
|
|
2219
|
+
var RuntimeValidationConfig = [3, n0, _RVCu, 0, [_IIT], [0]];
|
|
2048
2220
|
var S3Location = [3, n0, _SL, 0, [_SB, _SK], [0, 0]];
|
|
2049
2221
|
var ScriptDetails = [
|
|
2050
2222
|
3,
|
|
@@ -2136,7 +2308,7 @@ var Theme = [
|
|
|
2136
2308
|
n0,
|
|
2137
2309
|
_Th,
|
|
2138
2310
|
0,
|
|
2139
|
-
[_SN, _S, _TTT,
|
|
2311
|
+
[_SN, _S, _TTT, _TSh, _TFL, _TOLURL, _TFURL, _CT],
|
|
2140
2312
|
[0, 0, 0, 0, () => ThemeFooterLinks, 0, 0, 4],
|
|
2141
2313
|
];
|
|
2142
2314
|
var ThemeFooterLink = [3, n0, _TFLh, 0, [_DN, _FLURL], [0, 0]];
|
|
@@ -2156,7 +2328,7 @@ var UpdateApplicationRequest = [
|
|
|
2156
2328
|
n0,
|
|
2157
2329
|
_UAR,
|
|
2158
2330
|
0,
|
|
2159
|
-
[_N, _DN, _D, _ISL,
|
|
2331
|
+
[_N, _DN, _D, _ISL, _LPa, _WD, _LP, _ABA, _ATD],
|
|
2160
2332
|
[0, 0, 0, () => S3Location, 0, 0, 0, 0, 64 | 0],
|
|
2161
2333
|
];
|
|
2162
2334
|
var UpdateApplicationResult = [3, n0, _UARp, 0, [_Ap], [() => Application]];
|
|
@@ -2206,6 +2378,7 @@ var UpdateFleetRequest = [
|
|
|
2206
2378
|
_UDFS,
|
|
2207
2379
|
_SSSL,
|
|
2208
2380
|
_MSPI,
|
|
2381
|
+
_RVC,
|
|
2209
2382
|
],
|
|
2210
2383
|
[
|
|
2211
2384
|
0,
|
|
@@ -2230,6 +2403,7 @@ var UpdateFleetRequest = [
|
|
|
2230
2403
|
64 | 0,
|
|
2231
2404
|
() => S3Location,
|
|
2232
2405
|
1,
|
|
2406
|
+
() => VolumeConfig,
|
|
2233
2407
|
],
|
|
2234
2408
|
];
|
|
2235
2409
|
var UpdateFleetResult = [3, n0, _UFRp, 0, [_F], [() => Fleet]];
|
|
@@ -2238,7 +2412,7 @@ var UpdateImagePermissionsRequest = [
|
|
|
2238
2412
|
n0,
|
|
2239
2413
|
_UIPR,
|
|
2240
2414
|
0,
|
|
2241
|
-
[_N,
|
|
2415
|
+
[_N, _SAIh, _IP],
|
|
2242
2416
|
[0, 0, () => ImagePermissions],
|
|
2243
2417
|
];
|
|
2244
2418
|
var UpdateImagePermissionsResult = [3, n0, _UIPRp, 0, [], []];
|
|
@@ -2270,7 +2444,7 @@ var UpdateThemeForStackRequest = [
|
|
|
2270
2444
|
n0,
|
|
2271
2445
|
_UTFSR,
|
|
2272
2446
|
0,
|
|
2273
|
-
[_SN, _FL, _TT,
|
|
2447
|
+
[_SN, _FL, _TT, _TSh, _OLSL, _FSL, _S, _ATD],
|
|
2274
2448
|
[0, () => ThemeFooterLinks, 0, 0, () => S3Location, () => S3Location, 0, 64 | 0],
|
|
2275
2449
|
];
|
|
2276
2450
|
var UpdateThemeForStackResult = [3, n0, _UTFSRp, 0, [_Th], [() => Theme]];
|
|
@@ -2307,6 +2481,7 @@ var UserStackAssociationError = [
|
|
|
2307
2481
|
[_USAs, _EC, _EM],
|
|
2308
2482
|
[[() => UserStackAssociation, 0], 0, 0],
|
|
2309
2483
|
];
|
|
2484
|
+
var VolumeConfig = [3, n0, _VCo, 0, [_VSIG], [1]];
|
|
2310
2485
|
var VpcConfig = [3, n0, _VC, 0, [_SIu, _SGI], [64 | 0, 64 | 0]];
|
|
2311
2486
|
var AppStreamServiceException = [-3, _s, "AppStreamServiceException", 0, [], []];
|
|
2312
2487
|
schema.TypeRegistry.for(_s).registerError(AppStreamServiceException, AppStreamServiceException$1);
|
|
@@ -2321,6 +2496,7 @@ var AppBlockBuilderAppBlockAssociationsList = [
|
|
|
2321
2496
|
];
|
|
2322
2497
|
var AppBlockBuilderList = [1, n0, _ABBL, 0, () => AppBlockBuilder];
|
|
2323
2498
|
var AppBlocks = [1, n0, _ABp, 0, () => AppBlock];
|
|
2499
|
+
var AppCatalogConfig = [1, n0, _ACC, 0, [() => ApplicationConfig, 0]];
|
|
2324
2500
|
var ApplicationFleetAssociationList = [1, n0, _AFAL, 0, () => ApplicationFleetAssociation];
|
|
2325
2501
|
var Applications = [1, n0, _App, 0, () => Application];
|
|
2326
2502
|
var DirectoryConfigList = [1, n0, _DCL, 0, [() => DirectoryConfig, 0]];
|
|
@@ -2328,6 +2504,8 @@ var EntitledApplicationList = [1, n0, _EAL, 0, () => EntitledApplication];
|
|
|
2328
2504
|
var EntitlementAttributeList = [1, n0, _EALn, 0, () => EntitlementAttribute];
|
|
2329
2505
|
var EntitlementList = [1, n0, _EL, 0, () => Entitlement];
|
|
2330
2506
|
var ErrorDetailsList = [1, n0, _EDL, 0, () => ErrorDetails];
|
|
2507
|
+
var ExportImageTasks = [1, n0, _EITx, 0, () => ExportImageTask];
|
|
2508
|
+
var Filters = [1, n0, _Fil, 0, () => Filter];
|
|
2331
2509
|
var FleetErrors = [1, n0, _FE, 0, () => FleetError];
|
|
2332
2510
|
var FleetList = [1, n0, _FLl, 0, () => Fleet];
|
|
2333
2511
|
var ImageBuilderList = [1, n0, _IBL, 0, () => ImageBuilder];
|
|
@@ -2457,6 +2635,14 @@ var CreateEntitlement = [
|
|
|
2457
2635
|
() => CreateEntitlementRequest,
|
|
2458
2636
|
() => CreateEntitlementResult,
|
|
2459
2637
|
];
|
|
2638
|
+
var CreateExportImageTask = [
|
|
2639
|
+
9,
|
|
2640
|
+
n0,
|
|
2641
|
+
_CEIT,
|
|
2642
|
+
0,
|
|
2643
|
+
() => CreateExportImageTaskRequest,
|
|
2644
|
+
() => CreateExportImageTaskResult,
|
|
2645
|
+
];
|
|
2460
2646
|
var CreateFleet = [9, n0, _CF, 0, () => CreateFleetRequest, () => CreateFleetResult];
|
|
2461
2647
|
var CreateImageBuilder = [
|
|
2462
2648
|
9,
|
|
@@ -2474,6 +2660,14 @@ var CreateImageBuilderStreamingURL = [
|
|
|
2474
2660
|
() => CreateImageBuilderStreamingURLRequest,
|
|
2475
2661
|
() => CreateImageBuilderStreamingURLResult,
|
|
2476
2662
|
];
|
|
2663
|
+
var CreateImportedImage = [
|
|
2664
|
+
9,
|
|
2665
|
+
n0,
|
|
2666
|
+
_CII,
|
|
2667
|
+
0,
|
|
2668
|
+
() => CreateImportedImageRequest,
|
|
2669
|
+
() => CreateImportedImageResult,
|
|
2670
|
+
];
|
|
2477
2671
|
var CreateStack = [9, n0, _CSr, 0, () => CreateStackRequest, () => CreateStackResult];
|
|
2478
2672
|
var CreateStreamingURL = [
|
|
2479
2673
|
9,
|
|
@@ -2786,6 +2980,14 @@ var ExpireSession = [
|
|
|
2786
2980
|
() => ExpireSessionRequest,
|
|
2787
2981
|
() => ExpireSessionResult,
|
|
2788
2982
|
];
|
|
2983
|
+
var GetExportImageTask = [
|
|
2984
|
+
9,
|
|
2985
|
+
n0,
|
|
2986
|
+
_GEIT,
|
|
2987
|
+
0,
|
|
2988
|
+
() => GetExportImageTaskRequest,
|
|
2989
|
+
() => GetExportImageTaskResult,
|
|
2990
|
+
];
|
|
2789
2991
|
var ListAssociatedFleets = [
|
|
2790
2992
|
9,
|
|
2791
2993
|
n0,
|
|
@@ -2810,6 +3012,14 @@ var ListEntitledApplications = [
|
|
|
2810
3012
|
() => ListEntitledApplicationsRequest,
|
|
2811
3013
|
() => ListEntitledApplicationsResult,
|
|
2812
3014
|
];
|
|
3015
|
+
var ListExportImageTasks = [
|
|
3016
|
+
9,
|
|
3017
|
+
n0,
|
|
3018
|
+
_LEIT,
|
|
3019
|
+
0,
|
|
3020
|
+
() => ListExportImageTasksRequest,
|
|
3021
|
+
() => ListExportImageTasksResult,
|
|
3022
|
+
];
|
|
2813
3023
|
var ListTagsForResource = [
|
|
2814
3024
|
9,
|
|
2815
3025
|
n0,
|
|
@@ -3088,6 +3298,18 @@ class CreateEntitlementCommand extends smithyClient.Command
|
|
|
3088
3298
|
.build() {
|
|
3089
3299
|
}
|
|
3090
3300
|
|
|
3301
|
+
class CreateExportImageTaskCommand extends smithyClient.Command
|
|
3302
|
+
.classBuilder()
|
|
3303
|
+
.ep(commonParams)
|
|
3304
|
+
.m(function (Command, cs, config, o) {
|
|
3305
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3306
|
+
})
|
|
3307
|
+
.s("PhotonAdminProxyService", "CreateExportImageTask", {})
|
|
3308
|
+
.n("AppStreamClient", "CreateExportImageTaskCommand")
|
|
3309
|
+
.sc(CreateExportImageTask)
|
|
3310
|
+
.build() {
|
|
3311
|
+
}
|
|
3312
|
+
|
|
3091
3313
|
class CreateFleetCommand extends smithyClient.Command
|
|
3092
3314
|
.classBuilder()
|
|
3093
3315
|
.ep(commonParams)
|
|
@@ -3124,6 +3346,18 @@ class CreateImageBuilderStreamingURLCommand extends smithyClient.Command
|
|
|
3124
3346
|
.build() {
|
|
3125
3347
|
}
|
|
3126
3348
|
|
|
3349
|
+
class CreateImportedImageCommand extends smithyClient.Command
|
|
3350
|
+
.classBuilder()
|
|
3351
|
+
.ep(commonParams)
|
|
3352
|
+
.m(function (Command, cs, config, o) {
|
|
3353
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3354
|
+
})
|
|
3355
|
+
.s("PhotonAdminProxyService", "CreateImportedImage", {})
|
|
3356
|
+
.n("AppStreamClient", "CreateImportedImageCommand")
|
|
3357
|
+
.sc(CreateImportedImage)
|
|
3358
|
+
.build() {
|
|
3359
|
+
}
|
|
3360
|
+
|
|
3127
3361
|
class CreateStackCommand extends smithyClient.Command
|
|
3128
3362
|
.classBuilder()
|
|
3129
3363
|
.ep(commonParams)
|
|
@@ -3676,6 +3910,18 @@ class ExpireSessionCommand extends smithyClient.Command
|
|
|
3676
3910
|
.build() {
|
|
3677
3911
|
}
|
|
3678
3912
|
|
|
3913
|
+
class GetExportImageTaskCommand extends smithyClient.Command
|
|
3914
|
+
.classBuilder()
|
|
3915
|
+
.ep(commonParams)
|
|
3916
|
+
.m(function (Command, cs, config, o) {
|
|
3917
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3918
|
+
})
|
|
3919
|
+
.s("PhotonAdminProxyService", "GetExportImageTask", {})
|
|
3920
|
+
.n("AppStreamClient", "GetExportImageTaskCommand")
|
|
3921
|
+
.sc(GetExportImageTask)
|
|
3922
|
+
.build() {
|
|
3923
|
+
}
|
|
3924
|
+
|
|
3679
3925
|
class ListAssociatedFleetsCommand extends smithyClient.Command
|
|
3680
3926
|
.classBuilder()
|
|
3681
3927
|
.ep(commonParams)
|
|
@@ -3712,6 +3958,18 @@ class ListEntitledApplicationsCommand extends smithyClient.Command
|
|
|
3712
3958
|
.build() {
|
|
3713
3959
|
}
|
|
3714
3960
|
|
|
3961
|
+
class ListExportImageTasksCommand extends smithyClient.Command
|
|
3962
|
+
.classBuilder()
|
|
3963
|
+
.ep(commonParams)
|
|
3964
|
+
.m(function (Command, cs, config, o) {
|
|
3965
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
3966
|
+
})
|
|
3967
|
+
.s("PhotonAdminProxyService", "ListExportImageTasks", {})
|
|
3968
|
+
.n("AppStreamClient", "ListExportImageTasksCommand")
|
|
3969
|
+
.sc(ListExportImageTasks)
|
|
3970
|
+
.build() {
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3715
3973
|
class ListTagsForResourceCommand extends smithyClient.Command
|
|
3716
3974
|
.classBuilder()
|
|
3717
3975
|
.ep(commonParams)
|
|
@@ -3943,9 +4201,11 @@ const commands = {
|
|
|
3943
4201
|
CreateApplicationCommand,
|
|
3944
4202
|
CreateDirectoryConfigCommand,
|
|
3945
4203
|
CreateEntitlementCommand,
|
|
4204
|
+
CreateExportImageTaskCommand,
|
|
3946
4205
|
CreateFleetCommand,
|
|
3947
4206
|
CreateImageBuilderCommand,
|
|
3948
4207
|
CreateImageBuilderStreamingURLCommand,
|
|
4208
|
+
CreateImportedImageCommand,
|
|
3949
4209
|
CreateStackCommand,
|
|
3950
4210
|
CreateStreamingURLCommand,
|
|
3951
4211
|
CreateThemeForStackCommand,
|
|
@@ -3992,9 +4252,11 @@ const commands = {
|
|
|
3992
4252
|
DisassociateSoftwareFromImageBuilderCommand,
|
|
3993
4253
|
EnableUserCommand,
|
|
3994
4254
|
ExpireSessionCommand,
|
|
4255
|
+
GetExportImageTaskCommand,
|
|
3995
4256
|
ListAssociatedFleetsCommand,
|
|
3996
4257
|
ListAssociatedStacksCommand,
|
|
3997
4258
|
ListEntitledApplicationsCommand,
|
|
4259
|
+
ListExportImageTasksCommand,
|
|
3998
4260
|
ListTagsForResourceCommand,
|
|
3999
4261
|
StartAppBlockBuilderCommand,
|
|
4000
4262
|
StartFleetCommand,
|
|
@@ -4172,6 +4434,7 @@ Object.defineProperty(exports, "__Client", {
|
|
|
4172
4434
|
});
|
|
4173
4435
|
exports.AccessEndpointType = AccessEndpointType;
|
|
4174
4436
|
exports.Action = Action;
|
|
4437
|
+
exports.AgentSoftwareVersion = AgentSoftwareVersion;
|
|
4175
4438
|
exports.AppBlockBuilderAttribute = AppBlockBuilderAttribute;
|
|
4176
4439
|
exports.AppBlockBuilderPlatformType = AppBlockBuilderPlatformType;
|
|
4177
4440
|
exports.AppBlockBuilderState = AppBlockBuilderState;
|
|
@@ -4199,9 +4462,11 @@ exports.CreateAppBlockCommand = CreateAppBlockCommand;
|
|
|
4199
4462
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
4200
4463
|
exports.CreateDirectoryConfigCommand = CreateDirectoryConfigCommand;
|
|
4201
4464
|
exports.CreateEntitlementCommand = CreateEntitlementCommand;
|
|
4465
|
+
exports.CreateExportImageTaskCommand = CreateExportImageTaskCommand;
|
|
4202
4466
|
exports.CreateFleetCommand = CreateFleetCommand;
|
|
4203
4467
|
exports.CreateImageBuilderCommand = CreateImageBuilderCommand;
|
|
4204
4468
|
exports.CreateImageBuilderStreamingURLCommand = CreateImageBuilderStreamingURLCommand;
|
|
4469
|
+
exports.CreateImportedImageCommand = CreateImportedImageCommand;
|
|
4205
4470
|
exports.CreateStackCommand = CreateStackCommand;
|
|
4206
4471
|
exports.CreateStreamingURLCommand = CreateStreamingURLCommand;
|
|
4207
4472
|
exports.CreateThemeForStackCommand = CreateThemeForStackCommand;
|
|
@@ -4246,20 +4511,24 @@ exports.DisassociateApplicationFleetCommand = DisassociateApplicationFleetComman
|
|
|
4246
4511
|
exports.DisassociateApplicationFromEntitlementCommand = DisassociateApplicationFromEntitlementCommand;
|
|
4247
4512
|
exports.DisassociateFleetCommand = DisassociateFleetCommand;
|
|
4248
4513
|
exports.DisassociateSoftwareFromImageBuilderCommand = DisassociateSoftwareFromImageBuilderCommand;
|
|
4514
|
+
exports.DryRunOperationException = DryRunOperationException$1;
|
|
4249
4515
|
exports.DynamicAppProvidersEnabled = DynamicAppProvidersEnabled;
|
|
4250
4516
|
exports.EnableUserCommand = EnableUserCommand;
|
|
4251
4517
|
exports.EntitlementAlreadyExistsException = EntitlementAlreadyExistsException$1;
|
|
4252
4518
|
exports.EntitlementNotFoundException = EntitlementNotFoundException$1;
|
|
4253
4519
|
exports.ExpireSessionCommand = ExpireSessionCommand;
|
|
4520
|
+
exports.ExportImageTaskState = ExportImageTaskState;
|
|
4254
4521
|
exports.FleetAttribute = FleetAttribute;
|
|
4255
4522
|
exports.FleetErrorCode = FleetErrorCode;
|
|
4256
4523
|
exports.FleetState = FleetState;
|
|
4257
4524
|
exports.FleetType = FleetType;
|
|
4525
|
+
exports.GetExportImageTaskCommand = GetExportImageTaskCommand;
|
|
4258
4526
|
exports.ImageBuilderState = ImageBuilderState;
|
|
4259
4527
|
exports.ImageBuilderStateChangeReasonCode = ImageBuilderStateChangeReasonCode;
|
|
4260
4528
|
exports.ImageSharedWithOthers = ImageSharedWithOthers;
|
|
4261
4529
|
exports.ImageState = ImageState;
|
|
4262
4530
|
exports.ImageStateChangeReasonCode = ImageStateChangeReasonCode;
|
|
4531
|
+
exports.ImageType = ImageType;
|
|
4263
4532
|
exports.IncompatibleImageException = IncompatibleImageException$1;
|
|
4264
4533
|
exports.InvalidAccountStatusException = InvalidAccountStatusException$1;
|
|
4265
4534
|
exports.InvalidParameterCombinationException = InvalidParameterCombinationException$1;
|
|
@@ -4269,6 +4538,7 @@ exports.LimitExceededException = LimitExceededException$1;
|
|
|
4269
4538
|
exports.ListAssociatedFleetsCommand = ListAssociatedFleetsCommand;
|
|
4270
4539
|
exports.ListAssociatedStacksCommand = ListAssociatedStacksCommand;
|
|
4271
4540
|
exports.ListEntitledApplicationsCommand = ListEntitledApplicationsCommand;
|
|
4541
|
+
exports.ListExportImageTasksCommand = ListExportImageTasksCommand;
|
|
4272
4542
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4273
4543
|
exports.MessageAction = MessageAction;
|
|
4274
4544
|
exports.OperationNotPermittedException = OperationNotPermittedException$1;
|