aws-sdk-appstream 1.117.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: c60c8adee820e38dbe3cfb987a1abc27630e68d9c453142738548b2a2dd79440
4
- data.tar.gz: 1fe6c2ad9fcaf464ecf9c4ef0dedb517720810048e9eaa6920738f47ee62fee3
3
+ metadata.gz: '0880ea6c66796b879c97b874cbf7e1aca6ea6d76d8dbe32ee2f47a3ccfcf39ed'
4
+ data.tar.gz: 49c196dbc4fe2b616c3837ccc045ebd074e104afd56bf3a6a0d38a2872b2fea7
5
5
  SHA512:
6
- metadata.gz: bf38b3cfcc0be3f888392c7bd04aa887f8b31c182d71f08676d2639717964e86133431b73caadf7f86bc9dc7bf12b5e05b24bb4410c1a5a4aabfa32b9f27668e
7
- data.tar.gz: cbb43d2875b7787cc5354dd3bf84822e1eb69288e3b40663fa51b523083238187d25fff006ebafc584e5ae38f02696fcb3ebccb37717bca7af8c2d6a7a9ce692
6
+ metadata.gz: 4790575fca0aba79706680669430ff8eb652ea71cb755f04599bcaac7680349abc6ad315e6b6a13bdc697b7194a7f009fd593903f3aee02f9af350f8a7f12e4a
7
+ data.tar.gz: 75ce24f61c1e8829b4d36ab3c28b51d695c0b4e1bd82eab22ae2cfbf3cc0d2828574a13378b3aaece545908016b25543821b1b58577e37bb2f6aed97bb32cf83
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.118.0 (2025-09-24)
10
+ ------------------
11
+
12
+ * Feature - G6f instance support for AppStream 2.0
13
+
4
14
  1.117.0 (2025-08-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.117.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.
@@ -1377,6 +1455,16 @@ module Aws::AppStream
1377
1455
  #
1378
1456
  # * stream.graphics.gr6.8xlarge
1379
1457
  #
1458
+ # * stream.graphics.g6f.large
1459
+ #
1460
+ # * stream.graphics.g6f.xlarge
1461
+ #
1462
+ # * stream.graphics.g6f.2xlarge
1463
+ #
1464
+ # * stream.graphics.g6f.4xlarge
1465
+ #
1466
+ # * stream.graphics.gr6f.4xlarge
1467
+ #
1380
1468
  # The following instance types are available for Elastic fleets:
1381
1469
  #
1382
1470
  # * stream.standard.small
@@ -1753,6 +1841,16 @@ module Aws::AppStream
1753
1841
  #
1754
1842
  # * stream.graphics.gr6.8xlarge
1755
1843
  #
1844
+ # * stream.graphics.g6f.large
1845
+ #
1846
+ # * stream.graphics.g6f.xlarge
1847
+ #
1848
+ # * stream.graphics.g6f.2xlarge
1849
+ #
1850
+ # * stream.graphics.g6f.4xlarge
1851
+ #
1852
+ # * stream.graphics.gr6f.4xlarge
1853
+ #
1756
1854
  # @option params [String] :description
1757
1855
  # The description to display.
1758
1856
  #
@@ -1816,6 +1914,114 @@ module Aws::AppStream
1816
1914
  # Administrators can connect to the image builder only through the
1817
1915
  # specified endpoints.
1818
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
+ #
1819
2025
  # @return [Types::CreateImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1820
2026
  #
1821
2027
  # * {Types::CreateImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
@@ -1849,6 +2055,8 @@ module Aws::AppStream
1849
2055
  # vpce_id: "String",
1850
2056
  # },
1851
2057
  # ],
2058
+ # softwares_to_install: ["String"],
2059
+ # softwares_to_uninstall: ["String"],
1852
2060
  # })
1853
2061
  #
1854
2062
  # @example Response structure
@@ -1865,7 +2073,7 @@ module Aws::AppStream
1865
2073
  # resp.image_builder.instance_type #=> String
1866
2074
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
1867
2075
  # resp.image_builder.iam_role_arn #=> String
1868
- # 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"
1869
2077
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
1870
2078
  # resp.image_builder.state_change_reason.message #=> String
1871
2079
  # resp.image_builder.created_time #=> Time
@@ -2341,6 +2549,7 @@ module Aws::AppStream
2341
2549
  # resp.image.supported_instance_families[0] #=> String
2342
2550
  # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2343
2551
  # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2552
+ # resp.image.managed_software_included #=> Boolean
2344
2553
  # resp.can_update_image #=> Boolean
2345
2554
  #
2346
2555
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUpdatedImage AWS API Documentation
@@ -2634,6 +2843,7 @@ module Aws::AppStream
2634
2843
  # resp.image.supported_instance_families[0] #=> String
2635
2844
  # resp.image.dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
2636
2845
  # resp.image.image_shared_with_others #=> String, one of "TRUE", "FALSE"
2846
+ # resp.image.managed_software_included #=> Boolean
2637
2847
  #
2638
2848
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
2639
2849
  #
@@ -2673,7 +2883,7 @@ module Aws::AppStream
2673
2883
  # resp.image_builder.instance_type #=> String
2674
2884
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
2675
2885
  # resp.image_builder.iam_role_arn #=> String
2676
- # 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"
2677
2887
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
2678
2888
  # resp.image_builder.state_change_reason.message #=> String
2679
2889
  # resp.image_builder.created_time #=> Time
@@ -2994,6 +3204,54 @@ module Aws::AppStream
2994
3204
  req.send_request(options)
2995
3205
  end
2996
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
+
2997
3255
  # Retrieves a list that describes one or more application fleet
2998
3256
  # associations. Either ApplicationArn or FleetName must be specified.
2999
3257
  #
@@ -3330,7 +3588,7 @@ module Aws::AppStream
3330
3588
  # resp.image_builders[0].instance_type #=> String
3331
3589
  # resp.image_builders[0].platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
3332
3590
  # resp.image_builders[0].iam_role_arn #=> String
3333
- # 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"
3334
3592
  # resp.image_builders[0].state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
3335
3593
  # resp.image_builders[0].state_change_reason.message #=> String
3336
3594
  # resp.image_builders[0].created_time #=> Time
@@ -3498,6 +3756,7 @@ module Aws::AppStream
3498
3756
  # resp.images[0].supported_instance_families[0] #=> String
3499
3757
  # resp.images[0].dynamic_app_providers_enabled #=> String, one of "ENABLED", "DISABLED"
3500
3758
  # resp.images[0].image_shared_with_others #=> String, one of "TRUE", "FALSE"
3759
+ # resp.images[0].managed_software_included #=> Boolean
3501
3760
  # resp.next_token #=> String
3502
3761
  #
3503
3762
  # @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
@@ -3584,6 +3843,54 @@ module Aws::AppStream
3584
3843
  req.send_request(options)
3585
3844
  end
3586
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
+
3587
3894
  # Retrieves a list that describes one or more specified stacks, if the
3588
3895
  # stack names are provided. Otherwise, all stacks in the account are
3589
3896
  # described.
@@ -3984,6 +4291,84 @@ module Aws::AppStream
3984
4291
  req.send_request(options)
3985
4292
  end
3986
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
+
3987
4372
  # Enables a user in the user pool. After being enabled, users can sign
3988
4373
  # in to AppStream 2.0 and open applications from the stacks to which
3989
4374
  # they are assigned.
@@ -4310,7 +4695,7 @@ module Aws::AppStream
4310
4695
  # resp.image_builder.instance_type #=> String
4311
4696
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
4312
4697
  # resp.image_builder.iam_role_arn #=> String
4313
- # 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"
4314
4699
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
4315
4700
  # resp.image_builder.state_change_reason.message #=> String
4316
4701
  # resp.image_builder.created_time #=> Time
@@ -4338,6 +4723,34 @@ module Aws::AppStream
4338
4723
  req.send_request(options)
4339
4724
  end
4340
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
+
4341
4754
  # Stops an app block builder.
4342
4755
  #
4343
4756
  # Stopping an app block builder terminates the instance, and the
@@ -4442,7 +4855,7 @@ module Aws::AppStream
4442
4855
  # resp.image_builder.instance_type #=> String
4443
4856
  # resp.image_builder.platform #=> String, one of "WINDOWS", "WINDOWS_SERVER_2016", "WINDOWS_SERVER_2019", "WINDOWS_SERVER_2022", "AMAZON_LINUX2", "RHEL8", "ROCKY_LINUX8"
4444
4857
  # resp.image_builder.iam_role_arn #=> String
4445
- # 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"
4446
4859
  # resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
4447
4860
  # resp.image_builder.state_change_reason.message #=> String
4448
4861
  # resp.image_builder.created_time #=> Time
@@ -5002,6 +5415,48 @@ module Aws::AppStream
5002
5415
  #
5003
5416
  # * stream.graphics-pro.16xlarge
5004
5417
  #
5418
+ # * stream.graphics.g5.xlarge
5419
+ #
5420
+ # * stream.graphics.g5.2xlarge
5421
+ #
5422
+ # * stream.graphics.g5.4xlarge
5423
+ #
5424
+ # * stream.graphics.g5.8xlarge
5425
+ #
5426
+ # * stream.graphics.g5.16xlarge
5427
+ #
5428
+ # * stream.graphics.g5.12xlarge
5429
+ #
5430
+ # * stream.graphics.g5.24xlarge
5431
+ #
5432
+ # * stream.graphics.g6.xlarge
5433
+ #
5434
+ # * stream.graphics.g6.2xlarge
5435
+ #
5436
+ # * stream.graphics.g6.4xlarge
5437
+ #
5438
+ # * stream.graphics.g6.8xlarge
5439
+ #
5440
+ # * stream.graphics.g6.16xlarge
5441
+ #
5442
+ # * stream.graphics.g6.12xlarge
5443
+ #
5444
+ # * stream.graphics.g6.24xlarge
5445
+ #
5446
+ # * stream.graphics.gr6.4xlarge
5447
+ #
5448
+ # * stream.graphics.gr6.8xlarge
5449
+ #
5450
+ # * stream.graphics.g6f.large
5451
+ #
5452
+ # * stream.graphics.g6f.xlarge
5453
+ #
5454
+ # * stream.graphics.g6f.2xlarge
5455
+ #
5456
+ # * stream.graphics.g6f.4xlarge
5457
+ #
5458
+ # * stream.graphics.gr6f.4xlarge
5459
+ #
5005
5460
  # The following instance types are available for Elastic fleets:
5006
5461
  #
5007
5462
  # * stream.standard.small
@@ -5507,7 +5962,7 @@ module Aws::AppStream
5507
5962
  tracer: tracer
5508
5963
  )
5509
5964
  context[:gem_name] = 'aws-sdk-appstream'
5510
- context[:gem_version] = '1.117.0'
5965
+ context[:gem_version] = '1.119.0'
5511
5966
  Seahorse::Client::Request.new(handlers, context)
5512
5967
  end
5513
5968