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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +399 -6
- data/lib/aws-sdk-appstream/client_api.rb +130 -0
- data/lib/aws-sdk-appstream/endpoint_parameters.rb +4 -4
- data/lib/aws-sdk-appstream/types.rb +502 -2
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +60 -1
- data/sig/types.rbs +76 -1
- metadata +1 -1
@@ -36,6 +36,50 @@ module Aws::AppStream
|
|
36
36
|
include Aws::Structure
|
37
37
|
end
|
38
38
|
|
39
|
+
# The collection of license usage records.
|
40
|
+
#
|
41
|
+
# @!attribute [rw] user_arn
|
42
|
+
# The ARN of the user who used the license-included application.
|
43
|
+
# @return [String]
|
44
|
+
#
|
45
|
+
# @!attribute [rw] billing_period
|
46
|
+
# The billing period for the license usage record.
|
47
|
+
# @return [String]
|
48
|
+
#
|
49
|
+
# @!attribute [rw] owner_aws_account_id
|
50
|
+
# The account ID of the owner of the license.
|
51
|
+
# @return [String]
|
52
|
+
#
|
53
|
+
# @!attribute [rw] subscription_first_used_date
|
54
|
+
# The date and time when the license was first used.
|
55
|
+
# @return [Time]
|
56
|
+
#
|
57
|
+
# @!attribute [rw] subscription_last_used_date
|
58
|
+
# The date and time when the license was last used.
|
59
|
+
# @return [Time]
|
60
|
+
#
|
61
|
+
# @!attribute [rw] license_type
|
62
|
+
# The type of license (for example, Microsoft Office).
|
63
|
+
# @return [String]
|
64
|
+
#
|
65
|
+
# @!attribute [rw] user_id
|
66
|
+
# The ID of the user who used the license-included application.
|
67
|
+
# @return [String]
|
68
|
+
#
|
69
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AdminAppLicenseUsageRecord AWS API Documentation
|
70
|
+
#
|
71
|
+
class AdminAppLicenseUsageRecord < Struct.new(
|
72
|
+
:user_arn,
|
73
|
+
:billing_period,
|
74
|
+
:owner_aws_account_id,
|
75
|
+
:subscription_first_used_date,
|
76
|
+
:subscription_last_used_date,
|
77
|
+
:license_type,
|
78
|
+
:user_id)
|
79
|
+
SENSITIVE = []
|
80
|
+
include Aws::Structure
|
81
|
+
end
|
82
|
+
|
39
83
|
# Describes an app block.
|
40
84
|
#
|
41
85
|
# App blocks are an Amazon AppStream 2.0 resource that stores the
|
@@ -507,6 +551,78 @@ module Aws::AppStream
|
|
507
551
|
#
|
508
552
|
class AssociateFleetResult < Aws::EmptyStructure; end
|
509
553
|
|
554
|
+
# @!attribute [rw] image_builder_name
|
555
|
+
# The name of the target image builder instance.
|
556
|
+
# @return [String]
|
557
|
+
#
|
558
|
+
# @!attribute [rw] software_names
|
559
|
+
# The list of license included applications to associate with the
|
560
|
+
# image builder.
|
561
|
+
#
|
562
|
+
# Possible values include the following:
|
563
|
+
#
|
564
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
|
565
|
+
#
|
566
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
|
567
|
+
#
|
568
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
|
569
|
+
#
|
570
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
|
571
|
+
#
|
572
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
|
573
|
+
#
|
574
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
|
575
|
+
#
|
576
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
|
577
|
+
#
|
578
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
|
579
|
+
#
|
580
|
+
# * Microsoft\_Project\_2021\_Professional\_32Bit
|
581
|
+
#
|
582
|
+
# * Microsoft\_Project\_2021\_Professional\_64Bit
|
583
|
+
#
|
584
|
+
# * Microsoft\_Project\_2024\_Professional\_32Bit
|
585
|
+
#
|
586
|
+
# * Microsoft\_Project\_2024\_Professional\_64Bit
|
587
|
+
#
|
588
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
|
589
|
+
#
|
590
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
|
591
|
+
#
|
592
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
|
593
|
+
#
|
594
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
|
595
|
+
#
|
596
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
|
597
|
+
#
|
598
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
|
599
|
+
#
|
600
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
|
601
|
+
#
|
602
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
|
603
|
+
#
|
604
|
+
# * Microsoft\_Project\_2021\_Standard\_32Bit
|
605
|
+
#
|
606
|
+
# * Microsoft\_Project\_2021\_Standard\_64Bit
|
607
|
+
#
|
608
|
+
# * Microsoft\_Project\_2024\_Standard\_32Bit
|
609
|
+
#
|
610
|
+
# * Microsoft\_Project\_2024\_Standard\_64Bit
|
611
|
+
# @return [Array<String>]
|
612
|
+
#
|
613
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AssociateSoftwareToImageBuilderRequest AWS API Documentation
|
614
|
+
#
|
615
|
+
class AssociateSoftwareToImageBuilderRequest < Struct.new(
|
616
|
+
:image_builder_name,
|
617
|
+
:software_names)
|
618
|
+
SENSITIVE = []
|
619
|
+
include Aws::Structure
|
620
|
+
end
|
621
|
+
|
622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AssociateSoftwareToImageBuilderResult AWS API Documentation
|
623
|
+
#
|
624
|
+
class AssociateSoftwareToImageBuilderResult < Aws::EmptyStructure; end
|
625
|
+
|
510
626
|
# @!attribute [rw] user_stack_associations
|
511
627
|
# The list of UserStackAssociation objects.
|
512
628
|
# @return [Array<Types::UserStackAssociation>]
|
@@ -1675,6 +1791,116 @@ module Aws::AppStream
|
|
1675
1791
|
# specified endpoints.
|
1676
1792
|
# @return [Array<Types::AccessEndpoint>]
|
1677
1793
|
#
|
1794
|
+
# @!attribute [rw] softwares_to_install
|
1795
|
+
# The list of license included applications to install on the image
|
1796
|
+
# builder during creation.
|
1797
|
+
#
|
1798
|
+
# Possible values include the following:
|
1799
|
+
#
|
1800
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
|
1801
|
+
#
|
1802
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
|
1803
|
+
#
|
1804
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
|
1805
|
+
#
|
1806
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
|
1807
|
+
#
|
1808
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
|
1809
|
+
#
|
1810
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
|
1811
|
+
#
|
1812
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
|
1813
|
+
#
|
1814
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
|
1815
|
+
#
|
1816
|
+
# * Microsoft\_Project\_2021\_Professional\_32Bit
|
1817
|
+
#
|
1818
|
+
# * Microsoft\_Project\_2021\_Professional\_64Bit
|
1819
|
+
#
|
1820
|
+
# * Microsoft\_Project\_2024\_Professional\_32Bit
|
1821
|
+
#
|
1822
|
+
# * Microsoft\_Project\_2024\_Professional\_64Bit
|
1823
|
+
#
|
1824
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
|
1825
|
+
#
|
1826
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
|
1827
|
+
#
|
1828
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
|
1829
|
+
#
|
1830
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
|
1831
|
+
#
|
1832
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
|
1833
|
+
#
|
1834
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
|
1835
|
+
#
|
1836
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
|
1837
|
+
#
|
1838
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
|
1839
|
+
#
|
1840
|
+
# * Microsoft\_Project\_2021\_Standard\_32Bit
|
1841
|
+
#
|
1842
|
+
# * Microsoft\_Project\_2021\_Standard\_64Bit
|
1843
|
+
#
|
1844
|
+
# * Microsoft\_Project\_2024\_Standard\_32Bit
|
1845
|
+
#
|
1846
|
+
# * Microsoft\_Project\_2024\_Standard\_64Bit
|
1847
|
+
# @return [Array<String>]
|
1848
|
+
#
|
1849
|
+
# @!attribute [rw] softwares_to_uninstall
|
1850
|
+
# The list of license included applications to uninstall from the
|
1851
|
+
# image builder during creation.
|
1852
|
+
#
|
1853
|
+
# Possible values include the following:
|
1854
|
+
#
|
1855
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
|
1856
|
+
#
|
1857
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
|
1858
|
+
#
|
1859
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
|
1860
|
+
#
|
1861
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
|
1862
|
+
#
|
1863
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
|
1864
|
+
#
|
1865
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
|
1866
|
+
#
|
1867
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
|
1868
|
+
#
|
1869
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
|
1870
|
+
#
|
1871
|
+
# * Microsoft\_Project\_2021\_Professional\_32Bit
|
1872
|
+
#
|
1873
|
+
# * Microsoft\_Project\_2021\_Professional\_64Bit
|
1874
|
+
#
|
1875
|
+
# * Microsoft\_Project\_2024\_Professional\_32Bit
|
1876
|
+
#
|
1877
|
+
# * Microsoft\_Project\_2024\_Professional\_64Bit
|
1878
|
+
#
|
1879
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
|
1880
|
+
#
|
1881
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
|
1882
|
+
#
|
1883
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
|
1884
|
+
#
|
1885
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
|
1886
|
+
#
|
1887
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
|
1888
|
+
#
|
1889
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
|
1890
|
+
#
|
1891
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
|
1892
|
+
#
|
1893
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
|
1894
|
+
#
|
1895
|
+
# * Microsoft\_Project\_2021\_Standard\_32Bit
|
1896
|
+
#
|
1897
|
+
# * Microsoft\_Project\_2021\_Standard\_64Bit
|
1898
|
+
#
|
1899
|
+
# * Microsoft\_Project\_2024\_Standard\_32Bit
|
1900
|
+
#
|
1901
|
+
# * Microsoft\_Project\_2024\_Standard\_64Bit
|
1902
|
+
# @return [Array<String>]
|
1903
|
+
#
|
1678
1904
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderRequest AWS API Documentation
|
1679
1905
|
#
|
1680
1906
|
class CreateImageBuilderRequest < Struct.new(
|
@@ -1690,7 +1916,9 @@ module Aws::AppStream
|
|
1690
1916
|
:domain_join_info,
|
1691
1917
|
:appstream_agent_version,
|
1692
1918
|
:tags,
|
1693
|
-
:access_endpoints
|
1919
|
+
:access_endpoints,
|
1920
|
+
:softwares_to_install,
|
1921
|
+
:softwares_to_uninstall)
|
1694
1922
|
SENSITIVE = []
|
1695
1923
|
include Aws::Structure
|
1696
1924
|
end
|
@@ -2502,6 +2730,48 @@ module Aws::AppStream
|
|
2502
2730
|
include Aws::Structure
|
2503
2731
|
end
|
2504
2732
|
|
2733
|
+
# @!attribute [rw] billing_period
|
2734
|
+
# Billing period for the usage record.
|
2735
|
+
#
|
2736
|
+
# Specify the value in *yyyy-mm* format. For example, for August 2025,
|
2737
|
+
# use *2025-08*.
|
2738
|
+
# @return [String]
|
2739
|
+
#
|
2740
|
+
# @!attribute [rw] max_results
|
2741
|
+
# The maximum number of results to return.
|
2742
|
+
# @return [Integer]
|
2743
|
+
#
|
2744
|
+
# @!attribute [rw] next_token
|
2745
|
+
# Token for pagination of results.
|
2746
|
+
# @return [String]
|
2747
|
+
#
|
2748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppLicenseUsageRequest AWS API Documentation
|
2749
|
+
#
|
2750
|
+
class DescribeAppLicenseUsageRequest < Struct.new(
|
2751
|
+
:billing_period,
|
2752
|
+
:max_results,
|
2753
|
+
:next_token)
|
2754
|
+
SENSITIVE = []
|
2755
|
+
include Aws::Structure
|
2756
|
+
end
|
2757
|
+
|
2758
|
+
# @!attribute [rw] app_license_usages
|
2759
|
+
# Collection of license usage records.
|
2760
|
+
# @return [Array<Types::AdminAppLicenseUsageRecord>]
|
2761
|
+
#
|
2762
|
+
# @!attribute [rw] next_token
|
2763
|
+
# Token for pagination of results.
|
2764
|
+
# @return [String]
|
2765
|
+
#
|
2766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeAppLicenseUsageResult AWS API Documentation
|
2767
|
+
#
|
2768
|
+
class DescribeAppLicenseUsageResult < Struct.new(
|
2769
|
+
:app_license_usages,
|
2770
|
+
:next_token)
|
2771
|
+
SENSITIVE = []
|
2772
|
+
include Aws::Structure
|
2773
|
+
end
|
2774
|
+
|
2505
2775
|
# @!attribute [rw] fleet_name
|
2506
2776
|
# The name of the fleet.
|
2507
2777
|
# @return [String]
|
@@ -2924,6 +3194,62 @@ module Aws::AppStream
|
|
2924
3194
|
include Aws::Structure
|
2925
3195
|
end
|
2926
3196
|
|
3197
|
+
# @!attribute [rw] associated_resource
|
3198
|
+
# The ARN of the resource to describe software associations. Possible
|
3199
|
+
# resources are Image and ImageBuilder.
|
3200
|
+
# @return [String]
|
3201
|
+
#
|
3202
|
+
# @!attribute [rw] max_results
|
3203
|
+
# The maximum number of results to return.
|
3204
|
+
# @return [Integer]
|
3205
|
+
#
|
3206
|
+
# @!attribute [rw] next_token
|
3207
|
+
# The pagination token to use to retrieve the next page of results for
|
3208
|
+
# this operation.
|
3209
|
+
# @return [String]
|
3210
|
+
#
|
3211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSoftwareAssociationsRequest AWS API Documentation
|
3212
|
+
#
|
3213
|
+
class DescribeSoftwareAssociationsRequest < Struct.new(
|
3214
|
+
:associated_resource,
|
3215
|
+
:max_results,
|
3216
|
+
:next_token)
|
3217
|
+
SENSITIVE = []
|
3218
|
+
include Aws::Structure
|
3219
|
+
end
|
3220
|
+
|
3221
|
+
# @!attribute [rw] associated_resource
|
3222
|
+
# The ARN of the resource to describe software associations.
|
3223
|
+
# @return [String]
|
3224
|
+
#
|
3225
|
+
# @!attribute [rw] software_associations
|
3226
|
+
# Collection of license included applications association details
|
3227
|
+
# including:
|
3228
|
+
#
|
3229
|
+
# * License included application name and version information
|
3230
|
+
#
|
3231
|
+
# * Deployment status (SoftwareDeploymentStatus enum)
|
3232
|
+
#
|
3233
|
+
# * Error details for failed deployments
|
3234
|
+
#
|
3235
|
+
# * Association timestamps
|
3236
|
+
# @return [Array<Types::SoftwareAssociations>]
|
3237
|
+
#
|
3238
|
+
# @!attribute [rw] next_token
|
3239
|
+
# The pagination token to use to retrieve the next page of results for
|
3240
|
+
# this operation.
|
3241
|
+
# @return [String]
|
3242
|
+
#
|
3243
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSoftwareAssociationsResult AWS API Documentation
|
3244
|
+
#
|
3245
|
+
class DescribeSoftwareAssociationsResult < Struct.new(
|
3246
|
+
:associated_resource,
|
3247
|
+
:software_associations,
|
3248
|
+
:next_token)
|
3249
|
+
SENSITIVE = []
|
3250
|
+
include Aws::Structure
|
3251
|
+
end
|
3252
|
+
|
2927
3253
|
# @!attribute [rw] names
|
2928
3254
|
# The names of the stacks to describe.
|
2929
3255
|
# @return [Array<String>]
|
@@ -3279,6 +3605,78 @@ module Aws::AppStream
|
|
3279
3605
|
#
|
3280
3606
|
class DisassociateFleetResult < Aws::EmptyStructure; end
|
3281
3607
|
|
3608
|
+
# @!attribute [rw] image_builder_name
|
3609
|
+
# The name of the target image builder instance.
|
3610
|
+
# @return [String]
|
3611
|
+
#
|
3612
|
+
# @!attribute [rw] software_names
|
3613
|
+
# The list of license included applications to disassociate from the
|
3614
|
+
# image builder.
|
3615
|
+
#
|
3616
|
+
# Possible values include the following:
|
3617
|
+
#
|
3618
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
|
3619
|
+
#
|
3620
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
|
3621
|
+
#
|
3622
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
|
3623
|
+
#
|
3624
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
|
3625
|
+
#
|
3626
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
|
3627
|
+
#
|
3628
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
|
3629
|
+
#
|
3630
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
|
3631
|
+
#
|
3632
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
|
3633
|
+
#
|
3634
|
+
# * Microsoft\_Project\_2021\_Professional\_32Bit
|
3635
|
+
#
|
3636
|
+
# * Microsoft\_Project\_2021\_Professional\_64Bit
|
3637
|
+
#
|
3638
|
+
# * Microsoft\_Project\_2024\_Professional\_32Bit
|
3639
|
+
#
|
3640
|
+
# * Microsoft\_Project\_2024\_Professional\_64Bit
|
3641
|
+
#
|
3642
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
|
3643
|
+
#
|
3644
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
|
3645
|
+
#
|
3646
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
|
3647
|
+
#
|
3648
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
|
3649
|
+
#
|
3650
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
|
3651
|
+
#
|
3652
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
|
3653
|
+
#
|
3654
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
|
3655
|
+
#
|
3656
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
|
3657
|
+
#
|
3658
|
+
# * Microsoft\_Project\_2021\_Standard\_32Bit
|
3659
|
+
#
|
3660
|
+
# * Microsoft\_Project\_2021\_Standard\_64Bit
|
3661
|
+
#
|
3662
|
+
# * Microsoft\_Project\_2024\_Standard\_32Bit
|
3663
|
+
#
|
3664
|
+
# * Microsoft\_Project\_2024\_Standard\_64Bit
|
3665
|
+
# @return [Array<String>]
|
3666
|
+
#
|
3667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisassociateSoftwareFromImageBuilderRequest AWS API Documentation
|
3668
|
+
#
|
3669
|
+
class DisassociateSoftwareFromImageBuilderRequest < Struct.new(
|
3670
|
+
:image_builder_name,
|
3671
|
+
:software_names)
|
3672
|
+
SENSITIVE = []
|
3673
|
+
include Aws::Structure
|
3674
|
+
end
|
3675
|
+
|
3676
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisassociateSoftwareFromImageBuilderResult AWS API Documentation
|
3677
|
+
#
|
3678
|
+
class DisassociateSoftwareFromImageBuilderResult < Aws::EmptyStructure; end
|
3679
|
+
|
3282
3680
|
# Describes the configuration information required to join fleets and
|
3283
3681
|
# image builders to Microsoft Active Directory domains.
|
3284
3682
|
#
|
@@ -3949,6 +4347,10 @@ module Aws::AppStream
|
|
3949
4347
|
# Indicates whether the image is shared with another account ID.
|
3950
4348
|
# @return [String]
|
3951
4349
|
#
|
4350
|
+
# @!attribute [rw] managed_software_included
|
4351
|
+
# Indicates whether the image includes license-included applications.
|
4352
|
+
# @return [Boolean]
|
4353
|
+
#
|
3952
4354
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
|
3953
4355
|
#
|
3954
4356
|
class Image < Struct.new(
|
@@ -3972,7 +4374,8 @@ module Aws::AppStream
|
|
3972
4374
|
:latest_appstream_agent_version,
|
3973
4375
|
:supported_instance_families,
|
3974
4376
|
:dynamic_app_providers_enabled,
|
3975
|
-
:image_shared_with_others
|
4377
|
+
:image_shared_with_others,
|
4378
|
+
:managed_software_included)
|
3976
4379
|
SENSITIVE = []
|
3977
4380
|
include Aws::Structure
|
3978
4381
|
end
|
@@ -4817,6 +5220,81 @@ module Aws::AppStream
|
|
4817
5220
|
include Aws::Structure
|
4818
5221
|
end
|
4819
5222
|
|
5223
|
+
# The association between a license-included application and a resource.
|
5224
|
+
#
|
5225
|
+
# @!attribute [rw] software_name
|
5226
|
+
# The name of the license-included application.
|
5227
|
+
#
|
5228
|
+
# Possible values include the following:
|
5229
|
+
#
|
5230
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_32Bit
|
5231
|
+
#
|
5232
|
+
# * Microsoft\_Office\_2021\_LTSC\_Professional\_Plus\_64Bit
|
5233
|
+
#
|
5234
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_32Bit
|
5235
|
+
#
|
5236
|
+
# * Microsoft\_Office\_2024\_LTSC\_Professional\_Plus\_64Bit
|
5237
|
+
#
|
5238
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_32Bit
|
5239
|
+
#
|
5240
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Professional\_64Bit
|
5241
|
+
#
|
5242
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_32Bit
|
5243
|
+
#
|
5244
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Professional\_64Bit
|
5245
|
+
#
|
5246
|
+
# * Microsoft\_Project\_2021\_Professional\_32Bit
|
5247
|
+
#
|
5248
|
+
# * Microsoft\_Project\_2021\_Professional\_64Bit
|
5249
|
+
#
|
5250
|
+
# * Microsoft\_Project\_2024\_Professional\_32Bit
|
5251
|
+
#
|
5252
|
+
# * Microsoft\_Project\_2024\_Professional\_64Bit
|
5253
|
+
#
|
5254
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_32Bit
|
5255
|
+
#
|
5256
|
+
# * Microsoft\_Office\_2021\_LTSC\_Standard\_64Bit
|
5257
|
+
#
|
5258
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_32Bit
|
5259
|
+
#
|
5260
|
+
# * Microsoft\_Office\_2024\_LTSC\_Standard\_64Bit
|
5261
|
+
#
|
5262
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_32Bit
|
5263
|
+
#
|
5264
|
+
# * Microsoft\_Visio\_2021\_LTSC\_Standard\_64Bit
|
5265
|
+
#
|
5266
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_32Bit
|
5267
|
+
#
|
5268
|
+
# * Microsoft\_Visio\_2024\_LTSC\_Standard\_64Bit
|
5269
|
+
#
|
5270
|
+
# * Microsoft\_Project\_2021\_Standard\_32Bit
|
5271
|
+
#
|
5272
|
+
# * Microsoft\_Project\_2021\_Standard\_64Bit
|
5273
|
+
#
|
5274
|
+
# * Microsoft\_Project\_2024\_Standard\_32Bit
|
5275
|
+
#
|
5276
|
+
# * Microsoft\_Project\_2024\_Standard\_64Bit
|
5277
|
+
# @return [String]
|
5278
|
+
#
|
5279
|
+
# @!attribute [rw] status
|
5280
|
+
# The deployment status of the license-included application.
|
5281
|
+
# @return [String]
|
5282
|
+
#
|
5283
|
+
# @!attribute [rw] deployment_error
|
5284
|
+
# The error details for failed deployments of the license-included
|
5285
|
+
# application.
|
5286
|
+
# @return [Array<Types::ErrorDetails>]
|
5287
|
+
#
|
5288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/SoftwareAssociations AWS API Documentation
|
5289
|
+
#
|
5290
|
+
class SoftwareAssociations < Struct.new(
|
5291
|
+
:software_name,
|
5292
|
+
:status,
|
5293
|
+
:deployment_error)
|
5294
|
+
SENSITIVE = []
|
5295
|
+
include Aws::Structure
|
5296
|
+
end
|
5297
|
+
|
4820
5298
|
# Describes a stack.
|
4821
5299
|
#
|
4822
5300
|
# @!attribute [rw] arn
|
@@ -4996,6 +5474,28 @@ module Aws::AppStream
|
|
4996
5474
|
include Aws::Structure
|
4997
5475
|
end
|
4998
5476
|
|
5477
|
+
# @!attribute [rw] image_builder_name
|
5478
|
+
# The name of the target image builder instance.
|
5479
|
+
# @return [String]
|
5480
|
+
#
|
5481
|
+
# @!attribute [rw] retry_failed_deployments
|
5482
|
+
# Whether to retry previously failed license included application
|
5483
|
+
# deployments.
|
5484
|
+
# @return [Boolean]
|
5485
|
+
#
|
5486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartSoftwareDeploymentToImageBuilderRequest AWS API Documentation
|
5487
|
+
#
|
5488
|
+
class StartSoftwareDeploymentToImageBuilderRequest < Struct.new(
|
5489
|
+
:image_builder_name,
|
5490
|
+
:retry_failed_deployments)
|
5491
|
+
SENSITIVE = []
|
5492
|
+
include Aws::Structure
|
5493
|
+
end
|
5494
|
+
|
5495
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartSoftwareDeploymentToImageBuilderResult AWS API Documentation
|
5496
|
+
#
|
5497
|
+
class StartSoftwareDeploymentToImageBuilderResult < Aws::EmptyStructure; end
|
5498
|
+
|
4999
5499
|
# @!attribute [rw] name
|
5000
5500
|
# The name of the app block builder.
|
5001
5501
|
# @return [String]
|
data/lib/aws-sdk-appstream.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -122,6 +122,16 @@ module Aws
|
|
122
122
|
) -> _AssociateFleetResponseSuccess
|
123
123
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateFleetResponseSuccess
|
124
124
|
|
125
|
+
interface _AssociateSoftwareToImageBuilderResponseSuccess
|
126
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateSoftwareToImageBuilderResult]
|
127
|
+
end
|
128
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#associate_software_to_image_builder-instance_method
|
129
|
+
def associate_software_to_image_builder: (
|
130
|
+
image_builder_name: ::String,
|
131
|
+
software_names: Array[::String]
|
132
|
+
) -> _AssociateSoftwareToImageBuilderResponseSuccess
|
133
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateSoftwareToImageBuilderResponseSuccess
|
134
|
+
|
125
135
|
interface _BatchAssociateUserStackResponseSuccess
|
126
136
|
include ::Seahorse::Client::_ResponseSuccess[Types::BatchAssociateUserStackResult]
|
127
137
|
def errors: () -> ::Array[Types::UserStackAssociationError]
|
@@ -377,7 +387,9 @@ module Aws
|
|
377
387
|
endpoint_type: ("STREAMING"),
|
378
388
|
vpce_id: ::String?
|
379
389
|
},
|
380
|
-
]
|
390
|
+
],
|
391
|
+
?softwares_to_install: Array[::String],
|
392
|
+
?softwares_to_uninstall: Array[::String]
|
381
393
|
) -> _CreateImageBuilderResponseSuccess
|
382
394
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImageBuilderResponseSuccess
|
383
395
|
|
@@ -679,6 +691,19 @@ module Aws
|
|
679
691
|
) -> _DescribeAppBlocksResponseSuccess
|
680
692
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppBlocksResponseSuccess
|
681
693
|
|
694
|
+
interface _DescribeAppLicenseUsageResponseSuccess
|
695
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAppLicenseUsageResult]
|
696
|
+
def app_license_usages: () -> ::Array[Types::AdminAppLicenseUsageRecord]
|
697
|
+
def next_token: () -> ::String
|
698
|
+
end
|
699
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#describe_app_license_usage-instance_method
|
700
|
+
def describe_app_license_usage: (
|
701
|
+
billing_period: ::String,
|
702
|
+
?max_results: ::Integer,
|
703
|
+
?next_token: ::String
|
704
|
+
) -> _DescribeAppLicenseUsageResponseSuccess
|
705
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAppLicenseUsageResponseSuccess
|
706
|
+
|
682
707
|
interface _DescribeApplicationFleetAssociationsResponseSuccess
|
683
708
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationFleetAssociationsResult]
|
684
709
|
def application_fleet_associations: () -> ::Array[Types::ApplicationFleetAssociation]
|
@@ -805,6 +830,20 @@ module Aws
|
|
805
830
|
) -> _DescribeSessionsResponseSuccess
|
806
831
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSessionsResponseSuccess
|
807
832
|
|
833
|
+
interface _DescribeSoftwareAssociationsResponseSuccess
|
834
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSoftwareAssociationsResult]
|
835
|
+
def associated_resource: () -> ::String
|
836
|
+
def software_associations: () -> ::Array[Types::SoftwareAssociations]
|
837
|
+
def next_token: () -> ::String
|
838
|
+
end
|
839
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#describe_software_associations-instance_method
|
840
|
+
def describe_software_associations: (
|
841
|
+
associated_resource: ::String,
|
842
|
+
?max_results: ::Integer,
|
843
|
+
?next_token: ::String
|
844
|
+
) -> _DescribeSoftwareAssociationsResponseSuccess
|
845
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSoftwareAssociationsResponseSuccess
|
846
|
+
|
808
847
|
interface _DescribeStacksResponseSuccess
|
809
848
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeStacksResult]
|
810
849
|
def stacks: () -> ::Array[Types::Stack]
|
@@ -918,6 +957,16 @@ module Aws
|
|
918
957
|
) -> _DisassociateFleetResponseSuccess
|
919
958
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFleetResponseSuccess
|
920
959
|
|
960
|
+
interface _DisassociateSoftwareFromImageBuilderResponseSuccess
|
961
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateSoftwareFromImageBuilderResult]
|
962
|
+
end
|
963
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#disassociate_software_from_image_builder-instance_method
|
964
|
+
def disassociate_software_from_image_builder: (
|
965
|
+
image_builder_name: ::String,
|
966
|
+
software_names: Array[::String]
|
967
|
+
) -> _DisassociateSoftwareFromImageBuilderResponseSuccess
|
968
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateSoftwareFromImageBuilderResponseSuccess
|
969
|
+
|
921
970
|
interface _EnableUserResponseSuccess
|
922
971
|
include ::Seahorse::Client::_ResponseSuccess[Types::EnableUserResult]
|
923
972
|
end
|
@@ -1015,6 +1064,16 @@ module Aws
|
|
1015
1064
|
) -> _StartImageBuilderResponseSuccess
|
1016
1065
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartImageBuilderResponseSuccess
|
1017
1066
|
|
1067
|
+
interface _StartSoftwareDeploymentToImageBuilderResponseSuccess
|
1068
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartSoftwareDeploymentToImageBuilderResult]
|
1069
|
+
end
|
1070
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#start_software_deployment_to_image_builder-instance_method
|
1071
|
+
def start_software_deployment_to_image_builder: (
|
1072
|
+
image_builder_name: ::String,
|
1073
|
+
?retry_failed_deployments: bool
|
1074
|
+
) -> _StartSoftwareDeploymentToImageBuilderResponseSuccess
|
1075
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSoftwareDeploymentToImageBuilderResponseSuccess
|
1076
|
+
|
1018
1077
|
interface _StopAppBlockBuilderResponseSuccess
|
1019
1078
|
include ::Seahorse::Client::_ResponseSuccess[Types::StopAppBlockBuilderResult]
|
1020
1079
|
def app_block_builder: () -> Types::AppBlockBuilder
|