aws-sdk-appstream 1.41.0 → 1.46.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 +4 -2
- data/lib/aws-sdk-appstream/client.rb +130 -17
- 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: 95c8235dc4dc04e5811b264a4031defb97c0c8dacada39d32630ce50b3a0083a
|
4
|
+
data.tar.gz: 7dd9069c737f7069dbf94fb0fc32f00b8956a3300c885b62ccb1a997b9cdaec5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a68d143d4c954c4da9abcc4df3ed49e3a62e1311b6603661e18286451759f904c88faf08a0288b73a6fcb307868c2d1d1f31218f4bb00ce010470844b1cdca0c
|
7
|
+
data.tar.gz: ce19615a0708e3911f79c2701c339c28b7144de04f7bf19d4734ff0aabf05bf33584e9a35d62f4330ee69e2d8a4e3bf1946d7c1ab61f660a6910c38e72a0f5b3
|
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:
|
@@ -43,9 +45,9 @@ require_relative 'aws-sdk-appstream/customizations'
|
|
43
45
|
#
|
44
46
|
# See {Errors} for more information.
|
45
47
|
#
|
46
|
-
#
|
48
|
+
# @!group service
|
47
49
|
module Aws::AppStream
|
48
50
|
|
49
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.46.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
|
|
@@ -81,13 +85,28 @@ module Aws::AppStream
|
|
81
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
82
86
|
# credentials.
|
83
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
84
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
85
103
|
# from an EC2 IMDS on an EC2 instance.
|
86
104
|
#
|
87
|
-
# * `Aws::
|
88
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
89
107
|
#
|
90
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
91
110
|
#
|
92
111
|
# When `:credentials` are not configured directly, the following
|
93
112
|
# locations will be searched for credentials:
|
@@ -97,10 +116,10 @@ module Aws::AppStream
|
|
97
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
98
117
|
# * `~/.aws/credentials`
|
99
118
|
# * `~/.aws/config`
|
100
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
101
|
-
# very aggressive. Construct and pass an instance of
|
102
|
-
# `Aws::InstanceProfileCredentails`
|
103
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
104
123
|
#
|
105
124
|
# @option options [required, String] :region
|
106
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -161,7 +180,7 @@ module Aws::AppStream
|
|
161
180
|
# @option options [String] :endpoint
|
162
181
|
# The client endpoint is normally constructed from the `:region`
|
163
182
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
183
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
184
|
#
|
166
185
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
186
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -375,7 +394,7 @@ module Aws::AppStream
|
|
375
394
|
# resp.errors[0].user_stack_association.user_name #=> String
|
376
395
|
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
377
396
|
# 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"
|
397
|
+
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
379
398
|
# resp.errors[0].error_message #=> String
|
380
399
|
#
|
381
400
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/BatchAssociateUserStack AWS API Documentation
|
@@ -416,7 +435,7 @@ module Aws::AppStream
|
|
416
435
|
# resp.errors[0].user_stack_association.user_name #=> String
|
417
436
|
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
418
437
|
# 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"
|
438
|
+
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
420
439
|
# resp.errors[0].error_message #=> String
|
421
440
|
#
|
422
441
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/BatchDisassociateUserStack AWS API Documentation
|
@@ -486,7 +505,7 @@ module Aws::AppStream
|
|
486
505
|
# The distinguished names of the organizational units for computer
|
487
506
|
# accounts.
|
488
507
|
#
|
489
|
-
# @option params [
|
508
|
+
# @option params [Types::ServiceAccountCredentials] :service_account_credentials
|
490
509
|
# The credentials for the service account used by the fleet or image
|
491
510
|
# builder to connect to the directory.
|
492
511
|
#
|
@@ -499,7 +518,7 @@ module Aws::AppStream
|
|
499
518
|
# resp = client.create_directory_config({
|
500
519
|
# directory_name: "DirectoryName", # required
|
501
520
|
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"], # required
|
502
|
-
# service_account_credentials: {
|
521
|
+
# service_account_credentials: {
|
503
522
|
# account_name: "AccountName", # required
|
504
523
|
# account_password: "AccountPassword", # required
|
505
524
|
# },
|
@@ -563,6 +582,18 @@ module Aws::AppStream
|
|
563
582
|
#
|
564
583
|
# * stream.memory.8xlarge
|
565
584
|
#
|
585
|
+
# * stream.memory.z1d.large
|
586
|
+
#
|
587
|
+
# * stream.memory.z1d.xlarge
|
588
|
+
#
|
589
|
+
# * stream.memory.z1d.2xlarge
|
590
|
+
#
|
591
|
+
# * stream.memory.z1d.3xlarge
|
592
|
+
#
|
593
|
+
# * stream.memory.z1d.6xlarge
|
594
|
+
#
|
595
|
+
# * stream.memory.z1d.12xlarge
|
596
|
+
#
|
566
597
|
# * stream.graphics-design.large
|
567
598
|
#
|
568
599
|
# * stream.graphics-design.xlarge
|
@@ -573,6 +604,18 @@ module Aws::AppStream
|
|
573
604
|
#
|
574
605
|
# * stream.graphics-desktop.2xlarge
|
575
606
|
#
|
607
|
+
# * stream.graphics.g4dn.xlarge
|
608
|
+
#
|
609
|
+
# * stream.graphics.g4dn.2xlarge
|
610
|
+
#
|
611
|
+
# * stream.graphics.g4dn.4xlarge
|
612
|
+
#
|
613
|
+
# * stream.graphics.g4dn.8xlarge
|
614
|
+
#
|
615
|
+
# * stream.graphics.g4dn.12xlarge
|
616
|
+
#
|
617
|
+
# * stream.graphics.g4dn.16xlarge
|
618
|
+
#
|
576
619
|
# * stream.graphics-pro.4xlarge
|
577
620
|
#
|
578
621
|
# * stream.graphics-pro.8xlarge
|
@@ -685,7 +728,7 @@ module Aws::AppStream
|
|
685
728
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
686
729
|
# role to use. The operation creates a new session with temporary
|
687
730
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
688
|
-
# creates the **
|
731
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
689
732
|
# instance.
|
690
733
|
#
|
691
734
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -696,6 +739,14 @@ module Aws::AppStream
|
|
696
739
|
#
|
697
740
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
698
741
|
#
|
742
|
+
# @option params [String] :stream_view
|
743
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
744
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
745
|
+
# applications opened by users display. When `DESKTOP` is specified, the
|
746
|
+
# standard desktop that is provided by the operating system displays.
|
747
|
+
#
|
748
|
+
# The default value is `APP`.
|
749
|
+
#
|
699
750
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
700
751
|
#
|
701
752
|
# * {Types::CreateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -729,6 +780,7 @@ module Aws::AppStream
|
|
729
780
|
# },
|
730
781
|
# idle_disconnect_timeout_in_seconds: 1,
|
731
782
|
# iam_role_arn: "Arn",
|
783
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
732
784
|
# })
|
733
785
|
#
|
734
786
|
# @example Response structure
|
@@ -761,6 +813,7 @@ module Aws::AppStream
|
|
761
813
|
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
762
814
|
# resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
|
763
815
|
# resp.fleet.iam_role_arn #=> String
|
816
|
+
# resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
|
764
817
|
#
|
765
818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
766
819
|
#
|
@@ -814,6 +867,18 @@ module Aws::AppStream
|
|
814
867
|
#
|
815
868
|
# * stream.memory.8xlarge
|
816
869
|
#
|
870
|
+
# * stream.memory.z1d.large
|
871
|
+
#
|
872
|
+
# * stream.memory.z1d.xlarge
|
873
|
+
#
|
874
|
+
# * stream.memory.z1d.2xlarge
|
875
|
+
#
|
876
|
+
# * stream.memory.z1d.3xlarge
|
877
|
+
#
|
878
|
+
# * stream.memory.z1d.6xlarge
|
879
|
+
#
|
880
|
+
# * stream.memory.z1d.12xlarge
|
881
|
+
#
|
817
882
|
# * stream.graphics-design.large
|
818
883
|
#
|
819
884
|
# * stream.graphics-design.xlarge
|
@@ -824,6 +889,18 @@ module Aws::AppStream
|
|
824
889
|
#
|
825
890
|
# * stream.graphics-desktop.2xlarge
|
826
891
|
#
|
892
|
+
# * stream.graphics.g4dn.xlarge
|
893
|
+
#
|
894
|
+
# * stream.graphics.g4dn.2xlarge
|
895
|
+
#
|
896
|
+
# * stream.graphics.g4dn.4xlarge
|
897
|
+
#
|
898
|
+
# * stream.graphics.g4dn.8xlarge
|
899
|
+
#
|
900
|
+
# * stream.graphics.g4dn.12xlarge
|
901
|
+
#
|
902
|
+
# * stream.graphics.g4dn.16xlarge
|
903
|
+
#
|
827
904
|
# * stream.graphics-pro.4xlarge
|
828
905
|
#
|
829
906
|
# * stream.graphics-pro.8xlarge
|
@@ -846,7 +923,7 @@ module Aws::AppStream
|
|
846
923
|
# Token Service (STS) `AssumeRole` API operation and passes the ARN of
|
847
924
|
# the role to use. The operation creates a new session with temporary
|
848
925
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
849
|
-
# creates the **
|
926
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
850
927
|
# instance.
|
851
928
|
#
|
852
929
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -1643,6 +1720,7 @@ module Aws::AppStream
|
|
1643
1720
|
# resp.fleets[0].domain_join_info.organizational_unit_distinguished_name #=> String
|
1644
1721
|
# resp.fleets[0].idle_disconnect_timeout_in_seconds #=> Integer
|
1645
1722
|
# resp.fleets[0].iam_role_arn #=> String
|
1723
|
+
# resp.fleets[0].stream_view #=> String, one of "APP", "DESKTOP"
|
1646
1724
|
# resp.next_token #=> String
|
1647
1725
|
#
|
1648
1726
|
#
|
@@ -1873,7 +1951,8 @@ module Aws::AppStream
|
|
1873
1951
|
# The name of the fleet. This value is case-sensitive.
|
1874
1952
|
#
|
1875
1953
|
# @option params [String] :user_id
|
1876
|
-
# The user identifier.
|
1954
|
+
# The user identifier (ID). If you specify a user ID, you must also
|
1955
|
+
# specify the authentication type.
|
1877
1956
|
#
|
1878
1957
|
# @option params [String] :next_token
|
1879
1958
|
# The pagination token to use to retrieve the next page of results for
|
@@ -2715,6 +2794,18 @@ module Aws::AppStream
|
|
2715
2794
|
#
|
2716
2795
|
# * stream.memory.8xlarge
|
2717
2796
|
#
|
2797
|
+
# * stream.memory.z1d.large
|
2798
|
+
#
|
2799
|
+
# * stream.memory.z1d.xlarge
|
2800
|
+
#
|
2801
|
+
# * stream.memory.z1d.2xlarge
|
2802
|
+
#
|
2803
|
+
# * stream.memory.z1d.3xlarge
|
2804
|
+
#
|
2805
|
+
# * stream.memory.z1d.6xlarge
|
2806
|
+
#
|
2807
|
+
# * stream.memory.z1d.12xlarge
|
2808
|
+
#
|
2718
2809
|
# * stream.graphics-design.large
|
2719
2810
|
#
|
2720
2811
|
# * stream.graphics-design.xlarge
|
@@ -2725,6 +2816,18 @@ module Aws::AppStream
|
|
2725
2816
|
#
|
2726
2817
|
# * stream.graphics-desktop.2xlarge
|
2727
2818
|
#
|
2819
|
+
# * stream.graphics.g4dn.xlarge
|
2820
|
+
#
|
2821
|
+
# * stream.graphics.g4dn.2xlarge
|
2822
|
+
#
|
2823
|
+
# * stream.graphics.g4dn.4xlarge
|
2824
|
+
#
|
2825
|
+
# * stream.graphics.g4dn.8xlarge
|
2826
|
+
#
|
2827
|
+
# * stream.graphics.g4dn.12xlarge
|
2828
|
+
#
|
2829
|
+
# * stream.graphics.g4dn.16xlarge
|
2830
|
+
#
|
2728
2831
|
# * stream.graphics-pro.4xlarge
|
2729
2832
|
#
|
2730
2833
|
# * stream.graphics-pro.8xlarge
|
@@ -2808,7 +2911,7 @@ module Aws::AppStream
|
|
2808
2911
|
# Service (STS) `AssumeRole` API operation and passes the ARN of the
|
2809
2912
|
# role to use. The operation creates a new session with temporary
|
2810
2913
|
# credentials. AppStream 2.0 retrieves the temporary credentials and
|
2811
|
-
# creates the **
|
2914
|
+
# creates the **appstream\_machine\_role** credential profile on the
|
2812
2915
|
# instance.
|
2813
2916
|
#
|
2814
2917
|
# For more information, see [Using an IAM Role to Grant Permissions to
|
@@ -2819,6 +2922,14 @@ module Aws::AppStream
|
|
2819
2922
|
#
|
2820
2923
|
# [1]: https://docs.aws.amazon.com/appstream2/latest/developerguide/using-iam-roles-to-grant-permissions-to-applications-scripts-streaming-instances.html
|
2821
2924
|
#
|
2925
|
+
# @option params [String] :stream_view
|
2926
|
+
# The AppStream 2.0 view that is displayed to your users when they
|
2927
|
+
# stream from the fleet. When `APP` is specified, only the windows of
|
2928
|
+
# applications opened by users display. When `DESKTOP` is specified, the
|
2929
|
+
# standard desktop that is provided by the operating system displays.
|
2930
|
+
#
|
2931
|
+
# The default value is `APP`.
|
2932
|
+
#
|
2822
2933
|
# @return [Types::UpdateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2823
2934
|
#
|
2824
2935
|
# * {Types::UpdateFleetResult#fleet #fleet} => Types::Fleet
|
@@ -2850,6 +2961,7 @@ module Aws::AppStream
|
|
2850
2961
|
# idle_disconnect_timeout_in_seconds: 1,
|
2851
2962
|
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO, IAM_ROLE_ARN
|
2852
2963
|
# iam_role_arn: "Arn",
|
2964
|
+
# stream_view: "APP", # accepts APP, DESKTOP
|
2853
2965
|
# })
|
2854
2966
|
#
|
2855
2967
|
# @example Response structure
|
@@ -2882,6 +2994,7 @@ module Aws::AppStream
|
|
2882
2994
|
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
2883
2995
|
# resp.fleet.idle_disconnect_timeout_in_seconds #=> Integer
|
2884
2996
|
# resp.fleet.iam_role_arn #=> String
|
2997
|
+
# resp.fleet.stream_view #=> String, one of "APP", "DESKTOP"
|
2885
2998
|
#
|
2886
2999
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
2887
3000
|
#
|
@@ -3066,7 +3179,7 @@ module Aws::AppStream
|
|
3066
3179
|
params: params,
|
3067
3180
|
config: config)
|
3068
3181
|
context[:gem_name] = 'aws-sdk-appstream'
|
3069
|
-
context[:gem_version] = '1.
|
3182
|
+
context[:gem_version] = '1.46.0'
|
3070
3183
|
Seahorse::Client::Request.new(handlers, context)
|
3071
3184
|
end
|
3072
3185
|
|
@@ -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)
|