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
|
@@ -22,6 +22,8 @@ module Aws::AppStream
|
|
|
22
22
|
Action = Shapes::StringShape.new(name: 'Action')
|
|
23
23
|
AdminAppLicenseUsageList = Shapes::ListShape.new(name: 'AdminAppLicenseUsageList')
|
|
24
24
|
AdminAppLicenseUsageRecord = Shapes::StructureShape.new(name: 'AdminAppLicenseUsageRecord')
|
|
25
|
+
AgentSoftwareVersion = Shapes::StringShape.new(name: 'AgentSoftwareVersion')
|
|
26
|
+
AmiName = Shapes::StringShape.new(name: 'AmiName')
|
|
25
27
|
AppBlock = Shapes::StructureShape.new(name: 'AppBlock')
|
|
26
28
|
AppBlockBuilder = Shapes::StructureShape.new(name: 'AppBlockBuilder')
|
|
27
29
|
AppBlockBuilderAppBlockAssociation = Shapes::StructureShape.new(name: 'AppBlockBuilderAppBlockAssociation')
|
|
@@ -35,10 +37,14 @@ module Aws::AppStream
|
|
|
35
37
|
AppBlockBuilderStateChangeReasonCode = Shapes::StringShape.new(name: 'AppBlockBuilderStateChangeReasonCode')
|
|
36
38
|
AppBlockState = Shapes::StringShape.new(name: 'AppBlockState')
|
|
37
39
|
AppBlocks = Shapes::ListShape.new(name: 'AppBlocks')
|
|
40
|
+
AppCatalogConfig = Shapes::ListShape.new(name: 'AppCatalogConfig')
|
|
41
|
+
AppDisplayName = Shapes::StringShape.new(name: 'AppDisplayName')
|
|
42
|
+
AppName = Shapes::StringShape.new(name: 'AppName')
|
|
38
43
|
AppVisibility = Shapes::StringShape.new(name: 'AppVisibility')
|
|
39
44
|
Application = Shapes::StructureShape.new(name: 'Application')
|
|
40
45
|
ApplicationAttribute = Shapes::StringShape.new(name: 'ApplicationAttribute')
|
|
41
46
|
ApplicationAttributes = Shapes::ListShape.new(name: 'ApplicationAttributes')
|
|
47
|
+
ApplicationConfig = Shapes::StructureShape.new(name: 'ApplicationConfig')
|
|
42
48
|
ApplicationFleetAssociation = Shapes::StructureShape.new(name: 'ApplicationFleetAssociation')
|
|
43
49
|
ApplicationFleetAssociationList = Shapes::ListShape.new(name: 'ApplicationFleetAssociationList')
|
|
44
50
|
ApplicationSettings = Shapes::StructureShape.new(name: 'ApplicationSettings')
|
|
@@ -85,12 +91,16 @@ module Aws::AppStream
|
|
|
85
91
|
CreateDirectoryConfigResult = Shapes::StructureShape.new(name: 'CreateDirectoryConfigResult')
|
|
86
92
|
CreateEntitlementRequest = Shapes::StructureShape.new(name: 'CreateEntitlementRequest')
|
|
87
93
|
CreateEntitlementResult = Shapes::StructureShape.new(name: 'CreateEntitlementResult')
|
|
94
|
+
CreateExportImageTaskRequest = Shapes::StructureShape.new(name: 'CreateExportImageTaskRequest')
|
|
95
|
+
CreateExportImageTaskResult = Shapes::StructureShape.new(name: 'CreateExportImageTaskResult')
|
|
88
96
|
CreateFleetRequest = Shapes::StructureShape.new(name: 'CreateFleetRequest')
|
|
89
97
|
CreateFleetResult = Shapes::StructureShape.new(name: 'CreateFleetResult')
|
|
90
98
|
CreateImageBuilderRequest = Shapes::StructureShape.new(name: 'CreateImageBuilderRequest')
|
|
91
99
|
CreateImageBuilderResult = Shapes::StructureShape.new(name: 'CreateImageBuilderResult')
|
|
92
100
|
CreateImageBuilderStreamingURLRequest = Shapes::StructureShape.new(name: 'CreateImageBuilderStreamingURLRequest')
|
|
93
101
|
CreateImageBuilderStreamingURLResult = Shapes::StructureShape.new(name: 'CreateImageBuilderStreamingURLResult')
|
|
102
|
+
CreateImportedImageRequest = Shapes::StructureShape.new(name: 'CreateImportedImageRequest')
|
|
103
|
+
CreateImportedImageResult = Shapes::StructureShape.new(name: 'CreateImportedImageResult')
|
|
94
104
|
CreateStackRequest = Shapes::StructureShape.new(name: 'CreateStackRequest')
|
|
95
105
|
CreateStackResult = Shapes::StructureShape.new(name: 'CreateStackResult')
|
|
96
106
|
CreateStreamingURLRequest = Shapes::StructureShape.new(name: 'CreateStreamingURLRequest')
|
|
@@ -189,6 +199,7 @@ module Aws::AppStream
|
|
|
189
199
|
Domain = Shapes::StringShape.new(name: 'Domain')
|
|
190
200
|
DomainJoinInfo = Shapes::StructureShape.new(name: 'DomainJoinInfo')
|
|
191
201
|
DomainList = Shapes::ListShape.new(name: 'DomainList')
|
|
202
|
+
DryRunOperationException = Shapes::StructureShape.new(name: 'DryRunOperationException')
|
|
192
203
|
DynamicAppProvidersEnabled = Shapes::StringShape.new(name: 'DynamicAppProvidersEnabled')
|
|
193
204
|
EmbedHostDomain = Shapes::StringShape.new(name: 'EmbedHostDomain')
|
|
194
205
|
EmbedHostDomains = Shapes::ListShape.new(name: 'EmbedHostDomains')
|
|
@@ -207,7 +218,16 @@ module Aws::AppStream
|
|
|
207
218
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
208
219
|
ExpireSessionRequest = Shapes::StructureShape.new(name: 'ExpireSessionRequest')
|
|
209
220
|
ExpireSessionResult = Shapes::StructureShape.new(name: 'ExpireSessionResult')
|
|
221
|
+
ExportImageTask = Shapes::StructureShape.new(name: 'ExportImageTask')
|
|
222
|
+
ExportImageTaskState = Shapes::StringShape.new(name: 'ExportImageTaskState')
|
|
223
|
+
ExportImageTasks = Shapes::ListShape.new(name: 'ExportImageTasks')
|
|
210
224
|
FeedbackURL = Shapes::StringShape.new(name: 'FeedbackURL')
|
|
225
|
+
FilePath = Shapes::StringShape.new(name: 'FilePath')
|
|
226
|
+
Filter = Shapes::StructureShape.new(name: 'Filter')
|
|
227
|
+
FilterName = Shapes::StringShape.new(name: 'FilterName')
|
|
228
|
+
FilterValue = Shapes::StringShape.new(name: 'FilterValue')
|
|
229
|
+
FilterValues = Shapes::ListShape.new(name: 'FilterValues')
|
|
230
|
+
Filters = Shapes::ListShape.new(name: 'Filters')
|
|
211
231
|
Fleet = Shapes::StructureShape.new(name: 'Fleet')
|
|
212
232
|
FleetAttribute = Shapes::StringShape.new(name: 'FleetAttribute')
|
|
213
233
|
FleetAttributes = Shapes::ListShape.new(name: 'FleetAttributes')
|
|
@@ -217,19 +237,25 @@ module Aws::AppStream
|
|
|
217
237
|
FleetList = Shapes::ListShape.new(name: 'FleetList')
|
|
218
238
|
FleetState = Shapes::StringShape.new(name: 'FleetState')
|
|
219
239
|
FleetType = Shapes::StringShape.new(name: 'FleetType')
|
|
240
|
+
GetExportImageTaskRequest = Shapes::StructureShape.new(name: 'GetExportImageTaskRequest')
|
|
241
|
+
GetExportImageTaskResult = Shapes::StructureShape.new(name: 'GetExportImageTaskResult')
|
|
220
242
|
Image = Shapes::StructureShape.new(name: 'Image')
|
|
221
243
|
ImageBuilder = Shapes::StructureShape.new(name: 'ImageBuilder')
|
|
222
244
|
ImageBuilderList = Shapes::ListShape.new(name: 'ImageBuilderList')
|
|
223
245
|
ImageBuilderState = Shapes::StringShape.new(name: 'ImageBuilderState')
|
|
224
246
|
ImageBuilderStateChangeReason = Shapes::StructureShape.new(name: 'ImageBuilderStateChangeReason')
|
|
225
247
|
ImageBuilderStateChangeReasonCode = Shapes::StringShape.new(name: 'ImageBuilderStateChangeReasonCode')
|
|
248
|
+
ImageImportDescription = Shapes::StringShape.new(name: 'ImageImportDescription')
|
|
249
|
+
ImageImportDisplayName = Shapes::StringShape.new(name: 'ImageImportDisplayName')
|
|
226
250
|
ImageList = Shapes::ListShape.new(name: 'ImageList')
|
|
227
251
|
ImagePermissions = Shapes::StructureShape.new(name: 'ImagePermissions')
|
|
228
252
|
ImageSharedWithOthers = Shapes::StringShape.new(name: 'ImageSharedWithOthers')
|
|
229
253
|
ImageState = Shapes::StringShape.new(name: 'ImageState')
|
|
230
254
|
ImageStateChangeReason = Shapes::StructureShape.new(name: 'ImageStateChangeReason')
|
|
231
255
|
ImageStateChangeReasonCode = Shapes::StringShape.new(name: 'ImageStateChangeReasonCode')
|
|
256
|
+
ImageType = Shapes::StringShape.new(name: 'ImageType')
|
|
232
257
|
IncompatibleImageException = Shapes::StructureShape.new(name: 'IncompatibleImageException')
|
|
258
|
+
InstanceType = Shapes::StringShape.new(name: 'InstanceType')
|
|
233
259
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
|
234
260
|
InvalidAccountStatusException = Shapes::StructureShape.new(name: 'InvalidAccountStatusException')
|
|
235
261
|
InvalidParameterCombinationException = Shapes::StructureShape.new(name: 'InvalidParameterCombinationException')
|
|
@@ -237,6 +263,7 @@ module Aws::AppStream
|
|
|
237
263
|
LastReportGenerationExecutionError = Shapes::StructureShape.new(name: 'LastReportGenerationExecutionError')
|
|
238
264
|
LastReportGenerationExecutionErrors = Shapes::ListShape.new(name: 'LastReportGenerationExecutionErrors')
|
|
239
265
|
LatestAppstreamAgentVersion = Shapes::StringShape.new(name: 'LatestAppstreamAgentVersion')
|
|
266
|
+
LaunchParameters = Shapes::StringShape.new(name: 'LaunchParameters')
|
|
240
267
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
|
241
268
|
ListAssociatedFleetsRequest = Shapes::StructureShape.new(name: 'ListAssociatedFleetsRequest')
|
|
242
269
|
ListAssociatedFleetsResult = Shapes::StructureShape.new(name: 'ListAssociatedFleetsResult')
|
|
@@ -244,6 +271,8 @@ module Aws::AppStream
|
|
|
244
271
|
ListAssociatedStacksResult = Shapes::StructureShape.new(name: 'ListAssociatedStacksResult')
|
|
245
272
|
ListEntitledApplicationsRequest = Shapes::StructureShape.new(name: 'ListEntitledApplicationsRequest')
|
|
246
273
|
ListEntitledApplicationsResult = Shapes::StructureShape.new(name: 'ListEntitledApplicationsResult')
|
|
274
|
+
ListExportImageTasksRequest = Shapes::StructureShape.new(name: 'ListExportImageTasksRequest')
|
|
275
|
+
ListExportImageTasksResult = Shapes::StructureShape.new(name: 'ListExportImageTasksResult')
|
|
247
276
|
ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
|
|
248
277
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
|
249
278
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
@@ -257,6 +286,7 @@ module Aws::AppStream
|
|
|
257
286
|
OrganizationalUnitDistinguishedNamesList = Shapes::ListShape.new(name: 'OrganizationalUnitDistinguishedNamesList')
|
|
258
287
|
PackagingType = Shapes::StringShape.new(name: 'PackagingType')
|
|
259
288
|
Permission = Shapes::StringShape.new(name: 'Permission')
|
|
289
|
+
PhotonAmiId = Shapes::StringShape.new(name: 'PhotonAmiId')
|
|
260
290
|
PlatformType = Shapes::StringShape.new(name: 'PlatformType')
|
|
261
291
|
Platforms = Shapes::ListShape.new(name: 'Platforms')
|
|
262
292
|
PreferredProtocol = Shapes::StringShape.new(name: 'PreferredProtocol')
|
|
@@ -270,6 +300,7 @@ module Aws::AppStream
|
|
|
270
300
|
ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
|
|
271
301
|
ResourceNotAvailableException = Shapes::StructureShape.new(name: 'ResourceNotAvailableException')
|
|
272
302
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
303
|
+
RuntimeValidationConfig = Shapes::StructureShape.new(name: 'RuntimeValidationConfig')
|
|
273
304
|
S3Bucket = Shapes::StringShape.new(name: 'S3Bucket')
|
|
274
305
|
S3Key = Shapes::StringShape.new(name: 'S3Key')
|
|
275
306
|
S3Location = Shapes::StructureShape.new(name: 'S3Location')
|
|
@@ -333,6 +364,7 @@ module Aws::AppStream
|
|
|
333
364
|
ThemeStyling = Shapes::StringShape.new(name: 'ThemeStyling')
|
|
334
365
|
ThemeTitleText = Shapes::StringShape.new(name: 'ThemeTitleText')
|
|
335
366
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
|
367
|
+
UUID = Shapes::StringShape.new(name: 'UUID')
|
|
336
368
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
337
369
|
UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
|
|
338
370
|
UpdateAppBlockBuilderRequest = Shapes::StructureShape.new(name: 'UpdateAppBlockBuilderRequest')
|
|
@@ -370,6 +402,7 @@ module Aws::AppStream
|
|
|
370
402
|
UserStackAssociationList = Shapes::ListShape.new(name: 'UserStackAssociationList')
|
|
371
403
|
Username = Shapes::StringShape.new(name: 'Username')
|
|
372
404
|
VisibilityType = Shapes::StringShape.new(name: 'VisibilityType')
|
|
405
|
+
VolumeConfig = Shapes::StructureShape.new(name: 'VolumeConfig')
|
|
373
406
|
VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
|
|
374
407
|
|
|
375
408
|
AccessEndpoint.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: AccessEndpointType, required: true, location_name: "EndpointType"))
|
|
@@ -434,6 +467,8 @@ module Aws::AppStream
|
|
|
434
467
|
|
|
435
468
|
AppBlocks.member = Shapes::ShapeRef.new(shape: AppBlock)
|
|
436
469
|
|
|
470
|
+
AppCatalogConfig.member = Shapes::ShapeRef.new(shape: ApplicationConfig)
|
|
471
|
+
|
|
437
472
|
Application.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
|
438
473
|
Application.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "DisplayName"))
|
|
439
474
|
Application.add_member(:icon_url, Shapes::ShapeRef.new(shape: String, location_name: "IconURL"))
|
|
@@ -453,6 +488,15 @@ module Aws::AppStream
|
|
|
453
488
|
|
|
454
489
|
ApplicationAttributes.member = Shapes::ShapeRef.new(shape: ApplicationAttribute)
|
|
455
490
|
|
|
491
|
+
ApplicationConfig.add_member(:name, Shapes::ShapeRef.new(shape: AppName, required: true, location_name: "Name"))
|
|
492
|
+
ApplicationConfig.add_member(:display_name, Shapes::ShapeRef.new(shape: AppDisplayName, location_name: "DisplayName"))
|
|
493
|
+
ApplicationConfig.add_member(:absolute_app_path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "AbsoluteAppPath"))
|
|
494
|
+
ApplicationConfig.add_member(:absolute_icon_path, Shapes::ShapeRef.new(shape: FilePath, location_name: "AbsoluteIconPath"))
|
|
495
|
+
ApplicationConfig.add_member(:absolute_manifest_path, Shapes::ShapeRef.new(shape: FilePath, location_name: "AbsoluteManifestPath"))
|
|
496
|
+
ApplicationConfig.add_member(:working_directory, Shapes::ShapeRef.new(shape: FilePath, location_name: "WorkingDirectory"))
|
|
497
|
+
ApplicationConfig.add_member(:launch_parameters, Shapes::ShapeRef.new(shape: LaunchParameters, location_name: "LaunchParameters"))
|
|
498
|
+
ApplicationConfig.struct_class = Types::ApplicationConfig
|
|
499
|
+
|
|
456
500
|
ApplicationFleetAssociation.add_member(:fleet_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "FleetName"))
|
|
457
501
|
ApplicationFleetAssociation.add_member(:application_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ApplicationArn"))
|
|
458
502
|
ApplicationFleetAssociation.struct_class = Types::ApplicationFleetAssociation
|
|
@@ -620,6 +664,16 @@ module Aws::AppStream
|
|
|
620
664
|
CreateEntitlementResult.add_member(:entitlement, Shapes::ShapeRef.new(shape: Entitlement, location_name: "Entitlement"))
|
|
621
665
|
CreateEntitlementResult.struct_class = Types::CreateEntitlementResult
|
|
622
666
|
|
|
667
|
+
CreateExportImageTaskRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "ImageName"))
|
|
668
|
+
CreateExportImageTaskRequest.add_member(:ami_name, Shapes::ShapeRef.new(shape: AmiName, required: true, location_name: "AmiName"))
|
|
669
|
+
CreateExportImageTaskRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "IamRoleArn"))
|
|
670
|
+
CreateExportImageTaskRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: Tags, location_name: "TagSpecifications"))
|
|
671
|
+
CreateExportImageTaskRequest.add_member(:ami_description, Shapes::ShapeRef.new(shape: Description, location_name: "AmiDescription"))
|
|
672
|
+
CreateExportImageTaskRequest.struct_class = Types::CreateExportImageTaskRequest
|
|
673
|
+
|
|
674
|
+
CreateExportImageTaskResult.add_member(:export_image_task, Shapes::ShapeRef.new(shape: ExportImageTask, location_name: "ExportImageTask"))
|
|
675
|
+
CreateExportImageTaskResult.struct_class = Types::CreateExportImageTaskResult
|
|
676
|
+
|
|
623
677
|
CreateFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
|
624
678
|
CreateFleetRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: Name, location_name: "ImageName"))
|
|
625
679
|
CreateFleetRequest.add_member(:image_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ImageArn"))
|
|
@@ -642,6 +696,7 @@ module Aws::AppStream
|
|
|
642
696
|
CreateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
|
643
697
|
CreateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
|
644
698
|
CreateFleetRequest.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
|
699
|
+
CreateFleetRequest.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
645
700
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
|
646
701
|
|
|
647
702
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
|
@@ -660,6 +715,7 @@ module Aws::AppStream
|
|
|
660
715
|
CreateImageBuilderRequest.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
|
|
661
716
|
CreateImageBuilderRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
662
717
|
CreateImageBuilderRequest.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
|
718
|
+
CreateImageBuilderRequest.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
663
719
|
CreateImageBuilderRequest.add_member(:softwares_to_install, Shapes::ShapeRef.new(shape: StringList, location_name: "SoftwaresToInstall"))
|
|
664
720
|
CreateImageBuilderRequest.add_member(:softwares_to_uninstall, Shapes::ShapeRef.new(shape: StringList, location_name: "SoftwaresToUninstall"))
|
|
665
721
|
CreateImageBuilderRequest.struct_class = Types::CreateImageBuilderRequest
|
|
@@ -675,6 +731,21 @@ module Aws::AppStream
|
|
|
675
731
|
CreateImageBuilderStreamingURLResult.add_member(:expires, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Expires"))
|
|
676
732
|
CreateImageBuilderStreamingURLResult.struct_class = Types::CreateImageBuilderStreamingURLResult
|
|
677
733
|
|
|
734
|
+
CreateImportedImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
|
735
|
+
CreateImportedImageRequest.add_member(:source_ami_id, Shapes::ShapeRef.new(shape: PhotonAmiId, required: true, location_name: "SourceAmiId"))
|
|
736
|
+
CreateImportedImageRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "IamRoleArn"))
|
|
737
|
+
CreateImportedImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: ImageImportDescription, location_name: "Description"))
|
|
738
|
+
CreateImportedImageRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: ImageImportDisplayName, location_name: "DisplayName"))
|
|
739
|
+
CreateImportedImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
740
|
+
CreateImportedImageRequest.add_member(:runtime_validation_config, Shapes::ShapeRef.new(shape: RuntimeValidationConfig, location_name: "RuntimeValidationConfig"))
|
|
741
|
+
CreateImportedImageRequest.add_member(:agent_software_version, Shapes::ShapeRef.new(shape: AgentSoftwareVersion, location_name: "AgentSoftwareVersion"))
|
|
742
|
+
CreateImportedImageRequest.add_member(:app_catalog_config, Shapes::ShapeRef.new(shape: AppCatalogConfig, location_name: "AppCatalogConfig"))
|
|
743
|
+
CreateImportedImageRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
|
744
|
+
CreateImportedImageRequest.struct_class = Types::CreateImportedImageRequest
|
|
745
|
+
|
|
746
|
+
CreateImportedImageResult.add_member(:image, Shapes::ShapeRef.new(shape: Image, location_name: "Image"))
|
|
747
|
+
CreateImportedImageResult.struct_class = Types::CreateImportedImageResult
|
|
748
|
+
|
|
678
749
|
CreateStackRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
|
679
750
|
CreateStackRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
|
680
751
|
CreateStackRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
|
@@ -1044,6 +1115,9 @@ module Aws::AppStream
|
|
|
1044
1115
|
|
|
1045
1116
|
DomainList.member = Shapes::ShapeRef.new(shape: Domain)
|
|
1046
1117
|
|
|
1118
|
+
DryRunOperationException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
1119
|
+
DryRunOperationException.struct_class = Types::DryRunOperationException
|
|
1120
|
+
|
|
1047
1121
|
EmbedHostDomains.member = Shapes::ShapeRef.new(shape: EmbedHostDomain)
|
|
1048
1122
|
|
|
1049
1123
|
EnableUserRequest.add_member(:user_name, Shapes::ShapeRef.new(shape: Username, required: true, location_name: "UserName"))
|
|
@@ -1091,6 +1165,27 @@ module Aws::AppStream
|
|
|
1091
1165
|
|
|
1092
1166
|
ExpireSessionResult.struct_class = Types::ExpireSessionResult
|
|
1093
1167
|
|
|
1168
|
+
ExportImageTask.add_member(:task_id, Shapes::ShapeRef.new(shape: UUID, required: true, location_name: "TaskId"))
|
|
1169
|
+
ExportImageTask.add_member(:image_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ImageArn"))
|
|
1170
|
+
ExportImageTask.add_member(:ami_name, Shapes::ShapeRef.new(shape: AmiName, required: true, location_name: "AmiName"))
|
|
1171
|
+
ExportImageTask.add_member(:created_date, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "CreatedDate"))
|
|
1172
|
+
ExportImageTask.add_member(:ami_description, Shapes::ShapeRef.new(shape: Description, location_name: "AmiDescription"))
|
|
1173
|
+
ExportImageTask.add_member(:state, Shapes::ShapeRef.new(shape: ExportImageTaskState, location_name: "State"))
|
|
1174
|
+
ExportImageTask.add_member(:ami_id, Shapes::ShapeRef.new(shape: PhotonAmiId, location_name: "AmiId"))
|
|
1175
|
+
ExportImageTask.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: Tags, location_name: "TagSpecifications"))
|
|
1176
|
+
ExportImageTask.add_member(:error_details, Shapes::ShapeRef.new(shape: ErrorDetailsList, location_name: "ErrorDetails"))
|
|
1177
|
+
ExportImageTask.struct_class = Types::ExportImageTask
|
|
1178
|
+
|
|
1179
|
+
ExportImageTasks.member = Shapes::ShapeRef.new(shape: ExportImageTask)
|
|
1180
|
+
|
|
1181
|
+
Filter.add_member(:name, Shapes::ShapeRef.new(shape: FilterName, required: true, location_name: "Name"))
|
|
1182
|
+
Filter.add_member(:values, Shapes::ShapeRef.new(shape: FilterValues, required: true, location_name: "Values"))
|
|
1183
|
+
Filter.struct_class = Types::Filter
|
|
1184
|
+
|
|
1185
|
+
FilterValues.member = Shapes::ShapeRef.new(shape: FilterValue)
|
|
1186
|
+
|
|
1187
|
+
Filters.member = Shapes::ShapeRef.new(shape: Filter)
|
|
1188
|
+
|
|
1094
1189
|
Fleet.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
|
1095
1190
|
Fleet.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
|
1096
1191
|
Fleet.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "DisplayName"))
|
|
@@ -1116,6 +1211,7 @@ module Aws::AppStream
|
|
|
1116
1211
|
Fleet.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
|
1117
1212
|
Fleet.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
|
1118
1213
|
Fleet.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
|
1214
|
+
Fleet.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
1119
1215
|
Fleet.struct_class = Types::Fleet
|
|
1120
1216
|
|
|
1121
1217
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
|
@@ -1128,6 +1224,12 @@ module Aws::AppStream
|
|
|
1128
1224
|
|
|
1129
1225
|
FleetList.member = Shapes::ShapeRef.new(shape: Fleet)
|
|
1130
1226
|
|
|
1227
|
+
GetExportImageTaskRequest.add_member(:task_id, Shapes::ShapeRef.new(shape: UUID, location_name: "TaskId"))
|
|
1228
|
+
GetExportImageTaskRequest.struct_class = Types::GetExportImageTaskRequest
|
|
1229
|
+
|
|
1230
|
+
GetExportImageTaskResult.add_member(:export_image_task, Shapes::ShapeRef.new(shape: ExportImageTask, location_name: "ExportImageTask"))
|
|
1231
|
+
GetExportImageTaskResult.struct_class = Types::GetExportImageTaskResult
|
|
1232
|
+
|
|
1131
1233
|
Image.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
|
1132
1234
|
Image.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
|
1133
1235
|
Image.add_member(:base_image_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "BaseImageArn"))
|
|
@@ -1150,6 +1252,7 @@ module Aws::AppStream
|
|
|
1150
1252
|
Image.add_member(:dynamic_app_providers_enabled, Shapes::ShapeRef.new(shape: DynamicAppProvidersEnabled, location_name: "DynamicAppProvidersEnabled"))
|
|
1151
1253
|
Image.add_member(:image_shared_with_others, Shapes::ShapeRef.new(shape: ImageSharedWithOthers, location_name: "ImageSharedWithOthers"))
|
|
1152
1254
|
Image.add_member(:managed_software_included, Shapes::ShapeRef.new(shape: Boolean, location_name: "ManagedSoftwareIncluded"))
|
|
1255
|
+
Image.add_member(:image_type, Shapes::ShapeRef.new(shape: ImageType, location_name: "ImageType"))
|
|
1153
1256
|
Image.struct_class = Types::Image
|
|
1154
1257
|
|
|
1155
1258
|
ImageBuilder.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
|
@@ -1170,6 +1273,7 @@ module Aws::AppStream
|
|
|
1170
1273
|
ImageBuilder.add_member(:image_builder_errors, Shapes::ShapeRef.new(shape: ResourceErrors, location_name: "ImageBuilderErrors"))
|
|
1171
1274
|
ImageBuilder.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
|
|
1172
1275
|
ImageBuilder.add_member(:access_endpoints, Shapes::ShapeRef.new(shape: AccessEndpointList, location_name: "AccessEndpoints"))
|
|
1276
|
+
ImageBuilder.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
1173
1277
|
ImageBuilder.add_member(:latest_appstream_agent_version, Shapes::ShapeRef.new(shape: LatestAppstreamAgentVersion, location_name: "LatestAppstreamAgentVersion"))
|
|
1174
1278
|
ImageBuilder.struct_class = Types::ImageBuilder
|
|
1175
1279
|
|
|
@@ -1236,6 +1340,15 @@ module Aws::AppStream
|
|
|
1236
1340
|
ListEntitledApplicationsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
|
1237
1341
|
ListEntitledApplicationsResult.struct_class = Types::ListEntitledApplicationsResult
|
|
1238
1342
|
|
|
1343
|
+
ListExportImageTasksRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, location_name: "Filters"))
|
|
1344
|
+
ListExportImageTasksRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "MaxResults"))
|
|
1345
|
+
ListExportImageTasksRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
|
1346
|
+
ListExportImageTasksRequest.struct_class = Types::ListExportImageTasksRequest
|
|
1347
|
+
|
|
1348
|
+
ListExportImageTasksResult.add_member(:export_image_tasks, Shapes::ShapeRef.new(shape: ExportImageTasks, location_name: "ExportImageTasks"))
|
|
1349
|
+
ListExportImageTasksResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
|
1350
|
+
ListExportImageTasksResult.struct_class = Types::ListExportImageTasksResult
|
|
1351
|
+
|
|
1239
1352
|
ListTagsForResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "ResourceArn"))
|
|
1240
1353
|
ListTagsForResourceRequest.struct_class = Types::ListTagsForResourceRequest
|
|
1241
1354
|
|
|
@@ -1279,6 +1392,9 @@ module Aws::AppStream
|
|
|
1279
1392
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
|
1280
1393
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
1281
1394
|
|
|
1395
|
+
RuntimeValidationConfig.add_member(:intended_instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "IntendedInstanceType"))
|
|
1396
|
+
RuntimeValidationConfig.struct_class = Types::RuntimeValidationConfig
|
|
1397
|
+
|
|
1282
1398
|
S3Location.add_member(:s3_bucket, Shapes::ShapeRef.new(shape: S3Bucket, required: true, location_name: "S3Bucket"))
|
|
1283
1399
|
S3Location.add_member(:s3_key, Shapes::ShapeRef.new(shape: S3Key, location_name: "S3Key"))
|
|
1284
1400
|
S3Location.struct_class = Types::S3Location
|
|
@@ -1510,6 +1626,7 @@ module Aws::AppStream
|
|
|
1510
1626
|
UpdateFleetRequest.add_member(:usb_device_filter_strings, Shapes::ShapeRef.new(shape: UsbDeviceFilterStrings, location_name: "UsbDeviceFilterStrings"))
|
|
1511
1627
|
UpdateFleetRequest.add_member(:session_script_s3_location, Shapes::ShapeRef.new(shape: S3Location, location_name: "SessionScriptS3Location"))
|
|
1512
1628
|
UpdateFleetRequest.add_member(:max_sessions_per_instance, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxSessionsPerInstance"))
|
|
1629
|
+
UpdateFleetRequest.add_member(:root_volume_config, Shapes::ShapeRef.new(shape: VolumeConfig, location_name: "RootVolumeConfig"))
|
|
1513
1630
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
|
1514
1631
|
|
|
1515
1632
|
UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
|
@@ -1597,6 +1714,9 @@ module Aws::AppStream
|
|
|
1597
1714
|
|
|
1598
1715
|
UserStackAssociationList.member = Shapes::ShapeRef.new(shape: UserStackAssociation)
|
|
1599
1716
|
|
|
1717
|
+
VolumeConfig.add_member(:volume_size_in_gb, Shapes::ShapeRef.new(shape: Integer, location_name: "VolumeSizeInGb"))
|
|
1718
|
+
VolumeConfig.struct_class = Types::VolumeConfig
|
|
1719
|
+
|
|
1600
1720
|
VpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIdList, location_name: "SubnetIds"))
|
|
1601
1721
|
VpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIdList, location_name: "SecurityGroupIds"))
|
|
1602
1722
|
VpcConfig.struct_class = Types::VpcConfig
|
|
@@ -1801,6 +1921,21 @@ module Aws::AppStream
|
|
|
1801
1921
|
o.errors << Shapes::ShapeRef.new(shape: EntitlementAlreadyExistsException)
|
|
1802
1922
|
end)
|
|
1803
1923
|
|
|
1924
|
+
api.add_operation(:create_export_image_task, Seahorse::Model::Operation.new.tap do |o|
|
|
1925
|
+
o.name = "CreateExportImageTask"
|
|
1926
|
+
o.http_method = "POST"
|
|
1927
|
+
o.http_request_uri = "/"
|
|
1928
|
+
o.input = Shapes::ShapeRef.new(shape: CreateExportImageTaskRequest)
|
|
1929
|
+
o.output = Shapes::ShapeRef.new(shape: CreateExportImageTaskResult)
|
|
1930
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
1931
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
|
1932
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
|
1933
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
|
1934
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1935
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
|
1936
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
|
1937
|
+
end)
|
|
1938
|
+
|
|
1804
1939
|
api.add_operation(:create_fleet, Seahorse::Model::Operation.new.tap do |o|
|
|
1805
1940
|
o.name = "CreateFleet"
|
|
1806
1941
|
o.http_method = "POST"
|
|
@@ -1849,6 +1984,22 @@ module Aws::AppStream
|
|
|
1849
1984
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1850
1985
|
end)
|
|
1851
1986
|
|
|
1987
|
+
api.add_operation(:create_imported_image, Seahorse::Model::Operation.new.tap do |o|
|
|
1988
|
+
o.name = "CreateImportedImage"
|
|
1989
|
+
o.http_method = "POST"
|
|
1990
|
+
o.http_request_uri = "/"
|
|
1991
|
+
o.input = Shapes::ShapeRef.new(shape: CreateImportedImageRequest)
|
|
1992
|
+
o.output = Shapes::ShapeRef.new(shape: CreateImportedImageResult)
|
|
1993
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
1994
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
|
1995
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
|
1996
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
|
1997
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
|
1998
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1999
|
+
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
|
2000
|
+
o.errors << Shapes::ShapeRef.new(shape: DryRunOperationException)
|
|
2001
|
+
end)
|
|
2002
|
+
|
|
1852
2003
|
api.add_operation(:create_stack, Seahorse::Model::Operation.new.tap do |o|
|
|
1853
2004
|
o.name = "CreateStack"
|
|
1854
2005
|
o.http_method = "POST"
|
|
@@ -2371,6 +2522,16 @@ module Aws::AppStream
|
|
|
2371
2522
|
o.output = Shapes::ShapeRef.new(shape: ExpireSessionResult)
|
|
2372
2523
|
end)
|
|
2373
2524
|
|
|
2525
|
+
api.add_operation(:get_export_image_task, Seahorse::Model::Operation.new.tap do |o|
|
|
2526
|
+
o.name = "GetExportImageTask"
|
|
2527
|
+
o.http_method = "POST"
|
|
2528
|
+
o.http_request_uri = "/"
|
|
2529
|
+
o.input = Shapes::ShapeRef.new(shape: GetExportImageTaskRequest)
|
|
2530
|
+
o.output = Shapes::ShapeRef.new(shape: GetExportImageTaskResult)
|
|
2531
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
|
2532
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
2533
|
+
end)
|
|
2534
|
+
|
|
2374
2535
|
api.add_operation(:list_associated_fleets, Seahorse::Model::Operation.new.tap do |o|
|
|
2375
2536
|
o.name = "ListAssociatedFleets"
|
|
2376
2537
|
o.http_method = "POST"
|
|
@@ -2398,6 +2559,15 @@ module Aws::AppStream
|
|
|
2398
2559
|
o.errors << Shapes::ShapeRef.new(shape: EntitlementNotFoundException)
|
|
2399
2560
|
end)
|
|
2400
2561
|
|
|
2562
|
+
api.add_operation(:list_export_image_tasks, Seahorse::Model::Operation.new.tap do |o|
|
|
2563
|
+
o.name = "ListExportImageTasks"
|
|
2564
|
+
o.http_method = "POST"
|
|
2565
|
+
o.http_request_uri = "/"
|
|
2566
|
+
o.input = Shapes::ShapeRef.new(shape: ListExportImageTasksRequest)
|
|
2567
|
+
o.output = Shapes::ShapeRef.new(shape: ListExportImageTasksResult)
|
|
2568
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
|
2569
|
+
end)
|
|
2570
|
+
|
|
2401
2571
|
api.add_operation(:list_tags_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
2402
2572
|
o.name = "ListTagsForResource"
|
|
2403
2573
|
o.http_method = "POST"
|
|
@@ -28,6 +28,7 @@ module Aws::AppStream
|
|
|
28
28
|
#
|
|
29
29
|
# ## Error Classes
|
|
30
30
|
# * {ConcurrentModificationException}
|
|
31
|
+
# * {DryRunOperationException}
|
|
31
32
|
# * {EntitlementAlreadyExistsException}
|
|
32
33
|
# * {EntitlementNotFoundException}
|
|
33
34
|
# * {IncompatibleImageException}
|
|
@@ -63,6 +64,21 @@ module Aws::AppStream
|
|
|
63
64
|
end
|
|
64
65
|
end
|
|
65
66
|
|
|
67
|
+
class DryRunOperationException < ServiceError
|
|
68
|
+
|
|
69
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
70
|
+
# @param [String] message
|
|
71
|
+
# @param [Aws::AppStream::Types::DryRunOperationException] data
|
|
72
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
73
|
+
super(context, message, data)
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# @return [String]
|
|
77
|
+
def message
|
|
78
|
+
@message || @data[:message]
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
66
82
|
class EntitlementAlreadyExistsException < ServiceError
|
|
67
83
|
|
|
68
84
|
# @param [Seahorse::Client::RequestContext] context
|