aws-sdk-appstream 1.1.0 → 1.2.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/lib/aws-sdk-appstream.rb +1 -1
- data/lib/aws-sdk-appstream/client.rb +456 -127
- data/lib/aws-sdk-appstream/client_api.rb +184 -0
- data/lib/aws-sdk-appstream/types.rb +534 -204
- metadata +2 -2
@@ -28,6 +28,10 @@ module Aws::AppStream
|
|
28
28
|
CreateDirectoryConfigResult = Shapes::StructureShape.new(name: 'CreateDirectoryConfigResult')
|
29
29
|
CreateFleetRequest = Shapes::StructureShape.new(name: 'CreateFleetRequest')
|
30
30
|
CreateFleetResult = Shapes::StructureShape.new(name: 'CreateFleetResult')
|
31
|
+
CreateImageBuilderRequest = Shapes::StructureShape.new(name: 'CreateImageBuilderRequest')
|
32
|
+
CreateImageBuilderResult = Shapes::StructureShape.new(name: 'CreateImageBuilderResult')
|
33
|
+
CreateImageBuilderStreamingURLRequest = Shapes::StructureShape.new(name: 'CreateImageBuilderStreamingURLRequest')
|
34
|
+
CreateImageBuilderStreamingURLResult = Shapes::StructureShape.new(name: 'CreateImageBuilderStreamingURLResult')
|
31
35
|
CreateStackRequest = Shapes::StructureShape.new(name: 'CreateStackRequest')
|
32
36
|
CreateStackResult = Shapes::StructureShape.new(name: 'CreateStackResult')
|
33
37
|
CreateStreamingURLRequest = Shapes::StructureShape.new(name: 'CreateStreamingURLRequest')
|
@@ -36,12 +40,18 @@ module Aws::AppStream
|
|
36
40
|
DeleteDirectoryConfigResult = Shapes::StructureShape.new(name: 'DeleteDirectoryConfigResult')
|
37
41
|
DeleteFleetRequest = Shapes::StructureShape.new(name: 'DeleteFleetRequest')
|
38
42
|
DeleteFleetResult = Shapes::StructureShape.new(name: 'DeleteFleetResult')
|
43
|
+
DeleteImageBuilderRequest = Shapes::StructureShape.new(name: 'DeleteImageBuilderRequest')
|
44
|
+
DeleteImageBuilderResult = Shapes::StructureShape.new(name: 'DeleteImageBuilderResult')
|
45
|
+
DeleteImageRequest = Shapes::StructureShape.new(name: 'DeleteImageRequest')
|
46
|
+
DeleteImageResult = Shapes::StructureShape.new(name: 'DeleteImageResult')
|
39
47
|
DeleteStackRequest = Shapes::StructureShape.new(name: 'DeleteStackRequest')
|
40
48
|
DeleteStackResult = Shapes::StructureShape.new(name: 'DeleteStackResult')
|
41
49
|
DescribeDirectoryConfigsRequest = Shapes::StructureShape.new(name: 'DescribeDirectoryConfigsRequest')
|
42
50
|
DescribeDirectoryConfigsResult = Shapes::StructureShape.new(name: 'DescribeDirectoryConfigsResult')
|
43
51
|
DescribeFleetsRequest = Shapes::StructureShape.new(name: 'DescribeFleetsRequest')
|
44
52
|
DescribeFleetsResult = Shapes::StructureShape.new(name: 'DescribeFleetsResult')
|
53
|
+
DescribeImageBuildersRequest = Shapes::StructureShape.new(name: 'DescribeImageBuildersRequest')
|
54
|
+
DescribeImageBuildersResult = Shapes::StructureShape.new(name: 'DescribeImageBuildersResult')
|
45
55
|
DescribeImagesRequest = Shapes::StructureShape.new(name: 'DescribeImagesRequest')
|
46
56
|
DescribeImagesResult = Shapes::StructureShape.new(name: 'DescribeImagesResult')
|
47
57
|
DescribeSessionsRequest = Shapes::StructureShape.new(name: 'DescribeSessionsRequest')
|
@@ -70,6 +80,11 @@ module Aws::AppStream
|
|
70
80
|
FleetState = Shapes::StringShape.new(name: 'FleetState')
|
71
81
|
FleetType = Shapes::StringShape.new(name: 'FleetType')
|
72
82
|
Image = Shapes::StructureShape.new(name: 'Image')
|
83
|
+
ImageBuilder = Shapes::StructureShape.new(name: 'ImageBuilder')
|
84
|
+
ImageBuilderList = Shapes::ListShape.new(name: 'ImageBuilderList')
|
85
|
+
ImageBuilderState = Shapes::StringShape.new(name: 'ImageBuilderState')
|
86
|
+
ImageBuilderStateChangeReason = Shapes::StructureShape.new(name: 'ImageBuilderStateChangeReason')
|
87
|
+
ImageBuilderStateChangeReasonCode = Shapes::StringShape.new(name: 'ImageBuilderStateChangeReasonCode')
|
73
88
|
ImageList = Shapes::ListShape.new(name: 'ImageList')
|
74
89
|
ImageState = Shapes::StringShape.new(name: 'ImageState')
|
75
90
|
ImageStateChangeReason = Shapes::StructureShape.new(name: 'ImageStateChangeReason')
|
@@ -91,6 +106,8 @@ module Aws::AppStream
|
|
91
106
|
OrganizationalUnitDistinguishedNamesList = Shapes::ListShape.new(name: 'OrganizationalUnitDistinguishedNamesList')
|
92
107
|
PlatformType = Shapes::StringShape.new(name: 'PlatformType')
|
93
108
|
ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
|
109
|
+
ResourceError = Shapes::StructureShape.new(name: 'ResourceError')
|
110
|
+
ResourceErrors = Shapes::ListShape.new(name: 'ResourceErrors')
|
94
111
|
ResourceIdentifier = Shapes::StringShape.new(name: 'ResourceIdentifier')
|
95
112
|
ResourceInUseException = Shapes::StructureShape.new(name: 'ResourceInUseException')
|
96
113
|
ResourceNotAvailableException = Shapes::StructureShape.new(name: 'ResourceNotAvailableException')
|
@@ -107,8 +124,12 @@ module Aws::AppStream
|
|
107
124
|
StackList = Shapes::ListShape.new(name: 'StackList')
|
108
125
|
StartFleetRequest = Shapes::StructureShape.new(name: 'StartFleetRequest')
|
109
126
|
StartFleetResult = Shapes::StructureShape.new(name: 'StartFleetResult')
|
127
|
+
StartImageBuilderRequest = Shapes::StructureShape.new(name: 'StartImageBuilderRequest')
|
128
|
+
StartImageBuilderResult = Shapes::StructureShape.new(name: 'StartImageBuilderResult')
|
110
129
|
StopFleetRequest = Shapes::StructureShape.new(name: 'StopFleetRequest')
|
111
130
|
StopFleetResult = Shapes::StructureShape.new(name: 'StopFleetResult')
|
131
|
+
StopImageBuilderRequest = Shapes::StructureShape.new(name: 'StopImageBuilderRequest')
|
132
|
+
StopImageBuilderResult = Shapes::StructureShape.new(name: 'StopImageBuilderResult')
|
112
133
|
StorageConnector = Shapes::StructureShape.new(name: 'StorageConnector')
|
113
134
|
StorageConnectorList = Shapes::ListShape.new(name: 'StorageConnectorList')
|
114
135
|
StorageConnectorType = Shapes::StringShape.new(name: 'StorageConnectorType')
|
@@ -178,6 +199,27 @@ module Aws::AppStream
|
|
178
199
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
179
200
|
CreateFleetResult.struct_class = Types::CreateFleetResult
|
180
201
|
|
202
|
+
CreateImageBuilderRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
203
|
+
CreateImageBuilderRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ImageName"))
|
204
|
+
CreateImageBuilderRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "InstanceType"))
|
205
|
+
CreateImageBuilderRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
206
|
+
CreateImageBuilderRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
207
|
+
CreateImageBuilderRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
208
|
+
CreateImageBuilderRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
209
|
+
CreateImageBuilderRequest.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
210
|
+
CreateImageBuilderRequest.struct_class = Types::CreateImageBuilderRequest
|
211
|
+
|
212
|
+
CreateImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
213
|
+
CreateImageBuilderResult.struct_class = Types::CreateImageBuilderResult
|
214
|
+
|
215
|
+
CreateImageBuilderStreamingURLRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
216
|
+
CreateImageBuilderStreamingURLRequest.add_member(:validity, Shapes::ShapeRef.new(shape: Long, location_name: "Validity"))
|
217
|
+
CreateImageBuilderStreamingURLRequest.struct_class = Types::CreateImageBuilderStreamingURLRequest
|
218
|
+
|
219
|
+
CreateImageBuilderStreamingURLResult.add_member(:streaming_url, Shapes::ShapeRef.new(shape: String, location_name: "StreamingURL"))
|
220
|
+
CreateImageBuilderStreamingURLResult.add_member(:expires, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Expires"))
|
221
|
+
CreateImageBuilderStreamingURLResult.struct_class = Types::CreateImageBuilderStreamingURLResult
|
222
|
+
|
181
223
|
CreateStackRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
182
224
|
CreateStackRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
183
225
|
CreateStackRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
@@ -209,6 +251,18 @@ module Aws::AppStream
|
|
209
251
|
|
210
252
|
DeleteFleetResult.struct_class = Types::DeleteFleetResult
|
211
253
|
|
254
|
+
DeleteImageBuilderRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
255
|
+
DeleteImageBuilderRequest.struct_class = Types::DeleteImageBuilderRequest
|
256
|
+
|
257
|
+
DeleteImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
258
|
+
DeleteImageBuilderResult.struct_class = Types::DeleteImageBuilderResult
|
259
|
+
|
260
|
+
DeleteImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
261
|
+
DeleteImageRequest.struct_class = Types::DeleteImageRequest
|
262
|
+
|
263
|
+
DeleteImageResult.add_member(:image, Shapes::ShapeRef.new(shape: Image, location_name: "Image"))
|
264
|
+
DeleteImageResult.struct_class = Types::DeleteImageResult
|
265
|
+
|
212
266
|
DeleteStackRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
213
267
|
DeleteStackRequest.struct_class = Types::DeleteStackRequest
|
214
268
|
|
@@ -231,6 +285,15 @@ module Aws::AppStream
|
|
231
285
|
DescribeFleetsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
232
286
|
DescribeFleetsResult.struct_class = Types::DescribeFleetsResult
|
233
287
|
|
288
|
+
DescribeImageBuildersRequest.add_member(:names, Shapes::ShapeRef.new(shape: StringList, location_name: "Names"))
|
289
|
+
DescribeImageBuildersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
|
290
|
+
DescribeImageBuildersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
291
|
+
DescribeImageBuildersRequest.struct_class = Types::DescribeImageBuildersRequest
|
292
|
+
|
293
|
+
DescribeImageBuildersResult.add_member(:image_builders, Shapes::ShapeRef.new(shape: ImageBuilderList, location_name: "ImageBuilders"))
|
294
|
+
DescribeImageBuildersResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
295
|
+
DescribeImageBuildersResult.struct_class = Types::DescribeImageBuildersResult
|
296
|
+
|
234
297
|
DescribeImagesRequest.add_member(:names, Shapes::ShapeRef.new(shape: StringList, location_name: "Names"))
|
235
298
|
DescribeImagesRequest.struct_class = Types::DescribeImagesRequest
|
236
299
|
|
@@ -325,6 +388,28 @@ module Aws::AppStream
|
|
325
388
|
Image.add_member(:public_base_image_released_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "PublicBaseImageReleasedDate"))
|
326
389
|
Image.struct_class = Types::Image
|
327
390
|
|
391
|
+
ImageBuilder.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
392
|
+
ImageBuilder.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, location_name: "Arn"))
|
393
|
+
ImageBuilder.add_member(:image_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "ImageArn"))
|
394
|
+
ImageBuilder.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
395
|
+
ImageBuilder.add_member(:display_name, Shapes::ShapeRef.new(shape: String, location_name: "DisplayName"))
|
396
|
+
ImageBuilder.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
397
|
+
ImageBuilder.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "InstanceType"))
|
398
|
+
ImageBuilder.add_member(:platform, Shapes::ShapeRef.new(shape: PlatformType, location_name: "Platform"))
|
399
|
+
ImageBuilder.add_member(:state, Shapes::ShapeRef.new(shape: ImageBuilderState, location_name: "State"))
|
400
|
+
ImageBuilder.add_member(:state_change_reason, Shapes::ShapeRef.new(shape: ImageBuilderStateChangeReason, location_name: "StateChangeReason"))
|
401
|
+
ImageBuilder.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
402
|
+
ImageBuilder.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
403
|
+
ImageBuilder.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
404
|
+
ImageBuilder.add_member(:image_builder_errors, Shapes::ShapeRef.new(shape: ResourceErrors, location_name: "ImageBuilderErrors"))
|
405
|
+
ImageBuilder.struct_class = Types::ImageBuilder
|
406
|
+
|
407
|
+
ImageBuilderList.member = Shapes::ShapeRef.new(shape: ImageBuilder)
|
408
|
+
|
409
|
+
ImageBuilderStateChangeReason.add_member(:code, Shapes::ShapeRef.new(shape: ImageBuilderStateChangeReasonCode, location_name: "Code"))
|
410
|
+
ImageBuilderStateChangeReason.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
411
|
+
ImageBuilderStateChangeReason.struct_class = Types::ImageBuilderStateChangeReason
|
412
|
+
|
328
413
|
ImageList.member = Shapes::ShapeRef.new(shape: Image)
|
329
414
|
|
330
415
|
ImageStateChangeReason.add_member(:code, Shapes::ShapeRef.new(shape: ImageStateChangeReasonCode, location_name: "Code"))
|
@@ -352,6 +437,13 @@ module Aws::AppStream
|
|
352
437
|
|
353
438
|
OrganizationalUnitDistinguishedNamesList.member = Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedName)
|
354
439
|
|
440
|
+
ResourceError.add_member(:error_code, Shapes::ShapeRef.new(shape: FleetErrorCode, location_name: "ErrorCode"))
|
441
|
+
ResourceError.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
|
442
|
+
ResourceError.add_member(:error_timestamp, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ErrorTimestamp"))
|
443
|
+
ResourceError.struct_class = Types::ResourceError
|
444
|
+
|
445
|
+
ResourceErrors.member = Shapes::ShapeRef.new(shape: ResourceError)
|
446
|
+
|
355
447
|
SecurityGroupIdList.member = Shapes::ShapeRef.new(shape: String)
|
356
448
|
|
357
449
|
ServiceAccountCredentials.add_member(:account_name, Shapes::ShapeRef.new(shape: AccountName, required: true, location_name: "AccountName"))
|
@@ -390,11 +482,23 @@ module Aws::AppStream
|
|
390
482
|
|
391
483
|
StartFleetResult.struct_class = Types::StartFleetResult
|
392
484
|
|
485
|
+
StartImageBuilderRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
486
|
+
StartImageBuilderRequest.struct_class = Types::StartImageBuilderRequest
|
487
|
+
|
488
|
+
StartImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
489
|
+
StartImageBuilderResult.struct_class = Types::StartImageBuilderResult
|
490
|
+
|
393
491
|
StopFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
394
492
|
StopFleetRequest.struct_class = Types::StopFleetRequest
|
395
493
|
|
396
494
|
StopFleetResult.struct_class = Types::StopFleetResult
|
397
495
|
|
496
|
+
StopImageBuilderRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
497
|
+
StopImageBuilderRequest.struct_class = Types::StopImageBuilderRequest
|
498
|
+
|
499
|
+
StopImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
500
|
+
StopImageBuilderResult.struct_class = Types::StopImageBuilderResult
|
501
|
+
|
398
502
|
StorageConnector.add_member(:connector_type, Shapes::ShapeRef.new(shape: StorageConnectorType, required: true, location_name: "ConnectorType"))
|
399
503
|
StorageConnector.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: ResourceIdentifier, location_name: "ResourceIdentifier"))
|
400
504
|
StorageConnector.struct_class = Types::StorageConnector
|
@@ -500,6 +604,32 @@ module Aws::AppStream
|
|
500
604
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
501
605
|
end)
|
502
606
|
|
607
|
+
api.add_operation(:create_image_builder, Seahorse::Model::Operation.new.tap do |o|
|
608
|
+
o.name = "CreateImageBuilder"
|
609
|
+
o.http_method = "POST"
|
610
|
+
o.http_request_uri = "/"
|
611
|
+
o.input = Shapes::ShapeRef.new(shape: CreateImageBuilderRequest)
|
612
|
+
o.output = Shapes::ShapeRef.new(shape: CreateImageBuilderResult)
|
613
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
614
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
615
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
616
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
617
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
618
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
619
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
620
|
+
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
621
|
+
end)
|
622
|
+
|
623
|
+
api.add_operation(:create_image_builder_streaming_url, Seahorse::Model::Operation.new.tap do |o|
|
624
|
+
o.name = "CreateImageBuilderStreamingURL"
|
625
|
+
o.http_method = "POST"
|
626
|
+
o.http_request_uri = "/"
|
627
|
+
o.input = Shapes::ShapeRef.new(shape: CreateImageBuilderStreamingURLRequest)
|
628
|
+
o.output = Shapes::ShapeRef.new(shape: CreateImageBuilderStreamingURLResult)
|
629
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
630
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
631
|
+
end)
|
632
|
+
|
503
633
|
api.add_operation(:create_stack, Seahorse::Model::Operation.new.tap do |o|
|
504
634
|
o.name = "CreateStack"
|
505
635
|
o.http_method = "POST"
|
@@ -547,6 +677,29 @@ module Aws::AppStream
|
|
547
677
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
548
678
|
end)
|
549
679
|
|
680
|
+
api.add_operation(:delete_image, Seahorse::Model::Operation.new.tap do |o|
|
681
|
+
o.name = "DeleteImage"
|
682
|
+
o.http_method = "POST"
|
683
|
+
o.http_request_uri = "/"
|
684
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteImageRequest)
|
685
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteImageResult)
|
686
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
687
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
688
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
689
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
690
|
+
end)
|
691
|
+
|
692
|
+
api.add_operation(:delete_image_builder, Seahorse::Model::Operation.new.tap do |o|
|
693
|
+
o.name = "DeleteImageBuilder"
|
694
|
+
o.http_method = "POST"
|
695
|
+
o.http_request_uri = "/"
|
696
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteImageBuilderRequest)
|
697
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteImageBuilderResult)
|
698
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
699
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
700
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
701
|
+
end)
|
702
|
+
|
550
703
|
api.add_operation(:delete_stack, Seahorse::Model::Operation.new.tap do |o|
|
551
704
|
o.name = "DeleteStack"
|
552
705
|
o.http_method = "POST"
|
@@ -576,6 +729,15 @@ module Aws::AppStream
|
|
576
729
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
577
730
|
end)
|
578
731
|
|
732
|
+
api.add_operation(:describe_image_builders, Seahorse::Model::Operation.new.tap do |o|
|
733
|
+
o.name = "DescribeImageBuilders"
|
734
|
+
o.http_method = "POST"
|
735
|
+
o.http_request_uri = "/"
|
736
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeImageBuildersRequest)
|
737
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeImageBuildersResult)
|
738
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
739
|
+
end)
|
740
|
+
|
579
741
|
api.add_operation(:describe_images, Seahorse::Model::Operation.new.tap do |o|
|
580
742
|
o.name = "DescribeImages"
|
581
743
|
o.http_method = "POST"
|
@@ -650,6 +812,17 @@ module Aws::AppStream
|
|
650
812
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
651
813
|
end)
|
652
814
|
|
815
|
+
api.add_operation(:start_image_builder, Seahorse::Model::Operation.new.tap do |o|
|
816
|
+
o.name = "StartImageBuilder"
|
817
|
+
o.http_method = "POST"
|
818
|
+
o.http_request_uri = "/"
|
819
|
+
o.input = Shapes::ShapeRef.new(shape: StartImageBuilderRequest)
|
820
|
+
o.output = Shapes::ShapeRef.new(shape: StartImageBuilderResult)
|
821
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
822
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
823
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
824
|
+
end)
|
825
|
+
|
653
826
|
api.add_operation(:stop_fleet, Seahorse::Model::Operation.new.tap do |o|
|
654
827
|
o.name = "StopFleet"
|
655
828
|
o.http_method = "POST"
|
@@ -660,6 +833,17 @@ module Aws::AppStream
|
|
660
833
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
661
834
|
end)
|
662
835
|
|
836
|
+
api.add_operation(:stop_image_builder, Seahorse::Model::Operation.new.tap do |o|
|
837
|
+
o.name = "StopImageBuilder"
|
838
|
+
o.http_method = "POST"
|
839
|
+
o.http_request_uri = "/"
|
840
|
+
o.input = Shapes::ShapeRef.new(shape: StopImageBuilderRequest)
|
841
|
+
o.output = Shapes::ShapeRef.new(shape: StopImageBuilderResult)
|
842
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
843
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
844
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
845
|
+
end)
|
846
|
+
|
663
847
|
api.add_operation(:update_directory_config, Seahorse::Model::Operation.new.tap do |o|
|
664
848
|
o.name = "UpdateDirectoryConfig"
|
665
849
|
o.http_method = "POST"
|
@@ -8,18 +8,18 @@
|
|
8
8
|
module Aws::AppStream
|
9
9
|
module Types
|
10
10
|
|
11
|
-
#
|
11
|
+
# Describes an application in the application catalog.
|
12
12
|
#
|
13
13
|
# @!attribute [rw] name
|
14
|
-
# The
|
14
|
+
# The name of the application.
|
15
15
|
# @return [String]
|
16
16
|
#
|
17
17
|
# @!attribute [rw] display_name
|
18
|
-
# The name
|
18
|
+
# The application name displayed to end users.
|
19
19
|
# @return [String]
|
20
20
|
#
|
21
21
|
# @!attribute [rw] icon_url
|
22
|
-
# The URL for the application icon. This URL
|
22
|
+
# The URL for the application icon. This URL might be time-limited.
|
23
23
|
# @return [String]
|
24
24
|
#
|
25
25
|
# @!attribute [rw] launch_path
|
@@ -27,11 +27,11 @@ module Aws::AppStream
|
|
27
27
|
# @return [String]
|
28
28
|
#
|
29
29
|
# @!attribute [rw] launch_parameters
|
30
|
-
#
|
30
|
+
# The arguments that are passed to the application at launch.
|
31
31
|
# @return [String]
|
32
32
|
#
|
33
33
|
# @!attribute [rw] enabled
|
34
|
-
# If there is a problem,
|
34
|
+
# If there is a problem, the application can be disabled after image
|
35
35
|
# creation.
|
36
36
|
# @return [Boolean]
|
37
37
|
#
|
@@ -61,11 +61,11 @@ module Aws::AppStream
|
|
61
61
|
# }
|
62
62
|
#
|
63
63
|
# @!attribute [rw] fleet_name
|
64
|
-
# The name of the fleet
|
64
|
+
# The name of the fleet.
|
65
65
|
# @return [String]
|
66
66
|
#
|
67
67
|
# @!attribute [rw] stack_name
|
68
|
-
# The name of the stack
|
68
|
+
# The name of the stack.
|
69
69
|
# @return [String]
|
70
70
|
#
|
71
71
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/AssociateFleetRequest AWS API Documentation
|
@@ -80,7 +80,7 @@ module Aws::AppStream
|
|
80
80
|
#
|
81
81
|
class AssociateFleetResult < Aws::EmptyStructure; end
|
82
82
|
|
83
|
-
#
|
83
|
+
# Describes the capacity for a fleet.
|
84
84
|
#
|
85
85
|
# @note When making an API call, you may pass ComputeCapacity
|
86
86
|
# data as a hash:
|
@@ -100,7 +100,7 @@ module Aws::AppStream
|
|
100
100
|
include Aws::Structure
|
101
101
|
end
|
102
102
|
|
103
|
-
#
|
103
|
+
# Describes the capacity status for a fleet.
|
104
104
|
#
|
105
105
|
# @!attribute [rw] desired
|
106
106
|
# The desired number of streaming instances.
|
@@ -112,7 +112,7 @@ module Aws::AppStream
|
|
112
112
|
# @return [Integer]
|
113
113
|
#
|
114
114
|
# @!attribute [rw] in_use
|
115
|
-
# The number of instances
|
115
|
+
# The number of instances in use for streaming.
|
116
116
|
# @return [Integer]
|
117
117
|
#
|
118
118
|
# @!attribute [rw] available
|
@@ -143,18 +143,18 @@ module Aws::AppStream
|
|
143
143
|
# }
|
144
144
|
#
|
145
145
|
# @!attribute [rw] directory_name
|
146
|
-
# The fully qualified name of the directory
|
146
|
+
# The fully qualified name of the directory (for example,
|
147
|
+
# corp.example.com).
|
147
148
|
# @return [String]
|
148
149
|
#
|
149
150
|
# @!attribute [rw] organizational_unit_distinguished_names
|
150
|
-
# The
|
151
|
-
#
|
151
|
+
# The distinguished names of the organizational units for computer
|
152
|
+
# accounts.
|
152
153
|
# @return [Array<String>]
|
153
154
|
#
|
154
155
|
# @!attribute [rw] service_account_credentials
|
155
|
-
# The
|
156
|
-
#
|
157
|
-
# directory.
|
156
|
+
# The credentials for the service account used by the streaming
|
157
|
+
# instance to connect to the directory.
|
158
158
|
# @return [Types::ServiceAccountCredentials]
|
159
159
|
#
|
160
160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfigRequest AWS API Documentation
|
@@ -167,7 +167,7 @@ module Aws::AppStream
|
|
167
167
|
end
|
168
168
|
|
169
169
|
# @!attribute [rw] directory_config
|
170
|
-
#
|
170
|
+
# Information about the directory configuration.
|
171
171
|
# @return [Types::DirectoryConfig]
|
172
172
|
#
|
173
173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfigResult AWS API Documentation
|
@@ -177,8 +177,6 @@ module Aws::AppStream
|
|
177
177
|
include Aws::Structure
|
178
178
|
end
|
179
179
|
|
180
|
-
# Contains the parameters for the new fleet to create.
|
181
|
-
#
|
182
180
|
# @note When making an API call, you may pass CreateFleetRequest
|
183
181
|
# data as a hash:
|
184
182
|
#
|
@@ -206,11 +204,11 @@ module Aws::AppStream
|
|
206
204
|
# }
|
207
205
|
#
|
208
206
|
# @!attribute [rw] name
|
209
|
-
# A unique
|
207
|
+
# A unique name for the fleet.
|
210
208
|
# @return [String]
|
211
209
|
#
|
212
210
|
# @!attribute [rw] image_name
|
213
|
-
#
|
211
|
+
# The name of the image used by the fleet.
|
214
212
|
# @return [String]
|
215
213
|
#
|
216
214
|
# @!attribute [rw] instance_type
|
@@ -262,7 +260,7 @@ module Aws::AppStream
|
|
262
260
|
# @return [String]
|
263
261
|
#
|
264
262
|
# @!attribute [rw] compute_capacity
|
265
|
-
# The
|
263
|
+
# The desired capacity for the fleet.
|
266
264
|
# @return [Types::ComputeCapacity]
|
267
265
|
#
|
268
266
|
# @!attribute [rw] vpc_config
|
@@ -270,23 +268,23 @@ module Aws::AppStream
|
|
270
268
|
# @return [Types::VpcConfig]
|
271
269
|
#
|
272
270
|
# @!attribute [rw] max_user_duration_in_seconds
|
273
|
-
# The maximum time
|
274
|
-
#
|
271
|
+
# The maximum time that a streaming session can run, in seconds.
|
272
|
+
# Specify a value between 600 and 57600.
|
275
273
|
# @return [Integer]
|
276
274
|
#
|
277
275
|
# @!attribute [rw] disconnect_timeout_in_seconds
|
278
276
|
# The time after disconnection when a session is considered to have
|
279
|
-
# ended. If a user who
|
280
|
-
# interval, the user is connected
|
281
|
-
#
|
277
|
+
# ended, in seconds. If a user who was disconnected reconnects within
|
278
|
+
# this time interval, the user is connected to their previous session.
|
279
|
+
# Specify a value between 60 and 57600.
|
282
280
|
# @return [Integer]
|
283
281
|
#
|
284
282
|
# @!attribute [rw] description
|
285
|
-
# The description
|
283
|
+
# The description displayed to end users.
|
286
284
|
# @return [String]
|
287
285
|
#
|
288
286
|
# @!attribute [rw] display_name
|
289
|
-
# The
|
287
|
+
# The fleet name displayed to end users.
|
290
288
|
# @return [String]
|
291
289
|
#
|
292
290
|
# @!attribute [rw] enable_default_internet_access
|
@@ -294,9 +292,7 @@ module Aws::AppStream
|
|
294
292
|
# @return [Boolean]
|
295
293
|
#
|
296
294
|
# @!attribute [rw] domain_join_info
|
297
|
-
# The
|
298
|
-
# values, which are used to join domains for the AppStream 2.0
|
299
|
-
# streaming instances.
|
295
|
+
# The information needed for streaming instances to join a domain.
|
300
296
|
# @return [Types::DomainJoinInfo]
|
301
297
|
#
|
302
298
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
@@ -318,7 +314,7 @@ module Aws::AppStream
|
|
318
314
|
end
|
319
315
|
|
320
316
|
# @!attribute [rw] fleet
|
321
|
-
#
|
317
|
+
# Information about the fleet.
|
322
318
|
# @return [Types::Fleet]
|
323
319
|
#
|
324
320
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetResult AWS API Documentation
|
@@ -328,6 +324,113 @@ module Aws::AppStream
|
|
328
324
|
include Aws::Structure
|
329
325
|
end
|
330
326
|
|
327
|
+
# @note When making an API call, you may pass CreateImageBuilderRequest
|
328
|
+
# data as a hash:
|
329
|
+
#
|
330
|
+
# {
|
331
|
+
# name: "Name", # required
|
332
|
+
# image_name: "String", # required
|
333
|
+
# instance_type: "String", # required
|
334
|
+
# description: "Description",
|
335
|
+
# display_name: "DisplayName",
|
336
|
+
# vpc_config: {
|
337
|
+
# subnet_ids: ["String"],
|
338
|
+
# security_group_ids: ["String"],
|
339
|
+
# },
|
340
|
+
# enable_default_internet_access: false,
|
341
|
+
# domain_join_info: {
|
342
|
+
# directory_name: "DirectoryName",
|
343
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
344
|
+
# },
|
345
|
+
# }
|
346
|
+
#
|
347
|
+
# @!attribute [rw] name
|
348
|
+
# @return [String]
|
349
|
+
#
|
350
|
+
# @!attribute [rw] image_name
|
351
|
+
# @return [String]
|
352
|
+
#
|
353
|
+
# @!attribute [rw] instance_type
|
354
|
+
# @return [String]
|
355
|
+
#
|
356
|
+
# @!attribute [rw] description
|
357
|
+
# @return [String]
|
358
|
+
#
|
359
|
+
# @!attribute [rw] display_name
|
360
|
+
# @return [String]
|
361
|
+
#
|
362
|
+
# @!attribute [rw] vpc_config
|
363
|
+
# Describes VPC configuration information.
|
364
|
+
# @return [Types::VpcConfig]
|
365
|
+
#
|
366
|
+
# @!attribute [rw] enable_default_internet_access
|
367
|
+
# @return [Boolean]
|
368
|
+
#
|
369
|
+
# @!attribute [rw] domain_join_info
|
370
|
+
# Contains the information needed for streaming instances to join a
|
371
|
+
# domain.
|
372
|
+
# @return [Types::DomainJoinInfo]
|
373
|
+
#
|
374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderRequest AWS API Documentation
|
375
|
+
#
|
376
|
+
class CreateImageBuilderRequest < Struct.new(
|
377
|
+
:name,
|
378
|
+
:image_name,
|
379
|
+
:instance_type,
|
380
|
+
:description,
|
381
|
+
:display_name,
|
382
|
+
:vpc_config,
|
383
|
+
:enable_default_internet_access,
|
384
|
+
:domain_join_info)
|
385
|
+
include Aws::Structure
|
386
|
+
end
|
387
|
+
|
388
|
+
# @!attribute [rw] image_builder
|
389
|
+
# @return [Types::ImageBuilder]
|
390
|
+
#
|
391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderResult AWS API Documentation
|
392
|
+
#
|
393
|
+
class CreateImageBuilderResult < Struct.new(
|
394
|
+
:image_builder)
|
395
|
+
include Aws::Structure
|
396
|
+
end
|
397
|
+
|
398
|
+
# @note When making an API call, you may pass CreateImageBuilderStreamingURLRequest
|
399
|
+
# data as a hash:
|
400
|
+
#
|
401
|
+
# {
|
402
|
+
# name: "String", # required
|
403
|
+
# validity: 1,
|
404
|
+
# }
|
405
|
+
#
|
406
|
+
# @!attribute [rw] name
|
407
|
+
# @return [String]
|
408
|
+
#
|
409
|
+
# @!attribute [rw] validity
|
410
|
+
# @return [Integer]
|
411
|
+
#
|
412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderStreamingURLRequest AWS API Documentation
|
413
|
+
#
|
414
|
+
class CreateImageBuilderStreamingURLRequest < Struct.new(
|
415
|
+
:name,
|
416
|
+
:validity)
|
417
|
+
include Aws::Structure
|
418
|
+
end
|
419
|
+
|
420
|
+
# @!attribute [rw] streaming_url
|
421
|
+
# @return [String]
|
422
|
+
#
|
423
|
+
# @!attribute [rw] expires
|
424
|
+
# @return [Time]
|
425
|
+
#
|
426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderStreamingURLResult AWS API Documentation
|
427
|
+
#
|
428
|
+
class CreateImageBuilderStreamingURLResult < Struct.new(
|
429
|
+
:streaming_url,
|
430
|
+
:expires)
|
431
|
+
include Aws::Structure
|
432
|
+
end
|
433
|
+
|
331
434
|
# @note When making an API call, you may pass CreateStackRequest
|
332
435
|
# data as a hash:
|
333
436
|
#
|
@@ -344,19 +447,19 @@ module Aws::AppStream
|
|
344
447
|
# }
|
345
448
|
#
|
346
449
|
# @!attribute [rw] name
|
347
|
-
# The
|
450
|
+
# The name of the stack.
|
348
451
|
# @return [String]
|
349
452
|
#
|
350
453
|
# @!attribute [rw] description
|
351
|
-
# The description displayed to end users
|
454
|
+
# The description displayed to end users.
|
352
455
|
# @return [String]
|
353
456
|
#
|
354
457
|
# @!attribute [rw] display_name
|
355
|
-
# The name displayed to end users
|
458
|
+
# The stack name displayed to end users.
|
356
459
|
# @return [String]
|
357
460
|
#
|
358
461
|
# @!attribute [rw] storage_connectors
|
359
|
-
# The storage connectors to
|
462
|
+
# The storage connectors to enable.
|
360
463
|
# @return [Array<Types::StorageConnector>]
|
361
464
|
#
|
362
465
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
|
@@ -370,7 +473,7 @@ module Aws::AppStream
|
|
370
473
|
end
|
371
474
|
|
372
475
|
# @!attribute [rw] stack
|
373
|
-
#
|
476
|
+
# Information about the stack.
|
374
477
|
# @return [Types::Stack]
|
375
478
|
#
|
376
479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackResult AWS API Documentation
|
@@ -393,15 +496,15 @@ module Aws::AppStream
|
|
393
496
|
# }
|
394
497
|
#
|
395
498
|
# @!attribute [rw] stack_name
|
396
|
-
# The
|
499
|
+
# The name of the stack.
|
397
500
|
# @return [String]
|
398
501
|
#
|
399
502
|
# @!attribute [rw] fleet_name
|
400
|
-
# The
|
503
|
+
# The name of the fleet.
|
401
504
|
# @return [String]
|
402
505
|
#
|
403
506
|
# @!attribute [rw] user_id
|
404
|
-
#
|
507
|
+
# The ID of the user.
|
405
508
|
# @return [String]
|
406
509
|
#
|
407
510
|
# @!attribute [rw] application_id
|
@@ -410,13 +513,12 @@ module Aws::AppStream
|
|
410
513
|
# @return [String]
|
411
514
|
#
|
412
515
|
# @!attribute [rw] validity
|
413
|
-
# The
|
414
|
-
#
|
415
|
-
# seconds.
|
516
|
+
# The time that the streaming URL will be valid, in seconds. Specify a
|
517
|
+
# value between 1 and 604800 seconds.
|
416
518
|
# @return [Integer]
|
417
519
|
#
|
418
520
|
# @!attribute [rw] session_context
|
419
|
-
# The
|
521
|
+
# The session context of the streaming URL.
|
420
522
|
# @return [String]
|
421
523
|
#
|
422
524
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStreamingURLRequest AWS API Documentation
|
@@ -436,7 +538,8 @@ module Aws::AppStream
|
|
436
538
|
# @return [String]
|
437
539
|
#
|
438
540
|
# @!attribute [rw] expires
|
439
|
-
#
|
541
|
+
# The elapsed time, in seconds after the Unix epoch, when this URL
|
542
|
+
# expires.
|
440
543
|
# @return [Time]
|
441
544
|
#
|
442
545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStreamingURLResult AWS API Documentation
|
@@ -455,7 +558,7 @@ module Aws::AppStream
|
|
455
558
|
# }
|
456
559
|
#
|
457
560
|
# @!attribute [rw] directory_name
|
458
|
-
# The name of the directory configuration
|
561
|
+
# The name of the directory configuration.
|
459
562
|
# @return [String]
|
460
563
|
#
|
461
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteDirectoryConfigRequest AWS API Documentation
|
@@ -477,7 +580,7 @@ module Aws::AppStream
|
|
477
580
|
# }
|
478
581
|
#
|
479
582
|
# @!attribute [rw] name
|
480
|
-
# The name of the fleet
|
583
|
+
# The name of the fleet.
|
481
584
|
# @return [String]
|
482
585
|
#
|
483
586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteFleetRequest AWS API Documentation
|
@@ -491,6 +594,61 @@ module Aws::AppStream
|
|
491
594
|
#
|
492
595
|
class DeleteFleetResult < Aws::EmptyStructure; end
|
493
596
|
|
597
|
+
# @note When making an API call, you may pass DeleteImageBuilderRequest
|
598
|
+
# data as a hash:
|
599
|
+
#
|
600
|
+
# {
|
601
|
+
# name: "Name", # required
|
602
|
+
# }
|
603
|
+
#
|
604
|
+
# @!attribute [rw] name
|
605
|
+
# @return [String]
|
606
|
+
#
|
607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilderRequest AWS API Documentation
|
608
|
+
#
|
609
|
+
class DeleteImageBuilderRequest < Struct.new(
|
610
|
+
:name)
|
611
|
+
include Aws::Structure
|
612
|
+
end
|
613
|
+
|
614
|
+
# @!attribute [rw] image_builder
|
615
|
+
# @return [Types::ImageBuilder]
|
616
|
+
#
|
617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilderResult AWS API Documentation
|
618
|
+
#
|
619
|
+
class DeleteImageBuilderResult < Struct.new(
|
620
|
+
:image_builder)
|
621
|
+
include Aws::Structure
|
622
|
+
end
|
623
|
+
|
624
|
+
# @note When making an API call, you may pass DeleteImageRequest
|
625
|
+
# data as a hash:
|
626
|
+
#
|
627
|
+
# {
|
628
|
+
# name: "Name", # required
|
629
|
+
# }
|
630
|
+
#
|
631
|
+
# @!attribute [rw] name
|
632
|
+
# @return [String]
|
633
|
+
#
|
634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageRequest AWS API Documentation
|
635
|
+
#
|
636
|
+
class DeleteImageRequest < Struct.new(
|
637
|
+
:name)
|
638
|
+
include Aws::Structure
|
639
|
+
end
|
640
|
+
|
641
|
+
# @!attribute [rw] image
|
642
|
+
# Describes an image.
|
643
|
+
# @return [Types::Image]
|
644
|
+
#
|
645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageResult AWS API Documentation
|
646
|
+
#
|
647
|
+
class DeleteImageResult < Struct.new(
|
648
|
+
:image)
|
649
|
+
include Aws::Structure
|
650
|
+
end
|
651
|
+
|
494
652
|
# @note When making an API call, you may pass DeleteStackRequest
|
495
653
|
# data as a hash:
|
496
654
|
#
|
@@ -499,7 +657,7 @@ module Aws::AppStream
|
|
499
657
|
# }
|
500
658
|
#
|
501
659
|
# @!attribute [rw] name
|
502
|
-
# The name of the stack
|
660
|
+
# The name of the stack.
|
503
661
|
# @return [String]
|
504
662
|
#
|
505
663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteStackRequest AWS API Documentation
|
@@ -523,16 +681,16 @@ module Aws::AppStream
|
|
523
681
|
# }
|
524
682
|
#
|
525
683
|
# @!attribute [rw] directory_names
|
526
|
-
#
|
684
|
+
# The directory names.
|
527
685
|
# @return [Array<String>]
|
528
686
|
#
|
529
687
|
# @!attribute [rw] max_results
|
530
|
-
# The size of each page of results.
|
688
|
+
# The maximum size of each page of results.
|
531
689
|
# @return [Integer]
|
532
690
|
#
|
533
691
|
# @!attribute [rw] next_token
|
534
|
-
# The
|
535
|
-
#
|
692
|
+
# The pagination token to use to retrieve the next page of results for
|
693
|
+
# this operation. If this value is null, it retrieves the first page.
|
536
694
|
# @return [String]
|
537
695
|
#
|
538
696
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeDirectoryConfigsRequest AWS API Documentation
|
@@ -545,13 +703,12 @@ module Aws::AppStream
|
|
545
703
|
end
|
546
704
|
|
547
705
|
# @!attribute [rw] directory_configs
|
548
|
-
#
|
706
|
+
# Information about the directory configurations.
|
549
707
|
# @return [Array<Types::DirectoryConfig>]
|
550
708
|
#
|
551
709
|
# @!attribute [rw] next_token
|
552
|
-
#
|
553
|
-
#
|
554
|
-
# call to DescribeDirectoryConfigs.
|
710
|
+
# The pagination token to use to retrieve the next page of results for
|
711
|
+
# this operation. If there are no more pages, this value is null.
|
555
712
|
# @return [String]
|
556
713
|
#
|
557
714
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeDirectoryConfigsResult AWS API Documentation
|
@@ -571,8 +728,7 @@ module Aws::AppStream
|
|
571
728
|
# }
|
572
729
|
#
|
573
730
|
# @!attribute [rw] names
|
574
|
-
# The
|
575
|
-
# the AWS account.
|
731
|
+
# The names of the fleets to describe.
|
576
732
|
# @return [Array<String>]
|
577
733
|
#
|
578
734
|
# @!attribute [rw] next_token
|
@@ -589,7 +745,7 @@ module Aws::AppStream
|
|
589
745
|
end
|
590
746
|
|
591
747
|
# @!attribute [rw] fleets
|
592
|
-
#
|
748
|
+
# Information about the fleets.
|
593
749
|
# @return [Array<Types::Fleet>]
|
594
750
|
#
|
595
751
|
# @!attribute [rw] next_token
|
@@ -605,6 +761,47 @@ module Aws::AppStream
|
|
605
761
|
include Aws::Structure
|
606
762
|
end
|
607
763
|
|
764
|
+
# @note When making an API call, you may pass DescribeImageBuildersRequest
|
765
|
+
# data as a hash:
|
766
|
+
#
|
767
|
+
# {
|
768
|
+
# names: ["String"],
|
769
|
+
# max_results: 1,
|
770
|
+
# next_token: "String",
|
771
|
+
# }
|
772
|
+
#
|
773
|
+
# @!attribute [rw] names
|
774
|
+
# @return [Array<String>]
|
775
|
+
#
|
776
|
+
# @!attribute [rw] max_results
|
777
|
+
# @return [Integer]
|
778
|
+
#
|
779
|
+
# @!attribute [rw] next_token
|
780
|
+
# @return [String]
|
781
|
+
#
|
782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuildersRequest AWS API Documentation
|
783
|
+
#
|
784
|
+
class DescribeImageBuildersRequest < Struct.new(
|
785
|
+
:names,
|
786
|
+
:max_results,
|
787
|
+
:next_token)
|
788
|
+
include Aws::Structure
|
789
|
+
end
|
790
|
+
|
791
|
+
# @!attribute [rw] image_builders
|
792
|
+
# @return [Array<Types::ImageBuilder>]
|
793
|
+
#
|
794
|
+
# @!attribute [rw] next_token
|
795
|
+
# @return [String]
|
796
|
+
#
|
797
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuildersResult AWS API Documentation
|
798
|
+
#
|
799
|
+
class DescribeImageBuildersResult < Struct.new(
|
800
|
+
:image_builders,
|
801
|
+
:next_token)
|
802
|
+
include Aws::Structure
|
803
|
+
end
|
804
|
+
|
608
805
|
# @note When making an API call, you may pass DescribeImagesRequest
|
609
806
|
# data as a hash:
|
610
807
|
#
|
@@ -613,7 +810,7 @@ module Aws::AppStream
|
|
613
810
|
# }
|
614
811
|
#
|
615
812
|
# @!attribute [rw] names
|
616
|
-
#
|
813
|
+
# The names of the images to describe.
|
617
814
|
# @return [Array<String>]
|
618
815
|
#
|
619
816
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImagesRequest AWS API Documentation
|
@@ -624,7 +821,7 @@ module Aws::AppStream
|
|
624
821
|
end
|
625
822
|
|
626
823
|
# @!attribute [rw] images
|
627
|
-
#
|
824
|
+
# Information about the images.
|
628
825
|
# @return [Array<Types::Image>]
|
629
826
|
#
|
630
827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImagesResult AWS API Documentation
|
@@ -647,16 +844,15 @@ module Aws::AppStream
|
|
647
844
|
# }
|
648
845
|
#
|
649
846
|
# @!attribute [rw] stack_name
|
650
|
-
# The name of the stack
|
847
|
+
# The name of the stack.
|
651
848
|
# @return [String]
|
652
849
|
#
|
653
850
|
# @!attribute [rw] fleet_name
|
654
|
-
# The name of the fleet
|
851
|
+
# The name of the fleet.
|
655
852
|
# @return [String]
|
656
853
|
#
|
657
854
|
# @!attribute [rw] user_id
|
658
|
-
# The user
|
659
|
-
# sessions for the stack and fleet.
|
855
|
+
# The user ID.
|
660
856
|
# @return [String]
|
661
857
|
#
|
662
858
|
# @!attribute [rw] next_token
|
@@ -666,14 +862,13 @@ module Aws::AppStream
|
|
666
862
|
#
|
667
863
|
# @!attribute [rw] limit
|
668
864
|
# The size of each page of results. The default value is 20 and the
|
669
|
-
# maximum
|
865
|
+
# maximum value is 50.
|
670
866
|
# @return [Integer]
|
671
867
|
#
|
672
868
|
# @!attribute [rw] authentication_type
|
673
|
-
# The authentication method
|
674
|
-
#
|
675
|
-
#
|
676
|
-
# defaults to users authenticated using a streaming URL.
|
869
|
+
# The authentication method. Specify `API` for a user authenticated
|
870
|
+
# using a streaming URL or `SAML` for a SAML federated user. The
|
871
|
+
# default is to authenticate users using a streaming URL.
|
677
872
|
# @return [String]
|
678
873
|
#
|
679
874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeSessionsRequest AWS API Documentation
|
@@ -689,7 +884,7 @@ module Aws::AppStream
|
|
689
884
|
end
|
690
885
|
|
691
886
|
# @!attribute [rw] sessions
|
692
|
-
#
|
887
|
+
# Information about the streaming sessions.
|
693
888
|
# @return [Array<Types::Session>]
|
694
889
|
#
|
695
890
|
# @!attribute [rw] next_token
|
@@ -714,8 +909,7 @@ module Aws::AppStream
|
|
714
909
|
# }
|
715
910
|
#
|
716
911
|
# @!attribute [rw] names
|
717
|
-
# The
|
718
|
-
# the AWS account.
|
912
|
+
# The names of the stacks to describe.
|
719
913
|
# @return [Array<String>]
|
720
914
|
#
|
721
915
|
# @!attribute [rw] next_token
|
@@ -732,7 +926,7 @@ module Aws::AppStream
|
|
732
926
|
end
|
733
927
|
|
734
928
|
# @!attribute [rw] stacks
|
735
|
-
#
|
929
|
+
# Information about the stacks.
|
736
930
|
# @return [Array<Types::Stack>]
|
737
931
|
#
|
738
932
|
# @!attribute [rw] next_token
|
@@ -748,26 +942,25 @@ module Aws::AppStream
|
|
748
942
|
include Aws::Structure
|
749
943
|
end
|
750
944
|
|
751
|
-
#
|
752
|
-
# for the AppStream 2.0 streaming instances.
|
945
|
+
# Configuration information for the directory used to join domains.
|
753
946
|
#
|
754
947
|
# @!attribute [rw] directory_name
|
755
|
-
# The fully qualified name of the directory
|
948
|
+
# The fully qualified name of the directory (for example,
|
949
|
+
# corp.example.com).
|
756
950
|
# @return [String]
|
757
951
|
#
|
758
952
|
# @!attribute [rw] organizational_unit_distinguished_names
|
759
|
-
# The
|
760
|
-
#
|
953
|
+
# The distinguished names of the organizational units for computer
|
954
|
+
# accounts.
|
761
955
|
# @return [Array<String>]
|
762
956
|
#
|
763
957
|
# @!attribute [rw] service_account_credentials
|
764
|
-
# The
|
765
|
-
#
|
958
|
+
# The credentials for the service account used by the streaming
|
959
|
+
# instance to connect to the directory.
|
766
960
|
# @return [Types::ServiceAccountCredentials]
|
767
961
|
#
|
768
962
|
# @!attribute [rw] created_time
|
769
|
-
# The time
|
770
|
-
# AppStream 2.0.
|
963
|
+
# The time the directory configuration was created.
|
771
964
|
# @return [Time]
|
772
965
|
#
|
773
966
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DirectoryConfig AWS API Documentation
|
@@ -789,11 +982,11 @@ module Aws::AppStream
|
|
789
982
|
# }
|
790
983
|
#
|
791
984
|
# @!attribute [rw] fleet_name
|
792
|
-
# The name of the fleet
|
985
|
+
# The name of the fleet.
|
793
986
|
# @return [String]
|
794
987
|
#
|
795
988
|
# @!attribute [rw] stack_name
|
796
|
-
# The name of the stack
|
989
|
+
# The name of the stack.
|
797
990
|
# @return [String]
|
798
991
|
#
|
799
992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisassociateFleetRequest AWS API Documentation
|
@@ -808,9 +1001,8 @@ module Aws::AppStream
|
|
808
1001
|
#
|
809
1002
|
class DisassociateFleetResult < Aws::EmptyStructure; end
|
810
1003
|
|
811
|
-
#
|
812
|
-
#
|
813
|
-
# instances.
|
1004
|
+
# Contains the information needed for streaming instances to join a
|
1005
|
+
# domain.
|
814
1006
|
#
|
815
1007
|
# @note When making an API call, you may pass DomainJoinInfo
|
816
1008
|
# data as a hash:
|
@@ -821,12 +1013,13 @@ module Aws::AppStream
|
|
821
1013
|
# }
|
822
1014
|
#
|
823
1015
|
# @!attribute [rw] directory_name
|
824
|
-
# The fully qualified name of the directory
|
1016
|
+
# The fully qualified name of the directory (for example,
|
1017
|
+
# corp.example.com).
|
825
1018
|
# @return [String]
|
826
1019
|
#
|
827
1020
|
# @!attribute [rw] organizational_unit_distinguished_name
|
828
|
-
# The distinguished name of the organizational unit
|
829
|
-
#
|
1021
|
+
# The distinguished name of the organizational unit for computer
|
1022
|
+
# accounts.
|
830
1023
|
# @return [String]
|
831
1024
|
#
|
832
1025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DomainJoinInfo AWS API Documentation
|
@@ -845,7 +1038,7 @@ module Aws::AppStream
|
|
845
1038
|
# }
|
846
1039
|
#
|
847
1040
|
# @!attribute [rw] session_id
|
848
|
-
# The
|
1041
|
+
# The ID of the streaming session.
|
849
1042
|
# @return [String]
|
850
1043
|
#
|
851
1044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ExpireSessionRequest AWS API Documentation
|
@@ -870,11 +1063,11 @@ module Aws::AppStream
|
|
870
1063
|
# @return [String]
|
871
1064
|
#
|
872
1065
|
# @!attribute [rw] display_name
|
873
|
-
# The name displayed to end users
|
1066
|
+
# The fleet name displayed to end users.
|
874
1067
|
# @return [String]
|
875
1068
|
#
|
876
1069
|
# @!attribute [rw] description
|
877
|
-
# The description displayed to end users
|
1070
|
+
# The description displayed to end users.
|
878
1071
|
# @return [String]
|
879
1072
|
#
|
880
1073
|
# @!attribute [rw] image_name
|
@@ -889,19 +1082,19 @@ module Aws::AppStream
|
|
889
1082
|
# @return [String]
|
890
1083
|
#
|
891
1084
|
# @!attribute [rw] compute_capacity_status
|
892
|
-
# The capacity
|
1085
|
+
# The capacity status for the fleet.
|
893
1086
|
# @return [Types::ComputeCapacityStatus]
|
894
1087
|
#
|
895
1088
|
# @!attribute [rw] max_user_duration_in_seconds
|
896
|
-
# The maximum time
|
897
|
-
#
|
1089
|
+
# The maximum time that a streaming session can run, in seconds.
|
1090
|
+
# Specify a value between 600 and 57600.
|
898
1091
|
# @return [Integer]
|
899
1092
|
#
|
900
1093
|
# @!attribute [rw] disconnect_timeout_in_seconds
|
901
1094
|
# The time after disconnection when a session is considered to have
|
902
|
-
# ended. If a user who
|
903
|
-
# interval, the user is connected
|
904
|
-
#
|
1095
|
+
# ended, in seconds. If a user who was disconnected reconnects within
|
1096
|
+
# this time interval, the user is connected to their previous session.
|
1097
|
+
# Specify a value between 60 and 57600.
|
905
1098
|
# @return [Integer]
|
906
1099
|
#
|
907
1100
|
# @!attribute [rw] state
|
@@ -913,21 +1106,19 @@ module Aws::AppStream
|
|
913
1106
|
# @return [Types::VpcConfig]
|
914
1107
|
#
|
915
1108
|
# @!attribute [rw] created_time
|
916
|
-
# The time
|
1109
|
+
# The time the fleet was created.
|
917
1110
|
# @return [Time]
|
918
1111
|
#
|
919
1112
|
# @!attribute [rw] fleet_errors
|
920
|
-
# The
|
1113
|
+
# The fleet errors.
|
921
1114
|
# @return [Array<Types::FleetError>]
|
922
1115
|
#
|
923
1116
|
# @!attribute [rw] enable_default_internet_access
|
924
|
-
#
|
1117
|
+
# Indicates whether default internet access is enabled for the fleet.
|
925
1118
|
# @return [Boolean]
|
926
1119
|
#
|
927
1120
|
# @!attribute [rw] domain_join_info
|
928
|
-
# The
|
929
|
-
# values, which are used to join domains for the AppStream 2.0
|
930
|
-
# streaming instances.
|
1121
|
+
# The information needed for streaming instances to join a domain.
|
931
1122
|
# @return [Types::DomainJoinInfo]
|
932
1123
|
#
|
933
1124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
@@ -952,14 +1143,14 @@ module Aws::AppStream
|
|
952
1143
|
include Aws::Structure
|
953
1144
|
end
|
954
1145
|
|
955
|
-
#
|
1146
|
+
# Describes a fleet error.
|
956
1147
|
#
|
957
1148
|
# @!attribute [rw] error_code
|
958
|
-
# The error code
|
1149
|
+
# The error code.
|
959
1150
|
# @return [String]
|
960
1151
|
#
|
961
1152
|
# @!attribute [rw] error_message
|
962
|
-
# The error message
|
1153
|
+
# The error message.
|
963
1154
|
# @return [String]
|
964
1155
|
#
|
965
1156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/FleetError AWS API Documentation
|
@@ -970,38 +1161,36 @@ module Aws::AppStream
|
|
970
1161
|
include Aws::Structure
|
971
1162
|
end
|
972
1163
|
|
973
|
-
#
|
974
|
-
# application catalog and is connected to fleets.
|
1164
|
+
# Describes an image.
|
975
1165
|
#
|
976
1166
|
# @!attribute [rw] name
|
977
|
-
# The
|
1167
|
+
# The name of the image.
|
978
1168
|
# @return [String]
|
979
1169
|
#
|
980
1170
|
# @!attribute [rw] arn
|
981
|
-
# The ARN
|
1171
|
+
# The ARN of the image.
|
982
1172
|
# @return [String]
|
983
1173
|
#
|
984
1174
|
# @!attribute [rw] base_image_arn
|
985
|
-
# The
|
1175
|
+
# The ARN of the image from which this image was created.
|
986
1176
|
# @return [String]
|
987
1177
|
#
|
988
1178
|
# @!attribute [rw] display_name
|
989
|
-
# The
|
1179
|
+
# The image name displayed to end users.
|
990
1180
|
# @return [String]
|
991
1181
|
#
|
992
1182
|
# @!attribute [rw] state
|
993
|
-
# The image starts in the
|
994
|
-
#
|
995
|
-
#
|
1183
|
+
# The image starts in the `PENDING` state. If image creation succeeds,
|
1184
|
+
# the state is `AVAILABLE`. If image creation fails, the state is
|
1185
|
+
# `FAILED`.
|
996
1186
|
# @return [String]
|
997
1187
|
#
|
998
1188
|
# @!attribute [rw] visibility
|
999
|
-
#
|
1000
|
-
# private.
|
1189
|
+
# Indicates whether the image is public or private.
|
1001
1190
|
# @return [String]
|
1002
1191
|
#
|
1003
1192
|
# @!attribute [rw] image_builder_supported
|
1004
|
-
#
|
1193
|
+
# Indicates whether an image builder can be launched from this image.
|
1005
1194
|
# @return [Boolean]
|
1006
1195
|
#
|
1007
1196
|
# @!attribute [rw] platform
|
@@ -1009,7 +1198,7 @@ module Aws::AppStream
|
|
1009
1198
|
# @return [String]
|
1010
1199
|
#
|
1011
1200
|
# @!attribute [rw] description
|
1012
|
-
#
|
1201
|
+
# The description displayed to end users.
|
1013
1202
|
# @return [String]
|
1014
1203
|
#
|
1015
1204
|
# @!attribute [rw] state_change_reason
|
@@ -1017,17 +1206,17 @@ module Aws::AppStream
|
|
1017
1206
|
# @return [Types::ImageStateChangeReason]
|
1018
1207
|
#
|
1019
1208
|
# @!attribute [rw] applications
|
1020
|
-
# The applications associated with
|
1209
|
+
# The applications associated with the image.
|
1021
1210
|
# @return [Array<Types::Application>]
|
1022
1211
|
#
|
1023
1212
|
# @!attribute [rw] created_time
|
1024
|
-
# The time
|
1213
|
+
# The time the image was created.
|
1025
1214
|
# @return [Time]
|
1026
1215
|
#
|
1027
1216
|
# @!attribute [rw] public_base_image_released_date
|
1028
|
-
# The
|
1029
|
-
#
|
1030
|
-
#
|
1217
|
+
# The release date of the public base image. For private images, this
|
1218
|
+
# date is the release date of the base image from which the image was
|
1219
|
+
# created.
|
1031
1220
|
# @return [Time]
|
1032
1221
|
#
|
1033
1222
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
|
@@ -1049,14 +1238,93 @@ module Aws::AppStream
|
|
1049
1238
|
include Aws::Structure
|
1050
1239
|
end
|
1051
1240
|
|
1052
|
-
#
|
1241
|
+
# @!attribute [rw] name
|
1242
|
+
# @return [String]
|
1243
|
+
#
|
1244
|
+
# @!attribute [rw] arn
|
1245
|
+
# @return [String]
|
1246
|
+
#
|
1247
|
+
# @!attribute [rw] image_arn
|
1248
|
+
# @return [String]
|
1249
|
+
#
|
1250
|
+
# @!attribute [rw] description
|
1251
|
+
# @return [String]
|
1252
|
+
#
|
1253
|
+
# @!attribute [rw] display_name
|
1254
|
+
# @return [String]
|
1053
1255
|
#
|
1256
|
+
# @!attribute [rw] vpc_config
|
1257
|
+
# Describes VPC configuration information.
|
1258
|
+
# @return [Types::VpcConfig]
|
1259
|
+
#
|
1260
|
+
# @!attribute [rw] instance_type
|
1261
|
+
# @return [String]
|
1262
|
+
#
|
1263
|
+
# @!attribute [rw] platform
|
1264
|
+
# @return [String]
|
1265
|
+
#
|
1266
|
+
# @!attribute [rw] state
|
1267
|
+
# @return [String]
|
1268
|
+
#
|
1269
|
+
# @!attribute [rw] state_change_reason
|
1270
|
+
# @return [Types::ImageBuilderStateChangeReason]
|
1271
|
+
#
|
1272
|
+
# @!attribute [rw] created_time
|
1273
|
+
# @return [Time]
|
1274
|
+
#
|
1275
|
+
# @!attribute [rw] enable_default_internet_access
|
1276
|
+
# @return [Boolean]
|
1277
|
+
#
|
1278
|
+
# @!attribute [rw] domain_join_info
|
1279
|
+
# Contains the information needed for streaming instances to join a
|
1280
|
+
# domain.
|
1281
|
+
# @return [Types::DomainJoinInfo]
|
1282
|
+
#
|
1283
|
+
# @!attribute [rw] image_builder_errors
|
1284
|
+
# @return [Array<Types::ResourceError>]
|
1285
|
+
#
|
1286
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilder AWS API Documentation
|
1287
|
+
#
|
1288
|
+
class ImageBuilder < Struct.new(
|
1289
|
+
:name,
|
1290
|
+
:arn,
|
1291
|
+
:image_arn,
|
1292
|
+
:description,
|
1293
|
+
:display_name,
|
1294
|
+
:vpc_config,
|
1295
|
+
:instance_type,
|
1296
|
+
:platform,
|
1297
|
+
:state,
|
1298
|
+
:state_change_reason,
|
1299
|
+
:created_time,
|
1300
|
+
:enable_default_internet_access,
|
1301
|
+
:domain_join_info,
|
1302
|
+
:image_builder_errors)
|
1303
|
+
include Aws::Structure
|
1304
|
+
end
|
1305
|
+
|
1054
1306
|
# @!attribute [rw] code
|
1055
|
-
# The state change reason code of the image.
|
1056
1307
|
# @return [String]
|
1057
1308
|
#
|
1058
1309
|
# @!attribute [rw] message
|
1059
|
-
#
|
1310
|
+
# @return [String]
|
1311
|
+
#
|
1312
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilderStateChangeReason AWS API Documentation
|
1313
|
+
#
|
1314
|
+
class ImageBuilderStateChangeReason < Struct.new(
|
1315
|
+
:code,
|
1316
|
+
:message)
|
1317
|
+
include Aws::Structure
|
1318
|
+
end
|
1319
|
+
|
1320
|
+
# Describes the reason why the last state change occurred.
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] code
|
1323
|
+
# The state change reason code.
|
1324
|
+
# @return [String]
|
1325
|
+
#
|
1326
|
+
# @!attribute [rw] message
|
1327
|
+
# The state change reason message.
|
1060
1328
|
# @return [String]
|
1061
1329
|
#
|
1062
1330
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageStateChangeReason AWS API Documentation
|
@@ -1076,7 +1344,7 @@ module Aws::AppStream
|
|
1076
1344
|
# }
|
1077
1345
|
#
|
1078
1346
|
# @!attribute [rw] stack_name
|
1079
|
-
# The name of the stack
|
1347
|
+
# The name of the stack.
|
1080
1348
|
# @return [String]
|
1081
1349
|
#
|
1082
1350
|
# @!attribute [rw] next_token
|
@@ -1092,10 +1360,8 @@ module Aws::AppStream
|
|
1092
1360
|
include Aws::Structure
|
1093
1361
|
end
|
1094
1362
|
|
1095
|
-
# The response from a successful operation.
|
1096
|
-
#
|
1097
1363
|
# @!attribute [rw] names
|
1098
|
-
# The names of
|
1364
|
+
# The names of the fleets.
|
1099
1365
|
# @return [Array<String>]
|
1100
1366
|
#
|
1101
1367
|
# @!attribute [rw] next_token
|
@@ -1120,7 +1386,7 @@ module Aws::AppStream
|
|
1120
1386
|
# }
|
1121
1387
|
#
|
1122
1388
|
# @!attribute [rw] fleet_name
|
1123
|
-
# The name of the fleet
|
1389
|
+
# The name of the fleet.
|
1124
1390
|
# @return [String]
|
1125
1391
|
#
|
1126
1392
|
# @!attribute [rw] next_token
|
@@ -1136,10 +1402,8 @@ module Aws::AppStream
|
|
1136
1402
|
include Aws::Structure
|
1137
1403
|
end
|
1138
1404
|
|
1139
|
-
# The response from a successful operation.
|
1140
|
-
#
|
1141
1405
|
# @!attribute [rw] names
|
1142
|
-
# The names of
|
1406
|
+
# The names of the stacks.
|
1143
1407
|
# @return [Array<String>]
|
1144
1408
|
#
|
1145
1409
|
# @!attribute [rw] next_token
|
@@ -1155,8 +1419,26 @@ module Aws::AppStream
|
|
1155
1419
|
include Aws::Structure
|
1156
1420
|
end
|
1157
1421
|
|
1158
|
-
#
|
1159
|
-
#
|
1422
|
+
# @!attribute [rw] error_code
|
1423
|
+
# @return [String]
|
1424
|
+
#
|
1425
|
+
# @!attribute [rw] error_message
|
1426
|
+
# @return [String]
|
1427
|
+
#
|
1428
|
+
# @!attribute [rw] error_timestamp
|
1429
|
+
# @return [Time]
|
1430
|
+
#
|
1431
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ResourceError AWS API Documentation
|
1432
|
+
#
|
1433
|
+
class ResourceError < Struct.new(
|
1434
|
+
:error_code,
|
1435
|
+
:error_message,
|
1436
|
+
:error_timestamp)
|
1437
|
+
include Aws::Structure
|
1438
|
+
end
|
1439
|
+
|
1440
|
+
# Describes the credentials for the service account used by the
|
1441
|
+
# streaming instance to connect to the directory.
|
1160
1442
|
#
|
1161
1443
|
# @note When making an API call, you may pass ServiceAccountCredentials
|
1162
1444
|
# data as a hash:
|
@@ -1167,15 +1449,14 @@ module Aws::AppStream
|
|
1167
1449
|
# }
|
1168
1450
|
#
|
1169
1451
|
# @!attribute [rw] account_name
|
1170
|
-
# The user name of
|
1171
|
-
#
|
1172
|
-
#
|
1173
|
-
#
|
1174
|
-
# descendant computer objects for the organizational units specified.
|
1452
|
+
# The user name of the account. This account must have the following
|
1453
|
+
# privileges: create computer objects, join computers to the domain,
|
1454
|
+
# and change/reset the password on descendant computer objects for the
|
1455
|
+
# organizational units specified.
|
1175
1456
|
# @return [String]
|
1176
1457
|
#
|
1177
1458
|
# @!attribute [rw] account_password
|
1178
|
-
# The password for the
|
1459
|
+
# The password for the account.
|
1179
1460
|
# @return [String]
|
1180
1461
|
#
|
1181
1462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ServiceAccountCredentials AWS API Documentation
|
@@ -1186,10 +1467,10 @@ module Aws::AppStream
|
|
1186
1467
|
include Aws::Structure
|
1187
1468
|
end
|
1188
1469
|
|
1189
|
-
#
|
1470
|
+
# Describes a streaming session.
|
1190
1471
|
#
|
1191
1472
|
# @!attribute [rw] id
|
1192
|
-
# The
|
1473
|
+
# The ID of the streaming session.
|
1193
1474
|
# @return [String]
|
1194
1475
|
#
|
1195
1476
|
# @!attribute [rw] user_id
|
@@ -1197,11 +1478,11 @@ module Aws::AppStream
|
|
1197
1478
|
# @return [String]
|
1198
1479
|
#
|
1199
1480
|
# @!attribute [rw] stack_name
|
1200
|
-
# The name of the stack for
|
1481
|
+
# The name of the stack for the streaming session.
|
1201
1482
|
# @return [String]
|
1202
1483
|
#
|
1203
1484
|
# @!attribute [rw] fleet_name
|
1204
|
-
# The name of the fleet for
|
1485
|
+
# The name of the fleet for the streaming session.
|
1205
1486
|
# @return [String]
|
1206
1487
|
#
|
1207
1488
|
# @!attribute [rw] state
|
@@ -1209,9 +1490,8 @@ module Aws::AppStream
|
|
1209
1490
|
# @return [String]
|
1210
1491
|
#
|
1211
1492
|
# @!attribute [rw] authentication_type
|
1212
|
-
# The authentication method
|
1213
|
-
#
|
1214
|
-
# URL or `SAML` for a SAML federated user.
|
1493
|
+
# The authentication method. The user is authenticated using a
|
1494
|
+
# streaming URL (`API`) or SAML federation (`SAML`).
|
1215
1495
|
# @return [String]
|
1216
1496
|
#
|
1217
1497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Session AWS API Documentation
|
@@ -1226,34 +1506,34 @@ module Aws::AppStream
|
|
1226
1506
|
include Aws::Structure
|
1227
1507
|
end
|
1228
1508
|
|
1229
|
-
#
|
1509
|
+
# Describes a stack.
|
1230
1510
|
#
|
1231
1511
|
# @!attribute [rw] arn
|
1232
1512
|
# The ARN of the stack.
|
1233
1513
|
# @return [String]
|
1234
1514
|
#
|
1235
1515
|
# @!attribute [rw] name
|
1236
|
-
# The
|
1516
|
+
# The name of the stack.
|
1237
1517
|
# @return [String]
|
1238
1518
|
#
|
1239
1519
|
# @!attribute [rw] description
|
1240
|
-
#
|
1520
|
+
# The description displayed to end users.
|
1241
1521
|
# @return [String]
|
1242
1522
|
#
|
1243
1523
|
# @!attribute [rw] display_name
|
1244
|
-
#
|
1524
|
+
# The stack name displayed to end users.
|
1245
1525
|
# @return [String]
|
1246
1526
|
#
|
1247
1527
|
# @!attribute [rw] created_time
|
1248
|
-
# The time
|
1528
|
+
# The time the stack was created.
|
1249
1529
|
# @return [Time]
|
1250
1530
|
#
|
1251
1531
|
# @!attribute [rw] storage_connectors
|
1252
|
-
# The storage connectors to
|
1532
|
+
# The storage connectors to enable.
|
1253
1533
|
# @return [Array<Types::StorageConnector>]
|
1254
1534
|
#
|
1255
1535
|
# @!attribute [rw] stack_errors
|
1256
|
-
# The
|
1536
|
+
# The errors for the stack.
|
1257
1537
|
# @return [Array<Types::StackError>]
|
1258
1538
|
#
|
1259
1539
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Stack AWS API Documentation
|
@@ -1269,14 +1549,14 @@ module Aws::AppStream
|
|
1269
1549
|
include Aws::Structure
|
1270
1550
|
end
|
1271
1551
|
|
1272
|
-
#
|
1552
|
+
# Describes a stack error.
|
1273
1553
|
#
|
1274
1554
|
# @!attribute [rw] error_code
|
1275
|
-
# The error code
|
1555
|
+
# The error code.
|
1276
1556
|
# @return [String]
|
1277
1557
|
#
|
1278
1558
|
# @!attribute [rw] error_message
|
1279
|
-
# The error message
|
1559
|
+
# The error message.
|
1280
1560
|
# @return [String]
|
1281
1561
|
#
|
1282
1562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StackError AWS API Documentation
|
@@ -1295,7 +1575,7 @@ module Aws::AppStream
|
|
1295
1575
|
# }
|
1296
1576
|
#
|
1297
1577
|
# @!attribute [rw] name
|
1298
|
-
# The name of the fleet
|
1578
|
+
# The name of the fleet.
|
1299
1579
|
# @return [String]
|
1300
1580
|
#
|
1301
1581
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartFleetRequest AWS API Documentation
|
@@ -1309,6 +1589,33 @@ module Aws::AppStream
|
|
1309
1589
|
#
|
1310
1590
|
class StartFleetResult < Aws::EmptyStructure; end
|
1311
1591
|
|
1592
|
+
# @note When making an API call, you may pass StartImageBuilderRequest
|
1593
|
+
# data as a hash:
|
1594
|
+
#
|
1595
|
+
# {
|
1596
|
+
# name: "String", # required
|
1597
|
+
# }
|
1598
|
+
#
|
1599
|
+
# @!attribute [rw] name
|
1600
|
+
# @return [String]
|
1601
|
+
#
|
1602
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilderRequest AWS API Documentation
|
1603
|
+
#
|
1604
|
+
class StartImageBuilderRequest < Struct.new(
|
1605
|
+
:name)
|
1606
|
+
include Aws::Structure
|
1607
|
+
end
|
1608
|
+
|
1609
|
+
# @!attribute [rw] image_builder
|
1610
|
+
# @return [Types::ImageBuilder]
|
1611
|
+
#
|
1612
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilderResult AWS API Documentation
|
1613
|
+
#
|
1614
|
+
class StartImageBuilderResult < Struct.new(
|
1615
|
+
:image_builder)
|
1616
|
+
include Aws::Structure
|
1617
|
+
end
|
1618
|
+
|
1312
1619
|
# @note When making an API call, you may pass StopFleetRequest
|
1313
1620
|
# data as a hash:
|
1314
1621
|
#
|
@@ -1317,7 +1624,7 @@ module Aws::AppStream
|
|
1317
1624
|
# }
|
1318
1625
|
#
|
1319
1626
|
# @!attribute [rw] name
|
1320
|
-
# The name of the fleet
|
1627
|
+
# The name of the fleet.
|
1321
1628
|
# @return [String]
|
1322
1629
|
#
|
1323
1630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopFleetRequest AWS API Documentation
|
@@ -1331,7 +1638,34 @@ module Aws::AppStream
|
|
1331
1638
|
#
|
1332
1639
|
class StopFleetResult < Aws::EmptyStructure; end
|
1333
1640
|
|
1334
|
-
#
|
1641
|
+
# @note When making an API call, you may pass StopImageBuilderRequest
|
1642
|
+
# data as a hash:
|
1643
|
+
#
|
1644
|
+
# {
|
1645
|
+
# name: "String", # required
|
1646
|
+
# }
|
1647
|
+
#
|
1648
|
+
# @!attribute [rw] name
|
1649
|
+
# @return [String]
|
1650
|
+
#
|
1651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilderRequest AWS API Documentation
|
1652
|
+
#
|
1653
|
+
class StopImageBuilderRequest < Struct.new(
|
1654
|
+
:name)
|
1655
|
+
include Aws::Structure
|
1656
|
+
end
|
1657
|
+
|
1658
|
+
# @!attribute [rw] image_builder
|
1659
|
+
# @return [Types::ImageBuilder]
|
1660
|
+
#
|
1661
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilderResult AWS API Documentation
|
1662
|
+
#
|
1663
|
+
class StopImageBuilderResult < Struct.new(
|
1664
|
+
:image_builder)
|
1665
|
+
include Aws::Structure
|
1666
|
+
end
|
1667
|
+
|
1668
|
+
# Describes a storage connector.
|
1335
1669
|
#
|
1336
1670
|
# @note When making an API call, you may pass StorageConnector
|
1337
1671
|
# data as a hash:
|
@@ -1342,12 +1676,11 @@ module Aws::AppStream
|
|
1342
1676
|
# }
|
1343
1677
|
#
|
1344
1678
|
# @!attribute [rw] connector_type
|
1345
|
-
# The type of storage connector.
|
1346
|
-
# HOMEFOLDERS.
|
1679
|
+
# The type of storage connector.
|
1347
1680
|
# @return [String]
|
1348
1681
|
#
|
1349
1682
|
# @!attribute [rw] resource_identifier
|
1350
|
-
# The ARN
|
1683
|
+
# The ARN of the storage connector.
|
1351
1684
|
# @return [String]
|
1352
1685
|
#
|
1353
1686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StorageConnector AWS API Documentation
|
@@ -1371,18 +1704,17 @@ module Aws::AppStream
|
|
1371
1704
|
# }
|
1372
1705
|
#
|
1373
1706
|
# @!attribute [rw] directory_name
|
1374
|
-
# The name of the
|
1707
|
+
# The name of the directory configuration.
|
1375
1708
|
# @return [String]
|
1376
1709
|
#
|
1377
1710
|
# @!attribute [rw] organizational_unit_distinguished_names
|
1378
|
-
# The
|
1379
|
-
#
|
1711
|
+
# The distinguished names of the organizational units for computer
|
1712
|
+
# accounts.
|
1380
1713
|
# @return [Array<String>]
|
1381
1714
|
#
|
1382
1715
|
# @!attribute [rw] service_account_credentials
|
1383
|
-
# The
|
1384
|
-
#
|
1385
|
-
# directory
|
1716
|
+
# The credentials for the service account used by the streaming
|
1717
|
+
# instance to connect to the directory.
|
1386
1718
|
# @return [Types::ServiceAccountCredentials]
|
1387
1719
|
#
|
1388
1720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfigRequest AWS API Documentation
|
@@ -1395,7 +1727,7 @@ module Aws::AppStream
|
|
1395
1727
|
end
|
1396
1728
|
|
1397
1729
|
# @!attribute [rw] directory_config
|
1398
|
-
#
|
1730
|
+
# Information about the directory configuration.
|
1399
1731
|
# @return [Types::DirectoryConfig]
|
1400
1732
|
#
|
1401
1733
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfigResult AWS API Documentation
|
@@ -1433,11 +1765,11 @@ module Aws::AppStream
|
|
1433
1765
|
# }
|
1434
1766
|
#
|
1435
1767
|
# @!attribute [rw] image_name
|
1436
|
-
# The
|
1768
|
+
# The name of the image used by the fleet.
|
1437
1769
|
# @return [String]
|
1438
1770
|
#
|
1439
1771
|
# @!attribute [rw] name
|
1440
|
-
#
|
1772
|
+
# A unique name for the fleet.
|
1441
1773
|
# @return [String]
|
1442
1774
|
#
|
1443
1775
|
# @!attribute [rw] instance_type
|
@@ -1486,7 +1818,7 @@ module Aws::AppStream
|
|
1486
1818
|
# @return [String]
|
1487
1819
|
#
|
1488
1820
|
# @!attribute [rw] compute_capacity
|
1489
|
-
# The
|
1821
|
+
# The desired capacity for the fleet.
|
1490
1822
|
# @return [Types::ComputeCapacity]
|
1491
1823
|
#
|
1492
1824
|
# @!attribute [rw] vpc_config
|
@@ -1494,27 +1826,27 @@ module Aws::AppStream
|
|
1494
1826
|
# @return [Types::VpcConfig]
|
1495
1827
|
#
|
1496
1828
|
# @!attribute [rw] max_user_duration_in_seconds
|
1497
|
-
# The maximum time
|
1498
|
-
#
|
1829
|
+
# The maximum time that a streaming session can run, in seconds.
|
1830
|
+
# Specify a value between 600 and 57600.
|
1499
1831
|
# @return [Integer]
|
1500
1832
|
#
|
1501
1833
|
# @!attribute [rw] disconnect_timeout_in_seconds
|
1502
1834
|
# The time after disconnection when a session is considered to have
|
1503
|
-
# ended. If a user who
|
1504
|
-
# interval, the user is connected
|
1505
|
-
#
|
1835
|
+
# ended, in seconds. If a user who was disconnected reconnects within
|
1836
|
+
# this time interval, the user is connected to their previous session.
|
1837
|
+
# Specify a value between 60 and 57600.
|
1506
1838
|
# @return [Integer]
|
1507
1839
|
#
|
1508
1840
|
# @!attribute [rw] delete_vpc_config
|
1509
|
-
#
|
1841
|
+
# Deletes the VPC association for the specified fleet.
|
1510
1842
|
# @return [Boolean]
|
1511
1843
|
#
|
1512
1844
|
# @!attribute [rw] description
|
1513
|
-
# The description displayed to end users
|
1845
|
+
# The description displayed to end users.
|
1514
1846
|
# @return [String]
|
1515
1847
|
#
|
1516
1848
|
# @!attribute [rw] display_name
|
1517
|
-
# The name displayed to end users
|
1849
|
+
# The fleet name displayed to end users.
|
1518
1850
|
# @return [String]
|
1519
1851
|
#
|
1520
1852
|
# @!attribute [rw] enable_default_internet_access
|
@@ -1522,13 +1854,11 @@ module Aws::AppStream
|
|
1522
1854
|
# @return [Boolean]
|
1523
1855
|
#
|
1524
1856
|
# @!attribute [rw] domain_join_info
|
1525
|
-
# The
|
1526
|
-
# values, which are used to join domains for the AppStream 2.0
|
1527
|
-
# streaming instances.
|
1857
|
+
# The information needed for streaming instances to join a domain.
|
1528
1858
|
# @return [Types::DomainJoinInfo]
|
1529
1859
|
#
|
1530
1860
|
# @!attribute [rw] attributes_to_delete
|
1531
|
-
#
|
1861
|
+
# The fleet attributes to delete.
|
1532
1862
|
# @return [Array<String>]
|
1533
1863
|
#
|
1534
1864
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetRequest AWS API Documentation
|
@@ -1551,7 +1881,7 @@ module Aws::AppStream
|
|
1551
1881
|
end
|
1552
1882
|
|
1553
1883
|
# @!attribute [rw] fleet
|
1554
|
-
#
|
1884
|
+
# Information about the fleet.
|
1555
1885
|
# @return [Types::Fleet]
|
1556
1886
|
#
|
1557
1887
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleetResult AWS API Documentation
|
@@ -1578,23 +1908,23 @@ module Aws::AppStream
|
|
1578
1908
|
# }
|
1579
1909
|
#
|
1580
1910
|
# @!attribute [rw] display_name
|
1581
|
-
# The name displayed to end users
|
1911
|
+
# The stack name displayed to end users.
|
1582
1912
|
# @return [String]
|
1583
1913
|
#
|
1584
1914
|
# @!attribute [rw] description
|
1585
|
-
# The description displayed to end users
|
1915
|
+
# The description displayed to end users.
|
1586
1916
|
# @return [String]
|
1587
1917
|
#
|
1588
1918
|
# @!attribute [rw] name
|
1589
|
-
# The name of the stack
|
1919
|
+
# The name of the stack.
|
1590
1920
|
# @return [String]
|
1591
1921
|
#
|
1592
1922
|
# @!attribute [rw] storage_connectors
|
1593
|
-
# The storage connectors to
|
1923
|
+
# The storage connectors to enable.
|
1594
1924
|
# @return [Array<Types::StorageConnector>]
|
1595
1925
|
#
|
1596
1926
|
# @!attribute [rw] delete_storage_connectors
|
1597
|
-
#
|
1927
|
+
# Deletes the storage connectors currently enabled for the stack.
|
1598
1928
|
# @return [Boolean]
|
1599
1929
|
#
|
1600
1930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackRequest AWS API Documentation
|
@@ -1609,7 +1939,7 @@ module Aws::AppStream
|
|
1609
1939
|
end
|
1610
1940
|
|
1611
1941
|
# @!attribute [rw] stack
|
1612
|
-
#
|
1942
|
+
# Information about the stack.
|
1613
1943
|
# @return [Types::Stack]
|
1614
1944
|
#
|
1615
1945
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateStackResult AWS API Documentation
|
@@ -1619,7 +1949,7 @@ module Aws::AppStream
|
|
1619
1949
|
include Aws::Structure
|
1620
1950
|
end
|
1621
1951
|
|
1622
|
-
# VPC configuration information.
|
1952
|
+
# Describes VPC configuration information.
|
1623
1953
|
#
|
1624
1954
|
# @note When making an API call, you may pass VpcConfig
|
1625
1955
|
# data as a hash:
|
@@ -1630,12 +1960,12 @@ module Aws::AppStream
|
|
1630
1960
|
# }
|
1631
1961
|
#
|
1632
1962
|
# @!attribute [rw] subnet_ids
|
1633
|
-
# The
|
1634
|
-
#
|
1963
|
+
# The subnets to which a network interface is established from the
|
1964
|
+
# fleet instance.
|
1635
1965
|
# @return [Array<String>]
|
1636
1966
|
#
|
1637
1967
|
# @!attribute [rw] security_group_ids
|
1638
|
-
#
|
1968
|
+
# The security groups for the fleet.
|
1639
1969
|
# @return [Array<String>]
|
1640
1970
|
#
|
1641
1971
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/VpcConfig AWS API Documentation
|