aws-sdk-appstream 1.19.0 → 1.20.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 +83 -30
- data/lib/aws-sdk-appstream/client_api.rb +3 -0
- data/lib/aws-sdk-appstream/types.rb +119 -52
- 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: 66105195453663d1164515946db4a99fb39319d7
|
|
4
|
+
data.tar.gz: 4269b5a8e0a8729659c6a4a97e2ce23f19bdae72
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b55d2144980156223e602bd01263b86133f34ceaf0c2d697ba0472df083144b0dcc9560a616627124e75409c0ba0765a7e86efa58af06d6fcd023cdcbd9e772e
|
|
7
|
+
data.tar.gz: 84e6fe65a16f7404f80b0da6bb3a5a6b758cbcccba16c9160eef0136527ba75aa03c2afa8cb19c41267ace5eb3dee173fbf6bdeac28d1de46833cd57e931e37c
|
data/lib/aws-sdk-appstream.rb
CHANGED
|
@@ -509,16 +509,31 @@ module Aws::AppStream
|
|
|
509
509
|
# Specify a value between 60 and 57600.
|
|
510
510
|
#
|
|
511
511
|
# @option params [String] :description
|
|
512
|
-
# The description
|
|
512
|
+
# The description to display.
|
|
513
513
|
#
|
|
514
514
|
# @option params [String] :display_name
|
|
515
|
-
# The fleet name
|
|
515
|
+
# The fleet name to display.
|
|
516
516
|
#
|
|
517
517
|
# @option params [Boolean] :enable_default_internet_access
|
|
518
518
|
# Enables or disables default internet access for the fleet.
|
|
519
519
|
#
|
|
520
520
|
# @option params [Types::DomainJoinInfo] :domain_join_info
|
|
521
|
-
# The
|
|
521
|
+
# The name of the directory and organizational unit (OU) to use to join
|
|
522
|
+
# the fleet to a Microsoft Active Directory domain.
|
|
523
|
+
#
|
|
524
|
+
# @option params [Hash<String,String>] :tags
|
|
525
|
+
# The tags to associate with the fleet. A tag is a key-value pair (the
|
|
526
|
+
# value is optional). For example, Environment=Test, or, if you do not
|
|
527
|
+
# specify a value, Environment=.
|
|
528
|
+
#
|
|
529
|
+
# If you do not specify a value, we set the value to an empty string.
|
|
530
|
+
#
|
|
531
|
+
# For more information, see [Tagging Your Resources][1] in the *Amazon
|
|
532
|
+
# AppStream 2.0 Developer Guide*.
|
|
533
|
+
#
|
|
534
|
+
#
|
|
535
|
+
#
|
|
536
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
|
|
522
537
|
#
|
|
523
538
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
524
539
|
#
|
|
@@ -548,6 +563,9 @@ module Aws::AppStream
|
|
|
548
563
|
# directory_name: "DirectoryName",
|
|
549
564
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
|
550
565
|
# },
|
|
566
|
+
# tags: {
|
|
567
|
+
# "TagKey" => "TagValue",
|
|
568
|
+
# },
|
|
551
569
|
# })
|
|
552
570
|
#
|
|
553
571
|
# @example Response structure
|
|
@@ -598,7 +616,7 @@ module Aws::AppStream
|
|
|
598
616
|
# A unique name for the image builder.
|
|
599
617
|
#
|
|
600
618
|
# @option params [String] :image_name
|
|
601
|
-
# The name of the image used to create the builder.
|
|
619
|
+
# The name of the image used to create the image builder.
|
|
602
620
|
#
|
|
603
621
|
# @option params [String] :image_arn
|
|
604
622
|
# The ARN of the public, private, or shared image to use.
|
|
@@ -607,10 +625,10 @@ module Aws::AppStream
|
|
|
607
625
|
# The instance type to use when launching the image builder.
|
|
608
626
|
#
|
|
609
627
|
# @option params [String] :description
|
|
610
|
-
# The description
|
|
628
|
+
# The description to display.
|
|
611
629
|
#
|
|
612
630
|
# @option params [String] :display_name
|
|
613
|
-
# The image builder name
|
|
631
|
+
# The image builder name to display.
|
|
614
632
|
#
|
|
615
633
|
# @option params [Types::VpcConfig] :vpc_config
|
|
616
634
|
# The VPC configuration for the image builder. You can specify only one
|
|
@@ -620,13 +638,28 @@ module Aws::AppStream
|
|
|
620
638
|
# Enables or disables default internet access for the image builder.
|
|
621
639
|
#
|
|
622
640
|
# @option params [Types::DomainJoinInfo] :domain_join_info
|
|
623
|
-
# The
|
|
641
|
+
# The name of the directory and organizational unit (OU) to use to join
|
|
642
|
+
# the image builder to a Microsoft Active Directory domain.
|
|
624
643
|
#
|
|
625
644
|
# @option params [String] :appstream_agent_version
|
|
626
645
|
# The version of the AppStream 2.0 agent to use for this image builder.
|
|
627
646
|
# To use the latest version of the AppStream 2.0 agent, specify
|
|
628
647
|
# \[LATEST\].
|
|
629
648
|
#
|
|
649
|
+
# @option params [Hash<String,String>] :tags
|
|
650
|
+
# The tags to associate with the image builder. A tag is a key-value
|
|
651
|
+
# pair (the value is optional). For example, Environment=Test, or, if
|
|
652
|
+
# you do not specify a value, Environment=.
|
|
653
|
+
#
|
|
654
|
+
# If you do not specify a value, we set the value to an empty string.
|
|
655
|
+
#
|
|
656
|
+
# For more information about tags, see [Tagging Your Resources][1] in
|
|
657
|
+
# the *Amazon AppStream 2.0 Developer Guide*.
|
|
658
|
+
#
|
|
659
|
+
#
|
|
660
|
+
#
|
|
661
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
|
|
662
|
+
#
|
|
630
663
|
# @return [Types::CreateImageBuilderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
631
664
|
#
|
|
632
665
|
# * {Types::CreateImageBuilderResult#image_builder #image_builder} => Types::ImageBuilder
|
|
@@ -650,6 +683,9 @@ module Aws::AppStream
|
|
|
650
683
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
|
651
684
|
# },
|
|
652
685
|
# appstream_agent_version: "AppstreamAgentVersion",
|
|
686
|
+
# tags: {
|
|
687
|
+
# "TagKey" => "TagValue",
|
|
688
|
+
# },
|
|
653
689
|
# })
|
|
654
690
|
#
|
|
655
691
|
# @example Response structure
|
|
@@ -730,10 +766,10 @@ module Aws::AppStream
|
|
|
730
766
|
# The name of the stack.
|
|
731
767
|
#
|
|
732
768
|
# @option params [String] :description
|
|
733
|
-
# The description
|
|
769
|
+
# The description to display.
|
|
734
770
|
#
|
|
735
771
|
# @option params [String] :display_name
|
|
736
|
-
# The stack name
|
|
772
|
+
# The stack name to display.
|
|
737
773
|
#
|
|
738
774
|
# @option params [Array<Types::StorageConnector>] :storage_connectors
|
|
739
775
|
# The storage connectors to enable.
|
|
@@ -757,6 +793,20 @@ module Aws::AppStream
|
|
|
757
793
|
# Windows settings are automatically saved after each session and
|
|
758
794
|
# applied to the next session.
|
|
759
795
|
#
|
|
796
|
+
# @option params [Hash<String,String>] :tags
|
|
797
|
+
# The tags to associate with the stack. A tag is a key-value pair (the
|
|
798
|
+
# value is optional). For example, Environment=Test, or, if you do not
|
|
799
|
+
# specify a value, Environment=.
|
|
800
|
+
#
|
|
801
|
+
# If you do not specify a value, we set the value to an empty string.
|
|
802
|
+
#
|
|
803
|
+
# For more information about tags, see [Tagging Your Resources][1] in
|
|
804
|
+
# the *Amazon AppStream 2.0 Developer Guide*.
|
|
805
|
+
#
|
|
806
|
+
#
|
|
807
|
+
#
|
|
808
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
|
|
809
|
+
#
|
|
760
810
|
# @return [Types::CreateStackResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
761
811
|
#
|
|
762
812
|
# * {Types::CreateStackResult#stack #stack} => Types::Stack
|
|
@@ -786,6 +836,9 @@ module Aws::AppStream
|
|
|
786
836
|
# enabled: false, # required
|
|
787
837
|
# settings_group: "SettingsGroup",
|
|
788
838
|
# },
|
|
839
|
+
# tags: {
|
|
840
|
+
# "TagKey" => "TagValue",
|
|
841
|
+
# },
|
|
789
842
|
# })
|
|
790
843
|
#
|
|
791
844
|
# @example Response structure
|
|
@@ -832,7 +885,7 @@ module Aws::AppStream
|
|
|
832
885
|
# The name of the fleet.
|
|
833
886
|
#
|
|
834
887
|
# @option params [required, String] :user_id
|
|
835
|
-
# The
|
|
888
|
+
# The identifier of the user.
|
|
836
889
|
#
|
|
837
890
|
# @option params [String] :application_id
|
|
838
891
|
# The name of the application to launch after the session starts. This
|
|
@@ -1085,7 +1138,7 @@ module Aws::AppStream
|
|
|
1085
1138
|
# The name of the private image.
|
|
1086
1139
|
#
|
|
1087
1140
|
# @option params [required, String] :shared_account_id
|
|
1088
|
-
# The 12-digit
|
|
1141
|
+
# The 12-digit identifier of the AWS account for which to delete image
|
|
1089
1142
|
# permissions.
|
|
1090
1143
|
#
|
|
1091
1144
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
@@ -1347,8 +1400,8 @@ module Aws::AppStream
|
|
|
1347
1400
|
# The maximum size of each page of results.
|
|
1348
1401
|
#
|
|
1349
1402
|
# @option params [Array<String>] :shared_aws_account_ids
|
|
1350
|
-
# The 12-digit
|
|
1351
|
-
# shared.
|
|
1403
|
+
# The 12-digit identifier of one or more AWS accounts with which the
|
|
1404
|
+
# image is shared.
|
|
1352
1405
|
#
|
|
1353
1406
|
# @option params [String] :next_token
|
|
1354
1407
|
# The pagination token to use to retrieve the next page of results for
|
|
@@ -1462,10 +1515,10 @@ module Aws::AppStream
|
|
|
1462
1515
|
end
|
|
1463
1516
|
|
|
1464
1517
|
# Retrieves a list that describes the streaming sessions for a specified
|
|
1465
|
-
# stack and fleet. If a
|
|
1466
|
-
#
|
|
1467
|
-
#
|
|
1468
|
-
#
|
|
1518
|
+
# stack and fleet. If a UserId is provided for the stack and fleet, only
|
|
1519
|
+
# streaming sessions for that user are described. If an authentication
|
|
1520
|
+
# type is not provided, the default is to authenticate users using a
|
|
1521
|
+
# streaming URL.
|
|
1469
1522
|
#
|
|
1470
1523
|
# @option params [required, String] :stack_name
|
|
1471
1524
|
# The name of the stack. This value is case-sensitive.
|
|
@@ -1474,7 +1527,7 @@ module Aws::AppStream
|
|
|
1474
1527
|
# The name of the fleet. This value is case-sensitive.
|
|
1475
1528
|
#
|
|
1476
1529
|
# @option params [String] :user_id
|
|
1477
|
-
# The user
|
|
1530
|
+
# The user identifier.
|
|
1478
1531
|
#
|
|
1479
1532
|
# @option params [String] :next_token
|
|
1480
1533
|
# The pagination token to use to retrieve the next page of results for
|
|
@@ -1644,8 +1697,7 @@ module Aws::AppStream
|
|
|
1644
1697
|
end
|
|
1645
1698
|
|
|
1646
1699
|
# Retrieves a list that describes one or more specified users in the
|
|
1647
|
-
# user pool
|
|
1648
|
-
# user pool are described.
|
|
1700
|
+
# user pool.
|
|
1649
1701
|
#
|
|
1650
1702
|
# @option params [required, String] :authentication_type
|
|
1651
1703
|
# The authentication type for the users in the user pool to describe.
|
|
@@ -1778,7 +1830,7 @@ module Aws::AppStream
|
|
|
1778
1830
|
# Immediately stops the specified streaming session.
|
|
1779
1831
|
#
|
|
1780
1832
|
# @option params [required, String] :session_id
|
|
1781
|
-
# The
|
|
1833
|
+
# The identifier of the streaming session.
|
|
1782
1834
|
#
|
|
1783
1835
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
1784
1836
|
#
|
|
@@ -2269,16 +2321,17 @@ module Aws::AppStream
|
|
|
2269
2321
|
# Deletes the VPC association for the specified fleet.
|
|
2270
2322
|
#
|
|
2271
2323
|
# @option params [String] :description
|
|
2272
|
-
# The description
|
|
2324
|
+
# The description to display.
|
|
2273
2325
|
#
|
|
2274
2326
|
# @option params [String] :display_name
|
|
2275
|
-
# The fleet name
|
|
2327
|
+
# The fleet name to display.
|
|
2276
2328
|
#
|
|
2277
2329
|
# @option params [Boolean] :enable_default_internet_access
|
|
2278
2330
|
# Enables or disables default internet access for the fleet.
|
|
2279
2331
|
#
|
|
2280
2332
|
# @option params [Types::DomainJoinInfo] :domain_join_info
|
|
2281
|
-
# The
|
|
2333
|
+
# The name of the directory and organizational unit (OU) to use to join
|
|
2334
|
+
# the fleet to a Microsoft Active Directory domain.
|
|
2282
2335
|
#
|
|
2283
2336
|
# @option params [Array<String>] :attributes_to_delete
|
|
2284
2337
|
# The fleet attributes to delete.
|
|
@@ -2358,8 +2411,8 @@ module Aws::AppStream
|
|
|
2358
2411
|
# The name of the private image.
|
|
2359
2412
|
#
|
|
2360
2413
|
# @option params [required, String] :shared_account_id
|
|
2361
|
-
# The 12-digit
|
|
2362
|
-
# image permissions.
|
|
2414
|
+
# The 12-digit identifier of the AWS account for which you want add or
|
|
2415
|
+
# update image permissions.
|
|
2363
2416
|
#
|
|
2364
2417
|
# @option params [required, Types::ImagePermissions] :image_permissions
|
|
2365
2418
|
# The permissions for the image.
|
|
@@ -2389,10 +2442,10 @@ module Aws::AppStream
|
|
|
2389
2442
|
# Updates the specified fields for the specified stack.
|
|
2390
2443
|
#
|
|
2391
2444
|
# @option params [String] :display_name
|
|
2392
|
-
# The stack name
|
|
2445
|
+
# The stack name to display.
|
|
2393
2446
|
#
|
|
2394
2447
|
# @option params [String] :description
|
|
2395
|
-
# The description
|
|
2448
|
+
# The description to display.
|
|
2396
2449
|
#
|
|
2397
2450
|
# @option params [required, String] :name
|
|
2398
2451
|
# The name of the stack.
|
|
@@ -2408,7 +2461,7 @@ module Aws::AppStream
|
|
|
2408
2461
|
# ends.
|
|
2409
2462
|
#
|
|
2410
2463
|
# @option params [String] :feedback_url
|
|
2411
|
-
# The URL that users are redirected to after they
|
|
2464
|
+
# The URL that users are redirected to after they choose the Send
|
|
2412
2465
|
# Feedback link. If no URL is specified, no Send Feedback link is
|
|
2413
2466
|
# displayed.
|
|
2414
2467
|
#
|
|
@@ -2504,7 +2557,7 @@ module Aws::AppStream
|
|
|
2504
2557
|
params: params,
|
|
2505
2558
|
config: config)
|
|
2506
2559
|
context[:gem_name] = 'aws-sdk-appstream'
|
|
2507
|
-
context[:gem_version] = '1.
|
|
2560
|
+
context[:gem_version] = '1.20.0'
|
|
2508
2561
|
Seahorse::Client::Request.new(handlers, context)
|
|
2509
2562
|
end
|
|
2510
2563
|
|
|
@@ -298,6 +298,7 @@ module Aws::AppStream
|
|
|
298
298
|
CreateFleetRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
|
299
299
|
CreateFleetRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
|
300
300
|
CreateFleetRequest.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
|
301
|
+
CreateFleetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
301
302
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
|
302
303
|
|
|
303
304
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
|
@@ -313,6 +314,7 @@ module Aws::AppStream
|
|
|
313
314
|
CreateImageBuilderRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
|
314
315
|
CreateImageBuilderRequest.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
|
315
316
|
CreateImageBuilderRequest.add_member(:appstream_agent_version, Shapes::ShapeRef.new(shape: AppstreamAgentVersion, location_name: "AppstreamAgentVersion"))
|
|
317
|
+
CreateImageBuilderRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
316
318
|
CreateImageBuilderRequest.struct_class = Types::CreateImageBuilderRequest
|
|
317
319
|
|
|
318
320
|
CreateImageBuilderResult.add_member(:image_builder, Shapes::ShapeRef.new(shape: ImageBuilder, location_name: "ImageBuilder"))
|
|
@@ -334,6 +336,7 @@ module Aws::AppStream
|
|
|
334
336
|
CreateStackRequest.add_member(:feedback_url, Shapes::ShapeRef.new(shape: FeedbackURL, location_name: "FeedbackURL"))
|
|
335
337
|
CreateStackRequest.add_member(:user_settings, Shapes::ShapeRef.new(shape: UserSettingList, location_name: "UserSettings"))
|
|
336
338
|
CreateStackRequest.add_member(:application_settings, Shapes::ShapeRef.new(shape: ApplicationSettings, location_name: "ApplicationSettings"))
|
|
339
|
+
CreateStackRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
|
337
340
|
CreateStackRequest.struct_class = Types::CreateStackRequest
|
|
338
341
|
|
|
339
342
|
CreateStackResult.add_member(:stack, Shapes::ShapeRef.new(shape: Stack, location_name: "Stack"))
|
|
@@ -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 to display.
|
|
19
19
|
# @return [String]
|
|
20
20
|
#
|
|
21
21
|
# @!attribute [rw] icon_url
|
|
@@ -383,6 +383,9 @@ module Aws::AppStream
|
|
|
383
383
|
# directory_name: "DirectoryName",
|
|
384
384
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
|
385
385
|
# },
|
|
386
|
+
# tags: {
|
|
387
|
+
# "TagKey" => "TagValue",
|
|
388
|
+
# },
|
|
386
389
|
# }
|
|
387
390
|
#
|
|
388
391
|
# @!attribute [rw] name
|
|
@@ -480,11 +483,11 @@ module Aws::AppStream
|
|
|
480
483
|
# @return [Integer]
|
|
481
484
|
#
|
|
482
485
|
# @!attribute [rw] description
|
|
483
|
-
# The description
|
|
486
|
+
# The description to display.
|
|
484
487
|
# @return [String]
|
|
485
488
|
#
|
|
486
489
|
# @!attribute [rw] display_name
|
|
487
|
-
# The fleet name
|
|
490
|
+
# The fleet name to display.
|
|
488
491
|
# @return [String]
|
|
489
492
|
#
|
|
490
493
|
# @!attribute [rw] enable_default_internet_access
|
|
@@ -492,9 +495,25 @@ module Aws::AppStream
|
|
|
492
495
|
# @return [Boolean]
|
|
493
496
|
#
|
|
494
497
|
# @!attribute [rw] domain_join_info
|
|
495
|
-
# The
|
|
498
|
+
# The name of the directory and organizational unit (OU) to use to
|
|
499
|
+
# join the fleet to a Microsoft Active Directory domain.
|
|
496
500
|
# @return [Types::DomainJoinInfo]
|
|
497
501
|
#
|
|
502
|
+
# @!attribute [rw] tags
|
|
503
|
+
# The tags to associate with the fleet. A tag is a key-value pair (the
|
|
504
|
+
# value is optional). For example, Environment=Test, or, if you do not
|
|
505
|
+
# specify a value, Environment=.
|
|
506
|
+
#
|
|
507
|
+
# If you do not specify a value, we set the value to an empty string.
|
|
508
|
+
#
|
|
509
|
+
# For more information, see [Tagging Your Resources][1] in the *Amazon
|
|
510
|
+
# AppStream 2.0 Developer Guide*.
|
|
511
|
+
#
|
|
512
|
+
#
|
|
513
|
+
#
|
|
514
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
|
|
515
|
+
# @return [Hash<String,String>]
|
|
516
|
+
#
|
|
498
517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
|
499
518
|
#
|
|
500
519
|
class CreateFleetRequest < Struct.new(
|
|
@@ -510,7 +529,8 @@ module Aws::AppStream
|
|
|
510
529
|
:description,
|
|
511
530
|
:display_name,
|
|
512
531
|
:enable_default_internet_access,
|
|
513
|
-
:domain_join_info
|
|
532
|
+
:domain_join_info,
|
|
533
|
+
:tags)
|
|
514
534
|
include Aws::Structure
|
|
515
535
|
end
|
|
516
536
|
|
|
@@ -545,6 +565,9 @@ module Aws::AppStream
|
|
|
545
565
|
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
|
546
566
|
# },
|
|
547
567
|
# appstream_agent_version: "AppstreamAgentVersion",
|
|
568
|
+
# tags: {
|
|
569
|
+
# "TagKey" => "TagValue",
|
|
570
|
+
# },
|
|
548
571
|
# }
|
|
549
572
|
#
|
|
550
573
|
# @!attribute [rw] name
|
|
@@ -552,7 +575,7 @@ module Aws::AppStream
|
|
|
552
575
|
# @return [String]
|
|
553
576
|
#
|
|
554
577
|
# @!attribute [rw] image_name
|
|
555
|
-
# The name of the image used to create the builder.
|
|
578
|
+
# The name of the image used to create the image builder.
|
|
556
579
|
# @return [String]
|
|
557
580
|
#
|
|
558
581
|
# @!attribute [rw] image_arn
|
|
@@ -564,11 +587,11 @@ module Aws::AppStream
|
|
|
564
587
|
# @return [String]
|
|
565
588
|
#
|
|
566
589
|
# @!attribute [rw] description
|
|
567
|
-
# The description
|
|
590
|
+
# The description to display.
|
|
568
591
|
# @return [String]
|
|
569
592
|
#
|
|
570
593
|
# @!attribute [rw] display_name
|
|
571
|
-
# The image builder name
|
|
594
|
+
# The image builder name to display.
|
|
572
595
|
# @return [String]
|
|
573
596
|
#
|
|
574
597
|
# @!attribute [rw] vpc_config
|
|
@@ -581,7 +604,8 @@ module Aws::AppStream
|
|
|
581
604
|
# @return [Boolean]
|
|
582
605
|
#
|
|
583
606
|
# @!attribute [rw] domain_join_info
|
|
584
|
-
# The
|
|
607
|
+
# The name of the directory and organizational unit (OU) to use to
|
|
608
|
+
# join the image builder to a Microsoft Active Directory domain.
|
|
585
609
|
# @return [Types::DomainJoinInfo]
|
|
586
610
|
#
|
|
587
611
|
# @!attribute [rw] appstream_agent_version
|
|
@@ -590,6 +614,21 @@ module Aws::AppStream
|
|
|
590
614
|
# specify \[LATEST\].
|
|
591
615
|
# @return [String]
|
|
592
616
|
#
|
|
617
|
+
# @!attribute [rw] tags
|
|
618
|
+
# The tags to associate with the image builder. A tag is a key-value
|
|
619
|
+
# pair (the value is optional). For example, Environment=Test, or, if
|
|
620
|
+
# you do not specify a value, Environment=.
|
|
621
|
+
#
|
|
622
|
+
# If you do not specify a value, we set the value to an empty string.
|
|
623
|
+
#
|
|
624
|
+
# For more information about tags, see [Tagging Your Resources][1] in
|
|
625
|
+
# the *Amazon AppStream 2.0 Developer Guide*.
|
|
626
|
+
#
|
|
627
|
+
#
|
|
628
|
+
#
|
|
629
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
|
|
630
|
+
# @return [Hash<String,String>]
|
|
631
|
+
#
|
|
593
632
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateImageBuilderRequest AWS API Documentation
|
|
594
633
|
#
|
|
595
634
|
class CreateImageBuilderRequest < Struct.new(
|
|
@@ -602,7 +641,8 @@ module Aws::AppStream
|
|
|
602
641
|
:vpc_config,
|
|
603
642
|
:enable_default_internet_access,
|
|
604
643
|
:domain_join_info,
|
|
605
|
-
:appstream_agent_version
|
|
644
|
+
:appstream_agent_version,
|
|
645
|
+
:tags)
|
|
606
646
|
include Aws::Structure
|
|
607
647
|
end
|
|
608
648
|
|
|
@@ -685,6 +725,9 @@ module Aws::AppStream
|
|
|
685
725
|
# enabled: false, # required
|
|
686
726
|
# settings_group: "SettingsGroup",
|
|
687
727
|
# },
|
|
728
|
+
# tags: {
|
|
729
|
+
# "TagKey" => "TagValue",
|
|
730
|
+
# },
|
|
688
731
|
# }
|
|
689
732
|
#
|
|
690
733
|
# @!attribute [rw] name
|
|
@@ -692,11 +735,11 @@ module Aws::AppStream
|
|
|
692
735
|
# @return [String]
|
|
693
736
|
#
|
|
694
737
|
# @!attribute [rw] description
|
|
695
|
-
# The description
|
|
738
|
+
# The description to display.
|
|
696
739
|
# @return [String]
|
|
697
740
|
#
|
|
698
741
|
# @!attribute [rw] display_name
|
|
699
|
-
# The stack name
|
|
742
|
+
# The stack name to display.
|
|
700
743
|
# @return [String]
|
|
701
744
|
#
|
|
702
745
|
# @!attribute [rw] storage_connectors
|
|
@@ -726,6 +769,21 @@ module Aws::AppStream
|
|
|
726
769
|
# applied to the next session.
|
|
727
770
|
# @return [Types::ApplicationSettings]
|
|
728
771
|
#
|
|
772
|
+
# @!attribute [rw] tags
|
|
773
|
+
# The tags to associate with the stack. A tag is a key-value pair (the
|
|
774
|
+
# value is optional). For example, Environment=Test, or, if you do not
|
|
775
|
+
# specify a value, Environment=.
|
|
776
|
+
#
|
|
777
|
+
# If you do not specify a value, we set the value to an empty string.
|
|
778
|
+
#
|
|
779
|
+
# For more information about tags, see [Tagging Your Resources][1] in
|
|
780
|
+
# the *Amazon AppStream 2.0 Developer Guide*.
|
|
781
|
+
#
|
|
782
|
+
#
|
|
783
|
+
#
|
|
784
|
+
# [1]: http://docs.aws.amazon.com/appstream2/latest/developerguide/tagging-basic.html
|
|
785
|
+
# @return [Hash<String,String>]
|
|
786
|
+
#
|
|
729
787
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStackRequest AWS API Documentation
|
|
730
788
|
#
|
|
731
789
|
class CreateStackRequest < Struct.new(
|
|
@@ -736,7 +794,8 @@ module Aws::AppStream
|
|
|
736
794
|
:redirect_url,
|
|
737
795
|
:feedback_url,
|
|
738
796
|
:user_settings,
|
|
739
|
-
:application_settings
|
|
797
|
+
:application_settings,
|
|
798
|
+
:tags)
|
|
740
799
|
include Aws::Structure
|
|
741
800
|
end
|
|
742
801
|
|
|
@@ -772,7 +831,7 @@ module Aws::AppStream
|
|
|
772
831
|
# @return [String]
|
|
773
832
|
#
|
|
774
833
|
# @!attribute [rw] user_id
|
|
775
|
-
# The
|
|
834
|
+
# The identifier of the user.
|
|
776
835
|
# @return [String]
|
|
777
836
|
#
|
|
778
837
|
# @!attribute [rw] application_id
|
|
@@ -965,7 +1024,7 @@ module Aws::AppStream
|
|
|
965
1024
|
# @return [String]
|
|
966
1025
|
#
|
|
967
1026
|
# @!attribute [rw] shared_account_id
|
|
968
|
-
# The 12-digit
|
|
1027
|
+
# The 12-digit identifier of the AWS account for which to delete image
|
|
969
1028
|
# permissions.
|
|
970
1029
|
# @return [String]
|
|
971
1030
|
#
|
|
@@ -1220,8 +1279,8 @@ module Aws::AppStream
|
|
|
1220
1279
|
# @return [Integer]
|
|
1221
1280
|
#
|
|
1222
1281
|
# @!attribute [rw] shared_aws_account_ids
|
|
1223
|
-
# The 12-digit
|
|
1224
|
-
# shared.
|
|
1282
|
+
# The 12-digit identifier of one or more AWS accounts with which the
|
|
1283
|
+
# image is shared.
|
|
1225
1284
|
# @return [Array<String>]
|
|
1226
1285
|
#
|
|
1227
1286
|
# @!attribute [rw] next_token
|
|
@@ -1342,7 +1401,7 @@ module Aws::AppStream
|
|
|
1342
1401
|
# @return [String]
|
|
1343
1402
|
#
|
|
1344
1403
|
# @!attribute [rw] user_id
|
|
1345
|
-
# The user
|
|
1404
|
+
# The user identifier.
|
|
1346
1405
|
# @return [String]
|
|
1347
1406
|
#
|
|
1348
1407
|
# @!attribute [rw] next_token
|
|
@@ -1542,7 +1601,8 @@ module Aws::AppStream
|
|
|
1542
1601
|
include Aws::Structure
|
|
1543
1602
|
end
|
|
1544
1603
|
|
|
1545
|
-
#
|
|
1604
|
+
# Describes the configuration information for the directory used to join
|
|
1605
|
+
# a streaming instance to a Microsoft Active Directory domain.
|
|
1546
1606
|
#
|
|
1547
1607
|
# @!attribute [rw] directory_name
|
|
1548
1608
|
# The fully qualified name of the directory (for example,
|
|
@@ -1629,8 +1689,8 @@ module Aws::AppStream
|
|
|
1629
1689
|
#
|
|
1630
1690
|
class DisassociateFleetResult < Aws::EmptyStructure; end
|
|
1631
1691
|
|
|
1632
|
-
#
|
|
1633
|
-
#
|
|
1692
|
+
# Describes the configuration information required to join fleets and
|
|
1693
|
+
# image builders to Microsoft Active Directory domains.
|
|
1634
1694
|
#
|
|
1635
1695
|
# @note When making an API call, you may pass DomainJoinInfo
|
|
1636
1696
|
# data as a hash:
|
|
@@ -1694,7 +1754,7 @@ module Aws::AppStream
|
|
|
1694
1754
|
# }
|
|
1695
1755
|
#
|
|
1696
1756
|
# @!attribute [rw] session_id
|
|
1697
|
-
# The
|
|
1757
|
+
# The identifier of the streaming session.
|
|
1698
1758
|
# @return [String]
|
|
1699
1759
|
#
|
|
1700
1760
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ExpireSessionRequest AWS API Documentation
|
|
@@ -1708,7 +1768,7 @@ module Aws::AppStream
|
|
|
1708
1768
|
#
|
|
1709
1769
|
class ExpireSessionResult < Aws::EmptyStructure; end
|
|
1710
1770
|
|
|
1711
|
-
#
|
|
1771
|
+
# Describes the parameters for a fleet.
|
|
1712
1772
|
#
|
|
1713
1773
|
# @!attribute [rw] arn
|
|
1714
1774
|
# The ARN for the fleet.
|
|
@@ -1719,11 +1779,11 @@ module Aws::AppStream
|
|
|
1719
1779
|
# @return [String]
|
|
1720
1780
|
#
|
|
1721
1781
|
# @!attribute [rw] display_name
|
|
1722
|
-
# The fleet name
|
|
1782
|
+
# The fleet name to display.
|
|
1723
1783
|
# @return [String]
|
|
1724
1784
|
#
|
|
1725
1785
|
# @!attribute [rw] description
|
|
1726
|
-
# The description
|
|
1786
|
+
# The description to display.
|
|
1727
1787
|
# @return [String]
|
|
1728
1788
|
#
|
|
1729
1789
|
# @!attribute [rw] image_name
|
|
@@ -1792,7 +1852,8 @@ module Aws::AppStream
|
|
|
1792
1852
|
# @return [Boolean]
|
|
1793
1853
|
#
|
|
1794
1854
|
# @!attribute [rw] domain_join_info
|
|
1795
|
-
# The
|
|
1855
|
+
# The name of the directory and organizational unit (OU) to use to
|
|
1856
|
+
# join the fleet to a Microsoft Active Directory domain.
|
|
1796
1857
|
# @return [Types::DomainJoinInfo]
|
|
1797
1858
|
#
|
|
1798
1859
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
|
@@ -1851,7 +1912,7 @@ module Aws::AppStream
|
|
|
1851
1912
|
# @return [String]
|
|
1852
1913
|
#
|
|
1853
1914
|
# @!attribute [rw] display_name
|
|
1854
|
-
# The image name
|
|
1915
|
+
# The image name to display.
|
|
1855
1916
|
# @return [String]
|
|
1856
1917
|
#
|
|
1857
1918
|
# @!attribute [rw] state
|
|
@@ -1873,7 +1934,7 @@ module Aws::AppStream
|
|
|
1873
1934
|
# @return [String]
|
|
1874
1935
|
#
|
|
1875
1936
|
# @!attribute [rw] description
|
|
1876
|
-
# The description
|
|
1937
|
+
# The description to display.
|
|
1877
1938
|
# @return [String]
|
|
1878
1939
|
#
|
|
1879
1940
|
# @!attribute [rw] state_change_reason
|
|
@@ -1925,8 +1986,7 @@ module Aws::AppStream
|
|
|
1925
1986
|
include Aws::Structure
|
|
1926
1987
|
end
|
|
1927
1988
|
|
|
1928
|
-
# Describes a
|
|
1929
|
-
# are created from a snapshot through an image builder.
|
|
1989
|
+
# Describes a virtual machine that is used to create an image.
|
|
1930
1990
|
#
|
|
1931
1991
|
# @!attribute [rw] name
|
|
1932
1992
|
# The name of the image builder.
|
|
@@ -1941,11 +2001,11 @@ module Aws::AppStream
|
|
|
1941
2001
|
# @return [String]
|
|
1942
2002
|
#
|
|
1943
2003
|
# @!attribute [rw] description
|
|
1944
|
-
# The description
|
|
2004
|
+
# The description to display.
|
|
1945
2005
|
# @return [String]
|
|
1946
2006
|
#
|
|
1947
2007
|
# @!attribute [rw] display_name
|
|
1948
|
-
# The image builder name
|
|
2008
|
+
# The image builder name to display.
|
|
1949
2009
|
# @return [String]
|
|
1950
2010
|
#
|
|
1951
2011
|
# @!attribute [rw] vpc_config
|
|
@@ -1977,7 +2037,8 @@ module Aws::AppStream
|
|
|
1977
2037
|
# @return [Boolean]
|
|
1978
2038
|
#
|
|
1979
2039
|
# @!attribute [rw] domain_join_info
|
|
1980
|
-
# The
|
|
2040
|
+
# The name of the directory and organizational unit (OU) to use to
|
|
2041
|
+
# join the image builder to a Microsoft Active Directory domain.
|
|
1981
2042
|
# @return [Types::DomainJoinInfo]
|
|
1982
2043
|
#
|
|
1983
2044
|
# @!attribute [rw] image_builder_errors
|
|
@@ -1986,7 +2047,7 @@ module Aws::AppStream
|
|
|
1986
2047
|
#
|
|
1987
2048
|
# @!attribute [rw] appstream_agent_version
|
|
1988
2049
|
# The version of the AppStream 2.0 agent that is currently being used
|
|
1989
|
-
# by
|
|
2050
|
+
# by the image builder.
|
|
1990
2051
|
# @return [String]
|
|
1991
2052
|
#
|
|
1992
2053
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ImageBuilder AWS API Documentation
|
|
@@ -2185,7 +2246,8 @@ module Aws::AppStream
|
|
|
2185
2246
|
include Aws::Structure
|
|
2186
2247
|
end
|
|
2187
2248
|
|
|
2188
|
-
#
|
|
2249
|
+
# Describes the network details of the fleet instance for the streaming
|
|
2250
|
+
# session.
|
|
2189
2251
|
#
|
|
2190
2252
|
# @!attribute [rw] eni_private_ip_address
|
|
2191
2253
|
# The private IP address of the elastic network interface that is
|
|
@@ -2262,7 +2324,7 @@ module Aws::AppStream
|
|
|
2262
2324
|
# Describes a streaming session.
|
|
2263
2325
|
#
|
|
2264
2326
|
# @!attribute [rw] id
|
|
2265
|
-
# The
|
|
2327
|
+
# The identifier of the streaming session.
|
|
2266
2328
|
# @return [String]
|
|
2267
2329
|
#
|
|
2268
2330
|
# @!attribute [rw] user_id
|
|
@@ -2307,7 +2369,8 @@ module Aws::AppStream
|
|
|
2307
2369
|
# account for a shared image.
|
|
2308
2370
|
#
|
|
2309
2371
|
# @!attribute [rw] shared_account_id
|
|
2310
|
-
# The 12-digit
|
|
2372
|
+
# The 12-digit identifier of the AWS account with which the image is
|
|
2373
|
+
# shared.
|
|
2311
2374
|
# @return [String]
|
|
2312
2375
|
#
|
|
2313
2376
|
# @!attribute [rw] image_permissions
|
|
@@ -2333,11 +2396,11 @@ module Aws::AppStream
|
|
|
2333
2396
|
# @return [String]
|
|
2334
2397
|
#
|
|
2335
2398
|
# @!attribute [rw] description
|
|
2336
|
-
# The description
|
|
2399
|
+
# The description to display.
|
|
2337
2400
|
# @return [String]
|
|
2338
2401
|
#
|
|
2339
2402
|
# @!attribute [rw] display_name
|
|
2340
|
-
# The stack name
|
|
2403
|
+
# The stack name to display.
|
|
2341
2404
|
# @return [String]
|
|
2342
2405
|
#
|
|
2343
2406
|
# @!attribute [rw] created_time
|
|
@@ -2537,7 +2600,7 @@ module Aws::AppStream
|
|
|
2537
2600
|
# @return [String]
|
|
2538
2601
|
#
|
|
2539
2602
|
# @!attribute [rw] domains
|
|
2540
|
-
# The names of the domains for the
|
|
2603
|
+
# The names of the domains for the account.
|
|
2541
2604
|
# @return [Array<String>]
|
|
2542
2605
|
#
|
|
2543
2606
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/StorageConnector AWS API Documentation
|
|
@@ -2767,11 +2830,11 @@ module Aws::AppStream
|
|
|
2767
2830
|
# @return [Boolean]
|
|
2768
2831
|
#
|
|
2769
2832
|
# @!attribute [rw] description
|
|
2770
|
-
# The description
|
|
2833
|
+
# The description to display.
|
|
2771
2834
|
# @return [String]
|
|
2772
2835
|
#
|
|
2773
2836
|
# @!attribute [rw] display_name
|
|
2774
|
-
# The fleet name
|
|
2837
|
+
# The fleet name to display.
|
|
2775
2838
|
# @return [String]
|
|
2776
2839
|
#
|
|
2777
2840
|
# @!attribute [rw] enable_default_internet_access
|
|
@@ -2779,7 +2842,8 @@ module Aws::AppStream
|
|
|
2779
2842
|
# @return [Boolean]
|
|
2780
2843
|
#
|
|
2781
2844
|
# @!attribute [rw] domain_join_info
|
|
2782
|
-
# The
|
|
2845
|
+
# The name of the directory and organizational unit (OU) to use to
|
|
2846
|
+
# join the fleet to a Microsoft Active Directory domain.
|
|
2783
2847
|
# @return [Types::DomainJoinInfo]
|
|
2784
2848
|
#
|
|
2785
2849
|
# @!attribute [rw] attributes_to_delete
|
|
@@ -2834,8 +2898,8 @@ module Aws::AppStream
|
|
|
2834
2898
|
# @return [String]
|
|
2835
2899
|
#
|
|
2836
2900
|
# @!attribute [rw] shared_account_id
|
|
2837
|
-
# The 12-digit
|
|
2838
|
-
# image permissions.
|
|
2901
|
+
# The 12-digit identifier of the AWS account for which you want add or
|
|
2902
|
+
# update image permissions.
|
|
2839
2903
|
# @return [String]
|
|
2840
2904
|
#
|
|
2841
2905
|
# @!attribute [rw] image_permissions
|
|
@@ -2886,11 +2950,11 @@ module Aws::AppStream
|
|
|
2886
2950
|
# }
|
|
2887
2951
|
#
|
|
2888
2952
|
# @!attribute [rw] display_name
|
|
2889
|
-
# The stack name
|
|
2953
|
+
# The stack name to display.
|
|
2890
2954
|
# @return [String]
|
|
2891
2955
|
#
|
|
2892
2956
|
# @!attribute [rw] description
|
|
2893
|
-
# The description
|
|
2957
|
+
# The description to display.
|
|
2894
2958
|
# @return [String]
|
|
2895
2959
|
#
|
|
2896
2960
|
# @!attribute [rw] name
|
|
@@ -2911,7 +2975,7 @@ module Aws::AppStream
|
|
|
2911
2975
|
# @return [String]
|
|
2912
2976
|
#
|
|
2913
2977
|
# @!attribute [rw] feedback_url
|
|
2914
|
-
# The URL that users are redirected to after they
|
|
2978
|
+
# The URL that users are redirected to after they choose the Send
|
|
2915
2979
|
# Feedback link. If no URL is specified, no Send Feedback link is
|
|
2916
2980
|
# displayed.
|
|
2917
2981
|
# @return [String]
|
|
@@ -3111,7 +3175,7 @@ module Aws::AppStream
|
|
|
3111
3175
|
include Aws::Structure
|
|
3112
3176
|
end
|
|
3113
3177
|
|
|
3114
|
-
# Describes VPC configuration information.
|
|
3178
|
+
# Describes VPC configuration information for fleets and image builders.
|
|
3115
3179
|
#
|
|
3116
3180
|
# @note When making an API call, you may pass VpcConfig
|
|
3117
3181
|
# data as a hash:
|
|
@@ -3122,12 +3186,15 @@ module Aws::AppStream
|
|
|
3122
3186
|
# }
|
|
3123
3187
|
#
|
|
3124
3188
|
# @!attribute [rw] subnet_ids
|
|
3125
|
-
# The subnets to which a network interface is
|
|
3126
|
-
# fleet instance.
|
|
3189
|
+
# The identifiers of the subnets to which a network interface is
|
|
3190
|
+
# attached from the fleet instance or image builder instance. Fleet
|
|
3191
|
+
# instances use one or two subnets. Image builder instances use one
|
|
3192
|
+
# subnet.
|
|
3127
3193
|
# @return [Array<String>]
|
|
3128
3194
|
#
|
|
3129
3195
|
# @!attribute [rw] security_group_ids
|
|
3130
|
-
# The security groups for the fleet
|
|
3196
|
+
# The identifiers of the security groups for the fleet or image
|
|
3197
|
+
# builder.
|
|
3131
3198
|
# @return [Array<String>]
|
|
3132
3199
|
#
|
|
3133
3200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/VpcConfig AWS API Documentation
|
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.20.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:
|
|
11
|
+
date: 2019-01-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|