@aws-sdk/client-appstream 3.908.0 → 3.910.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.
Files changed (42) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/endpoint/ruleset.js +1 -1
  3. package/dist-cjs/index.js +228 -0
  4. package/dist-es/AppStream.js +10 -0
  5. package/dist-es/commands/AssociateSoftwareToImageBuilderCommand.js +22 -0
  6. package/dist-es/commands/DescribeAppLicenseUsageCommand.js +22 -0
  7. package/dist-es/commands/DescribeSoftwareAssociationsCommand.js +22 -0
  8. package/dist-es/commands/DisassociateSoftwareFromImageBuilderCommand.js +22 -0
  9. package/dist-es/commands/StartSoftwareDeploymentToImageBuilderCommand.js +22 -0
  10. package/dist-es/commands/index.js +5 -0
  11. package/dist-es/endpoint/ruleset.js +1 -1
  12. package/dist-es/models/models_0.js +11 -0
  13. package/dist-es/protocols/Aws_json1_1.js +121 -0
  14. package/dist-types/AppStream.d.ts +35 -0
  15. package/dist-types/AppStreamClient.d.ts +7 -2
  16. package/dist-types/commands/AssociateSoftwareToImageBuilderCommand.d.ts +90 -0
  17. package/dist-types/commands/CreateImageBuilderCommand.d.ts +7 -1
  18. package/dist-types/commands/CreateUpdatedImageCommand.d.ts +1 -0
  19. package/dist-types/commands/DeleteImageBuilderCommand.d.ts +1 -1
  20. package/dist-types/commands/DeleteImageCommand.d.ts +1 -0
  21. package/dist-types/commands/DescribeAppLicenseUsageCommand.d.ts +96 -0
  22. package/dist-types/commands/DescribeImageBuildersCommand.d.ts +1 -1
  23. package/dist-types/commands/DescribeImagesCommand.d.ts +1 -0
  24. package/dist-types/commands/DescribeSoftwareAssociationsCommand.d.ts +95 -0
  25. package/dist-types/commands/DisassociateSoftwareFromImageBuilderCommand.d.ts +87 -0
  26. package/dist-types/commands/StartImageBuilderCommand.d.ts +1 -1
  27. package/dist-types/commands/StartSoftwareDeploymentToImageBuilderCommand.d.ts +82 -0
  28. package/dist-types/commands/StopImageBuilderCommand.d.ts +1 -1
  29. package/dist-types/commands/index.d.ts +5 -0
  30. package/dist-types/models/models_0.d.ts +624 -2
  31. package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
  32. package/dist-types/ts3.4/AppStream.d.ts +97 -0
  33. package/dist-types/ts3.4/AppStreamClient.d.ts +30 -0
  34. package/dist-types/ts3.4/commands/AssociateSoftwareToImageBuilderCommand.d.ts +51 -0
  35. package/dist-types/ts3.4/commands/DescribeAppLicenseUsageCommand.d.ts +51 -0
  36. package/dist-types/ts3.4/commands/DescribeSoftwareAssociationsCommand.d.ts +51 -0
  37. package/dist-types/ts3.4/commands/DisassociateSoftwareFromImageBuilderCommand.d.ts +51 -0
  38. package/dist-types/ts3.4/commands/StartSoftwareDeploymentToImageBuilderCommand.d.ts +51 -0
  39. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +64 -0
  41. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
  42. package/package.json +34 -34
@@ -45,6 +45,47 @@ export declare const Action: {
45
45
  * @public
46
46
  */
47
47
  export type Action = (typeof Action)[keyof typeof Action];
48
+ /**
49
+ * <p>The collection of license usage records.</p>
50
+ * @public
51
+ */
52
+ export interface AdminAppLicenseUsageRecord {
53
+ /**
54
+ * <p>The ARN of the user who used the license-included application.</p>
55
+ * @public
56
+ */
57
+ UserArn: string | undefined;
58
+ /**
59
+ * <p>The billing period for the license usage record.</p>
60
+ * @public
61
+ */
62
+ BillingPeriod: string | undefined;
63
+ /**
64
+ * <p>The account ID of the owner of the license.</p>
65
+ * @public
66
+ */
67
+ OwnerAWSAccountId: string | undefined;
68
+ /**
69
+ * <p>The date and time when the license was first used.</p>
70
+ * @public
71
+ */
72
+ SubscriptionFirstUsedDate: Date | undefined;
73
+ /**
74
+ * <p>The date and time when the license was last used.</p>
75
+ * @public
76
+ */
77
+ SubscriptionLastUsedDate: Date | undefined;
78
+ /**
79
+ * <p>The type of license (for example, Microsoft Office).</p>
80
+ * @public
81
+ */
82
+ LicenseType: string | undefined;
83
+ /**
84
+ * <p>The ID of the user who used the license-included application.</p>
85
+ * @public
86
+ */
87
+ UserId: string | undefined;
88
+ }
48
89
  /**
49
90
  * <p>The error details.</p>
50
91
  * @public
@@ -868,6 +909,101 @@ export declare class InvalidAccountStatusException extends __BaseException {
868
909
  */
869
910
  constructor(opts: __ExceptionOptionType<InvalidAccountStatusException, __BaseException>);
870
911
  }
912
+ /**
913
+ * @public
914
+ */
915
+ export interface AssociateSoftwareToImageBuilderRequest {
916
+ /**
917
+ * <p>The name of the target image builder instance.</p>
918
+ * @public
919
+ */
920
+ ImageBuilderName: string | undefined;
921
+ /**
922
+ * <p>The list of license included applications to associate with the image builder.</p>
923
+ * <p>Possible values include the following:</p>
924
+ * <ul>
925
+ * <li>
926
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_32Bit</p>
927
+ * </li>
928
+ * <li>
929
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_64Bit</p>
930
+ * </li>
931
+ * <li>
932
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_32Bit</p>
933
+ * </li>
934
+ * <li>
935
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_64Bit</p>
936
+ * </li>
937
+ * <li>
938
+ * <p>Microsoft_Visio_2021_LTSC_Professional_32Bit</p>
939
+ * </li>
940
+ * <li>
941
+ * <p>Microsoft_Visio_2021_LTSC_Professional_64Bit</p>
942
+ * </li>
943
+ * <li>
944
+ * <p>Microsoft_Visio_2024_LTSC_Professional_32Bit</p>
945
+ * </li>
946
+ * <li>
947
+ * <p>Microsoft_Visio_2024_LTSC_Professional_64Bit</p>
948
+ * </li>
949
+ * <li>
950
+ * <p>Microsoft_Project_2021_Professional_32Bit</p>
951
+ * </li>
952
+ * <li>
953
+ * <p>Microsoft_Project_2021_Professional_64Bit</p>
954
+ * </li>
955
+ * <li>
956
+ * <p>Microsoft_Project_2024_Professional_32Bit</p>
957
+ * </li>
958
+ * <li>
959
+ * <p>Microsoft_Project_2024_Professional_64Bit</p>
960
+ * </li>
961
+ * <li>
962
+ * <p>Microsoft_Office_2021_LTSC_Standard_32Bit</p>
963
+ * </li>
964
+ * <li>
965
+ * <p>Microsoft_Office_2021_LTSC_Standard_64Bit</p>
966
+ * </li>
967
+ * <li>
968
+ * <p>Microsoft_Office_2024_LTSC_Standard_32Bit</p>
969
+ * </li>
970
+ * <li>
971
+ * <p>Microsoft_Office_2024_LTSC_Standard_64Bit</p>
972
+ * </li>
973
+ * <li>
974
+ * <p>Microsoft_Visio_2021_LTSC_Standard_32Bit</p>
975
+ * </li>
976
+ * <li>
977
+ * <p>Microsoft_Visio_2021_LTSC_Standard_64Bit</p>
978
+ * </li>
979
+ * <li>
980
+ * <p>Microsoft_Visio_2024_LTSC_Standard_32Bit</p>
981
+ * </li>
982
+ * <li>
983
+ * <p>Microsoft_Visio_2024_LTSC_Standard_64Bit</p>
984
+ * </li>
985
+ * <li>
986
+ * <p>Microsoft_Project_2021_Standard_32Bit</p>
987
+ * </li>
988
+ * <li>
989
+ * <p>Microsoft_Project_2021_Standard_64Bit</p>
990
+ * </li>
991
+ * <li>
992
+ * <p>Microsoft_Project_2024_Standard_32Bit</p>
993
+ * </li>
994
+ * <li>
995
+ * <p>Microsoft_Project_2024_Standard_64Bit</p>
996
+ * </li>
997
+ * </ul>
998
+ * @public
999
+ */
1000
+ SoftwareNames: string[] | undefined;
1001
+ }
1002
+ /**
1003
+ * @public
1004
+ */
1005
+ export interface AssociateSoftwareToImageBuilderResult {
1006
+ }
871
1007
  /**
872
1008
  * @public
873
1009
  * @enum
@@ -2678,6 +2814,166 @@ export interface CreateImageBuilderRequest {
2678
2814
  * @public
2679
2815
  */
2680
2816
  AccessEndpoints?: AccessEndpoint[] | undefined;
2817
+ /**
2818
+ * <p>The list of license included applications to install on the image builder during creation.</p>
2819
+ * <p>Possible values include the following:</p>
2820
+ * <ul>
2821
+ * <li>
2822
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_32Bit</p>
2823
+ * </li>
2824
+ * <li>
2825
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_64Bit</p>
2826
+ * </li>
2827
+ * <li>
2828
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_32Bit</p>
2829
+ * </li>
2830
+ * <li>
2831
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_64Bit</p>
2832
+ * </li>
2833
+ * <li>
2834
+ * <p>Microsoft_Visio_2021_LTSC_Professional_32Bit</p>
2835
+ * </li>
2836
+ * <li>
2837
+ * <p>Microsoft_Visio_2021_LTSC_Professional_64Bit</p>
2838
+ * </li>
2839
+ * <li>
2840
+ * <p>Microsoft_Visio_2024_LTSC_Professional_32Bit</p>
2841
+ * </li>
2842
+ * <li>
2843
+ * <p>Microsoft_Visio_2024_LTSC_Professional_64Bit</p>
2844
+ * </li>
2845
+ * <li>
2846
+ * <p>Microsoft_Project_2021_Professional_32Bit</p>
2847
+ * </li>
2848
+ * <li>
2849
+ * <p>Microsoft_Project_2021_Professional_64Bit</p>
2850
+ * </li>
2851
+ * <li>
2852
+ * <p>Microsoft_Project_2024_Professional_32Bit</p>
2853
+ * </li>
2854
+ * <li>
2855
+ * <p>Microsoft_Project_2024_Professional_64Bit</p>
2856
+ * </li>
2857
+ * <li>
2858
+ * <p>Microsoft_Office_2021_LTSC_Standard_32Bit</p>
2859
+ * </li>
2860
+ * <li>
2861
+ * <p>Microsoft_Office_2021_LTSC_Standard_64Bit</p>
2862
+ * </li>
2863
+ * <li>
2864
+ * <p>Microsoft_Office_2024_LTSC_Standard_32Bit</p>
2865
+ * </li>
2866
+ * <li>
2867
+ * <p>Microsoft_Office_2024_LTSC_Standard_64Bit</p>
2868
+ * </li>
2869
+ * <li>
2870
+ * <p>Microsoft_Visio_2021_LTSC_Standard_32Bit</p>
2871
+ * </li>
2872
+ * <li>
2873
+ * <p>Microsoft_Visio_2021_LTSC_Standard_64Bit</p>
2874
+ * </li>
2875
+ * <li>
2876
+ * <p>Microsoft_Visio_2024_LTSC_Standard_32Bit</p>
2877
+ * </li>
2878
+ * <li>
2879
+ * <p>Microsoft_Visio_2024_LTSC_Standard_64Bit</p>
2880
+ * </li>
2881
+ * <li>
2882
+ * <p>Microsoft_Project_2021_Standard_32Bit</p>
2883
+ * </li>
2884
+ * <li>
2885
+ * <p>Microsoft_Project_2021_Standard_64Bit</p>
2886
+ * </li>
2887
+ * <li>
2888
+ * <p>Microsoft_Project_2024_Standard_32Bit</p>
2889
+ * </li>
2890
+ * <li>
2891
+ * <p>Microsoft_Project_2024_Standard_64Bit</p>
2892
+ * </li>
2893
+ * </ul>
2894
+ * @public
2895
+ */
2896
+ SoftwaresToInstall?: string[] | undefined;
2897
+ /**
2898
+ * <p>The list of license included applications to uninstall from the image builder during creation.</p>
2899
+ * <p>Possible values include the following:</p>
2900
+ * <ul>
2901
+ * <li>
2902
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_32Bit</p>
2903
+ * </li>
2904
+ * <li>
2905
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_64Bit</p>
2906
+ * </li>
2907
+ * <li>
2908
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_32Bit</p>
2909
+ * </li>
2910
+ * <li>
2911
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_64Bit</p>
2912
+ * </li>
2913
+ * <li>
2914
+ * <p>Microsoft_Visio_2021_LTSC_Professional_32Bit</p>
2915
+ * </li>
2916
+ * <li>
2917
+ * <p>Microsoft_Visio_2021_LTSC_Professional_64Bit</p>
2918
+ * </li>
2919
+ * <li>
2920
+ * <p>Microsoft_Visio_2024_LTSC_Professional_32Bit</p>
2921
+ * </li>
2922
+ * <li>
2923
+ * <p>Microsoft_Visio_2024_LTSC_Professional_64Bit</p>
2924
+ * </li>
2925
+ * <li>
2926
+ * <p>Microsoft_Project_2021_Professional_32Bit</p>
2927
+ * </li>
2928
+ * <li>
2929
+ * <p>Microsoft_Project_2021_Professional_64Bit</p>
2930
+ * </li>
2931
+ * <li>
2932
+ * <p>Microsoft_Project_2024_Professional_32Bit</p>
2933
+ * </li>
2934
+ * <li>
2935
+ * <p>Microsoft_Project_2024_Professional_64Bit</p>
2936
+ * </li>
2937
+ * <li>
2938
+ * <p>Microsoft_Office_2021_LTSC_Standard_32Bit</p>
2939
+ * </li>
2940
+ * <li>
2941
+ * <p>Microsoft_Office_2021_LTSC_Standard_64Bit</p>
2942
+ * </li>
2943
+ * <li>
2944
+ * <p>Microsoft_Office_2024_LTSC_Standard_32Bit</p>
2945
+ * </li>
2946
+ * <li>
2947
+ * <p>Microsoft_Office_2024_LTSC_Standard_64Bit</p>
2948
+ * </li>
2949
+ * <li>
2950
+ * <p>Microsoft_Visio_2021_LTSC_Standard_32Bit</p>
2951
+ * </li>
2952
+ * <li>
2953
+ * <p>Microsoft_Visio_2021_LTSC_Standard_64Bit</p>
2954
+ * </li>
2955
+ * <li>
2956
+ * <p>Microsoft_Visio_2024_LTSC_Standard_32Bit</p>
2957
+ * </li>
2958
+ * <li>
2959
+ * <p>Microsoft_Visio_2024_LTSC_Standard_64Bit</p>
2960
+ * </li>
2961
+ * <li>
2962
+ * <p>Microsoft_Project_2021_Standard_32Bit</p>
2963
+ * </li>
2964
+ * <li>
2965
+ * <p>Microsoft_Project_2021_Standard_64Bit</p>
2966
+ * </li>
2967
+ * <li>
2968
+ * <p>Microsoft_Project_2024_Standard_32Bit</p>
2969
+ * </li>
2970
+ * <li>
2971
+ * <p>Microsoft_Project_2024_Standard_64Bit</p>
2972
+ * </li>
2973
+ * </ul>
2974
+ * @public
2975
+ */
2976
+ SoftwaresToUninstall?: string[] | undefined;
2681
2977
  }
2682
2978
  /**
2683
2979
  * @public
@@ -2716,11 +3012,13 @@ export declare const ImageBuilderState: {
2716
3012
  readonly FAILED: "FAILED";
2717
3013
  readonly PENDING: "PENDING";
2718
3014
  readonly PENDING_QUALIFICATION: "PENDING_QUALIFICATION";
3015
+ readonly PENDING_SYNCING_APPS: "PENDING_SYNCING_APPS";
2719
3016
  readonly REBOOTING: "REBOOTING";
2720
3017
  readonly RUNNING: "RUNNING";
2721
3018
  readonly SNAPSHOTTING: "SNAPSHOTTING";
2722
3019
  readonly STOPPED: "STOPPED";
2723
3020
  readonly STOPPING: "STOPPING";
3021
+ readonly SYNCING_APPS: "SYNCING_APPS";
2724
3022
  readonly UPDATING: "UPDATING";
2725
3023
  readonly UPDATING_AGENT: "UPDATING_AGENT";
2726
3024
  };
@@ -3805,6 +4103,11 @@ export interface Image {
3805
4103
  * @public
3806
4104
  */
3807
4105
  ImageSharedWithOthers?: ImageSharedWithOthers | undefined;
4106
+ /**
4107
+ * <p>Indicates whether the image includes license-included applications.</p>
4108
+ * @public
4109
+ */
4110
+ ManagedSoftwareIncluded?: boolean | undefined;
3808
4111
  }
3809
4112
  /**
3810
4113
  * @public
@@ -4340,6 +4643,43 @@ export interface DescribeApplicationsResult {
4340
4643
  */
4341
4644
  NextToken?: string | undefined;
4342
4645
  }
4646
+ /**
4647
+ * @public
4648
+ */
4649
+ export interface DescribeAppLicenseUsageRequest {
4650
+ /**
4651
+ * <p>Billing period for the usage record.</p>
4652
+ * <p>Specify the value in <i>yyyy-mm</i> format. For example, for August
4653
+ * 2025, use <i>2025-08</i>.</p>
4654
+ * @public
4655
+ */
4656
+ BillingPeriod: string | undefined;
4657
+ /**
4658
+ * <p>The maximum number of results to return.</p>
4659
+ * @public
4660
+ */
4661
+ MaxResults?: number | undefined;
4662
+ /**
4663
+ * <p>Token for pagination of results.</p>
4664
+ * @public
4665
+ */
4666
+ NextToken?: string | undefined;
4667
+ }
4668
+ /**
4669
+ * @public
4670
+ */
4671
+ export interface DescribeAppLicenseUsageResult {
4672
+ /**
4673
+ * <p>Collection of license usage records.</p>
4674
+ * @public
4675
+ */
4676
+ AppLicenseUsages?: AdminAppLicenseUsageRecord[] | undefined;
4677
+ /**
4678
+ * <p>Token for pagination of results.</p>
4679
+ * @public
4680
+ */
4681
+ NextToken?: string | undefined;
4682
+ }
4343
4683
  /**
4344
4684
  * @public
4345
4685
  */
@@ -4731,6 +5071,173 @@ export interface DescribeSessionsResult {
4731
5071
  */
4732
5072
  NextToken?: string | undefined;
4733
5073
  }
5074
+ /**
5075
+ * @public
5076
+ */
5077
+ export interface DescribeSoftwareAssociationsRequest {
5078
+ /**
5079
+ * <p>The ARN of the resource to describe software associations. Possible resources are Image and ImageBuilder.</p>
5080
+ * @public
5081
+ */
5082
+ AssociatedResource: string | undefined;
5083
+ /**
5084
+ * <p>The maximum number of results to return.</p>
5085
+ * @public
5086
+ */
5087
+ MaxResults?: number | undefined;
5088
+ /**
5089
+ * <p>The pagination token to use to retrieve the next page of results for this operation.</p>
5090
+ * @public
5091
+ */
5092
+ NextToken?: string | undefined;
5093
+ }
5094
+ /**
5095
+ * @public
5096
+ * @enum
5097
+ */
5098
+ export declare const SoftwareDeploymentStatus: {
5099
+ readonly FAILED_TO_INSTALL: "FAILED_TO_INSTALL";
5100
+ readonly FAILED_TO_UNINSTALL: "FAILED_TO_UNINSTALL";
5101
+ readonly INSTALLED: "INSTALLED";
5102
+ readonly PENDING_INSTALLATION: "PENDING_INSTALLATION";
5103
+ readonly PENDING_UNINSTALLATION: "PENDING_UNINSTALLATION";
5104
+ readonly STAGED_FOR_INSTALLATION: "STAGED_FOR_INSTALLATION";
5105
+ readonly STAGED_FOR_UNINSTALLATION: "STAGED_FOR_UNINSTALLATION";
5106
+ };
5107
+ /**
5108
+ * @public
5109
+ */
5110
+ export type SoftwareDeploymentStatus = (typeof SoftwareDeploymentStatus)[keyof typeof SoftwareDeploymentStatus];
5111
+ /**
5112
+ * <p>The association between a license-included application and a resource.</p>
5113
+ * @public
5114
+ */
5115
+ export interface SoftwareAssociations {
5116
+ /**
5117
+ * <p>The name of the license-included application.</p>
5118
+ * <p>Possible values include the following:</p>
5119
+ * <ul>
5120
+ * <li>
5121
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_32Bit</p>
5122
+ * </li>
5123
+ * <li>
5124
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_64Bit</p>
5125
+ * </li>
5126
+ * <li>
5127
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_32Bit</p>
5128
+ * </li>
5129
+ * <li>
5130
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_64Bit</p>
5131
+ * </li>
5132
+ * <li>
5133
+ * <p>Microsoft_Visio_2021_LTSC_Professional_32Bit</p>
5134
+ * </li>
5135
+ * <li>
5136
+ * <p>Microsoft_Visio_2021_LTSC_Professional_64Bit</p>
5137
+ * </li>
5138
+ * <li>
5139
+ * <p>Microsoft_Visio_2024_LTSC_Professional_32Bit</p>
5140
+ * </li>
5141
+ * <li>
5142
+ * <p>Microsoft_Visio_2024_LTSC_Professional_64Bit</p>
5143
+ * </li>
5144
+ * <li>
5145
+ * <p>Microsoft_Project_2021_Professional_32Bit</p>
5146
+ * </li>
5147
+ * <li>
5148
+ * <p>Microsoft_Project_2021_Professional_64Bit</p>
5149
+ * </li>
5150
+ * <li>
5151
+ * <p>Microsoft_Project_2024_Professional_32Bit</p>
5152
+ * </li>
5153
+ * <li>
5154
+ * <p>Microsoft_Project_2024_Professional_64Bit</p>
5155
+ * </li>
5156
+ * <li>
5157
+ * <p>Microsoft_Office_2021_LTSC_Standard_32Bit</p>
5158
+ * </li>
5159
+ * <li>
5160
+ * <p>Microsoft_Office_2021_LTSC_Standard_64Bit</p>
5161
+ * </li>
5162
+ * <li>
5163
+ * <p>Microsoft_Office_2024_LTSC_Standard_32Bit</p>
5164
+ * </li>
5165
+ * <li>
5166
+ * <p>Microsoft_Office_2024_LTSC_Standard_64Bit</p>
5167
+ * </li>
5168
+ * <li>
5169
+ * <p>Microsoft_Visio_2021_LTSC_Standard_32Bit</p>
5170
+ * </li>
5171
+ * <li>
5172
+ * <p>Microsoft_Visio_2021_LTSC_Standard_64Bit</p>
5173
+ * </li>
5174
+ * <li>
5175
+ * <p>Microsoft_Visio_2024_LTSC_Standard_32Bit</p>
5176
+ * </li>
5177
+ * <li>
5178
+ * <p>Microsoft_Visio_2024_LTSC_Standard_64Bit</p>
5179
+ * </li>
5180
+ * <li>
5181
+ * <p>Microsoft_Project_2021_Standard_32Bit</p>
5182
+ * </li>
5183
+ * <li>
5184
+ * <p>Microsoft_Project_2021_Standard_64Bit</p>
5185
+ * </li>
5186
+ * <li>
5187
+ * <p>Microsoft_Project_2024_Standard_32Bit</p>
5188
+ * </li>
5189
+ * <li>
5190
+ * <p>Microsoft_Project_2024_Standard_64Bit</p>
5191
+ * </li>
5192
+ * </ul>
5193
+ * @public
5194
+ */
5195
+ SoftwareName?: string | undefined;
5196
+ /**
5197
+ * <p>The deployment status of the license-included application.</p>
5198
+ * @public
5199
+ */
5200
+ Status?: SoftwareDeploymentStatus | undefined;
5201
+ /**
5202
+ * <p>The error details for failed deployments of the license-included application.</p>
5203
+ * @public
5204
+ */
5205
+ DeploymentError?: ErrorDetails[] | undefined;
5206
+ }
5207
+ /**
5208
+ * @public
5209
+ */
5210
+ export interface DescribeSoftwareAssociationsResult {
5211
+ /**
5212
+ * <p>The ARN of the resource to describe software associations.</p>
5213
+ * @public
5214
+ */
5215
+ AssociatedResource?: string | undefined;
5216
+ /**
5217
+ * <p>Collection of license included applications association details including:</p>
5218
+ * <ul>
5219
+ * <li>
5220
+ * <p>License included application name and version information</p>
5221
+ * </li>
5222
+ * <li>
5223
+ * <p>Deployment status (SoftwareDeploymentStatus enum)</p>
5224
+ * </li>
5225
+ * <li>
5226
+ * <p>Error details for failed deployments</p>
5227
+ * </li>
5228
+ * <li>
5229
+ * <p>Association timestamps</p>
5230
+ * </li>
5231
+ * </ul>
5232
+ * @public
5233
+ */
5234
+ SoftwareAssociations?: SoftwareAssociations[] | undefined;
5235
+ /**
5236
+ * <p>The pagination token to use to retrieve the next page of results for this operation.</p>
5237
+ * @public
5238
+ */
5239
+ NextToken?: string | undefined;
5240
+ }
4734
5241
  /**
4735
5242
  * @public
4736
5243
  */
@@ -5128,6 +5635,101 @@ export interface DisassociateFleetRequest {
5128
5635
  */
5129
5636
  export interface DisassociateFleetResult {
5130
5637
  }
5638
+ /**
5639
+ * @public
5640
+ */
5641
+ export interface DisassociateSoftwareFromImageBuilderRequest {
5642
+ /**
5643
+ * <p>The name of the target image builder instance.</p>
5644
+ * @public
5645
+ */
5646
+ ImageBuilderName: string | undefined;
5647
+ /**
5648
+ * <p>The list of license included applications to disassociate from the image builder.</p>
5649
+ * <p>Possible values include the following:</p>
5650
+ * <ul>
5651
+ * <li>
5652
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_32Bit</p>
5653
+ * </li>
5654
+ * <li>
5655
+ * <p>Microsoft_Office_2021_LTSC_Professional_Plus_64Bit</p>
5656
+ * </li>
5657
+ * <li>
5658
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_32Bit</p>
5659
+ * </li>
5660
+ * <li>
5661
+ * <p>Microsoft_Office_2024_LTSC_Professional_Plus_64Bit</p>
5662
+ * </li>
5663
+ * <li>
5664
+ * <p>Microsoft_Visio_2021_LTSC_Professional_32Bit</p>
5665
+ * </li>
5666
+ * <li>
5667
+ * <p>Microsoft_Visio_2021_LTSC_Professional_64Bit</p>
5668
+ * </li>
5669
+ * <li>
5670
+ * <p>Microsoft_Visio_2024_LTSC_Professional_32Bit</p>
5671
+ * </li>
5672
+ * <li>
5673
+ * <p>Microsoft_Visio_2024_LTSC_Professional_64Bit</p>
5674
+ * </li>
5675
+ * <li>
5676
+ * <p>Microsoft_Project_2021_Professional_32Bit</p>
5677
+ * </li>
5678
+ * <li>
5679
+ * <p>Microsoft_Project_2021_Professional_64Bit</p>
5680
+ * </li>
5681
+ * <li>
5682
+ * <p>Microsoft_Project_2024_Professional_32Bit</p>
5683
+ * </li>
5684
+ * <li>
5685
+ * <p>Microsoft_Project_2024_Professional_64Bit</p>
5686
+ * </li>
5687
+ * <li>
5688
+ * <p>Microsoft_Office_2021_LTSC_Standard_32Bit</p>
5689
+ * </li>
5690
+ * <li>
5691
+ * <p>Microsoft_Office_2021_LTSC_Standard_64Bit</p>
5692
+ * </li>
5693
+ * <li>
5694
+ * <p>Microsoft_Office_2024_LTSC_Standard_32Bit</p>
5695
+ * </li>
5696
+ * <li>
5697
+ * <p>Microsoft_Office_2024_LTSC_Standard_64Bit</p>
5698
+ * </li>
5699
+ * <li>
5700
+ * <p>Microsoft_Visio_2021_LTSC_Standard_32Bit</p>
5701
+ * </li>
5702
+ * <li>
5703
+ * <p>Microsoft_Visio_2021_LTSC_Standard_64Bit</p>
5704
+ * </li>
5705
+ * <li>
5706
+ * <p>Microsoft_Visio_2024_LTSC_Standard_32Bit</p>
5707
+ * </li>
5708
+ * <li>
5709
+ * <p>Microsoft_Visio_2024_LTSC_Standard_64Bit</p>
5710
+ * </li>
5711
+ * <li>
5712
+ * <p>Microsoft_Project_2021_Standard_32Bit</p>
5713
+ * </li>
5714
+ * <li>
5715
+ * <p>Microsoft_Project_2021_Standard_64Bit</p>
5716
+ * </li>
5717
+ * <li>
5718
+ * <p>Microsoft_Project_2024_Standard_32Bit</p>
5719
+ * </li>
5720
+ * <li>
5721
+ * <p>Microsoft_Project_2024_Standard_64Bit</p>
5722
+ * </li>
5723
+ * </ul>
5724
+ * @public
5725
+ */
5726
+ SoftwareNames: string[] | undefined;
5727
+ }
5728
+ /**
5729
+ * @public
5730
+ */
5731
+ export interface DisassociateSoftwareFromImageBuilderResult {
5732
+ }
5131
5733
  /**
5132
5734
  * @public
5133
5735
  */
@@ -5374,6 +5976,26 @@ export interface StartImageBuilderResult {
5374
5976
  */
5375
5977
  ImageBuilder?: ImageBuilder | undefined;
5376
5978
  }
5979
+ /**
5980
+ * @public
5981
+ */
5982
+ export interface StartSoftwareDeploymentToImageBuilderRequest {
5983
+ /**
5984
+ * <p>The name of the target image builder instance.</p>
5985
+ * @public
5986
+ */
5987
+ ImageBuilderName: string | undefined;
5988
+ /**
5989
+ * <p>Whether to retry previously failed license included application deployments.</p>
5990
+ * @public
5991
+ */
5992
+ RetryFailedDeployments?: boolean | undefined;
5993
+ }
5994
+ /**
5995
+ * @public
5996
+ */
5997
+ export interface StartSoftwareDeploymentToImageBuilderResult {
5998
+ }
5377
5999
  /**
5378
6000
  * @public
5379
6001
  */
@@ -5942,7 +6564,7 @@ export interface UpdateFleetRequest {
5942
6564
  /**
5943
6565
  * <p>Deletes the VPC association for the specified fleet.</p>
5944
6566
  *
5945
- * @deprecated
6567
+ * @deprecated deprecated
5946
6568
  * @public
5947
6569
  */
5948
6570
  DeleteVpcConfig?: boolean | undefined;
@@ -6111,7 +6733,7 @@ export interface UpdateStackRequest {
6111
6733
  /**
6112
6734
  * <p>Deletes the storage connectors currently enabled for the stack.</p>
6113
6735
  *
6114
- * @deprecated
6736
+ * @deprecated deprecated
6115
6737
  * @public
6116
6738
  */
6117
6739
  DeleteStorageConnectors?: boolean | undefined;