aws-sdk-appstream 1.40.0 → 1.45.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 +3 -1
- data/lib/aws-sdk-appstream/client.rb +109 -11
- data/lib/aws-sdk-appstream/client_api.rb +25 -1
- data/lib/aws-sdk-appstream/errors.rb +18 -0
- data/lib/aws-sdk-appstream/resource.rb +2 -0
- data/lib/aws-sdk-appstream/types.rb +300 -10
- data/lib/aws-sdk-appstream/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0524275fc05db4d85b9198652d1d93068170435121908f027871b03084d50c55
|
4
|
+
data.tar.gz: eab7a0ef52b9a30f08e4bab840496de15de8cc30804ed2ab415d09a689fb3881
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a8f03ef216c42cf3f88df5cb401b0e4f16870ab226287213f3c634a2d3821f856157c96c4a07aa4d1fd353c0634c675acf1d45d2fa1bd510faeebcc25d37015
|
7
|
+
data.tar.gz: 816980c723ec33dbf0946d7ee3a67518a4904d69f00c2b17d22067181317ab322a8245856c235bf15dc196638857706faec97b12379e8ce149002c155469c832
|
data/lib/aws-sdk-appstream.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -46,6 +48,6 @@ require_relative 'aws-sdk-appstream/customizations'
|
|
46
48
|
# @service
|
47
49
|
module Aws::AppStream
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.45.0'
|
50
52
|
|
51
53
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::AppStream
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::AppStream
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::AppStream
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -375,7 +379,7 @@ module Aws::AppStream
|
|
375
379
|
# resp.errors[0].user_stack_association.user_name #=> String
|
376
380
|
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
377
381
|
# resp.errors[0].user_stack_association.send_email_notification #=> Boolean
|
378
|
-
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "INTERNAL_ERROR"
|
382
|
+
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
379
383
|
# resp.errors[0].error_message #=> String
|
380
384
|
#
|
381
385
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/BatchAssociateUserStack AWS API Documentation
|
@@ -416,7 +420,7 @@ module Aws::AppStream
|
|
416
420
|
# resp.errors[0].user_stack_association.user_name #=> String
|
417
421
|
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
418
422
|
# resp.errors[0].user_stack_association.send_email_notification #=> Boolean
|
419
|
-
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "INTERNAL_ERROR"
|
423
|
+
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
420
424
|
# resp.errors[0].error_message #=> String
|
421
425
|
#
|
422
426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/BatchDisassociateUserStack AWS API Documentation
|
@@ -486,7 +490,7 @@ module Aws::AppStream
|
|
486
490
|
# The distinguished names of the organizational units for computer
|
487
491
|
# accounts.
|
488
492
|
#
|
489
|
-
# @option params [
|
493
|
+
# @option params [Types::ServiceAccountCredentials] :service_account_credentials
|
490
494
|
# The credentials for the service account used by the fleet or image
|
491
495
|
# builder to connect to the directory.
|
492
496
|
#
|
@@ -499,7 +503,7 @@ module Aws::AppStream
|
|
499
503
|
# resp = client.create_directory_config({
|
500
504
|
# directory_name: "DirectoryName", # required
|
501
505
|
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"], # required
|
502
|
-
# service_account_credentials: {
|
506
|
+
# service_account_credentials: {
|
503
507
|
# account_name: "AccountName", # required
|
504
508
|
# account_password: "AccountPassword", # required
|
505
509
|
# },
|
@@ -563,6 +567,18 @@ module Aws::AppStream
|
|
563
567
|
#
|
564
568
|
# * stream.memory.8xlarge
|
565
569
|
#
|
570
|
+
# * stream.memory.z1d.large
|
571
|
+
#
|
572
|
+
# * stream.memory.z1d.xlarge
|
573
|
+
#
|
574
|
+
# * stream.memory.z1d.2xlarge
|
575
|
+
#
|
576
|
+
# * stream.memory.z1d.3xlarge
|
577
|
+
#
|
578
|
+
# * stream.memory.z1d.6xlarge
|
579
|
+
#
|
580
|
+
# * stream.memory.z1d.12xlarge
|
581
|
+
#
|
566
582
|
# * stream.graphics-design.large
|
567
583
|
#
|
568
584
|
# * stream.graphics-design.xlarge
|
@@ -573,6 +589,18 @@ module Aws::AppStream
|
|
573
589
|
#
|
574
590
|
# * stream.graphics-desktop.2xlarge
|
575
591
|
#
|
592
|
+
# * stream.graphics.g4dn.xlarge
|
593
|
+
#
|
594
|
+
# * stream.graphics.g4dn.2xlarge
|
595
|
+
#
|
596
|
+
# * stream.graphics.g4dn.4xlarge
|
597
|
+
#
|
598
|
+
# * stream.graphics.g4dn.8xlarge
|
599
|
+
#
|
600
|
+
# * stream.graphics.g4dn.12xlarge
|
601
|
+
#
|
602
|
+
# * stream.graphics.g4dn.16xlarge
|
603
|
+
#
|
576
604
|
# * stream.graphics-pro.4xlarge
|
577
605
|
#
|
578
606
|
# * stream.graphics-pro.8xlarge
|
@@ -685,7 +713,7 @@ module Aws::AppStream
|
|
685
713
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
686
714
|
# role to use. The operation creates a new session with temporary
|
687
715
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
688
|
-
# creates the **
|
716
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
689
717
|
# instance.
|
690
718
|
#
|
691
719
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -696,6 +724,14 @@ module Aws::AppStream
|
|
696
724
|
#
|
697
725
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
698
726
|
#
|
727
|
+
# @option params [String] :stream_view
|
728
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
729
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
730
|
+
# applications opened by users display. When `DESKTOP` is specified, the
|
731
|
+
# standard desktop that is provided by the operating system displays.
|
732
|
+
#
|
733
|
+
# The default value is `APP`.
|
734
|
+
#
|
699
735
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
700
736
|
#
|
701
737
|
# * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -729,6 +765,7 @@ module Aws::AppStream
|
|
729
765
|
# },
|
730
766
|
# idle_disconnect_timeout_in_seconds: 1,
|
731
767
|
# iam_role_arn: "Arn",
|
768
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
732
769
|
# })
|
733
770
|
#
|
734
771
|
# @example Response structure
|
@@ -761,6 +798,7 @@ module Aws::AppStream
|
|
761
798
|
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
762
799
|
# resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
|
763
800
|
# resp.fleet.iam_role_arn #=> String
|
801
|
+
# resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
|
764
802
|
#
|
765
803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
766
804
|
#
|
@@ -814,6 +852,18 @@ module Aws::AppStream
|
|
814
852
|
#
|
815
853
|
# * stream.memory.8xlarge
|
816
854
|
#
|
855
|
+
# * stream.memory.z1d.large
|
856
|
+
#
|
857
|
+
# * stream.memory.z1d.xlarge
|
858
|
+
#
|
859
|
+
# * stream.memory.z1d.2xlarge
|
860
|
+
#
|
861
|
+
# * stream.memory.z1d.3xlarge
|
862
|
+
#
|
863
|
+
# * stream.memory.z1d.6xlarge
|
864
|
+
#
|
865
|
+
# * stream.memory.z1d.12xlarge
|
866
|
+
#
|
817
867
|
# * stream.graphics-design.large
|
818
868
|
#
|
819
869
|
# * stream.graphics-design.xlarge
|
@@ -824,6 +874,18 @@ module Aws::AppStream
|
|
824
874
|
#
|
825
875
|
# * stream.graphics-desktop.2xlarge
|
826
876
|
#
|
877
|
+
# * stream.graphics.g4dn.xlarge
|
878
|
+
#
|
879
|
+
# * stream.graphics.g4dn.2xlarge
|
880
|
+
#
|
881
|
+
# * stream.graphics.g4dn.4xlarge
|
882
|
+
#
|
883
|
+
# * stream.graphics.g4dn.8xlarge
|
884
|
+
#
|
885
|
+
# * stream.graphics.g4dn.12xlarge
|
886
|
+
#
|
887
|
+
# * stream.graphics.g4dn.16xlarge
|
888
|
+
#
|
827
889
|
# * stream.graphics-pro.4xlarge
|
828
890
|
#
|
829
891
|
# * stream.graphics-pro.8xlarge
|
@@ -846,7 +908,7 @@ module Aws::AppStream
|
|
846
908
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
847
909
|
# the role to use. The operation creates a new session with temporary
|
848
910
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
849
|
-
# creates the **
|
911
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
850
912
|
# instance.
|
851
913
|
#
|
852
914
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -1643,6 +1705,7 @@ module Aws::AppStream
|
|
1643
1705
|
# resp.fleets[0].domain_join_info.organizational_unit_distinguished_name #=> String
|
1644
1706
|
# resp.fleets[0].idle_disconnect_timeout_in_seconds #=> Integer
|
1645
1707
|
# resp.fleets[0].iam_role_arn #=> String
|
1708
|
+
# resp.fleets[0].stream_view #=> String, one of "APP", "DESKTOP"
|
1646
1709
|
# resp.next_token #=> String
|
1647
1710
|
#
|
1648
1711
|
#
|
@@ -1873,7 +1936,8 @@ module Aws::AppStream
|
|
1873
1936
|
# The name of the fleet. This value is case-sensitive.
|
1874
1937
|
#
|
1875
1938
|
# @option params [String] :user_id
|
1876
|
-
# The user identifier.
|
1939
|
+
# The user identifier (ID). If you specify a user ID, you must also
|
1940
|
+
# specify the authentication type.
|
1877
1941
|
#
|
1878
1942
|
# @option params [String] :next_token
|
1879
1943
|
# The pagination token to use to retrieve the next page of results for
|
@@ -2715,6 +2779,18 @@ module Aws::AppStream
|
|
2715
2779
|
#
|
2716
2780
|
# * stream.memory.8xlarge
|
2717
2781
|
#
|
2782
|
+
# * stream.memory.z1d.large
|
2783
|
+
#
|
2784
|
+
# * stream.memory.z1d.xlarge
|
2785
|
+
#
|
2786
|
+
# * stream.memory.z1d.2xlarge
|
2787
|
+
#
|
2788
|
+
# * stream.memory.z1d.3xlarge
|
2789
|
+
#
|
2790
|
+
# * stream.memory.z1d.6xlarge
|
2791
|
+
#
|
2792
|
+
# * stream.memory.z1d.12xlarge
|
2793
|
+
#
|
2718
2794
|
# * stream.graphics-design.large
|
2719
2795
|
#
|
2720
2796
|
# * stream.graphics-design.xlarge
|
@@ -2725,6 +2801,18 @@ module Aws::AppStream
|
|
2725
2801
|
#
|
2726
2802
|
# * stream.graphics-desktop.2xlarge
|
2727
2803
|
#
|
2804
|
+
# * stream.graphics.g4dn.xlarge
|
2805
|
+
#
|
2806
|
+
# * stream.graphics.g4dn.2xlarge
|
2807
|
+
#
|
2808
|
+
# * stream.graphics.g4dn.4xlarge
|
2809
|
+
#
|
2810
|
+
# * stream.graphics.g4dn.8xlarge
|
2811
|
+
#
|
2812
|
+
# * stream.graphics.g4dn.12xlarge
|
2813
|
+
#
|
2814
|
+
# * stream.graphics.g4dn.16xlarge
|
2815
|
+
#
|
2728
2816
|
# * stream.graphics-pro.4xlarge
|
2729
2817
|
#
|
2730
2818
|
# * stream.graphics-pro.8xlarge
|
@@ -2808,7 +2896,7 @@ module Aws::AppStream
|
|
2808
2896
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
2809
2897
|
# role to use. The operation creates a new session with temporary
|
2810
2898
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
2811
|
-
# creates the **
|
2899
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
2812
2900
|
# instance.
|
2813
2901
|
#
|
2814
2902
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -2819,6 +2907,14 @@ module Aws::AppStream
|
|
2819
2907
|
#
|
2820
2908
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
2821
2909
|
#
|
2910
|
+
# @option params [String] :stream_view
|
2911
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
2912
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
2913
|
+
# applications opened by users display. When `DESKTOP` is specified, the
|
2914
|
+
# standard desktop that is provided by the operating system displays.
|
2915
|
+
#
|
2916
|
+
# The default value is `APP`.
|
2917
|
+
#
|
2822
2918
|
# @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2823
2919
|
#
|
2824
2920
|
# * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -2850,6 +2946,7 @@ module Aws::AppStream
|
|
2850
2946
|
# idle_disconnect_timeout_in_seconds: 1,
|
2851
2947
|
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN
|
2852
2948
|
# iam_role_arn: "Arn",
|
2949
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
2853
2950
|
# })
|
2854
2951
|
#
|
2855
2952
|
# @example Response structure
|
@@ -2882,6 +2979,7 @@ module Aws::AppStream
|
|
2882
2979
|
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
2883
2980
|
# resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
|
2884
2981
|
# resp.fleet.iam_role_arn #=> String
|
2982
|
+
# resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
|
2885
2983
|
#
|
2886
2984
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
2887
2985
|
#
|
@@ -3066,7 +3164,7 @@ module Aws::AppStream
|
|
3066
3164
|
params: params,
|
3067
3165
|
config: config)
|
3068
3166
|
context[:gem_name] = 'aws-sdk-appstream'
|
3069
|
-
context[:gem_version] = '1.
|
3167
|
+
context[:gem_version] = '1.45.0'
|
3070
3168
|
Seahorse::Client::Request.new(handlers, context)
|
3071
3169
|
end
|
3072
3170
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -161,6 +163,7 @@ module Aws::AppStream
|
|
161
163
|
PlatformType = Shapes::StringShape.new(name: 'PlatformType')
|
162
164
|
RedirectURL = Shapes::StringShape.new(name: 'RedirectURL')
|
163
165
|
RegionName = Shapes::StringShape.new(name: 'RegionName')
|
166
|
+
RequestLimitExceededException = Shapes::StructureShape.new(name: 'RequestLimitExceededException')
|
164
167
|
ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
|
165
168
|
ResourceError = Shapes::StructureShape.new(name: 'ResourceError')
|
166
169
|
ResourceErrors = Shapes::ListShape.new(name: 'ResourceErrors')
|
@@ -195,6 +198,7 @@ module Aws::AppStream
|
|
195
198
|
StorageConnector = Shapes::StructureShape.new(name: 'StorageConnector')
|
196
199
|
StorageConnectorList = Shapes::ListShape.new(name: 'StorageConnectorList')
|
197
200
|
StorageConnectorType = Shapes::StringShape.new(name: 'StorageConnectorType')
|
201
|
+
StreamView = Shapes::StringShape.new(name: 'StreamView')
|
198
202
|
StreamingUrlUserId = Shapes::StringShape.new(name: 'StreamingUrlUserId')
|
199
203
|
String = Shapes::StringShape.new(name: 'String')
|
200
204
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
@@ -306,7 +310,7 @@ module Aws::AppStream
|
|
306
310
|
|
307
311
|
CreateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
308
312
|
CreateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, required: true, location_name: "OrganizationalUnitDistinguishedNames"))
|
309
|
-
CreateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials,
|
313
|
+
CreateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
|
310
314
|
CreateDirectoryConfigRequest.struct_class = Types::CreateDirectoryConfigRequest
|
311
315
|
|
312
316
|
CreateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
|
@@ -328,6 +332,7 @@ module Aws::AppStream
|
|
328
332
|
CreateFleetRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
329
333
|
CreateFleetRequest.add_member(:idle_disconnect_timeout_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "IdleDisconnectTimeoutInSeconds"))
|
330
334
|
CreateFleetRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
335
|
+
CreateFleetRequest.add_member(:stream_view, Shapes::ShapeRef.new(shape: StreamView, location_name: "StreamView"))
|
331
336
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
332
337
|
|
333
338
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -601,6 +606,7 @@ module Aws::AppStream
|
|
601
606
|
Fleet.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
602
607
|
Fleet.add_member(:idle_disconnect_timeout_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "IdleDisconnectTimeoutInSeconds"))
|
603
608
|
Fleet.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
609
|
+
Fleet.add_member(:stream_view, Shapes::ShapeRef.new(shape: StreamView, location_name: "StreamView"))
|
604
610
|
Fleet.struct_class = Types::Fleet
|
605
611
|
|
606
612
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
@@ -722,6 +728,9 @@ module Aws::AppStream
|
|
722
728
|
|
723
729
|
OrganizationalUnitDistinguishedNamesList.member = Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedName)
|
724
730
|
|
731
|
+
RequestLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
732
|
+
RequestLimitExceededException.struct_class = Types::RequestLimitExceededException
|
733
|
+
|
725
734
|
ResourceAlreadyExistsException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "Message"))
|
726
735
|
ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
|
727
736
|
|
@@ -867,6 +876,7 @@ module Aws::AppStream
|
|
867
876
|
UpdateFleetRequest.add_member(:idle_disconnect_timeout_in_seconds, Shapes::ShapeRef.new(shape: Integer, location_name: "IdleDisconnectTimeoutInSeconds"))
|
868
877
|
UpdateFleetRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: FleetAttributes, location_name: "AttributesToDelete"))
|
869
878
|
UpdateFleetRequest.add_member(:iam_role_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "IamRoleArn"))
|
879
|
+
UpdateFleetRequest.add_member(:stream_view, Shapes::ShapeRef.new(shape: StreamView, location_name: "StreamView"))
|
870
880
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
871
881
|
|
872
882
|
UpdateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -981,6 +991,7 @@ module Aws::AppStream
|
|
981
991
|
o.input = Shapes::ShapeRef.new(shape: BatchAssociateUserStackRequest)
|
982
992
|
o.output = Shapes::ShapeRef.new(shape: BatchAssociateUserStackResult)
|
983
993
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
994
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
984
995
|
end)
|
985
996
|
|
986
997
|
api.add_operation(:batch_disassociate_user_stack, Seahorse::Model::Operation.new.tap do |o|
|
@@ -989,6 +1000,8 @@ module Aws::AppStream
|
|
989
1000
|
o.http_request_uri = "/"
|
990
1001
|
o.input = Shapes::ShapeRef.new(shape: BatchDisassociateUserStackRequest)
|
991
1002
|
o.output = Shapes::ShapeRef.new(shape: BatchDisassociateUserStackResult)
|
1003
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1004
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
992
1005
|
end)
|
993
1006
|
|
994
1007
|
api.add_operation(:copy_image, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1011,9 +1024,12 @@ module Aws::AppStream
|
|
1011
1024
|
o.http_request_uri = "/"
|
1012
1025
|
o.input = Shapes::ShapeRef.new(shape: CreateDirectoryConfigRequest)
|
1013
1026
|
o.output = Shapes::ShapeRef.new(shape: CreateDirectoryConfigResult)
|
1027
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1014
1028
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1015
1029
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1016
1030
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1031
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1032
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1017
1033
|
end)
|
1018
1034
|
|
1019
1035
|
api.add_operation(:create_fleet, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1026,6 +1042,7 @@ module Aws::AppStream
|
|
1026
1042
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
1027
1043
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1028
1044
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1045
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1029
1046
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1030
1047
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1031
1048
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
@@ -1041,6 +1058,7 @@ module Aws::AppStream
|
|
1041
1058
|
o.input = Shapes::ShapeRef.new(shape: CreateImageBuilderRequest)
|
1042
1059
|
o.output = Shapes::ShapeRef.new(shape: CreateImageBuilderResult)
|
1043
1060
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1061
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1044
1062
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1045
1063
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1046
1064
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
@@ -1290,6 +1308,7 @@ module Aws::AppStream
|
|
1290
1308
|
o.input = Shapes::ShapeRef.new(shape: DescribeUserStackAssociationsRequest)
|
1291
1309
|
o.output = Shapes::ShapeRef.new(shape: DescribeUserStackAssociationsResult)
|
1292
1310
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1311
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1293
1312
|
end)
|
1294
1313
|
|
1295
1314
|
api.add_operation(:describe_users, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1320,6 +1339,7 @@ module Aws::AppStream
|
|
1320
1339
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1321
1340
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1322
1341
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1342
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1323
1343
|
end)
|
1324
1344
|
|
1325
1345
|
api.add_operation(:enable_user, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1374,6 +1394,7 @@ module Aws::AppStream
|
|
1374
1394
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1375
1395
|
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1376
1396
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1397
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1377
1398
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1378
1399
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1379
1400
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotAvailableException)
|
@@ -1443,6 +1464,8 @@ module Aws::AppStream
|
|
1443
1464
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1444
1465
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1445
1466
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
1467
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
1468
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1446
1469
|
end)
|
1447
1470
|
|
1448
1471
|
api.add_operation(:update_fleet, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1453,6 +1476,7 @@ module Aws::AppStream
|
|
1453
1476
|
o.output = Shapes::ShapeRef.new(shape: UpdateFleetResult)
|
1454
1477
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1455
1478
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1479
|
+
o.errors << Shapes::ShapeRef.new(shape: RequestLimitExceededException)
|
1456
1480
|
o.errors << Shapes::ShapeRef.new(shape: InvalidAccountStatusException)
|
1457
1481
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
1458
1482
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|