aws-sdk-appstream 1.2.0 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-appstream.rb +1 -1
- data/lib/aws-sdk-appstream/client.rb +100 -28
- data/lib/aws-sdk-appstream/client_api.rb +6 -0
- data/lib/aws-sdk-appstream/types.rb +149 -38
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ee649f95c0e9a1ffcfc3df2d46aca93ccc5ab4d
|
4
|
+
data.tar.gz: f4cc9432a401383d387034d3b9668a6b1f26f619
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6967a871fa9bfdb8513b39d5200e5d7318472d8666dd8759e5ded925c9f942059d51b9d740947883699138d5a3d0eb4ee4d2080a2db0bda2f7a852d0872791c8
|
7
|
+
data.tar.gz: 27effef64fb11543d9e3928ab89fddb37b9616260c938edc24e6e8ab04ef2d0ade760a5562796e0081b16f2ae095d8709ce4096db55b4f33174793f783481793
|
data/lib/aws-sdk-appstream.rb
CHANGED
@@ -234,7 +234,7 @@ module Aws::AppStream
|
|
234
234
|
# A unique name for the fleet.
|
235
235
|
#
|
236
236
|
# @option params [required, String] :image_name
|
237
|
-
# The name of the image used
|
237
|
+
# The name of the image used to create the fleet.
|
238
238
|
#
|
239
239
|
# @option params [required, String] :instance_type
|
240
240
|
# The instance type to use when launching fleet instances. The following
|
@@ -281,6 +281,20 @@ module Aws::AppStream
|
|
281
281
|
# * stream.graphics-pro.16xlarge
|
282
282
|
#
|
283
283
|
# @option params [String] :fleet_type
|
284
|
+
# The fleet type.
|
285
|
+
#
|
286
|
+
# ALWAYS\_ON
|
287
|
+
#
|
288
|
+
# : Provides users with instant-on access to their apps. You are charged
|
289
|
+
# for all running instances in your fleet, even if no users are
|
290
|
+
# streaming apps.
|
291
|
+
#
|
292
|
+
# ON\_DEMAND
|
293
|
+
#
|
294
|
+
# : Provide users with access to applications after they connect, which
|
295
|
+
# takes one to two minutes. You are charged for instance streaming
|
296
|
+
# when users are connected and a small hourly fee for instances that
|
297
|
+
# are not streaming apps.
|
284
298
|
#
|
285
299
|
# @option params [required, Types::ComputeCapacity] :compute_capacity
|
286
300
|
# The desired capacity for the fleet.
|
@@ -299,16 +313,16 @@ module Aws::AppStream
|
|
299
313
|
# Specify a value between 60 and 57600.
|
300
314
|
#
|
301
315
|
# @option params [String] :description
|
302
|
-
# The description
|
316
|
+
# The description for display.
|
303
317
|
#
|
304
318
|
# @option params [String] :display_name
|
305
|
-
# The fleet name
|
319
|
+
# The fleet name for display.
|
306
320
|
#
|
307
321
|
# @option params [Boolean] :enable_default_internet_access
|
308
322
|
# Enables or disables default internet access for the fleet.
|
309
323
|
#
|
310
324
|
# @option params [Types::DomainJoinInfo] :domain_join_info
|
311
|
-
# The information needed
|
325
|
+
# The information needed to join a Microsoft Active Directory domain.
|
312
326
|
#
|
313
327
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
314
328
|
#
|
@@ -376,24 +390,40 @@ module Aws::AppStream
|
|
376
390
|
req.send_request(options)
|
377
391
|
end
|
378
392
|
|
393
|
+
# Creates an image builder.
|
394
|
+
#
|
395
|
+
# The initial state of the builder is `PENDING`. When it is ready, the
|
396
|
+
# state is `RUNNING`.
|
397
|
+
#
|
379
398
|
# @option params [required, String] :name
|
399
|
+
# A unique name for the image builder.
|
380
400
|
#
|
381
401
|
# @option params [required, String] :image_name
|
402
|
+
# The name of the image used to create the builder.
|
382
403
|
#
|
383
404
|
# @option params [required, String] :instance_type
|
405
|
+
# The instance type to use when launching the image builder.
|
384
406
|
#
|
385
407
|
# @option params [String] :description
|
408
|
+
# The description for display.
|
386
409
|
#
|
387
410
|
# @option params [String] :display_name
|
411
|
+
# The image builder name for display.
|
388
412
|
#
|
389
413
|
# @option params [Types::VpcConfig] :vpc_config
|
390
|
-
#
|
414
|
+
# The VPC configuration for the image builder. You can specify only one
|
415
|
+
# subnet.
|
391
416
|
#
|
392
417
|
# @option params [Boolean] :enable_default_internet_access
|
418
|
+
# Enables or disables default internet access for the image builder.
|
393
419
|
#
|
394
420
|
# @option params [Types::DomainJoinInfo] :domain_join_info
|
395
|
-
#
|
396
|
-
#
|
421
|
+
# The information needed to join a Microsoft Active Directory domain.
|
422
|
+
#
|
423
|
+
# @option params [String] :appstream_agent_version
|
424
|
+
# The version of the AppStream 2.0 agent to use for this image builder.
|
425
|
+
# To use the latest version of the AppStream 2.0 agent, specify
|
426
|
+
# \[LATEST\].
|
397
427
|
#
|
398
428
|
# @return [Types::CreateImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
399
429
|
#
|
@@ -416,6 +446,7 @@ module Aws::AppStream
|
|
416
446
|
# directory_name: "DirectoryName",
|
417
447
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
418
448
|
# },
|
449
|
+
# appstream_agent_version: "AppstreamAgentVersion",
|
419
450
|
# })
|
420
451
|
#
|
421
452
|
# @example Response structure
|
@@ -431,7 +462,7 @@ module Aws::AppStream
|
|
431
462
|
# resp.image_builder.vpc_config.security_group_ids[0] #=> String
|
432
463
|
# resp.image_builder.instance_type #=> String
|
433
464
|
# resp.image_builder.platform #=> String, one of "WINDOWS"
|
434
|
-
# resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
465
|
+
# resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
435
466
|
# resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
|
436
467
|
# resp.image_builder.state_change_reason.message #=> String
|
437
468
|
# resp.image_builder.created_time #=> Time
|
@@ -442,6 +473,7 @@ module Aws::AppStream
|
|
442
473
|
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
443
474
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
444
475
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
476
|
+
# resp.image_builder.appstream_agent_version #=> String
|
445
477
|
#
|
446
478
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilder AWS API Documentation
|
447
479
|
#
|
@@ -452,9 +484,14 @@ module Aws::AppStream
|
|
452
484
|
req.send_request(options)
|
453
485
|
end
|
454
486
|
|
487
|
+
# Creates a URL to start an image builder streaming session.
|
488
|
+
#
|
455
489
|
# @option params [required, String] :name
|
490
|
+
# The name of the image builder.
|
456
491
|
#
|
457
492
|
# @option params [Integer] :validity
|
493
|
+
# The time that the streaming URL will be valid, in seconds. Specify a
|
494
|
+
# value between 1 and 604800 seconds. The default is 3600 seconds.
|
458
495
|
#
|
459
496
|
# @return [Types::CreateImageBuilderStreamingURLResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
460
497
|
#
|
@@ -488,10 +525,10 @@ module Aws::AppStream
|
|
488
525
|
# The name of the stack.
|
489
526
|
#
|
490
527
|
# @option params [String] :description
|
491
|
-
# The description
|
528
|
+
# The description for display.
|
492
529
|
#
|
493
530
|
# @option params [String] :display_name
|
494
|
-
# The stack name
|
531
|
+
# The stack name for display.
|
495
532
|
#
|
496
533
|
# @option params [Array<Types::StorageConnector>] :storage_connectors
|
497
534
|
# The storage connectors to enable.
|
@@ -539,9 +576,6 @@ module Aws::AppStream
|
|
539
576
|
|
540
577
|
# Creates a URL to start a streaming session for the specified user.
|
541
578
|
#
|
542
|
-
# By default, the URL is valid only for one minute from the time that it
|
543
|
-
# is generated.
|
544
|
-
#
|
545
579
|
# @option params [required, String] :stack_name
|
546
580
|
# The name of the stack.
|
547
581
|
#
|
@@ -552,15 +586,20 @@ module Aws::AppStream
|
|
552
586
|
# The ID of the user.
|
553
587
|
#
|
554
588
|
# @option params [String] :application_id
|
555
|
-
# The
|
556
|
-
#
|
589
|
+
# The name of the application to launch after the session starts. This
|
590
|
+
# is the name that you specified as **Name** in the Image Assistant.
|
557
591
|
#
|
558
592
|
# @option params [Integer] :validity
|
559
593
|
# The time that the streaming URL will be valid, in seconds. Specify a
|
560
|
-
# value between 1 and 604800 seconds.
|
594
|
+
# value between 1 and 604800 seconds. The default is 60 seconds.
|
561
595
|
#
|
562
596
|
# @option params [String] :session_context
|
563
|
-
# The session context
|
597
|
+
# The session context. For more information, see [Session Context][1] in
|
598
|
+
# the *Amazon AppStream 2.0 Developer Guide*.
|
599
|
+
#
|
600
|
+
#
|
601
|
+
#
|
602
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/managing-stacks-fleets.html#managing-stacks-fleets-parameters
|
564
603
|
#
|
565
604
|
# @return [Types::CreateStreamingURLResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
566
605
|
#
|
@@ -636,7 +675,12 @@ module Aws::AppStream
|
|
636
675
|
req.send_request(options)
|
637
676
|
end
|
638
677
|
|
678
|
+
# Deletes the specified image. You cannot delete an image that is
|
679
|
+
# currently in use. After you delete an image, you cannot provision new
|
680
|
+
# capacity using the image.
|
681
|
+
#
|
639
682
|
# @option params [required, String] :name
|
683
|
+
# The name of the image.
|
640
684
|
#
|
641
685
|
# @return [Types::DeleteImageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
642
686
|
#
|
@@ -672,6 +716,7 @@ module Aws::AppStream
|
|
672
716
|
# resp.image.applications[0].metadata["String"] #=> String
|
673
717
|
# resp.image.created_time #=> Time
|
674
718
|
# resp.image.public_base_image_released_date #=> Time
|
719
|
+
# resp.image.appstream_agent_version #=> String
|
675
720
|
#
|
676
721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImage AWS API Documentation
|
677
722
|
#
|
@@ -682,7 +727,10 @@ module Aws::AppStream
|
|
682
727
|
req.send_request(options)
|
683
728
|
end
|
684
729
|
|
730
|
+
# Deletes the specified image builder and releases the capacity.
|
731
|
+
#
|
685
732
|
# @option params [required, String] :name
|
733
|
+
# The name of the image builder.
|
686
734
|
#
|
687
735
|
# @return [Types::DeleteImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
688
736
|
#
|
@@ -707,7 +755,7 @@ module Aws::AppStream
|
|
707
755
|
# resp.image_builder.vpc_config.security_group_ids[0] #=> String
|
708
756
|
# resp.image_builder.instance_type #=> String
|
709
757
|
# resp.image_builder.platform #=> String, one of "WINDOWS"
|
710
|
-
# resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
758
|
+
# resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
711
759
|
# resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
|
712
760
|
# resp.image_builder.state_change_reason.message #=> String
|
713
761
|
# resp.image_builder.created_time #=> Time
|
@@ -718,6 +766,7 @@ module Aws::AppStream
|
|
718
766
|
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
719
767
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
720
768
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
769
|
+
# resp.image_builder.appstream_agent_version #=> String
|
721
770
|
#
|
722
771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilder AWS API Documentation
|
723
772
|
#
|
@@ -857,11 +906,18 @@ module Aws::AppStream
|
|
857
906
|
req.send_request(options)
|
858
907
|
end
|
859
908
|
|
909
|
+
# Describes the specified image builders or all image builders in the
|
910
|
+
# account.
|
911
|
+
#
|
860
912
|
# @option params [Array<String>] :names
|
913
|
+
# The names of the image builders to describe.
|
861
914
|
#
|
862
915
|
# @option params [Integer] :max_results
|
916
|
+
# The maximum size of each page of results.
|
863
917
|
#
|
864
918
|
# @option params [String] :next_token
|
919
|
+
# The pagination token to use to retrieve the next page of results for
|
920
|
+
# this operation. If this value is null, it retrieves the first page.
|
865
921
|
#
|
866
922
|
# @return [Types::DescribeImageBuildersResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
867
923
|
#
|
@@ -890,7 +946,7 @@ module Aws::AppStream
|
|
890
946
|
# resp.image_builders[0].vpc_config.security_group_ids[0] #=> String
|
891
947
|
# resp.image_builders[0].instance_type #=> String
|
892
948
|
# resp.image_builders[0].platform #=> String, one of "WINDOWS"
|
893
|
-
# resp.image_builders[0].state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
949
|
+
# resp.image_builders[0].state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
894
950
|
# resp.image_builders[0].state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
|
895
951
|
# resp.image_builders[0].state_change_reason.message #=> String
|
896
952
|
# resp.image_builders[0].created_time #=> Time
|
@@ -901,6 +957,7 @@ module Aws::AppStream
|
|
901
957
|
# resp.image_builders[0].image_builder_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
902
958
|
# resp.image_builders[0].image_builder_errors[0].error_message #=> String
|
903
959
|
# resp.image_builders[0].image_builder_errors[0].error_timestamp #=> Time
|
960
|
+
# resp.image_builders[0].appstream_agent_version #=> String
|
904
961
|
# resp.next_token #=> String
|
905
962
|
#
|
906
963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuilders AWS API Documentation
|
@@ -952,6 +1009,7 @@ module Aws::AppStream
|
|
952
1009
|
# resp.images[0].applications[0].metadata["String"] #=> String
|
953
1010
|
# resp.images[0].created_time #=> Time
|
954
1011
|
# resp.images[0].public_base_image_released_date #=> Time
|
1012
|
+
# resp.images[0].appstream_agent_version #=> String
|
955
1013
|
#
|
956
1014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImages AWS API Documentation
|
957
1015
|
#
|
@@ -1213,7 +1271,15 @@ module Aws::AppStream
|
|
1213
1271
|
req.send_request(options)
|
1214
1272
|
end
|
1215
1273
|
|
1274
|
+
# Starts the specified image builder.
|
1275
|
+
#
|
1216
1276
|
# @option params [required, String] :name
|
1277
|
+
# The name of the image builder.
|
1278
|
+
#
|
1279
|
+
# @option params [String] :appstream_agent_version
|
1280
|
+
# The version of the AppStream 2.0 agent to use for this image builder.
|
1281
|
+
# To use the latest version of the AppStream 2.0 agent, specify
|
1282
|
+
# \[LATEST\].
|
1217
1283
|
#
|
1218
1284
|
# @return [Types::StartImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1219
1285
|
#
|
@@ -1223,6 +1289,7 @@ module Aws::AppStream
|
|
1223
1289
|
#
|
1224
1290
|
# resp = client.start_image_builder({
|
1225
1291
|
# name: "String", # required
|
1292
|
+
# appstream_agent_version: "AppstreamAgentVersion",
|
1226
1293
|
# })
|
1227
1294
|
#
|
1228
1295
|
# @example Response structure
|
@@ -1238,7 +1305,7 @@ module Aws::AppStream
|
|
1238
1305
|
# resp.image_builder.vpc_config.security_group_ids[0] #=> String
|
1239
1306
|
# resp.image_builder.instance_type #=> String
|
1240
1307
|
# resp.image_builder.platform #=> String, one of "WINDOWS"
|
1241
|
-
# resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
1308
|
+
# resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
1242
1309
|
# resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
|
1243
1310
|
# resp.image_builder.state_change_reason.message #=> String
|
1244
1311
|
# resp.image_builder.created_time #=> Time
|
@@ -1249,6 +1316,7 @@ module Aws::AppStream
|
|
1249
1316
|
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
1250
1317
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
1251
1318
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
1319
|
+
# resp.image_builder.appstream_agent_version #=> String
|
1252
1320
|
#
|
1253
1321
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilder AWS API Documentation
|
1254
1322
|
#
|
@@ -1281,7 +1349,10 @@ module Aws::AppStream
|
|
1281
1349
|
req.send_request(options)
|
1282
1350
|
end
|
1283
1351
|
|
1352
|
+
# Stops the specified image builder.
|
1353
|
+
#
|
1284
1354
|
# @option params [required, String] :name
|
1355
|
+
# The name of the image builder.
|
1285
1356
|
#
|
1286
1357
|
# @return [Types::StopImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1287
1358
|
#
|
@@ -1306,7 +1377,7 @@ module Aws::AppStream
|
|
1306
1377
|
# resp.image_builder.vpc_config.security_group_ids[0] #=> String
|
1307
1378
|
# resp.image_builder.instance_type #=> String
|
1308
1379
|
# resp.image_builder.platform #=> String, one of "WINDOWS"
|
1309
|
-
# resp.image_builder.state #=> String, one of "PENDING", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
1380
|
+
# resp.image_builder.state #=> String, one of "PENDING", "UPDATING_AGENT", "RUNNING", "STOPPING", "STOPPED", "REBOOTING", "SNAPSHOTTING", "DELETING", "FAILED"
|
1310
1381
|
# resp.image_builder.state_change_reason.code #=> String, one of "INTERNAL_ERROR", "IMAGE_UNAVAILABLE"
|
1311
1382
|
# resp.image_builder.state_change_reason.message #=> String
|
1312
1383
|
# resp.image_builder.created_time #=> Time
|
@@ -1317,6 +1388,7 @@ module Aws::AppStream
|
|
1317
1388
|
# resp.image_builder.image_builder_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IGW_NOT_ATTACHED", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
1318
1389
|
# resp.image_builder.image_builder_errors[0].error_message #=> String
|
1319
1390
|
# resp.image_builder.image_builder_errors[0].error_timestamp #=> Time
|
1391
|
+
# resp.image_builder.appstream_agent_version #=> String
|
1320
1392
|
#
|
1321
1393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilder AWS API Documentation
|
1322
1394
|
#
|
@@ -1381,7 +1453,7 @@ module Aws::AppStream
|
|
1381
1453
|
# fleet is in the `STARTING` or `STOPPING` state, you can't update it.
|
1382
1454
|
#
|
1383
1455
|
# @option params [String] :image_name
|
1384
|
-
# The name of the image used
|
1456
|
+
# The name of the image used to create the fleet.
|
1385
1457
|
#
|
1386
1458
|
# @option params [required, String] :name
|
1387
1459
|
# A unique name for the fleet.
|
@@ -1450,16 +1522,16 @@ module Aws::AppStream
|
|
1450
1522
|
# Deletes the VPC association for the specified fleet.
|
1451
1523
|
#
|
1452
1524
|
# @option params [String] :description
|
1453
|
-
# The description
|
1525
|
+
# The description for display.
|
1454
1526
|
#
|
1455
1527
|
# @option params [String] :display_name
|
1456
|
-
# The fleet name
|
1528
|
+
# The fleet name for display.
|
1457
1529
|
#
|
1458
1530
|
# @option params [Boolean] :enable_default_internet_access
|
1459
1531
|
# Enables or disables default internet access for the fleet.
|
1460
1532
|
#
|
1461
1533
|
# @option params [Types::DomainJoinInfo] :domain_join_info
|
1462
|
-
# The information needed
|
1534
|
+
# The information needed to join a Microsoft Active Directory domain.
|
1463
1535
|
#
|
1464
1536
|
# @option params [Array<String>] :attributes_to_delete
|
1465
1537
|
# The fleet attributes to delete.
|
@@ -1534,10 +1606,10 @@ module Aws::AppStream
|
|
1534
1606
|
# Updates the specified stack.
|
1535
1607
|
#
|
1536
1608
|
# @option params [String] :display_name
|
1537
|
-
# The stack name
|
1609
|
+
# The stack name for display.
|
1538
1610
|
#
|
1539
1611
|
# @option params [String] :description
|
1540
|
-
# The description
|
1612
|
+
# The description for display.
|
1541
1613
|
#
|
1542
1614
|
# @option params [required, String] :name
|
1543
1615
|
# The name of the stack.
|
@@ -1603,7 +1675,7 @@ module Aws::AppStream
|
|
1603
1675
|
params: params,
|
1604
1676
|
config: config)
|
1605
1677
|
context[:gem_name] = 'aws-sdk-appstream'
|
1606
|
-
context[:gem_version] = '1.
|
1678
|
+
context[:gem_version] = '1.3.0'
|
1607
1679
|
Seahorse::Client::Request.new(handlers, context)
|
1608
1680
|
end
|
1609
1681
|
|
@@ -15,6 +15,7 @@ module Aws::AppStream
|
|
15
15
|
AccountPassword = Shapes::StringShape.new(name: 'AccountPassword')
|
16
16
|
Application = Shapes::StructureShape.new(name: 'Application')
|
17
17
|
Applications = Shapes::ListShape.new(name: 'Applications')
|
18
|
+
AppstreamAgentVersion = Shapes::StringShape.new(name: 'AppstreamAgentVersion')
|
18
19
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
19
20
|
AssociateFleetRequest = Shapes::StructureShape.new(name: 'AssociateFleetRequest')
|
20
21
|
AssociateFleetResult = Shapes::StructureShape.new(name: 'AssociateFleetResult')
|
@@ -207,6 +208,7 @@ module Aws::AppStream
|
|
207
208
|
CreateImageBuilderRequest.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
|
208
209
|
CreateImageBuilderRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
209
210
|
CreateImageBuilderRequest.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
211
|
+
CreateImageBuilderRequest.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
|
210
212
|
CreateImageBuilderRequest.struct_class = Types::CreateImageBuilderRequest
|
211
213
|
|
212
214
|
CreateImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
@@ -386,6 +388,7 @@ module Aws::AppStream
|
|
386
388
|
Image.add_member(:applications, Shapes::ShapeRef.new(shape: Applications, location_name: "Applications"))
|
387
389
|
Image.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
388
390
|
Image.add_member(:public_base_image_released_date, Shapes::ShapeRef.new(shape: Timestamp, location_name: "PublicBaseImageReleasedDate"))
|
391
|
+
Image.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
|
389
392
|
Image.struct_class = Types::Image
|
390
393
|
|
391
394
|
ImageBuilder.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
@@ -402,6 +405,7 @@ module Aws::AppStream
|
|
402
405
|
ImageBuilder.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
403
406
|
ImageBuilder.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
404
407
|
ImageBuilder.add_member(:image_builder_errors, Shapes::ShapeRef.new(shape: ResourceErrors, location_name: "ImageBuilderErrors"))
|
408
|
+
ImageBuilder.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
|
405
409
|
ImageBuilder.struct_class = Types::ImageBuilder
|
406
410
|
|
407
411
|
ImageBuilderList.member = Shapes::ShapeRef.new(shape: ImageBuilder)
|
@@ -483,6 +487,7 @@ module Aws::AppStream
|
|
483
487
|
StartFleetResult.struct_class = Types::StartFleetResult
|
484
488
|
|
485
489
|
StartImageBuilderRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
490
|
+
StartImageBuilderRequest.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
|
486
491
|
StartImageBuilderRequest.struct_class = Types::StartImageBuilderRequest
|
487
492
|
|
488
493
|
StartImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
@@ -821,6 +826,7 @@ module Aws::AppStream
|
|
821
826
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
822
827
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
823
828
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
829
|
+
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
824
830
|
end)
|
825
831
|
|
826
832
|
api.add_operation(:stop_fleet, Seahorse::Model::Operation.new.tap do |o|
|
@@ -15,7 +15,7 @@ module Aws::AppStream
|
|
15
15
|
# @return [String]
|
16
16
|
#
|
17
17
|
# @!attribute [rw] display_name
|
18
|
-
# The application name
|
18
|
+
# The application name for display.
|
19
19
|
# @return [String]
|
20
20
|
#
|
21
21
|
# @!attribute [rw] icon_url
|
@@ -208,7 +208,7 @@ module Aws::AppStream
|
|
208
208
|
# @return [String]
|
209
209
|
#
|
210
210
|
# @!attribute [rw] image_name
|
211
|
-
# The name of the image used
|
211
|
+
# The name of the image used to create the fleet.
|
212
212
|
# @return [String]
|
213
213
|
#
|
214
214
|
# @!attribute [rw] instance_type
|
@@ -257,6 +257,20 @@ module Aws::AppStream
|
|
257
257
|
# @return [String]
|
258
258
|
#
|
259
259
|
# @!attribute [rw] fleet_type
|
260
|
+
# The fleet type.
|
261
|
+
#
|
262
|
+
# ALWAYS\_ON
|
263
|
+
#
|
264
|
+
# : Provides users with instant-on access to their apps. You are
|
265
|
+
# charged for all running instances in your fleet, even if no users
|
266
|
+
# are streaming apps.
|
267
|
+
#
|
268
|
+
# ON\_DEMAND
|
269
|
+
#
|
270
|
+
# : Provide users with access to applications after they connect,
|
271
|
+
# which takes one to two minutes. You are charged for instance
|
272
|
+
# streaming when users are connected and a small hourly fee for
|
273
|
+
# instances that are not streaming apps.
|
260
274
|
# @return [String]
|
261
275
|
#
|
262
276
|
# @!attribute [rw] compute_capacity
|
@@ -280,11 +294,11 @@ module Aws::AppStream
|
|
280
294
|
# @return [Integer]
|
281
295
|
#
|
282
296
|
# @!attribute [rw] description
|
283
|
-
# The description
|
297
|
+
# The description for display.
|
284
298
|
# @return [String]
|
285
299
|
#
|
286
300
|
# @!attribute [rw] display_name
|
287
|
-
# The fleet name
|
301
|
+
# The fleet name for display.
|
288
302
|
# @return [String]
|
289
303
|
#
|
290
304
|
# @!attribute [rw] enable_default_internet_access
|
@@ -292,7 +306,7 @@ module Aws::AppStream
|
|
292
306
|
# @return [Boolean]
|
293
307
|
#
|
294
308
|
# @!attribute [rw] domain_join_info
|
295
|
-
# The information needed
|
309
|
+
# The information needed to join a Microsoft Active Directory domain.
|
296
310
|
# @return [Types::DomainJoinInfo]
|
297
311
|
#
|
298
312
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
@@ -342,35 +356,48 @@ module Aws::AppStream
|
|
342
356
|
# directory_name: "DirectoryName",
|
343
357
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
344
358
|
# },
|
359
|
+
# appstream_agent_version: "AppstreamAgentVersion",
|
345
360
|
# }
|
346
361
|
#
|
347
362
|
# @!attribute [rw] name
|
363
|
+
# A unique name for the image builder.
|
348
364
|
# @return [String]
|
349
365
|
#
|
350
366
|
# @!attribute [rw] image_name
|
367
|
+
# The name of the image used to create the builder.
|
351
368
|
# @return [String]
|
352
369
|
#
|
353
370
|
# @!attribute [rw] instance_type
|
371
|
+
# The instance type to use when launching the image builder.
|
354
372
|
# @return [String]
|
355
373
|
#
|
356
374
|
# @!attribute [rw] description
|
375
|
+
# The description for display.
|
357
376
|
# @return [String]
|
358
377
|
#
|
359
378
|
# @!attribute [rw] display_name
|
379
|
+
# The image builder name for display.
|
360
380
|
# @return [String]
|
361
381
|
#
|
362
382
|
# @!attribute [rw] vpc_config
|
363
|
-
#
|
383
|
+
# The VPC configuration for the image builder. You can specify only
|
384
|
+
# one subnet.
|
364
385
|
# @return [Types::VpcConfig]
|
365
386
|
#
|
366
387
|
# @!attribute [rw] enable_default_internet_access
|
388
|
+
# Enables or disables default internet access for the image builder.
|
367
389
|
# @return [Boolean]
|
368
390
|
#
|
369
391
|
# @!attribute [rw] domain_join_info
|
370
|
-
#
|
371
|
-
# domain.
|
392
|
+
# The information needed to join a Microsoft Active Directory domain.
|
372
393
|
# @return [Types::DomainJoinInfo]
|
373
394
|
#
|
395
|
+
# @!attribute [rw] appstream_agent_version
|
396
|
+
# The version of the AppStream 2.0 agent to use for this image
|
397
|
+
# builder. To use the latest version of the AppStream 2.0 agent,
|
398
|
+
# specify \[LATEST\].
|
399
|
+
# @return [String]
|
400
|
+
#
|
374
401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderRequest AWS API Documentation
|
375
402
|
#
|
376
403
|
class CreateImageBuilderRequest < Struct.new(
|
@@ -381,11 +408,13 @@ module Aws::AppStream
|
|
381
408
|
:display_name,
|
382
409
|
:vpc_config,
|
383
410
|
:enable_default_internet_access,
|
384
|
-
:domain_join_info
|
411
|
+
:domain_join_info,
|
412
|
+
:appstream_agent_version)
|
385
413
|
include Aws::Structure
|
386
414
|
end
|
387
415
|
|
388
416
|
# @!attribute [rw] image_builder
|
417
|
+
# Information about the image builder.
|
389
418
|
# @return [Types::ImageBuilder]
|
390
419
|
#
|
391
420
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderResult AWS API Documentation
|
@@ -404,9 +433,12 @@ module Aws::AppStream
|
|
404
433
|
# }
|
405
434
|
#
|
406
435
|
# @!attribute [rw] name
|
436
|
+
# The name of the image builder.
|
407
437
|
# @return [String]
|
408
438
|
#
|
409
439
|
# @!attribute [rw] validity
|
440
|
+
# The time that the streaming URL will be valid, in seconds. Specify a
|
441
|
+
# value between 1 and 604800 seconds. The default is 3600 seconds.
|
410
442
|
# @return [Integer]
|
411
443
|
#
|
412
444
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderStreamingURLRequest AWS API Documentation
|
@@ -418,9 +450,12 @@ module Aws::AppStream
|
|
418
450
|
end
|
419
451
|
|
420
452
|
# @!attribute [rw] streaming_url
|
453
|
+
# The URL to start the AppStream 2.0 streaming session.
|
421
454
|
# @return [String]
|
422
455
|
#
|
423
456
|
# @!attribute [rw] expires
|
457
|
+
# The elapsed time, in seconds after the Unix epoch, when this URL
|
458
|
+
# expires.
|
424
459
|
# @return [Time]
|
425
460
|
#
|
426
461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderStreamingURLResult AWS API Documentation
|
@@ -451,11 +486,11 @@ module Aws::AppStream
|
|
451
486
|
# @return [String]
|
452
487
|
#
|
453
488
|
# @!attribute [rw] description
|
454
|
-
# The description
|
489
|
+
# The description for display.
|
455
490
|
# @return [String]
|
456
491
|
#
|
457
492
|
# @!attribute [rw] display_name
|
458
|
-
# The stack name
|
493
|
+
# The stack name for display.
|
459
494
|
# @return [String]
|
460
495
|
#
|
461
496
|
# @!attribute [rw] storage_connectors
|
@@ -508,17 +543,22 @@ module Aws::AppStream
|
|
508
543
|
# @return [String]
|
509
544
|
#
|
510
545
|
# @!attribute [rw] application_id
|
511
|
-
# The
|
512
|
-
#
|
546
|
+
# The name of the application to launch after the session starts. This
|
547
|
+
# is the name that you specified as **Name** in the Image Assistant.
|
513
548
|
# @return [String]
|
514
549
|
#
|
515
550
|
# @!attribute [rw] validity
|
516
551
|
# The time that the streaming URL will be valid, in seconds. Specify a
|
517
|
-
# value between 1 and 604800 seconds.
|
552
|
+
# value between 1 and 604800 seconds. The default is 60 seconds.
|
518
553
|
# @return [Integer]
|
519
554
|
#
|
520
555
|
# @!attribute [rw] session_context
|
521
|
-
# The session context
|
556
|
+
# The session context. For more information, see [Session Context][1]
|
557
|
+
# in the *Amazon AppStream 2.0 Developer Guide*.
|
558
|
+
#
|
559
|
+
#
|
560
|
+
#
|
561
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/managing-stacks-fleets.html#managing-stacks-fleets-parameters
|
522
562
|
# @return [String]
|
523
563
|
#
|
524
564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStreamingURLRequest AWS API Documentation
|
@@ -602,6 +642,7 @@ module Aws::AppStream
|
|
602
642
|
# }
|
603
643
|
#
|
604
644
|
# @!attribute [rw] name
|
645
|
+
# The name of the image builder.
|
605
646
|
# @return [String]
|
606
647
|
#
|
607
648
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilderRequest AWS API Documentation
|
@@ -612,6 +653,7 @@ module Aws::AppStream
|
|
612
653
|
end
|
613
654
|
|
614
655
|
# @!attribute [rw] image_builder
|
656
|
+
# Information about the image builder.
|
615
657
|
# @return [Types::ImageBuilder]
|
616
658
|
#
|
617
659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageBuilderResult AWS API Documentation
|
@@ -629,6 +671,7 @@ module Aws::AppStream
|
|
629
671
|
# }
|
630
672
|
#
|
631
673
|
# @!attribute [rw] name
|
674
|
+
# The name of the image.
|
632
675
|
# @return [String]
|
633
676
|
#
|
634
677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageRequest AWS API Documentation
|
@@ -639,7 +682,7 @@ module Aws::AppStream
|
|
639
682
|
end
|
640
683
|
|
641
684
|
# @!attribute [rw] image
|
642
|
-
#
|
685
|
+
# Information about the image.
|
643
686
|
# @return [Types::Image]
|
644
687
|
#
|
645
688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteImageResult AWS API Documentation
|
@@ -771,12 +814,16 @@ module Aws::AppStream
|
|
771
814
|
# }
|
772
815
|
#
|
773
816
|
# @!attribute [rw] names
|
817
|
+
# The names of the image builders to describe.
|
774
818
|
# @return [Array<String>]
|
775
819
|
#
|
776
820
|
# @!attribute [rw] max_results
|
821
|
+
# The maximum size of each page of results.
|
777
822
|
# @return [Integer]
|
778
823
|
#
|
779
824
|
# @!attribute [rw] next_token
|
825
|
+
# The pagination token to use to retrieve the next page of results for
|
826
|
+
# this operation. If this value is null, it retrieves the first page.
|
780
827
|
# @return [String]
|
781
828
|
#
|
782
829
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuildersRequest AWS API Documentation
|
@@ -789,9 +836,12 @@ module Aws::AppStream
|
|
789
836
|
end
|
790
837
|
|
791
838
|
# @!attribute [rw] image_builders
|
839
|
+
# Information about the image builders.
|
792
840
|
# @return [Array<Types::ImageBuilder>]
|
793
841
|
#
|
794
842
|
# @!attribute [rw] next_token
|
843
|
+
# The pagination token to use to retrieve the next page of results for
|
844
|
+
# this operation. If there are no more pages, this value is null.
|
795
845
|
# @return [String]
|
796
846
|
#
|
797
847
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeImageBuildersResult AWS API Documentation
|
@@ -1001,7 +1051,7 @@ module Aws::AppStream
|
|
1001
1051
|
#
|
1002
1052
|
class DisassociateFleetResult < Aws::EmptyStructure; end
|
1003
1053
|
|
1004
|
-
# Contains the information needed
|
1054
|
+
# Contains the information needed to join a Microsoft Active Directory
|
1005
1055
|
# domain.
|
1006
1056
|
#
|
1007
1057
|
# @note When making an API call, you may pass DomainJoinInfo
|
@@ -1063,15 +1113,15 @@ module Aws::AppStream
|
|
1063
1113
|
# @return [String]
|
1064
1114
|
#
|
1065
1115
|
# @!attribute [rw] display_name
|
1066
|
-
# The fleet name
|
1116
|
+
# The fleet name for display.
|
1067
1117
|
# @return [String]
|
1068
1118
|
#
|
1069
1119
|
# @!attribute [rw] description
|
1070
|
-
# The description
|
1120
|
+
# The description for display.
|
1071
1121
|
# @return [String]
|
1072
1122
|
#
|
1073
1123
|
# @!attribute [rw] image_name
|
1074
|
-
# The image used
|
1124
|
+
# The name of the image used to create the fleet.
|
1075
1125
|
# @return [String]
|
1076
1126
|
#
|
1077
1127
|
# @!attribute [rw] instance_type
|
@@ -1079,6 +1129,20 @@ module Aws::AppStream
|
|
1079
1129
|
# @return [String]
|
1080
1130
|
#
|
1081
1131
|
# @!attribute [rw] fleet_type
|
1132
|
+
# The fleet type.
|
1133
|
+
#
|
1134
|
+
# ALWAYS\_ON
|
1135
|
+
#
|
1136
|
+
# : Provides users with instant-on access to their apps. You are
|
1137
|
+
# charged for all running instances in your fleet, even if no users
|
1138
|
+
# are streaming apps.
|
1139
|
+
#
|
1140
|
+
# ON\_DEMAND
|
1141
|
+
#
|
1142
|
+
# : Provide users with access to applications after they connect,
|
1143
|
+
# which takes one to two minutes. You are charged for instance
|
1144
|
+
# streaming when users are connected and a small hourly fee for
|
1145
|
+
# instances that are not streaming apps.
|
1082
1146
|
# @return [String]
|
1083
1147
|
#
|
1084
1148
|
# @!attribute [rw] compute_capacity_status
|
@@ -1118,7 +1182,7 @@ module Aws::AppStream
|
|
1118
1182
|
# @return [Boolean]
|
1119
1183
|
#
|
1120
1184
|
# @!attribute [rw] domain_join_info
|
1121
|
-
# The information needed
|
1185
|
+
# The information needed to join a Microsoft Active Directory domain.
|
1122
1186
|
# @return [Types::DomainJoinInfo]
|
1123
1187
|
#
|
1124
1188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
@@ -1176,7 +1240,7 @@ module Aws::AppStream
|
|
1176
1240
|
# @return [String]
|
1177
1241
|
#
|
1178
1242
|
# @!attribute [rw] display_name
|
1179
|
-
# The image name
|
1243
|
+
# The image name for display.
|
1180
1244
|
# @return [String]
|
1181
1245
|
#
|
1182
1246
|
# @!attribute [rw] state
|
@@ -1198,7 +1262,7 @@ module Aws::AppStream
|
|
1198
1262
|
# @return [String]
|
1199
1263
|
#
|
1200
1264
|
# @!attribute [rw] description
|
1201
|
-
# The description
|
1265
|
+
# The description for display.
|
1202
1266
|
# @return [String]
|
1203
1267
|
#
|
1204
1268
|
# @!attribute [rw] state_change_reason
|
@@ -1219,6 +1283,11 @@ module Aws::AppStream
|
|
1219
1283
|
# created.
|
1220
1284
|
# @return [Time]
|
1221
1285
|
#
|
1286
|
+
# @!attribute [rw] appstream_agent_version
|
1287
|
+
# The version of the AppStream 2.0 agent to use for instances that are
|
1288
|
+
# launched from this image.
|
1289
|
+
# @return [String]
|
1290
|
+
#
|
1222
1291
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Image AWS API Documentation
|
1223
1292
|
#
|
1224
1293
|
class Image < Struct.new(
|
@@ -1234,55 +1303,75 @@ module Aws::AppStream
|
|
1234
1303
|
:state_change_reason,
|
1235
1304
|
:applications,
|
1236
1305
|
:created_time,
|
1237
|
-
:public_base_image_released_date
|
1306
|
+
:public_base_image_released_date,
|
1307
|
+
:appstream_agent_version)
|
1238
1308
|
include Aws::Structure
|
1239
1309
|
end
|
1240
1310
|
|
1311
|
+
# Describes a streaming instance used for editing an image. New images
|
1312
|
+
# are created from a snapshot through an image builder.
|
1313
|
+
#
|
1241
1314
|
# @!attribute [rw] name
|
1315
|
+
# The name of the image builder.
|
1242
1316
|
# @return [String]
|
1243
1317
|
#
|
1244
1318
|
# @!attribute [rw] arn
|
1319
|
+
# The ARN for the image builder.
|
1245
1320
|
# @return [String]
|
1246
1321
|
#
|
1247
1322
|
# @!attribute [rw] image_arn
|
1323
|
+
# The ARN of the image from which this builder was created.
|
1248
1324
|
# @return [String]
|
1249
1325
|
#
|
1250
1326
|
# @!attribute [rw] description
|
1327
|
+
# The description for display.
|
1251
1328
|
# @return [String]
|
1252
1329
|
#
|
1253
1330
|
# @!attribute [rw] display_name
|
1331
|
+
# The image builder name for display.
|
1254
1332
|
# @return [String]
|
1255
1333
|
#
|
1256
1334
|
# @!attribute [rw] vpc_config
|
1257
|
-
#
|
1335
|
+
# The VPC configuration of the image builder.
|
1258
1336
|
# @return [Types::VpcConfig]
|
1259
1337
|
#
|
1260
1338
|
# @!attribute [rw] instance_type
|
1339
|
+
# The instance type for the image builder.
|
1261
1340
|
# @return [String]
|
1262
1341
|
#
|
1263
1342
|
# @!attribute [rw] platform
|
1343
|
+
# The operating system platform of the image builder.
|
1264
1344
|
# @return [String]
|
1265
1345
|
#
|
1266
1346
|
# @!attribute [rw] state
|
1347
|
+
# The state of the image builder.
|
1267
1348
|
# @return [String]
|
1268
1349
|
#
|
1269
1350
|
# @!attribute [rw] state_change_reason
|
1351
|
+
# The reason why the last state change occurred.
|
1270
1352
|
# @return [Types::ImageBuilderStateChangeReason]
|
1271
1353
|
#
|
1272
1354
|
# @!attribute [rw] created_time
|
1355
|
+
# The time stamp when the image builder was created.
|
1273
1356
|
# @return [Time]
|
1274
1357
|
#
|
1275
1358
|
# @!attribute [rw] enable_default_internet_access
|
1359
|
+
# Enables or disables default internet access for the image builder.
|
1276
1360
|
# @return [Boolean]
|
1277
1361
|
#
|
1278
1362
|
# @!attribute [rw] domain_join_info
|
1279
|
-
#
|
1280
|
-
# domain.
|
1363
|
+
# The information needed to join a Microsoft Active Directory domain.
|
1281
1364
|
# @return [Types::DomainJoinInfo]
|
1282
1365
|
#
|
1283
1366
|
# @!attribute [rw] image_builder_errors
|
1367
|
+
# The image builder errors.
|
1284
1368
|
# @return [Array<Types::ResourceError>]
|
1285
1369
|
#
|
1370
|
+
# @!attribute [rw] appstream_agent_version
|
1371
|
+
# The version of the AppStream 2.0 agent that is currently being used
|
1372
|
+
# by this image builder.
|
1373
|
+
# @return [String]
|
1374
|
+
#
|
1286
1375
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilder AWS API Documentation
|
1287
1376
|
#
|
1288
1377
|
class ImageBuilder < Struct.new(
|
@@ -1299,14 +1388,19 @@ module Aws::AppStream
|
|
1299
1388
|
:created_time,
|
1300
1389
|
:enable_default_internet_access,
|
1301
1390
|
:domain_join_info,
|
1302
|
-
:image_builder_errors
|
1391
|
+
:image_builder_errors,
|
1392
|
+
:appstream_agent_version)
|
1303
1393
|
include Aws::Structure
|
1304
1394
|
end
|
1305
1395
|
|
1396
|
+
# Describes the reason why the last image builder state change occurred.
|
1397
|
+
#
|
1306
1398
|
# @!attribute [rw] code
|
1399
|
+
# The state change reason code.
|
1307
1400
|
# @return [String]
|
1308
1401
|
#
|
1309
1402
|
# @!attribute [rw] message
|
1403
|
+
# The state change reason message.
|
1310
1404
|
# @return [String]
|
1311
1405
|
#
|
1312
1406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilderStateChangeReason AWS API Documentation
|
@@ -1317,7 +1411,7 @@ module Aws::AppStream
|
|
1317
1411
|
include Aws::Structure
|
1318
1412
|
end
|
1319
1413
|
|
1320
|
-
# Describes the reason why the last state change occurred.
|
1414
|
+
# Describes the reason why the last image state change occurred.
|
1321
1415
|
#
|
1322
1416
|
# @!attribute [rw] code
|
1323
1417
|
# The state change reason code.
|
@@ -1419,13 +1513,18 @@ module Aws::AppStream
|
|
1419
1513
|
include Aws::Structure
|
1420
1514
|
end
|
1421
1515
|
|
1516
|
+
# Describes a resource error.
|
1517
|
+
#
|
1422
1518
|
# @!attribute [rw] error_code
|
1519
|
+
# The error code.
|
1423
1520
|
# @return [String]
|
1424
1521
|
#
|
1425
1522
|
# @!attribute [rw] error_message
|
1523
|
+
# The error message.
|
1426
1524
|
# @return [String]
|
1427
1525
|
#
|
1428
1526
|
# @!attribute [rw] error_timestamp
|
1527
|
+
# The time the error occurred.
|
1429
1528
|
# @return [Time]
|
1430
1529
|
#
|
1431
1530
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ResourceError AWS API Documentation
|
@@ -1517,11 +1616,11 @@ module Aws::AppStream
|
|
1517
1616
|
# @return [String]
|
1518
1617
|
#
|
1519
1618
|
# @!attribute [rw] description
|
1520
|
-
# The description
|
1619
|
+
# The description for display.
|
1521
1620
|
# @return [String]
|
1522
1621
|
#
|
1523
1622
|
# @!attribute [rw] display_name
|
1524
|
-
# The stack name
|
1623
|
+
# The stack name for display.
|
1525
1624
|
# @return [String]
|
1526
1625
|
#
|
1527
1626
|
# @!attribute [rw] created_time
|
@@ -1594,19 +1693,29 @@ module Aws::AppStream
|
|
1594
1693
|
#
|
1595
1694
|
# {
|
1596
1695
|
# name: "String", # required
|
1696
|
+
# appstream_agent_version: "AppstreamAgentVersion",
|
1597
1697
|
# }
|
1598
1698
|
#
|
1599
1699
|
# @!attribute [rw] name
|
1700
|
+
# The name of the image builder.
|
1701
|
+
# @return [String]
|
1702
|
+
#
|
1703
|
+
# @!attribute [rw] appstream_agent_version
|
1704
|
+
# The version of the AppStream 2.0 agent to use for this image
|
1705
|
+
# builder. To use the latest version of the AppStream 2.0 agent,
|
1706
|
+
# specify \[LATEST\].
|
1600
1707
|
# @return [String]
|
1601
1708
|
#
|
1602
1709
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilderRequest AWS API Documentation
|
1603
1710
|
#
|
1604
1711
|
class StartImageBuilderRequest < Struct.new(
|
1605
|
-
:name
|
1712
|
+
:name,
|
1713
|
+
:appstream_agent_version)
|
1606
1714
|
include Aws::Structure
|
1607
1715
|
end
|
1608
1716
|
|
1609
1717
|
# @!attribute [rw] image_builder
|
1718
|
+
# Information about the image builder.
|
1610
1719
|
# @return [Types::ImageBuilder]
|
1611
1720
|
#
|
1612
1721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StartImageBuilderResult AWS API Documentation
|
@@ -1646,6 +1755,7 @@ module Aws::AppStream
|
|
1646
1755
|
# }
|
1647
1756
|
#
|
1648
1757
|
# @!attribute [rw] name
|
1758
|
+
# The name of the image builder.
|
1649
1759
|
# @return [String]
|
1650
1760
|
#
|
1651
1761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilderRequest AWS API Documentation
|
@@ -1656,6 +1766,7 @@ module Aws::AppStream
|
|
1656
1766
|
end
|
1657
1767
|
|
1658
1768
|
# @!attribute [rw] image_builder
|
1769
|
+
# Information about the image builder.
|
1659
1770
|
# @return [Types::ImageBuilder]
|
1660
1771
|
#
|
1661
1772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StopImageBuilderResult AWS API Documentation
|
@@ -1765,7 +1876,7 @@ module Aws::AppStream
|
|
1765
1876
|
# }
|
1766
1877
|
#
|
1767
1878
|
# @!attribute [rw] image_name
|
1768
|
-
# The name of the image used
|
1879
|
+
# The name of the image used to create the fleet.
|
1769
1880
|
# @return [String]
|
1770
1881
|
#
|
1771
1882
|
# @!attribute [rw] name
|
@@ -1842,11 +1953,11 @@ module Aws::AppStream
|
|
1842
1953
|
# @return [Boolean]
|
1843
1954
|
#
|
1844
1955
|
# @!attribute [rw] description
|
1845
|
-
# The description
|
1956
|
+
# The description for display.
|
1846
1957
|
# @return [String]
|
1847
1958
|
#
|
1848
1959
|
# @!attribute [rw] display_name
|
1849
|
-
# The fleet name
|
1960
|
+
# The fleet name for display.
|
1850
1961
|
# @return [String]
|
1851
1962
|
#
|
1852
1963
|
# @!attribute [rw] enable_default_internet_access
|
@@ -1854,7 +1965,7 @@ module Aws::AppStream
|
|
1854
1965
|
# @return [Boolean]
|
1855
1966
|
#
|
1856
1967
|
# @!attribute [rw] domain_join_info
|
1857
|
-
# The information needed
|
1968
|
+
# The information needed to join a Microsoft Active Directory domain.
|
1858
1969
|
# @return [Types::DomainJoinInfo]
|
1859
1970
|
#
|
1860
1971
|
# @!attribute [rw] attributes_to_delete
|
@@ -1908,11 +2019,11 @@ module Aws::AppStream
|
|
1908
2019
|
# }
|
1909
2020
|
#
|
1910
2021
|
# @!attribute [rw] display_name
|
1911
|
-
# The stack name
|
2022
|
+
# The stack name for display.
|
1912
2023
|
# @return [String]
|
1913
2024
|
#
|
1914
2025
|
# @!attribute [rw] description
|
1915
|
-
# The description
|
2026
|
+
# The description for display.
|
1916
2027
|
# @return [String]
|
1917
2028
|
#
|
1918
2029
|
# @!attribute [rw] name
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appstream
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|