aws-sdk-appstream 1.118.0 → 1.119.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 07eeff4c5f5609d7034e8c81fcdb5f60795bb54abb2c5cfb46be7e05cb74f763
4
- data.tar.gz: 85ee33e793c3c59eca08ba7bbbf4b3852e97a0347b5c5d5c2bacecad5e9e0c4a
3
+ metadata.gz: '0880ea6c66796b879c97b874cbf7e1aca6ea6d76d8dbe32ee2f47a3ccfcf39ed'
4
+ data.tar.gz: 49c196dbc4fe2b616c3837ccc045ebd074e104afd56bf3a6a0d38a2872b2fea7
5
5
  SHA512:
6
- metadata.gz: b621a9e4d068f0af2171a0305f7065e45db116b9df12dc2167b30ad0d3d2758a2480ff267f960213364fa01aa657de330a2260222434a52bad789fcd24accd27
7
- data.tar.gz: b3da2884153bbde8453b593f8eba6e75aca8d38bb810a930c6ecf3ec26dbc57f3524e5a9f94f0a374f22f0deb9e64544299421bd4bdf93f8bd6eb9b28b895ece
6
+ metadata.gz: 4790575fca0aba79706680669430ff8eb652ea71cb755f04599bcaac7680349abc6ad315e6b6a13bdc697b7194a7f009fd593903f3aee02f9af350f8a7f12e4a
7
+ data.tar.gz: 75ce24f61c1e8829b4d36ab3c28b51d695c0b4e1bd82eab22ae2cfbf3cc0d2828574a13378b3aaece545908016b25543821b1b58577e37bb2f6aed97bb32cf83
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.119.0 (2025-10-14)
5
+ ------------------
6
+
7
+ * Feature - This release introduces support for Microsoft license included applications streaming.
8
+
4
9
  1.118.0 (2025-09-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.118.0
1
+ 1.119.0
@@ -607,6 +607,84 @@ module Aws::AppStream
607
607
  req.send_request(options)
608
608
  end
609
609
 
610
+ # Associates license included application(s) with an existing image
611
+ # builder instance.
612
+ #
613
+ # @option params [required, String] :image_builder_name
614
+ # The name of the target image builder instance.
615
+ #
616
+ # @option params [required, Array<String>] :software_names
617
+ # The list of license included applications to associate with the image
618
+ # builder.
619
+ #
620
+ # Possible values include the following:
621
+ #
622
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
623
+ #
624
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
625
+ #
626
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
627
+ #
628
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
629
+ #
630
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
631
+ #
632
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
633
+ #
634
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
635
+ #
636
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
637
+ #
638
+ # * Microsoft\_Project\_2021\_Professional\_32Bit
639
+ #
640
+ # * Microsoft\_Project\_2021\_Professional\_64Bit
641
+ #
642
+ # * Microsoft\_Project\_2024\_Professional\_32Bit
643
+ #
644
+ # * Microsoft\_Project\_2024\_Professional\_64Bit
645
+ #
646
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
647
+ #
648
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
649
+ #
650
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
651
+ #
652
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
653
+ #
654
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
655
+ #
656
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
657
+ #
658
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
659
+ #
660
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
661
+ #
662
+ # * Microsoft\_Project\_2021\_Standard\_32Bit
663
+ #
664
+ # * Microsoft\_Project\_2021\_Standard\_64Bit
665
+ #
666
+ # * Microsoft\_Project\_2024\_Standard\_32Bit
667
+ #
668
+ # * Microsoft\_Project\_2024\_Standard\_64Bit
669
+ #
670
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
671
+ #
672
+ # @example Request syntax with placeholder values
673
+ #
674
+ # resp = client.associate_software_to_image_builder({
675
+ # image_builder_name: "Name", # required
676
+ # software_names: ["String"], # required
677
+ # })
678
+ #
679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AssociateSoftwareToImageBuilder AWS API Documentation
680
+ #
681
+ # @overload associate_software_to_image_builder(params = {})
682
+ # @param [Hash] params ({})
683
+ def associate_software_to_image_builder(params = {}, options = {})
684
+ req = build_request(:associate_software_to_image_builder, params)
685
+ req.send_request(options)
686
+ end
687
+
610
688
  # Associates the specified users with the specified stacks. Users in a
611
689
  # user pool cannot be assigned to stacks with fleets that are joined to
612
690
  # an Active Directory domain.
@@ -1836,6 +1914,114 @@ module Aws::AppStream
1836
1914
  # Administrators can connect to the image builder only through the
1837
1915
  # specified endpoints.
1838
1916
  #
1917
+ # @option params [Array<String>] :softwares_to_install
1918
+ # The list of license included applications to install on the image
1919
+ # builder during creation.
1920
+ #
1921
+ # Possible values include the following:
1922
+ #
1923
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
1924
+ #
1925
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
1926
+ #
1927
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
1928
+ #
1929
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
1930
+ #
1931
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
1932
+ #
1933
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
1934
+ #
1935
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
1936
+ #
1937
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
1938
+ #
1939
+ # * Microsoft\_Project\_2021\_Professional\_32Bit
1940
+ #
1941
+ # * Microsoft\_Project\_2021\_Professional\_64Bit
1942
+ #
1943
+ # * Microsoft\_Project\_2024\_Professional\_32Bit
1944
+ #
1945
+ # * Microsoft\_Project\_2024\_Professional\_64Bit
1946
+ #
1947
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
1948
+ #
1949
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
1950
+ #
1951
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
1952
+ #
1953
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
1954
+ #
1955
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
1956
+ #
1957
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
1958
+ #
1959
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
1960
+ #
1961
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
1962
+ #
1963
+ # * Microsoft\_Project\_2021\_Standard\_32Bit
1964
+ #
1965
+ # * Microsoft\_Project\_2021\_Standard\_64Bit
1966
+ #
1967
+ # * Microsoft\_Project\_2024\_Standard\_32Bit
1968
+ #
1969
+ # * Microsoft\_Project\_2024\_Standard\_64Bit
1970
+ #
1971
+ # @option params [Array<String>] :softwares_to_uninstall
1972
+ # The list of license included applications to uninstall from the image
1973
+ # builder during creation.
1974
+ #
1975
+ # Possible values include the following:
1976
+ #
1977
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
1978
+ #
1979
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
1980
+ #
1981
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
1982
+ #
1983
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
1984
+ #
1985
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
1986
+ #
1987
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
1988
+ #
1989
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
1990
+ #
1991
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
1992
+ #
1993
+ # * Microsoft\_Project\_2021\_Professional\_32Bit
1994
+ #
1995
+ # * Microsoft\_Project\_2021\_Professional\_64Bit
1996
+ #
1997
+ # * Microsoft\_Project\_2024\_Professional\_32Bit
1998
+ #
1999
+ # * Microsoft\_Project\_2024\_Professional\_64Bit
2000
+ #
2001
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
2002
+ #
2003
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
2004
+ #
2005
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
2006
+ #
2007
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
2008
+ #
2009
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
2010
+ #
2011
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
2012
+ #
2013
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
2014
+ #
2015
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
2016
+ #
2017
+ # * Microsoft\_Project\_2021\_Standard\_32Bit
2018
+ #
2019
+ # * Microsoft\_Project\_2021\_Standard\_64Bit
2020
+ #
2021
+ # * Microsoft\_Project\_2024\_Standard\_32Bit
2022
+ #
2023
+ # * Microsoft\_Project\_2024\_Standard\_64Bit
2024
+ #
1839
2025
  # @return [Types::CreateImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1840
2026
  #
1841
2027
  # * {Types::CreateImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
@@ -1869,6 +2055,8 @@ module Aws::AppStream
1869
2055
  # vpce_id: "String",
1870
2056
  # },
1871
2057
  # ],
2058
+ # softwares_to_install: ["String"],
2059
+ # softwares_to_uninstall: ["String"],
1872
2060
  # })
1873
2061
  #
1874
2062
  # @example Response structure
@@ -1885,7 +2073,7 @@ module Aws::AppStream
1885
2073
  # resp.image_builder.instance_type #=> String
1886
2074
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
1887
2075
  # resp.image_builder.iam_role_arn #=> String
1888
- # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
2076
+ # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION", "PENDING_SYNCING_APPS", "SYNCING_APPS"
1889
2077
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
1890
2078
  # resp.image_builder.state_change_reason.message #=> String
1891
2079
  # resp.image_builder.created_time #=> Time
@@ -2361,6 +2549,7 @@ module Aws::AppStream
2361
2549
  # resp.image.supported_instance_families[0] #=> String
2362
2550
  # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2363
2551
  # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2552
+ # resp.image.managed_software_included #=> Boolean
2364
2553
  # resp.can_update_image #=> Boolean
2365
2554
  #
2366
2555
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImage AWS API Documentation
@@ -2654,6 +2843,7 @@ module Aws::AppStream
2654
2843
  # resp.image.supported_instance_families[0] #=> String
2655
2844
  # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2656
2845
  # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2846
+ # resp.image.managed_software_included #=> Boolean
2657
2847
  #
2658
2848
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
2659
2849
  #
@@ -2693,7 +2883,7 @@ module Aws::AppStream
2693
2883
  # resp.image_builder.instance_type #=> String
2694
2884
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
2695
2885
  # resp.image_builder.iam_role_arn #=> String
2696
- # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
2886
+ # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION", "PENDING_SYNCING_APPS", "SYNCING_APPS"
2697
2887
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
2698
2888
  # resp.image_builder.state_change_reason.message #=> String
2699
2889
  # resp.image_builder.created_time #=> Time
@@ -3014,6 +3204,54 @@ module Aws::AppStream
3014
3204
  req.send_request(options)
3015
3205
  end
3016
3206
 
3207
+ # Retrieves license included application usage information.
3208
+ #
3209
+ # @option params [required, String] :billing_period
3210
+ # Billing period for the usage record.
3211
+ #
3212
+ # Specify the value in *yyyy-mm* format. For example, for August 2025,
3213
+ # use *2025-08*.
3214
+ #
3215
+ # @option params [Integer] :max_results
3216
+ # The maximum number of results to return.
3217
+ #
3218
+ # @option params [String] :next_token
3219
+ # Token for pagination of results.
3220
+ #
3221
+ # @return [Types::DescribeAppLicenseUsageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3222
+ #
3223
+ # * {Types::DescribeAppLicenseUsageResult#app_license_usages #app_license_usages} => Array&lt;Types::AdminAppLicenseUsageRecord&gt;
3224
+ # * {Types::DescribeAppLicenseUsageResult#next_token #next_token} => String
3225
+ #
3226
+ # @example Request syntax with placeholder values
3227
+ #
3228
+ # resp = client.describe_app_license_usage({
3229
+ # billing_period: "String", # required
3230
+ # max_results: 1,
3231
+ # next_token: "String",
3232
+ # })
3233
+ #
3234
+ # @example Response structure
3235
+ #
3236
+ # resp.app_license_usages #=> Array
3237
+ # resp.app_license_usages[0].user_arn #=> String
3238
+ # resp.app_license_usages[0].billing_period #=> String
3239
+ # resp.app_license_usages[0].owner_aws_account_id #=> String
3240
+ # resp.app_license_usages[0].subscription_first_used_date #=> Time
3241
+ # resp.app_license_usages[0].subscription_last_used_date #=> Time
3242
+ # resp.app_license_usages[0].license_type #=> String
3243
+ # resp.app_license_usages[0].user_id #=> String
3244
+ # resp.next_token #=> String
3245
+ #
3246
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppLicenseUsage AWS API Documentation
3247
+ #
3248
+ # @overload describe_app_license_usage(params = {})
3249
+ # @param [Hash] params ({})
3250
+ def describe_app_license_usage(params = {}, options = {})
3251
+ req = build_request(:describe_app_license_usage, params)
3252
+ req.send_request(options)
3253
+ end
3254
+
3017
3255
  # Retrieves a list that describes one or more application fleet
3018
3256
  # associations. Either ApplicationArn or FleetName must be specified.
3019
3257
  #
@@ -3350,7 +3588,7 @@ module Aws::AppStream
3350
3588
  # resp.image_builders[0].instance_type #=> String
3351
3589
  # resp.image_builders[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
3352
3590
  # resp.image_builders[0].iam_role_arn #=> String
3353
- # resp.image_builders[0].state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
3591
+ # resp.image_builders[0].state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION", "PENDING_SYNCING_APPS", "SYNCING_APPS"
3354
3592
  # resp.image_builders[0].state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
3355
3593
  # resp.image_builders[0].state_change_reason.message #=> String
3356
3594
  # resp.image_builders[0].created_time #=> Time
@@ -3518,6 +3756,7 @@ module Aws::AppStream
3518
3756
  # resp.images[0].supported_instance_families[0] #=> String
3519
3757
  # resp.images[0].dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
3520
3758
  # resp.images[0].image_shared_with_others #=> String, one of "TRUE", "FALSE"
3759
+ # resp.images[0].managed_software_included #=> Boolean
3521
3760
  # resp.next_token #=> String
3522
3761
  #
3523
3762
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
@@ -3604,6 +3843,54 @@ module Aws::AppStream
3604
3843
  req.send_request(options)
3605
3844
  end
3606
3845
 
3846
+ # Retrieves license included application associations for a specified
3847
+ # resource.
3848
+ #
3849
+ # @option params [required, String] :associated_resource
3850
+ # The ARN of the resource to describe software associations. Possible
3851
+ # resources are Image and ImageBuilder.
3852
+ #
3853
+ # @option params [Integer] :max_results
3854
+ # The maximum number of results to return.
3855
+ #
3856
+ # @option params [String] :next_token
3857
+ # The pagination token to use to retrieve the next page of results for
3858
+ # this operation.
3859
+ #
3860
+ # @return [Types::DescribeSoftwareAssociationsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3861
+ #
3862
+ # * {Types::DescribeSoftwareAssociationsResult#associated_resource #associated_resource} => String
3863
+ # * {Types::DescribeSoftwareAssociationsResult#software_associations #software_associations} => Array&lt;Types::SoftwareAssociations&gt;
3864
+ # * {Types::DescribeSoftwareAssociationsResult#next_token #next_token} => String
3865
+ #
3866
+ # @example Request syntax with placeholder values
3867
+ #
3868
+ # resp = client.describe_software_associations({
3869
+ # associated_resource: "Arn", # required
3870
+ # max_results: 1,
3871
+ # next_token: "String",
3872
+ # })
3873
+ #
3874
+ # @example Response structure
3875
+ #
3876
+ # resp.associated_resource #=> String
3877
+ # resp.software_associations #=> Array
3878
+ # resp.software_associations[0].software_name #=> String
3879
+ # resp.software_associations[0].status #=> String, one of "STAGED_FOR_INSTALLATION", "PENDING_INSTALLATION", "INSTALLED", "STAGED_FOR_UNINSTALLATION", "PENDING_UNINSTALLATION", "FAILED_TO_INSTALL", "FAILED_TO_UNINSTALL"
3880
+ # resp.software_associations[0].deployment_error #=> Array
3881
+ # resp.software_associations[0].deployment_error[0].error_code #=> String
3882
+ # resp.software_associations[0].deployment_error[0].error_message #=> String
3883
+ # resp.next_token #=> String
3884
+ #
3885
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSoftwareAssociations AWS API Documentation
3886
+ #
3887
+ # @overload describe_software_associations(params = {})
3888
+ # @param [Hash] params ({})
3889
+ def describe_software_associations(params = {}, options = {})
3890
+ req = build_request(:describe_software_associations, params)
3891
+ req.send_request(options)
3892
+ end
3893
+
3607
3894
  # Retrieves a list that describes one or more specified stacks, if the
3608
3895
  # stack names are provided. Otherwise, all stacks in the account are
3609
3896
  # described.
@@ -4004,6 +4291,84 @@ module Aws::AppStream
4004
4291
  req.send_request(options)
4005
4292
  end
4006
4293
 
4294
+ # Removes license included application(s) association(s) from an image
4295
+ # builder instance.
4296
+ #
4297
+ # @option params [required, String] :image_builder_name
4298
+ # The name of the target image builder instance.
4299
+ #
4300
+ # @option params [required, Array<String>] :software_names
4301
+ # The list of license included applications to disassociate from the
4302
+ # image builder.
4303
+ #
4304
+ # Possible values include the following:
4305
+ #
4306
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
4307
+ #
4308
+ # * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
4309
+ #
4310
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
4311
+ #
4312
+ # * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
4313
+ #
4314
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
4315
+ #
4316
+ # * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
4317
+ #
4318
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
4319
+ #
4320
+ # * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
4321
+ #
4322
+ # * Microsoft\_Project\_2021\_Professional\_32Bit
4323
+ #
4324
+ # * Microsoft\_Project\_2021\_Professional\_64Bit
4325
+ #
4326
+ # * Microsoft\_Project\_2024\_Professional\_32Bit
4327
+ #
4328
+ # * Microsoft\_Project\_2024\_Professional\_64Bit
4329
+ #
4330
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
4331
+ #
4332
+ # * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
4333
+ #
4334
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
4335
+ #
4336
+ # * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
4337
+ #
4338
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
4339
+ #
4340
+ # * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
4341
+ #
4342
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
4343
+ #
4344
+ # * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
4345
+ #
4346
+ # * Microsoft\_Project\_2021\_Standard\_32Bit
4347
+ #
4348
+ # * Microsoft\_Project\_2021\_Standard\_64Bit
4349
+ #
4350
+ # * Microsoft\_Project\_2024\_Standard\_32Bit
4351
+ #
4352
+ # * Microsoft\_Project\_2024\_Standard\_64Bit
4353
+ #
4354
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4355
+ #
4356
+ # @example Request syntax with placeholder values
4357
+ #
4358
+ # resp = client.disassociate_software_from_image_builder({
4359
+ # image_builder_name: "Name", # required
4360
+ # software_names: ["String"], # required
4361
+ # })
4362
+ #
4363
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisassociateSoftwareFromImageBuilder AWS API Documentation
4364
+ #
4365
+ # @overload disassociate_software_from_image_builder(params = {})
4366
+ # @param [Hash] params ({})
4367
+ def disassociate_software_from_image_builder(params = {}, options = {})
4368
+ req = build_request(:disassociate_software_from_image_builder, params)
4369
+ req.send_request(options)
4370
+ end
4371
+
4007
4372
  # Enables a user in the user pool. After being enabled, users can sign
4008
4373
  # in to AppStream 2.0 and open applications from the stacks to which
4009
4374
  # they are assigned.
@@ -4330,7 +4695,7 @@ module Aws::AppStream
4330
4695
  # resp.image_builder.instance_type #=> String
4331
4696
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
4332
4697
  # resp.image_builder.iam_role_arn #=> String
4333
- # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
4698
+ # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION", "PENDING_SYNCING_APPS", "SYNCING_APPS"
4334
4699
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
4335
4700
  # resp.image_builder.state_change_reason.message #=> String
4336
4701
  # resp.image_builder.created_time #=> Time
@@ -4358,6 +4723,34 @@ module Aws::AppStream
4358
4723
  req.send_request(options)
4359
4724
  end
4360
4725
 
4726
+ # Initiates license included applications deployment to an image builder
4727
+ # instance.
4728
+ #
4729
+ # @option params [required, String] :image_builder_name
4730
+ # The name of the target image builder instance.
4731
+ #
4732
+ # @option params [Boolean] :retry_failed_deployments
4733
+ # Whether to retry previously failed license included application
4734
+ # deployments.
4735
+ #
4736
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4737
+ #
4738
+ # @example Request syntax with placeholder values
4739
+ #
4740
+ # resp = client.start_software_deployment_to_image_builder({
4741
+ # image_builder_name: "Name", # required
4742
+ # retry_failed_deployments: false,
4743
+ # })
4744
+ #
4745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartSoftwareDeploymentToImageBuilder AWS API Documentation
4746
+ #
4747
+ # @overload start_software_deployment_to_image_builder(params = {})
4748
+ # @param [Hash] params ({})
4749
+ def start_software_deployment_to_image_builder(params = {}, options = {})
4750
+ req = build_request(:start_software_deployment_to_image_builder, params)
4751
+ req.send_request(options)
4752
+ end
4753
+
4361
4754
  # Stops an app block builder.
4362
4755
  #
4363
4756
  # Stopping an app block builder terminates the instance, and the
@@ -4462,7 +4855,7 @@ module Aws::AppStream
4462
4855
  # resp.image_builder.instance_type #=> String
4463
4856
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
4464
4857
  # resp.image_builder.iam_role_arn #=> String
4465
- # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION"
4858
+ # resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED", "UPDATING", "PENDING_QUALIFICATION", "PENDING_SYNCING_APPS", "SYNCING_APPS"
4466
4859
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
4467
4860
  # resp.image_builder.state_change_reason.message #=> String
4468
4861
  # resp.image_builder.created_time #=> Time
@@ -5569,7 +5962,7 @@ module Aws::AppStream
5569
5962
  tracer: tracer
5570
5963
  )
5571
5964
  context[:gem_name] = 'aws-sdk-appstream'
5572
- context[:gem_version] = '1.118.0'
5965
+ context[:gem_version] = '1.119.0'
5573
5966
  Seahorse::Client::Request.new(handlers, context)
5574
5967
  end
5575
5968