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.
data/sig/types.rbs CHANGED
@@ -14,6 +14,17 @@ module Aws::AppStream
14
14
  SENSITIVE: []
15
15
  end
16
16
 
17
+ class AdminAppLicenseUsageRecord
18
+ attr_accessor user_arn: ::String
19
+ attr_accessor billing_period: ::String
20
+ attr_accessor owner_aws_account_id: ::String
21
+ attr_accessor subscription_first_used_date: ::Time
22
+ attr_accessor subscription_last_used_date: ::Time
23
+ attr_accessor license_type: ::String
24
+ attr_accessor user_id: ::String
25
+ SENSITIVE: []
26
+ end
27
+
17
28
  class AppBlock
18
29
  attr_accessor name: ::String
19
30
  attr_accessor arn: ::String
@@ -138,6 +149,15 @@ module Aws::AppStream
138
149
  class AssociateFleetResult < Aws::EmptyStructure
139
150
  end
140
151
 
152
+ class AssociateSoftwareToImageBuilderRequest
153
+ attr_accessor image_builder_name: ::String
154
+ attr_accessor software_names: ::Array[::String]
155
+ SENSITIVE: []
156
+ end
157
+
158
+ class AssociateSoftwareToImageBuilderResult < Aws::EmptyStructure
159
+ end
160
+
141
161
  class BatchAssociateUserStackRequest
142
162
  attr_accessor user_stack_associations: ::Array[Types::UserStackAssociation]
143
163
  SENSITIVE: []
@@ -340,6 +360,8 @@ module Aws::AppStream
340
360
  attr_accessor appstream_agent_version: ::String
341
361
  attr_accessor tags: ::Hash[::String, ::String]
342
362
  attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
363
+ attr_accessor softwares_to_install: ::Array[::String]
364
+ attr_accessor softwares_to_uninstall: ::Array[::String]
343
365
  SENSITIVE: []
344
366
  end
345
367
 
@@ -598,6 +620,19 @@ module Aws::AppStream
598
620
  SENSITIVE: []
599
621
  end
600
622
 
623
+ class DescribeAppLicenseUsageRequest
624
+ attr_accessor billing_period: ::String
625
+ attr_accessor max_results: ::Integer
626
+ attr_accessor next_token: ::String
627
+ SENSITIVE: []
628
+ end
629
+
630
+ class DescribeAppLicenseUsageResult
631
+ attr_accessor app_license_usages: ::Array[Types::AdminAppLicenseUsageRecord]
632
+ attr_accessor next_token: ::String
633
+ SENSITIVE: []
634
+ end
635
+
601
636
  class DescribeApplicationFleetAssociationsRequest
602
637
  attr_accessor fleet_name: ::String
603
638
  attr_accessor application_arn: ::String
@@ -724,6 +759,20 @@ module Aws::AppStream
724
759
  SENSITIVE: []
725
760
  end
726
761
 
762
+ class DescribeSoftwareAssociationsRequest
763
+ attr_accessor associated_resource: ::String
764
+ attr_accessor max_results: ::Integer
765
+ attr_accessor next_token: ::String
766
+ SENSITIVE: []
767
+ end
768
+
769
+ class DescribeSoftwareAssociationsResult
770
+ attr_accessor associated_resource: ::String
771
+ attr_accessor software_associations: ::Array[Types::SoftwareAssociations]
772
+ attr_accessor next_token: ::String
773
+ SENSITIVE: []
774
+ end
775
+
727
776
  class DescribeStacksRequest
728
777
  attr_accessor names: ::Array[::String]
729
778
  attr_accessor next_token: ::String
@@ -841,6 +890,15 @@ module Aws::AppStream
841
890
  class DisassociateFleetResult < Aws::EmptyStructure
842
891
  end
843
892
 
893
+ class DisassociateSoftwareFromImageBuilderRequest
894
+ attr_accessor image_builder_name: ::String
895
+ attr_accessor software_names: ::Array[::String]
896
+ SENSITIVE: []
897
+ end
898
+
899
+ class DisassociateSoftwareFromImageBuilderResult < Aws::EmptyStructure
900
+ end
901
+
844
902
  class DomainJoinInfo
845
903
  attr_accessor directory_name: ::String
846
904
  attr_accessor organizational_unit_distinguished_name: ::String
@@ -959,6 +1017,7 @@ module Aws::AppStream
959
1017
  attr_accessor supported_instance_families: ::Array[::String]
960
1018
  attr_accessor dynamic_app_providers_enabled: ("ENABLED" | "DISABLED")
961
1019
  attr_accessor image_shared_with_others: ("TRUE" | "FALSE")
1020
+ attr_accessor managed_software_included: bool
962
1021
  SENSITIVE: []
963
1022
  end
964
1023
 
@@ -972,7 +1031,7 @@ module Aws::AppStream
972
1031
  attr_accessor instance_type: ::String
973
1032
  attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
974
1033
  attr_accessor iam_role_arn: ::String
975
- attr_accessor state: ("PENDING" | "UPDATING_AGENT" | "RUNNING" | "STOPPING" | "STOPPED" | "REBOOTING" | "SNAPSHOTTING" | "DELETING" | "FAILED" | "UPDATING" | "PENDING_QUALIFICATION")
1034
+ attr_accessor state: ("PENDING" | "UPDATING_AGENT" | "RUNNING" | "STOPPING" | "STOPPED" | "REBOOTING" | "SNAPSHOTTING" | "DELETING" | "FAILED" | "UPDATING" | "PENDING_QUALIFICATION" | "PENDING_SYNCING_APPS" | "SYNCING_APPS")
976
1035
  attr_accessor state_change_reason: Types::ImageBuilderStateChangeReason
977
1036
  attr_accessor created_time: ::Time
978
1037
  attr_accessor enable_default_internet_access: bool
@@ -1166,6 +1225,13 @@ module Aws::AppStream
1166
1225
  SENSITIVE: []
1167
1226
  end
1168
1227
 
1228
+ class SoftwareAssociations
1229
+ attr_accessor software_name: ::String
1230
+ attr_accessor status: ("STAGED_FOR_INSTALLATION" | "PENDING_INSTALLATION" | "INSTALLED" | "STAGED_FOR_UNINSTALLATION" | "PENDING_UNINSTALLATION" | "FAILED_TO_INSTALL" | "FAILED_TO_UNINSTALL")
1231
+ attr_accessor deployment_error: ::Array[Types::ErrorDetails]
1232
+ SENSITIVE: []
1233
+ end
1234
+
1169
1235
  class Stack
1170
1236
  attr_accessor arn: ::String
1171
1237
  attr_accessor name: ::String
@@ -1219,6 +1285,15 @@ module Aws::AppStream
1219
1285
  SENSITIVE: []
1220
1286
  end
1221
1287
 
1288
+ class StartSoftwareDeploymentToImageBuilderRequest
1289
+ attr_accessor image_builder_name: ::String
1290
+ attr_accessor retry_failed_deployments: bool
1291
+ SENSITIVE: []
1292
+ end
1293
+
1294
+ class StartSoftwareDeploymentToImageBuilderResult < Aws::EmptyStructure
1295
+ end
1296
+
1222
1297
  class StopAppBlockBuilderRequest
1223
1298
  attr_accessor name: ::String
1224
1299
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appstream
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.118.0
4
+ version: 1.119.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services