@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
|
@@ -29,6 +29,12 @@ export interface AdminAppLicenseUsageRecord {
|
|
|
29
29
|
LicenseType: string | undefined;
|
|
30
30
|
UserId: string | undefined;
|
|
31
31
|
}
|
|
32
|
+
export declare const AgentSoftwareVersion: {
|
|
33
|
+
readonly ALWAYS_LATEST: "ALWAYS_LATEST";
|
|
34
|
+
readonly CURRENT_LATEST: "CURRENT_LATEST";
|
|
35
|
+
};
|
|
36
|
+
export type AgentSoftwareVersion =
|
|
37
|
+
(typeof AgentSoftwareVersion)[keyof typeof AgentSoftwareVersion];
|
|
32
38
|
export interface ErrorDetails {
|
|
33
39
|
ErrorCode?: string | undefined;
|
|
34
40
|
ErrorMessage?: string | undefined;
|
|
@@ -97,6 +103,7 @@ export declare const FleetErrorCode: {
|
|
|
97
103
|
readonly STS_DISABLED_IN_REGION: "STS_DISABLED_IN_REGION";
|
|
98
104
|
readonly SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES: "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES";
|
|
99
105
|
readonly SUBNET_NOT_FOUND: "SUBNET_NOT_FOUND";
|
|
106
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
100
107
|
};
|
|
101
108
|
export type FleetErrorCode =
|
|
102
109
|
(typeof FleetErrorCode)[keyof typeof FleetErrorCode];
|
|
@@ -158,6 +165,15 @@ export declare const AppBlockBuilderAttribute: {
|
|
|
158
165
|
};
|
|
159
166
|
export type AppBlockBuilderAttribute =
|
|
160
167
|
(typeof AppBlockBuilderAttribute)[keyof typeof AppBlockBuilderAttribute];
|
|
168
|
+
export interface ApplicationConfig {
|
|
169
|
+
Name: string | undefined;
|
|
170
|
+
DisplayName?: string | undefined;
|
|
171
|
+
AbsoluteAppPath: string | undefined;
|
|
172
|
+
AbsoluteIconPath?: string | undefined;
|
|
173
|
+
AbsoluteManifestPath?: string | undefined;
|
|
174
|
+
WorkingDirectory?: string | undefined;
|
|
175
|
+
LaunchParameters?: string | undefined;
|
|
176
|
+
}
|
|
161
177
|
export declare const PlatformType: {
|
|
162
178
|
readonly AMAZON_LINUX2: "AMAZON_LINUX2";
|
|
163
179
|
readonly RHEL8: "RHEL8";
|
|
@@ -522,6 +538,34 @@ export declare class EntitlementAlreadyExistsException extends __BaseException {
|
|
|
522
538
|
>
|
|
523
539
|
);
|
|
524
540
|
}
|
|
541
|
+
export interface CreateExportImageTaskRequest {
|
|
542
|
+
ImageName: string | undefined;
|
|
543
|
+
AmiName: string | undefined;
|
|
544
|
+
IamRoleArn: string | undefined;
|
|
545
|
+
TagSpecifications?: Record<string, string> | undefined;
|
|
546
|
+
AmiDescription?: string | undefined;
|
|
547
|
+
}
|
|
548
|
+
export declare const ExportImageTaskState: {
|
|
549
|
+
readonly COMPLETED: "COMPLETED";
|
|
550
|
+
readonly EXPORTING: "EXPORTING";
|
|
551
|
+
readonly FAILED: "FAILED";
|
|
552
|
+
};
|
|
553
|
+
export type ExportImageTaskState =
|
|
554
|
+
(typeof ExportImageTaskState)[keyof typeof ExportImageTaskState];
|
|
555
|
+
export interface ExportImageTask {
|
|
556
|
+
TaskId: string | undefined;
|
|
557
|
+
ImageArn: string | undefined;
|
|
558
|
+
AmiName: string | undefined;
|
|
559
|
+
CreatedDate: Date | undefined;
|
|
560
|
+
AmiDescription?: string | undefined;
|
|
561
|
+
State?: ExportImageTaskState | undefined;
|
|
562
|
+
AmiId?: string | undefined;
|
|
563
|
+
TagSpecifications?: Record<string, string> | undefined;
|
|
564
|
+
ErrorDetails?: ErrorDetails[] | undefined;
|
|
565
|
+
}
|
|
566
|
+
export interface CreateExportImageTaskResult {
|
|
567
|
+
ExportImageTask?: ExportImageTask | undefined;
|
|
568
|
+
}
|
|
525
569
|
export interface DomainJoinInfo {
|
|
526
570
|
DirectoryName?: string | undefined;
|
|
527
571
|
OrganizationalUnitDistinguishedName?: string | undefined;
|
|
@@ -532,6 +576,9 @@ export declare const FleetType: {
|
|
|
532
576
|
readonly ON_DEMAND: "ON_DEMAND";
|
|
533
577
|
};
|
|
534
578
|
export type FleetType = (typeof FleetType)[keyof typeof FleetType];
|
|
579
|
+
export interface VolumeConfig {
|
|
580
|
+
VolumeSizeInGb?: number | undefined;
|
|
581
|
+
}
|
|
535
582
|
export declare const StreamView: {
|
|
536
583
|
readonly APP: "APP";
|
|
537
584
|
readonly DESKTOP: "DESKTOP";
|
|
@@ -560,6 +607,7 @@ export interface CreateFleetRequest {
|
|
|
560
607
|
UsbDeviceFilterStrings?: string[] | undefined;
|
|
561
608
|
SessionScriptS3Location?: S3Location | undefined;
|
|
562
609
|
MaxSessionsPerInstance?: number | undefined;
|
|
610
|
+
RootVolumeConfig?: VolumeConfig | undefined;
|
|
563
611
|
}
|
|
564
612
|
export interface FleetError {
|
|
565
613
|
ErrorCode?: FleetErrorCode | undefined;
|
|
@@ -598,6 +646,7 @@ export interface Fleet {
|
|
|
598
646
|
UsbDeviceFilterStrings?: string[] | undefined;
|
|
599
647
|
SessionScriptS3Location?: S3Location | undefined;
|
|
600
648
|
MaxSessionsPerInstance?: number | undefined;
|
|
649
|
+
RootVolumeConfig?: VolumeConfig | undefined;
|
|
601
650
|
}
|
|
602
651
|
export interface CreateFleetResult {
|
|
603
652
|
Fleet?: Fleet | undefined;
|
|
@@ -616,6 +665,7 @@ export interface CreateImageBuilderRequest {
|
|
|
616
665
|
AppstreamAgentVersion?: string | undefined;
|
|
617
666
|
Tags?: Record<string, string> | undefined;
|
|
618
667
|
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
668
|
+
RootVolumeConfig?: VolumeConfig | undefined;
|
|
619
669
|
SoftwaresToInstall?: string[] | undefined;
|
|
620
670
|
SoftwaresToUninstall?: string[] | undefined;
|
|
621
671
|
}
|
|
@@ -634,6 +684,7 @@ export declare const ImageBuilderState: {
|
|
|
634
684
|
readonly DELETING: "DELETING";
|
|
635
685
|
readonly FAILED: "FAILED";
|
|
636
686
|
readonly PENDING: "PENDING";
|
|
687
|
+
readonly PENDING_IMAGE_IMPORT: "PENDING_IMAGE_IMPORT";
|
|
637
688
|
readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
|
|
638
689
|
readonly PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS";
|
|
639
690
|
readonly REBOOTING: "REBOOTING";
|
|
@@ -676,6 +727,7 @@ export interface ImageBuilder {
|
|
|
676
727
|
ImageBuilderErrors?: ResourceError[] | undefined;
|
|
677
728
|
AppstreamAgentVersion?: string | undefined;
|
|
678
729
|
AccessEndpoints?: AccessEndpoint[] | undefined;
|
|
730
|
+
RootVolumeConfig?: VolumeConfig | undefined;
|
|
679
731
|
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
|
|
680
732
|
}
|
|
681
733
|
export interface CreateImageBuilderResult {
|
|
@@ -689,6 +741,109 @@ export interface CreateImageBuilderStreamingURLResult {
|
|
|
689
741
|
StreamingURL?: string | undefined;
|
|
690
742
|
Expires?: Date | undefined;
|
|
691
743
|
}
|
|
744
|
+
export interface RuntimeValidationConfig {
|
|
745
|
+
IntendedInstanceType?: string | undefined;
|
|
746
|
+
}
|
|
747
|
+
export interface CreateImportedImageRequest {
|
|
748
|
+
Name: string | undefined;
|
|
749
|
+
SourceAmiId: string | undefined;
|
|
750
|
+
IamRoleArn: string | undefined;
|
|
751
|
+
Description?: string | undefined;
|
|
752
|
+
DisplayName?: string | undefined;
|
|
753
|
+
Tags?: Record<string, string> | undefined;
|
|
754
|
+
RuntimeValidationConfig?: RuntimeValidationConfig | undefined;
|
|
755
|
+
AgentSoftwareVersion?: AgentSoftwareVersion | undefined;
|
|
756
|
+
AppCatalogConfig?: ApplicationConfig[] | undefined;
|
|
757
|
+
DryRun?: boolean | undefined;
|
|
758
|
+
}
|
|
759
|
+
export declare const DynamicAppProvidersEnabled: {
|
|
760
|
+
readonly DISABLED: "DISABLED";
|
|
761
|
+
readonly ENABLED: "ENABLED";
|
|
762
|
+
};
|
|
763
|
+
export type DynamicAppProvidersEnabled =
|
|
764
|
+
(typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
|
|
765
|
+
export interface ImagePermissions {
|
|
766
|
+
allowFleet?: boolean | undefined;
|
|
767
|
+
allowImageBuilder?: boolean | undefined;
|
|
768
|
+
}
|
|
769
|
+
export declare const ImageSharedWithOthers: {
|
|
770
|
+
readonly FALSE: "FALSE";
|
|
771
|
+
readonly TRUE: "TRUE";
|
|
772
|
+
};
|
|
773
|
+
export type ImageSharedWithOthers =
|
|
774
|
+
(typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
|
|
775
|
+
export declare const ImageType: {
|
|
776
|
+
readonly CUSTOM: "CUSTOM";
|
|
777
|
+
readonly NATIVE: "NATIVE";
|
|
778
|
+
};
|
|
779
|
+
export type ImageType = (typeof ImageType)[keyof typeof ImageType];
|
|
780
|
+
export declare const ImageState: {
|
|
781
|
+
readonly AVAILABLE: "AVAILABLE";
|
|
782
|
+
readonly COPYING: "COPYING";
|
|
783
|
+
readonly CREATING: "CREATING";
|
|
784
|
+
readonly DELETING: "DELETING";
|
|
785
|
+
readonly FAILED: "FAILED";
|
|
786
|
+
readonly IMPORTING: "IMPORTING";
|
|
787
|
+
readonly PENDING: "PENDING";
|
|
788
|
+
readonly VALIDATING: "VALIDATING";
|
|
789
|
+
};
|
|
790
|
+
export type ImageState = (typeof ImageState)[keyof typeof ImageState];
|
|
791
|
+
export declare const ImageStateChangeReasonCode: {
|
|
792
|
+
readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
|
|
793
|
+
readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
|
|
794
|
+
readonly IMAGE_IMPORT_FAILURE: "IMAGE_IMPORT_FAILURE";
|
|
795
|
+
readonly IMAGE_UPDATE_FAILURE: "IMAGE_UPDATE_FAILURE";
|
|
796
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
797
|
+
};
|
|
798
|
+
export type ImageStateChangeReasonCode =
|
|
799
|
+
(typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
|
|
800
|
+
export interface ImageStateChangeReason {
|
|
801
|
+
Code?: ImageStateChangeReasonCode | undefined;
|
|
802
|
+
Message?: string | undefined;
|
|
803
|
+
}
|
|
804
|
+
export declare const VisibilityType: {
|
|
805
|
+
readonly PRIVATE: "PRIVATE";
|
|
806
|
+
readonly PUBLIC: "PUBLIC";
|
|
807
|
+
readonly SHARED: "SHARED";
|
|
808
|
+
};
|
|
809
|
+
export type VisibilityType =
|
|
810
|
+
(typeof VisibilityType)[keyof typeof VisibilityType];
|
|
811
|
+
export interface Image {
|
|
812
|
+
Name: string | undefined;
|
|
813
|
+
Arn?: string | undefined;
|
|
814
|
+
BaseImageArn?: string | undefined;
|
|
815
|
+
DisplayName?: string | undefined;
|
|
816
|
+
State?: ImageState | undefined;
|
|
817
|
+
Visibility?: VisibilityType | undefined;
|
|
818
|
+
ImageBuilderSupported?: boolean | undefined;
|
|
819
|
+
ImageBuilderName?: string | undefined;
|
|
820
|
+
Platform?: PlatformType | undefined;
|
|
821
|
+
Description?: string | undefined;
|
|
822
|
+
StateChangeReason?: ImageStateChangeReason | undefined;
|
|
823
|
+
Applications?: Application[] | undefined;
|
|
824
|
+
CreatedTime?: Date | undefined;
|
|
825
|
+
PublicBaseImageReleasedDate?: Date | undefined;
|
|
826
|
+
AppstreamAgentVersion?: string | undefined;
|
|
827
|
+
ImagePermissions?: ImagePermissions | undefined;
|
|
828
|
+
ImageErrors?: ResourceError[] | undefined;
|
|
829
|
+
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
|
|
830
|
+
SupportedInstanceFamilies?: string[] | undefined;
|
|
831
|
+
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled | undefined;
|
|
832
|
+
ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
|
|
833
|
+
ManagedSoftwareIncluded?: boolean | undefined;
|
|
834
|
+
ImageType?: ImageType | undefined;
|
|
835
|
+
}
|
|
836
|
+
export interface CreateImportedImageResult {
|
|
837
|
+
Image?: Image | undefined;
|
|
838
|
+
}
|
|
839
|
+
export declare class DryRunOperationException extends __BaseException {
|
|
840
|
+
readonly name: "DryRunOperationException";
|
|
841
|
+
readonly $fault: "client";
|
|
842
|
+
Message?: string | undefined;
|
|
843
|
+
constructor(
|
|
844
|
+
opts: __ExceptionOptionType<DryRunOperationException, __BaseException>
|
|
845
|
+
);
|
|
846
|
+
}
|
|
692
847
|
export declare const StorageConnectorType: {
|
|
693
848
|
readonly GOOGLE_DRIVE: "GOOGLE_DRIVE";
|
|
694
849
|
readonly HOMEFOLDERS: "HOMEFOLDERS";
|
|
@@ -821,74 +976,6 @@ export interface CreateUpdatedImageRequest {
|
|
|
821
976
|
newImageTags?: Record<string, string> | undefined;
|
|
822
977
|
dryRun?: boolean | undefined;
|
|
823
978
|
}
|
|
824
|
-
export declare const DynamicAppProvidersEnabled: {
|
|
825
|
-
readonly DISABLED: "DISABLED";
|
|
826
|
-
readonly ENABLED: "ENABLED";
|
|
827
|
-
};
|
|
828
|
-
export type DynamicAppProvidersEnabled =
|
|
829
|
-
(typeof DynamicAppProvidersEnabled)[keyof typeof DynamicAppProvidersEnabled];
|
|
830
|
-
export interface ImagePermissions {
|
|
831
|
-
allowFleet?: boolean | undefined;
|
|
832
|
-
allowImageBuilder?: boolean | undefined;
|
|
833
|
-
}
|
|
834
|
-
export declare const ImageSharedWithOthers: {
|
|
835
|
-
readonly FALSE: "FALSE";
|
|
836
|
-
readonly TRUE: "TRUE";
|
|
837
|
-
};
|
|
838
|
-
export type ImageSharedWithOthers =
|
|
839
|
-
(typeof ImageSharedWithOthers)[keyof typeof ImageSharedWithOthers];
|
|
840
|
-
export declare const ImageState: {
|
|
841
|
-
readonly AVAILABLE: "AVAILABLE";
|
|
842
|
-
readonly COPYING: "COPYING";
|
|
843
|
-
readonly CREATING: "CREATING";
|
|
844
|
-
readonly DELETING: "DELETING";
|
|
845
|
-
readonly FAILED: "FAILED";
|
|
846
|
-
readonly IMPORTING: "IMPORTING";
|
|
847
|
-
readonly PENDING: "PENDING";
|
|
848
|
-
};
|
|
849
|
-
export type ImageState = (typeof ImageState)[keyof typeof ImageState];
|
|
850
|
-
export declare const ImageStateChangeReasonCode: {
|
|
851
|
-
readonly IMAGE_BUILDER_NOT_AVAILABLE: "IMAGE_BUILDER_NOT_AVAILABLE";
|
|
852
|
-
readonly IMAGE_COPY_FAILURE: "IMAGE_COPY_FAILURE";
|
|
853
|
-
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
854
|
-
};
|
|
855
|
-
export type ImageStateChangeReasonCode =
|
|
856
|
-
(typeof ImageStateChangeReasonCode)[keyof typeof ImageStateChangeReasonCode];
|
|
857
|
-
export interface ImageStateChangeReason {
|
|
858
|
-
Code?: ImageStateChangeReasonCode | undefined;
|
|
859
|
-
Message?: string | undefined;
|
|
860
|
-
}
|
|
861
|
-
export declare const VisibilityType: {
|
|
862
|
-
readonly PRIVATE: "PRIVATE";
|
|
863
|
-
readonly PUBLIC: "PUBLIC";
|
|
864
|
-
readonly SHARED: "SHARED";
|
|
865
|
-
};
|
|
866
|
-
export type VisibilityType =
|
|
867
|
-
(typeof VisibilityType)[keyof typeof VisibilityType];
|
|
868
|
-
export interface Image {
|
|
869
|
-
Name: string | undefined;
|
|
870
|
-
Arn?: string | undefined;
|
|
871
|
-
BaseImageArn?: string | undefined;
|
|
872
|
-
DisplayName?: string | undefined;
|
|
873
|
-
State?: ImageState | undefined;
|
|
874
|
-
Visibility?: VisibilityType | undefined;
|
|
875
|
-
ImageBuilderSupported?: boolean | undefined;
|
|
876
|
-
ImageBuilderName?: string | undefined;
|
|
877
|
-
Platform?: PlatformType | undefined;
|
|
878
|
-
Description?: string | undefined;
|
|
879
|
-
StateChangeReason?: ImageStateChangeReason | undefined;
|
|
880
|
-
Applications?: Application[] | undefined;
|
|
881
|
-
CreatedTime?: Date | undefined;
|
|
882
|
-
PublicBaseImageReleasedDate?: Date | undefined;
|
|
883
|
-
AppstreamAgentVersion?: string | undefined;
|
|
884
|
-
ImagePermissions?: ImagePermissions | undefined;
|
|
885
|
-
ImageErrors?: ResourceError[] | undefined;
|
|
886
|
-
LatestAppstreamAgentVersion?: LatestAppstreamAgentVersion | undefined;
|
|
887
|
-
SupportedInstanceFamilies?: string[] | undefined;
|
|
888
|
-
DynamicAppProvidersEnabled?: DynamicAppProvidersEnabled | undefined;
|
|
889
|
-
ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
|
|
890
|
-
ManagedSoftwareIncluded?: boolean | undefined;
|
|
891
|
-
}
|
|
892
979
|
export interface CreateUpdatedImageResult {
|
|
893
980
|
image?: Image | undefined;
|
|
894
981
|
canUpdateImage?: boolean | undefined;
|
|
@@ -1277,17 +1364,28 @@ export interface ExpireSessionRequest {
|
|
|
1277
1364
|
SessionId: string | undefined;
|
|
1278
1365
|
}
|
|
1279
1366
|
export interface ExpireSessionResult {}
|
|
1367
|
+
export interface Filter {
|
|
1368
|
+
Name: string | undefined;
|
|
1369
|
+
Values: string[] | undefined;
|
|
1370
|
+
}
|
|
1280
1371
|
export declare const FleetAttribute: {
|
|
1281
1372
|
readonly DOMAIN_JOIN_INFO: "DOMAIN_JOIN_INFO";
|
|
1282
1373
|
readonly IAM_ROLE_ARN: "IAM_ROLE_ARN";
|
|
1283
1374
|
readonly MAX_SESSIONS_PER_INSTANCE: "MAX_SESSIONS_PER_INSTANCE";
|
|
1284
1375
|
readonly SESSION_SCRIPT_S3_LOCATION: "SESSION_SCRIPT_S3_LOCATION";
|
|
1285
1376
|
readonly USB_DEVICE_FILTER_STRINGS: "USB_DEVICE_FILTER_STRINGS";
|
|
1377
|
+
readonly VOLUME_CONFIGURATION: "VOLUME_CONFIGURATION";
|
|
1286
1378
|
readonly VPC_CONFIGURATION: "VPC_CONFIGURATION";
|
|
1287
1379
|
readonly VPC_CONFIGURATION_SECURITY_GROUP_IDS: "VPC_CONFIGURATION_SECURITY_GROUP_IDS";
|
|
1288
1380
|
};
|
|
1289
1381
|
export type FleetAttribute =
|
|
1290
1382
|
(typeof FleetAttribute)[keyof typeof FleetAttribute];
|
|
1383
|
+
export interface GetExportImageTaskRequest {
|
|
1384
|
+
TaskId?: string | undefined;
|
|
1385
|
+
}
|
|
1386
|
+
export interface GetExportImageTaskResult {
|
|
1387
|
+
ExportImageTask?: ExportImageTask | undefined;
|
|
1388
|
+
}
|
|
1291
1389
|
export interface ListAssociatedFleetsRequest {
|
|
1292
1390
|
StackName: string | undefined;
|
|
1293
1391
|
NextToken?: string | undefined;
|
|
@@ -1314,6 +1412,15 @@ export interface ListEntitledApplicationsResult {
|
|
|
1314
1412
|
EntitledApplications?: EntitledApplication[] | undefined;
|
|
1315
1413
|
NextToken?: string | undefined;
|
|
1316
1414
|
}
|
|
1415
|
+
export interface ListExportImageTasksRequest {
|
|
1416
|
+
Filters?: Filter[] | undefined;
|
|
1417
|
+
MaxResults?: number | undefined;
|
|
1418
|
+
NextToken?: string | undefined;
|
|
1419
|
+
}
|
|
1420
|
+
export interface ListExportImageTasksResult {
|
|
1421
|
+
ExportImageTasks?: ExportImageTask[] | undefined;
|
|
1422
|
+
NextToken?: string | undefined;
|
|
1423
|
+
}
|
|
1317
1424
|
export interface ListTagsForResourceRequest {
|
|
1318
1425
|
ResourceArn: string | undefined;
|
|
1319
1426
|
}
|
|
@@ -1439,6 +1546,7 @@ export interface UpdateFleetRequest {
|
|
|
1439
1546
|
UsbDeviceFilterStrings?: string[] | undefined;
|
|
1440
1547
|
SessionScriptS3Location?: S3Location | undefined;
|
|
1441
1548
|
MaxSessionsPerInstance?: number | undefined;
|
|
1549
|
+
RootVolumeConfig?: VolumeConfig | undefined;
|
|
1442
1550
|
}
|
|
1443
1551
|
export interface UpdateFleetResult {
|
|
1444
1552
|
Fleet?: Fleet | undefined;
|
|
@@ -7,6 +7,8 @@ import {
|
|
|
7
7
|
} from "@smithy/types";
|
|
8
8
|
export declare var AccountName: StaticSimpleSchema;
|
|
9
9
|
export declare var AccountPassword: StaticSimpleSchema;
|
|
10
|
+
export declare var FilePath: StaticSimpleSchema;
|
|
11
|
+
export declare var LaunchParameters: StaticSimpleSchema;
|
|
10
12
|
export declare var UserAttributeValue: StaticSimpleSchema;
|
|
11
13
|
export declare var Username: StaticSimpleSchema;
|
|
12
14
|
export declare var AccessEndpoint: StaticStructureSchema;
|
|
@@ -16,6 +18,7 @@ export declare var AppBlockBuilder: StaticStructureSchema;
|
|
|
16
18
|
export declare var AppBlockBuilderAppBlockAssociation: StaticStructureSchema;
|
|
17
19
|
export declare var AppBlockBuilderStateChangeReason: StaticStructureSchema;
|
|
18
20
|
export declare var Application: StaticStructureSchema;
|
|
21
|
+
export declare var ApplicationConfig: StaticStructureSchema;
|
|
19
22
|
export declare var ApplicationFleetAssociation: StaticStructureSchema;
|
|
20
23
|
export declare var ApplicationSettings: StaticStructureSchema;
|
|
21
24
|
export declare var ApplicationSettingsResponse: StaticStructureSchema;
|
|
@@ -51,12 +54,16 @@ export declare var CreateDirectoryConfigRequest: StaticStructureSchema;
|
|
|
51
54
|
export declare var CreateDirectoryConfigResult: StaticStructureSchema;
|
|
52
55
|
export declare var CreateEntitlementRequest: StaticStructureSchema;
|
|
53
56
|
export declare var CreateEntitlementResult: StaticStructureSchema;
|
|
57
|
+
export declare var CreateExportImageTaskRequest: StaticStructureSchema;
|
|
58
|
+
export declare var CreateExportImageTaskResult: StaticStructureSchema;
|
|
54
59
|
export declare var CreateFleetRequest: StaticStructureSchema;
|
|
55
60
|
export declare var CreateFleetResult: StaticStructureSchema;
|
|
56
61
|
export declare var CreateImageBuilderRequest: StaticStructureSchema;
|
|
57
62
|
export declare var CreateImageBuilderResult: StaticStructureSchema;
|
|
58
63
|
export declare var CreateImageBuilderStreamingURLRequest: StaticStructureSchema;
|
|
59
64
|
export declare var CreateImageBuilderStreamingURLResult: StaticStructureSchema;
|
|
65
|
+
export declare var CreateImportedImageRequest: StaticStructureSchema;
|
|
66
|
+
export declare var CreateImportedImageResult: StaticStructureSchema;
|
|
60
67
|
export declare var CreateStackRequest: StaticStructureSchema;
|
|
61
68
|
export declare var CreateStackResult: StaticStructureSchema;
|
|
62
69
|
export declare var CreateStreamingURLRequest: StaticStructureSchema;
|
|
@@ -147,6 +154,7 @@ export declare var DisassociateFleetResult: StaticStructureSchema;
|
|
|
147
154
|
export declare var DisassociateSoftwareFromImageBuilderRequest: StaticStructureSchema;
|
|
148
155
|
export declare var DisassociateSoftwareFromImageBuilderResult: StaticStructureSchema;
|
|
149
156
|
export declare var DomainJoinInfo: StaticStructureSchema;
|
|
157
|
+
export declare var DryRunOperationException: StaticErrorSchema;
|
|
150
158
|
export declare var EnableUserRequest: StaticStructureSchema;
|
|
151
159
|
export declare var EnableUserResult: StaticStructureSchema;
|
|
152
160
|
export declare var EntitledApplication: StaticStructureSchema;
|
|
@@ -157,8 +165,12 @@ export declare var EntitlementNotFoundException: StaticErrorSchema;
|
|
|
157
165
|
export declare var ErrorDetails: StaticStructureSchema;
|
|
158
166
|
export declare var ExpireSessionRequest: StaticStructureSchema;
|
|
159
167
|
export declare var ExpireSessionResult: StaticStructureSchema;
|
|
168
|
+
export declare var ExportImageTask: StaticStructureSchema;
|
|
169
|
+
export declare var Filter: StaticStructureSchema;
|
|
160
170
|
export declare var Fleet: StaticStructureSchema;
|
|
161
171
|
export declare var FleetError: StaticStructureSchema;
|
|
172
|
+
export declare var GetExportImageTaskRequest: StaticStructureSchema;
|
|
173
|
+
export declare var GetExportImageTaskResult: StaticStructureSchema;
|
|
162
174
|
export declare var Image: StaticStructureSchema;
|
|
163
175
|
export declare var ImageBuilder: StaticStructureSchema;
|
|
164
176
|
export declare var ImageBuilderStateChangeReason: StaticStructureSchema;
|
|
@@ -176,6 +188,8 @@ export declare var ListAssociatedStacksRequest: StaticStructureSchema;
|
|
|
176
188
|
export declare var ListAssociatedStacksResult: StaticStructureSchema;
|
|
177
189
|
export declare var ListEntitledApplicationsRequest: StaticStructureSchema;
|
|
178
190
|
export declare var ListEntitledApplicationsResult: StaticStructureSchema;
|
|
191
|
+
export declare var ListExportImageTasksRequest: StaticStructureSchema;
|
|
192
|
+
export declare var ListExportImageTasksResult: StaticStructureSchema;
|
|
179
193
|
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
180
194
|
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
181
195
|
export declare var NetworkAccessConfiguration: StaticStructureSchema;
|
|
@@ -186,6 +200,7 @@ export declare var ResourceError: StaticStructureSchema;
|
|
|
186
200
|
export declare var ResourceInUseException: StaticErrorSchema;
|
|
187
201
|
export declare var ResourceNotAvailableException: StaticErrorSchema;
|
|
188
202
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
203
|
+
export declare var RuntimeValidationConfig: StaticStructureSchema;
|
|
189
204
|
export declare var S3Location: StaticStructureSchema;
|
|
190
205
|
export declare var ScriptDetails: StaticStructureSchema;
|
|
191
206
|
export declare var ServiceAccountCredentials: StaticStructureSchema;
|
|
@@ -237,6 +252,7 @@ export declare var User: StaticStructureSchema;
|
|
|
237
252
|
export declare var UserSetting: StaticStructureSchema;
|
|
238
253
|
export declare var UserStackAssociation: StaticStructureSchema;
|
|
239
254
|
export declare var UserStackAssociationError: StaticStructureSchema;
|
|
255
|
+
export declare var VolumeConfig: StaticStructureSchema;
|
|
240
256
|
export declare var VpcConfig: StaticStructureSchema;
|
|
241
257
|
export declare var __Unit: "unit";
|
|
242
258
|
export declare var AppStreamServiceException: StaticErrorSchema;
|
|
@@ -246,6 +262,7 @@ export declare var AppBlockBuilderAppBlockAssociationsList: StaticListSchema;
|
|
|
246
262
|
export declare var AppBlockBuilderAttributes: number;
|
|
247
263
|
export declare var AppBlockBuilderList: StaticListSchema;
|
|
248
264
|
export declare var AppBlocks: StaticListSchema;
|
|
265
|
+
export declare var AppCatalogConfig: StaticListSchema;
|
|
249
266
|
export declare var ApplicationAttributes: number;
|
|
250
267
|
export declare var ApplicationFleetAssociationList: StaticListSchema;
|
|
251
268
|
export declare var Applications: StaticListSchema;
|
|
@@ -259,6 +276,9 @@ export declare var EntitledApplicationList: StaticListSchema;
|
|
|
259
276
|
export declare var EntitlementAttributeList: StaticListSchema;
|
|
260
277
|
export declare var EntitlementList: StaticListSchema;
|
|
261
278
|
export declare var ErrorDetailsList: StaticListSchema;
|
|
279
|
+
export declare var ExportImageTasks: StaticListSchema;
|
|
280
|
+
export declare var Filters: StaticListSchema;
|
|
281
|
+
export declare var FilterValues: number;
|
|
262
282
|
export declare var FleetAttributes: number;
|
|
263
283
|
export declare var FleetErrors: StaticListSchema;
|
|
264
284
|
export declare var FleetList: StaticListSchema;
|
|
@@ -303,9 +323,11 @@ export declare var CreateAppBlockBuilderStreamingURL: StaticOperationSchema;
|
|
|
303
323
|
export declare var CreateApplication: StaticOperationSchema;
|
|
304
324
|
export declare var CreateDirectoryConfig: StaticOperationSchema;
|
|
305
325
|
export declare var CreateEntitlement: StaticOperationSchema;
|
|
326
|
+
export declare var CreateExportImageTask: StaticOperationSchema;
|
|
306
327
|
export declare var CreateFleet: StaticOperationSchema;
|
|
307
328
|
export declare var CreateImageBuilder: StaticOperationSchema;
|
|
308
329
|
export declare var CreateImageBuilderStreamingURL: StaticOperationSchema;
|
|
330
|
+
export declare var CreateImportedImage: StaticOperationSchema;
|
|
309
331
|
export declare var CreateStack: StaticOperationSchema;
|
|
310
332
|
export declare var CreateStreamingURL: StaticOperationSchema;
|
|
311
333
|
export declare var CreateThemeForStack: StaticOperationSchema;
|
|
@@ -352,9 +374,11 @@ export declare var DisassociateFleet: StaticOperationSchema;
|
|
|
352
374
|
export declare var DisassociateSoftwareFromImageBuilder: StaticOperationSchema;
|
|
353
375
|
export declare var EnableUser: StaticOperationSchema;
|
|
354
376
|
export declare var ExpireSession: StaticOperationSchema;
|
|
377
|
+
export declare var GetExportImageTask: StaticOperationSchema;
|
|
355
378
|
export declare var ListAssociatedFleets: StaticOperationSchema;
|
|
356
379
|
export declare var ListAssociatedStacks: StaticOperationSchema;
|
|
357
380
|
export declare var ListEntitledApplications: StaticOperationSchema;
|
|
381
|
+
export declare var ListExportImageTasks: StaticOperationSchema;
|
|
358
382
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
359
383
|
export declare var StartAppBlockBuilder: StaticOperationSchema;
|
|
360
384
|
export declare var StartFleet: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appstream",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appstream Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.933.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appstream",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.932.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.933.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
28
|
"@aws-sdk/middleware-user-agent": "3.932.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|