aws-sdk-appstream 1.121.0 → 1.122.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 +483 -146
- data/lib/aws-sdk-appstream/client_api.rb +170 -0
- data/lib/aws-sdk-appstream/errors.rb +16 -0
- data/lib/aws-sdk-appstream/types.rb +600 -173
- data/lib/aws-sdk-appstream.rb +1 -1
- data/sig/client.rbs +85 -3
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +113 -6
- metadata +1 -1
data/lib/aws-sdk-appstream.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -315,6 +315,20 @@ module Aws
|
|
|
315
315
|
) -> _CreateEntitlementResponseSuccess
|
|
316
316
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEntitlementResponseSuccess
|
|
317
317
|
|
|
318
|
+
interface _CreateExportImageTaskResponseSuccess
|
|
319
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateExportImageTaskResult]
|
|
320
|
+
def export_image_task: () -> Types::ExportImageTask
|
|
321
|
+
end
|
|
322
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#create_export_image_task-instance_method
|
|
323
|
+
def create_export_image_task: (
|
|
324
|
+
image_name: ::String,
|
|
325
|
+
ami_name: ::String,
|
|
326
|
+
iam_role_arn: ::String,
|
|
327
|
+
?tag_specifications: Hash[::String, ::String],
|
|
328
|
+
?ami_description: ::String
|
|
329
|
+
) -> _CreateExportImageTaskResponseSuccess
|
|
330
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateExportImageTaskResponseSuccess
|
|
331
|
+
|
|
318
332
|
interface _CreateFleetResponseSuccess
|
|
319
333
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateFleetResult]
|
|
320
334
|
def fleet: () -> Types::Fleet
|
|
@@ -354,7 +368,10 @@ module Aws
|
|
|
354
368
|
s3_bucket: ::String,
|
|
355
369
|
s3_key: ::String?
|
|
356
370
|
},
|
|
357
|
-
?max_sessions_per_instance: ::Integer
|
|
371
|
+
?max_sessions_per_instance: ::Integer,
|
|
372
|
+
?root_volume_config: {
|
|
373
|
+
volume_size_in_gb: ::Integer?
|
|
374
|
+
}
|
|
358
375
|
) -> _CreateFleetResponseSuccess
|
|
359
376
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFleetResponseSuccess
|
|
360
377
|
|
|
@@ -388,6 +405,9 @@ module Aws
|
|
|
388
405
|
vpce_id: ::String?
|
|
389
406
|
},
|
|
390
407
|
],
|
|
408
|
+
?root_volume_config: {
|
|
409
|
+
volume_size_in_gb: ::Integer?
|
|
410
|
+
},
|
|
391
411
|
?softwares_to_install: Array[::String],
|
|
392
412
|
?softwares_to_uninstall: Array[::String]
|
|
393
413
|
) -> _CreateImageBuilderResponseSuccess
|
|
@@ -405,6 +425,37 @@ module Aws
|
|
|
405
425
|
) -> _CreateImageBuilderStreamingURLResponseSuccess
|
|
406
426
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImageBuilderStreamingURLResponseSuccess
|
|
407
427
|
|
|
428
|
+
interface _CreateImportedImageResponseSuccess
|
|
429
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateImportedImageResult]
|
|
430
|
+
def image: () -> Types::Image
|
|
431
|
+
end
|
|
432
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#create_imported_image-instance_method
|
|
433
|
+
def create_imported_image: (
|
|
434
|
+
name: ::String,
|
|
435
|
+
source_ami_id: ::String,
|
|
436
|
+
iam_role_arn: ::String,
|
|
437
|
+
?description: ::String,
|
|
438
|
+
?display_name: ::String,
|
|
439
|
+
?tags: Hash[::String, ::String],
|
|
440
|
+
?runtime_validation_config: {
|
|
441
|
+
intended_instance_type: ::String?
|
|
442
|
+
},
|
|
443
|
+
?agent_software_version: ("CURRENT_LATEST" | "ALWAYS_LATEST"),
|
|
444
|
+
?app_catalog_config: Array[
|
|
445
|
+
{
|
|
446
|
+
name: ::String,
|
|
447
|
+
display_name: ::String?,
|
|
448
|
+
absolute_app_path: ::String,
|
|
449
|
+
absolute_icon_path: ::String?,
|
|
450
|
+
absolute_manifest_path: ::String?,
|
|
451
|
+
working_directory: ::String?,
|
|
452
|
+
launch_parameters: ::String?
|
|
453
|
+
},
|
|
454
|
+
],
|
|
455
|
+
?dry_run: bool
|
|
456
|
+
) -> _CreateImportedImageResponseSuccess
|
|
457
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateImportedImageResponseSuccess
|
|
458
|
+
|
|
408
459
|
interface _CreateStackResponseSuccess
|
|
409
460
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateStackResult]
|
|
410
461
|
def stack: () -> Types::Stack
|
|
@@ -986,6 +1037,16 @@ module Aws
|
|
|
986
1037
|
) -> _ExpireSessionResponseSuccess
|
|
987
1038
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExpireSessionResponseSuccess
|
|
988
1039
|
|
|
1040
|
+
interface _GetExportImageTaskResponseSuccess
|
|
1041
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetExportImageTaskResult]
|
|
1042
|
+
def export_image_task: () -> Types::ExportImageTask
|
|
1043
|
+
end
|
|
1044
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#get_export_image_task-instance_method
|
|
1045
|
+
def get_export_image_task: (
|
|
1046
|
+
?task_id: ::String
|
|
1047
|
+
) -> _GetExportImageTaskResponseSuccess
|
|
1048
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetExportImageTaskResponseSuccess
|
|
1049
|
+
|
|
989
1050
|
interface _ListAssociatedFleetsResponseSuccess
|
|
990
1051
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAssociatedFleetsResult]
|
|
991
1052
|
def names: () -> ::Array[::String]
|
|
@@ -1024,6 +1085,24 @@ module Aws
|
|
|
1024
1085
|
) -> _ListEntitledApplicationsResponseSuccess
|
|
1025
1086
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitledApplicationsResponseSuccess
|
|
1026
1087
|
|
|
1088
|
+
interface _ListExportImageTasksResponseSuccess
|
|
1089
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListExportImageTasksResult]
|
|
1090
|
+
def export_image_tasks: () -> ::Array[Types::ExportImageTask]
|
|
1091
|
+
def next_token: () -> ::String
|
|
1092
|
+
end
|
|
1093
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppStream/Client.html#list_export_image_tasks-instance_method
|
|
1094
|
+
def list_export_image_tasks: (
|
|
1095
|
+
?filters: Array[
|
|
1096
|
+
{
|
|
1097
|
+
name: ::String,
|
|
1098
|
+
values: Array[::String]
|
|
1099
|
+
},
|
|
1100
|
+
],
|
|
1101
|
+
?max_results: ::Integer,
|
|
1102
|
+
?next_token: ::String
|
|
1103
|
+
) -> _ListExportImageTasksResponseSuccess
|
|
1104
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListExportImageTasksResponseSuccess
|
|
1105
|
+
|
|
1027
1106
|
interface _ListTagsForResourceResponseSuccess
|
|
1028
1107
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
|
|
1029
1108
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -1238,7 +1317,7 @@ module Aws
|
|
|
1238
1317
|
organizational_unit_distinguished_name: ::String?
|
|
1239
1318
|
},
|
|
1240
1319
|
?idle_disconnect_timeout_in_seconds: ::Integer,
|
|
1241
|
-
?attributes_to_delete: Array[("VPC_CONFIGURATION" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS" | "DOMAIN_JOIN_INFO" | "IAM_ROLE_ARN" | "USB_DEVICE_FILTER_STRINGS" | "SESSION_SCRIPT_S3_LOCATION" | "MAX_SESSIONS_PER_INSTANCE")],
|
|
1320
|
+
?attributes_to_delete: Array[("VPC_CONFIGURATION" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS" | "DOMAIN_JOIN_INFO" | "IAM_ROLE_ARN" | "USB_DEVICE_FILTER_STRINGS" | "SESSION_SCRIPT_S3_LOCATION" | "MAX_SESSIONS_PER_INSTANCE" | "VOLUME_CONFIGURATION")],
|
|
1242
1321
|
?iam_role_arn: ::String,
|
|
1243
1322
|
?stream_view: ("APP" | "DESKTOP"),
|
|
1244
1323
|
?platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8"),
|
|
@@ -1248,7 +1327,10 @@ module Aws
|
|
|
1248
1327
|
s3_bucket: ::String,
|
|
1249
1328
|
s3_key: ::String?
|
|
1250
1329
|
},
|
|
1251
|
-
?max_sessions_per_instance: ::Integer
|
|
1330
|
+
?max_sessions_per_instance: ::Integer,
|
|
1331
|
+
?root_volume_config: {
|
|
1332
|
+
volume_size_in_gb: ::Integer?
|
|
1333
|
+
}
|
|
1252
1334
|
) -> _UpdateFleetResponseSuccess
|
|
1253
1335
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFleetResponseSuccess
|
|
1254
1336
|
|
data/sig/errors.rbs
CHANGED
|
@@ -14,6 +14,9 @@ module Aws
|
|
|
14
14
|
class ConcurrentModificationException < ::Aws::Errors::ServiceError
|
|
15
15
|
def message: () -> ::String
|
|
16
16
|
end
|
|
17
|
+
class DryRunOperationException < ::Aws::Errors::ServiceError
|
|
18
|
+
def message: () -> ::String
|
|
19
|
+
end
|
|
17
20
|
class EntitlementAlreadyExistsException < ::Aws::Errors::ServiceError
|
|
18
21
|
def message: () -> ::String
|
|
19
22
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -89,6 +89,17 @@ module Aws::AppStream
|
|
|
89
89
|
SENSITIVE: []
|
|
90
90
|
end
|
|
91
91
|
|
|
92
|
+
class ApplicationConfig
|
|
93
|
+
attr_accessor name: ::String
|
|
94
|
+
attr_accessor display_name: ::String
|
|
95
|
+
attr_accessor absolute_app_path: ::String
|
|
96
|
+
attr_accessor absolute_icon_path: ::String
|
|
97
|
+
attr_accessor absolute_manifest_path: ::String
|
|
98
|
+
attr_accessor working_directory: ::String
|
|
99
|
+
attr_accessor launch_parameters: ::String
|
|
100
|
+
SENSITIVE: [:absolute_app_path, :absolute_icon_path, :absolute_manifest_path, :working_directory, :launch_parameters]
|
|
101
|
+
end
|
|
102
|
+
|
|
92
103
|
class ApplicationFleetAssociation
|
|
93
104
|
attr_accessor fleet_name: ::String
|
|
94
105
|
attr_accessor application_arn: ::String
|
|
@@ -315,6 +326,20 @@ module Aws::AppStream
|
|
|
315
326
|
SENSITIVE: []
|
|
316
327
|
end
|
|
317
328
|
|
|
329
|
+
class CreateExportImageTaskRequest
|
|
330
|
+
attr_accessor image_name: ::String
|
|
331
|
+
attr_accessor ami_name: ::String
|
|
332
|
+
attr_accessor iam_role_arn: ::String
|
|
333
|
+
attr_accessor tag_specifications: ::Hash[::String, ::String]
|
|
334
|
+
attr_accessor ami_description: ::String
|
|
335
|
+
SENSITIVE: []
|
|
336
|
+
end
|
|
337
|
+
|
|
338
|
+
class CreateExportImageTaskResult
|
|
339
|
+
attr_accessor export_image_task: Types::ExportImageTask
|
|
340
|
+
SENSITIVE: []
|
|
341
|
+
end
|
|
342
|
+
|
|
318
343
|
class CreateFleetRequest
|
|
319
344
|
attr_accessor name: ::String
|
|
320
345
|
attr_accessor image_name: ::String
|
|
@@ -338,6 +363,7 @@ module Aws::AppStream
|
|
|
338
363
|
attr_accessor usb_device_filter_strings: ::Array[::String]
|
|
339
364
|
attr_accessor session_script_s3_location: Types::S3Location
|
|
340
365
|
attr_accessor max_sessions_per_instance: ::Integer
|
|
366
|
+
attr_accessor root_volume_config: Types::VolumeConfig
|
|
341
367
|
SENSITIVE: []
|
|
342
368
|
end
|
|
343
369
|
|
|
@@ -360,6 +386,7 @@ module Aws::AppStream
|
|
|
360
386
|
attr_accessor appstream_agent_version: ::String
|
|
361
387
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
362
388
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
|
389
|
+
attr_accessor root_volume_config: Types::VolumeConfig
|
|
363
390
|
attr_accessor softwares_to_install: ::Array[::String]
|
|
364
391
|
attr_accessor softwares_to_uninstall: ::Array[::String]
|
|
365
392
|
SENSITIVE: []
|
|
@@ -382,6 +409,25 @@ module Aws::AppStream
|
|
|
382
409
|
SENSITIVE: []
|
|
383
410
|
end
|
|
384
411
|
|
|
412
|
+
class CreateImportedImageRequest
|
|
413
|
+
attr_accessor name: ::String
|
|
414
|
+
attr_accessor source_ami_id: ::String
|
|
415
|
+
attr_accessor iam_role_arn: ::String
|
|
416
|
+
attr_accessor description: ::String
|
|
417
|
+
attr_accessor display_name: ::String
|
|
418
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
419
|
+
attr_accessor runtime_validation_config: Types::RuntimeValidationConfig
|
|
420
|
+
attr_accessor agent_software_version: ("CURRENT_LATEST" | "ALWAYS_LATEST")
|
|
421
|
+
attr_accessor app_catalog_config: ::Array[Types::ApplicationConfig]
|
|
422
|
+
attr_accessor dry_run: bool
|
|
423
|
+
SENSITIVE: []
|
|
424
|
+
end
|
|
425
|
+
|
|
426
|
+
class CreateImportedImageResult
|
|
427
|
+
attr_accessor image: Types::Image
|
|
428
|
+
SENSITIVE: []
|
|
429
|
+
end
|
|
430
|
+
|
|
385
431
|
class CreateStackRequest
|
|
386
432
|
attr_accessor name: ::String
|
|
387
433
|
attr_accessor description: ::String
|
|
@@ -905,6 +951,11 @@ module Aws::AppStream
|
|
|
905
951
|
SENSITIVE: []
|
|
906
952
|
end
|
|
907
953
|
|
|
954
|
+
class DryRunOperationException
|
|
955
|
+
attr_accessor message: ::String
|
|
956
|
+
SENSITIVE: []
|
|
957
|
+
end
|
|
958
|
+
|
|
908
959
|
class EnableUserRequest
|
|
909
960
|
attr_accessor user_name: ::String
|
|
910
961
|
attr_accessor authentication_type: ("API" | "SAML" | "USERPOOL" | "AWS_AD")
|
|
@@ -960,6 +1011,25 @@ module Aws::AppStream
|
|
|
960
1011
|
class ExpireSessionResult < Aws::EmptyStructure
|
|
961
1012
|
end
|
|
962
1013
|
|
|
1014
|
+
class ExportImageTask
|
|
1015
|
+
attr_accessor task_id: ::String
|
|
1016
|
+
attr_accessor image_arn: ::String
|
|
1017
|
+
attr_accessor ami_name: ::String
|
|
1018
|
+
attr_accessor created_date: ::Time
|
|
1019
|
+
attr_accessor ami_description: ::String
|
|
1020
|
+
attr_accessor state: ("EXPORTING" | "COMPLETED" | "FAILED")
|
|
1021
|
+
attr_accessor ami_id: ::String
|
|
1022
|
+
attr_accessor tag_specifications: ::Hash[::String, ::String]
|
|
1023
|
+
attr_accessor error_details: ::Array[Types::ErrorDetails]
|
|
1024
|
+
SENSITIVE: []
|
|
1025
|
+
end
|
|
1026
|
+
|
|
1027
|
+
class Filter
|
|
1028
|
+
attr_accessor name: ::String
|
|
1029
|
+
attr_accessor values: ::Array[::String]
|
|
1030
|
+
SENSITIVE: []
|
|
1031
|
+
end
|
|
1032
|
+
|
|
963
1033
|
class Fleet
|
|
964
1034
|
attr_accessor arn: ::String
|
|
965
1035
|
attr_accessor name: ::String
|
|
@@ -986,21 +1056,32 @@ module Aws::AppStream
|
|
|
986
1056
|
attr_accessor usb_device_filter_strings: ::Array[::String]
|
|
987
1057
|
attr_accessor session_script_s3_location: Types::S3Location
|
|
988
1058
|
attr_accessor max_sessions_per_instance: ::Integer
|
|
1059
|
+
attr_accessor root_volume_config: Types::VolumeConfig
|
|
989
1060
|
SENSITIVE: []
|
|
990
1061
|
end
|
|
991
1062
|
|
|
992
1063
|
class FleetError
|
|
993
|
-
attr_accessor error_code: ("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" | "NETWORK_INTERFACE_LIMIT_EXCEEDED" | "INTERNAL_SERVICE_ERROR" | "IAM_SERVICE_ROLE_IS_MISSING" | "MACHINE_ROLE_IS_MISSING" | "STS_DISABLED_IN_REGION" | "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" | "SUBNET_NOT_FOUND" | "IMAGE_NOT_FOUND" | "INVALID_SUBNET_CONFIGURATION" | "SECURITY_GROUPS_NOT_FOUND" | "IGW_NOT_ATTACHED" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" | "FLEET_STOPPED" | "FLEET_INSTANCE_PROVISIONING_FAILURE" | "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" | "DOMAIN_JOIN_ERROR_ACCESS_DENIED" | "DOMAIN_JOIN_ERROR_LOGON_FAILURE" | "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" | "DOMAIN_JOIN_ERROR_MORE_DATA" | "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" | "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" | "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" | "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" | "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" | "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" | "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR")
|
|
1064
|
+
attr_accessor error_code: ("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" | "NETWORK_INTERFACE_LIMIT_EXCEEDED" | "INTERNAL_SERVICE_ERROR" | "IAM_SERVICE_ROLE_IS_MISSING" | "MACHINE_ROLE_IS_MISSING" | "STS_DISABLED_IN_REGION" | "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" | "SUBNET_NOT_FOUND" | "IMAGE_NOT_FOUND" | "INVALID_SUBNET_CONFIGURATION" | "SECURITY_GROUPS_NOT_FOUND" | "IGW_NOT_ATTACHED" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" | "FLEET_STOPPED" | "FLEET_INSTANCE_PROVISIONING_FAILURE" | "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" | "DOMAIN_JOIN_ERROR_ACCESS_DENIED" | "DOMAIN_JOIN_ERROR_LOGON_FAILURE" | "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" | "DOMAIN_JOIN_ERROR_MORE_DATA" | "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" | "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" | "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" | "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" | "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" | "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" | "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR" | "VALIDATION_ERROR")
|
|
994
1065
|
attr_accessor error_message: ::String
|
|
995
1066
|
SENSITIVE: []
|
|
996
1067
|
end
|
|
997
1068
|
|
|
1069
|
+
class GetExportImageTaskRequest
|
|
1070
|
+
attr_accessor task_id: ::String
|
|
1071
|
+
SENSITIVE: []
|
|
1072
|
+
end
|
|
1073
|
+
|
|
1074
|
+
class GetExportImageTaskResult
|
|
1075
|
+
attr_accessor export_image_task: Types::ExportImageTask
|
|
1076
|
+
SENSITIVE: []
|
|
1077
|
+
end
|
|
1078
|
+
|
|
998
1079
|
class Image
|
|
999
1080
|
attr_accessor name: ::String
|
|
1000
1081
|
attr_accessor arn: ::String
|
|
1001
1082
|
attr_accessor base_image_arn: ::String
|
|
1002
1083
|
attr_accessor display_name: ::String
|
|
1003
|
-
attr_accessor state: ("PENDING" | "AVAILABLE" | "FAILED" | "COPYING" | "DELETING" | "CREATING" | "IMPORTING")
|
|
1084
|
+
attr_accessor state: ("PENDING" | "AVAILABLE" | "FAILED" | "COPYING" | "DELETING" | "CREATING" | "IMPORTING" | "VALIDATING")
|
|
1004
1085
|
attr_accessor visibility: ("PUBLIC" | "PRIVATE" | "SHARED")
|
|
1005
1086
|
attr_accessor image_builder_supported: bool
|
|
1006
1087
|
attr_accessor image_builder_name: ::String
|
|
@@ -1018,6 +1099,7 @@ module Aws::AppStream
|
|
|
1018
1099
|
attr_accessor dynamic_app_providers_enabled: ("ENABLED" | "DISABLED")
|
|
1019
1100
|
attr_accessor image_shared_with_others: ("TRUE" | "FALSE")
|
|
1020
1101
|
attr_accessor managed_software_included: bool
|
|
1102
|
+
attr_accessor image_type: ("CUSTOM" | "NATIVE")
|
|
1021
1103
|
SENSITIVE: []
|
|
1022
1104
|
end
|
|
1023
1105
|
|
|
@@ -1031,7 +1113,7 @@ module Aws::AppStream
|
|
|
1031
1113
|
attr_accessor instance_type: ::String
|
|
1032
1114
|
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
|
1033
1115
|
attr_accessor iam_role_arn: ::String
|
|
1034
|
-
attr_accessor state: ("PENDING" | "UPDATING_AGENT" | "RUNNING" | "STOPPING" | "STOPPED" | "REBOOTING" | "SNAPSHOTTING" | "DELETING" | "FAILED" | "UPDATING" | "PENDING_QUALIFICATION" | "PENDING_SYNCING_APPS" | "SYNCING_APPS")
|
|
1116
|
+
attr_accessor state: ("PENDING" | "UPDATING_AGENT" | "RUNNING" | "STOPPING" | "STOPPED" | "REBOOTING" | "SNAPSHOTTING" | "DELETING" | "FAILED" | "UPDATING" | "PENDING_QUALIFICATION" | "PENDING_SYNCING_APPS" | "SYNCING_APPS" | "PENDING_IMAGE_IMPORT")
|
|
1035
1117
|
attr_accessor state_change_reason: Types::ImageBuilderStateChangeReason
|
|
1036
1118
|
attr_accessor created_time: ::Time
|
|
1037
1119
|
attr_accessor enable_default_internet_access: bool
|
|
@@ -1040,6 +1122,7 @@ module Aws::AppStream
|
|
|
1040
1122
|
attr_accessor image_builder_errors: ::Array[Types::ResourceError]
|
|
1041
1123
|
attr_accessor appstream_agent_version: ::String
|
|
1042
1124
|
attr_accessor access_endpoints: ::Array[Types::AccessEndpoint]
|
|
1125
|
+
attr_accessor root_volume_config: Types::VolumeConfig
|
|
1043
1126
|
attr_accessor latest_appstream_agent_version: ("TRUE" | "FALSE")
|
|
1044
1127
|
SENSITIVE: []
|
|
1045
1128
|
end
|
|
@@ -1057,7 +1140,7 @@ module Aws::AppStream
|
|
|
1057
1140
|
end
|
|
1058
1141
|
|
|
1059
1142
|
class ImageStateChangeReason
|
|
1060
|
-
attr_accessor code: ("INTERNAL_ERROR" | "IMAGE_BUILDER_NOT_AVAILABLE" | "IMAGE_COPY_FAILURE")
|
|
1143
|
+
attr_accessor code: ("INTERNAL_ERROR" | "IMAGE_BUILDER_NOT_AVAILABLE" | "IMAGE_COPY_FAILURE" | "IMAGE_UPDATE_FAILURE" | "IMAGE_IMPORT_FAILURE")
|
|
1061
1144
|
attr_accessor message: ::String
|
|
1062
1145
|
SENSITIVE: []
|
|
1063
1146
|
end
|
|
@@ -1131,6 +1214,19 @@ module Aws::AppStream
|
|
|
1131
1214
|
SENSITIVE: []
|
|
1132
1215
|
end
|
|
1133
1216
|
|
|
1217
|
+
class ListExportImageTasksRequest
|
|
1218
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
1219
|
+
attr_accessor max_results: ::Integer
|
|
1220
|
+
attr_accessor next_token: ::String
|
|
1221
|
+
SENSITIVE: []
|
|
1222
|
+
end
|
|
1223
|
+
|
|
1224
|
+
class ListExportImageTasksResult
|
|
1225
|
+
attr_accessor export_image_tasks: ::Array[Types::ExportImageTask]
|
|
1226
|
+
attr_accessor next_token: ::String
|
|
1227
|
+
SENSITIVE: []
|
|
1228
|
+
end
|
|
1229
|
+
|
|
1134
1230
|
class ListTagsForResourceRequest
|
|
1135
1231
|
attr_accessor resource_arn: ::String
|
|
1136
1232
|
SENSITIVE: []
|
|
@@ -1164,7 +1260,7 @@ module Aws::AppStream
|
|
|
1164
1260
|
end
|
|
1165
1261
|
|
|
1166
1262
|
class ResourceError
|
|
1167
|
-
attr_accessor error_code: ("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" | "NETWORK_INTERFACE_LIMIT_EXCEEDED" | "INTERNAL_SERVICE_ERROR" | "IAM_SERVICE_ROLE_IS_MISSING" | "MACHINE_ROLE_IS_MISSING" | "STS_DISABLED_IN_REGION" | "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" | "SUBNET_NOT_FOUND" | "IMAGE_NOT_FOUND" | "INVALID_SUBNET_CONFIGURATION" | "SECURITY_GROUPS_NOT_FOUND" | "IGW_NOT_ATTACHED" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" | "FLEET_STOPPED" | "FLEET_INSTANCE_PROVISIONING_FAILURE" | "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" | "DOMAIN_JOIN_ERROR_ACCESS_DENIED" | "DOMAIN_JOIN_ERROR_LOGON_FAILURE" | "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" | "DOMAIN_JOIN_ERROR_MORE_DATA" | "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" | "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" | "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" | "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" | "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" | "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" | "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR")
|
|
1263
|
+
attr_accessor error_code: ("IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION" | "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION" | "NETWORK_INTERFACE_LIMIT_EXCEEDED" | "INTERNAL_SERVICE_ERROR" | "IAM_SERVICE_ROLE_IS_MISSING" | "MACHINE_ROLE_IS_MISSING" | "STS_DISABLED_IN_REGION" | "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION" | "SUBNET_NOT_FOUND" | "IMAGE_NOT_FOUND" | "INVALID_SUBNET_CONFIGURATION" | "SECURITY_GROUPS_NOT_FOUND" | "IGW_NOT_ATTACHED" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" | "FLEET_STOPPED" | "FLEET_INSTANCE_PROVISIONING_FAILURE" | "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND" | "DOMAIN_JOIN_ERROR_ACCESS_DENIED" | "DOMAIN_JOIN_ERROR_LOGON_FAILURE" | "DOMAIN_JOIN_ERROR_INVALID_PARAMETER" | "DOMAIN_JOIN_ERROR_MORE_DATA" | "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN" | "DOMAIN_JOIN_ERROR_NOT_SUPPORTED" | "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME" | "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED" | "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED" | "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED" | "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR" | "VALIDATION_ERROR")
|
|
1168
1264
|
attr_accessor error_message: ::String
|
|
1169
1265
|
attr_accessor error_timestamp: ::Time
|
|
1170
1266
|
SENSITIVE: []
|
|
@@ -1185,6 +1281,11 @@ module Aws::AppStream
|
|
|
1185
1281
|
SENSITIVE: []
|
|
1186
1282
|
end
|
|
1187
1283
|
|
|
1284
|
+
class RuntimeValidationConfig
|
|
1285
|
+
attr_accessor intended_instance_type: ::String
|
|
1286
|
+
SENSITIVE: []
|
|
1287
|
+
end
|
|
1288
|
+
|
|
1188
1289
|
class S3Location
|
|
1189
1290
|
attr_accessor s3_bucket: ::String
|
|
1190
1291
|
attr_accessor s3_key: ::String
|
|
@@ -1451,7 +1552,7 @@ module Aws::AppStream
|
|
|
1451
1552
|
attr_accessor enable_default_internet_access: bool
|
|
1452
1553
|
attr_accessor domain_join_info: Types::DomainJoinInfo
|
|
1453
1554
|
attr_accessor idle_disconnect_timeout_in_seconds: ::Integer
|
|
1454
|
-
attr_accessor attributes_to_delete: ::Array[("VPC_CONFIGURATION" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS" | "DOMAIN_JOIN_INFO" | "IAM_ROLE_ARN" | "USB_DEVICE_FILTER_STRINGS" | "SESSION_SCRIPT_S3_LOCATION" | "MAX_SESSIONS_PER_INSTANCE")]
|
|
1555
|
+
attr_accessor attributes_to_delete: ::Array[("VPC_CONFIGURATION" | "VPC_CONFIGURATION_SECURITY_GROUP_IDS" | "DOMAIN_JOIN_INFO" | "IAM_ROLE_ARN" | "USB_DEVICE_FILTER_STRINGS" | "SESSION_SCRIPT_S3_LOCATION" | "MAX_SESSIONS_PER_INSTANCE" | "VOLUME_CONFIGURATION")]
|
|
1455
1556
|
attr_accessor iam_role_arn: ::String
|
|
1456
1557
|
attr_accessor stream_view: ("APP" | "DESKTOP")
|
|
1457
1558
|
attr_accessor platform: ("WINDOWS" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "AMAZON_LINUX2" | "RHEL8" | "ROCKY_LINUX8")
|
|
@@ -1459,6 +1560,7 @@ module Aws::AppStream
|
|
|
1459
1560
|
attr_accessor usb_device_filter_strings: ::Array[::String]
|
|
1460
1561
|
attr_accessor session_script_s3_location: Types::S3Location
|
|
1461
1562
|
attr_accessor max_sessions_per_instance: ::Integer
|
|
1563
|
+
attr_accessor root_volume_config: Types::VolumeConfig
|
|
1462
1564
|
SENSITIVE: []
|
|
1463
1565
|
end
|
|
1464
1566
|
|
|
@@ -1558,6 +1660,11 @@ module Aws::AppStream
|
|
|
1558
1660
|
SENSITIVE: []
|
|
1559
1661
|
end
|
|
1560
1662
|
|
|
1663
|
+
class VolumeConfig
|
|
1664
|
+
attr_accessor volume_size_in_gb: ::Integer
|
|
1665
|
+
SENSITIVE: []
|
|
1666
|
+
end
|
|
1667
|
+
|
|
1561
1668
|
class VpcConfig
|
|
1562
1669
|
attr_accessor subnet_ids: ::Array[::String]
|
|
1563
1670
|
attr_accessor security_group_ids: ::Array[::String]
|