aws-sdk-appstream 1.66.0 → 1.68.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appstream/client.rb +94 -19
- data/lib/aws-sdk-appstream/client_api.rb +9 -0
- data/lib/aws-sdk-appstream/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-appstream/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-appstream/endpoints.rb +925 -0
- data/lib/aws-sdk-appstream/plugins/endpoints.rb +198 -0
- data/lib/aws-sdk-appstream/types.rb +119 -13
- data/lib/aws-sdk-appstream.rb +5 -1
- metadata +8 -4
@@ -0,0 +1,198 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
|
11
|
+
module Aws::AppStream
|
12
|
+
module Plugins
|
13
|
+
class Endpoints < Seahorse::Client::Plugin
|
14
|
+
option(
|
15
|
+
:endpoint_provider,
|
16
|
+
doc_type: 'Aws::AppStream::EndpointProvider',
|
17
|
+
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
|
+
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
|
+
'where `parameters` is a Struct similar to '\
|
20
|
+
'`Aws::AppStream::EndpointParameters`'
|
21
|
+
) do |cfg|
|
22
|
+
Aws::AppStream::EndpointProvider.new
|
23
|
+
end
|
24
|
+
|
25
|
+
# @api private
|
26
|
+
class Handler < Seahorse::Client::Handler
|
27
|
+
def call(context)
|
28
|
+
# If endpoint was discovered, do not resolve or apply the endpoint.
|
29
|
+
unless context[:discovered_endpoint]
|
30
|
+
params = parameters_for_operation(context)
|
31
|
+
endpoint = context.config.endpoint_provider.resolve_endpoint(params)
|
32
|
+
|
33
|
+
context.http_request.endpoint = endpoint.url
|
34
|
+
apply_endpoint_headers(context, endpoint.headers)
|
35
|
+
end
|
36
|
+
|
37
|
+
context[:endpoint_params] = params
|
38
|
+
context[:auth_scheme] =
|
39
|
+
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
40
|
+
|
41
|
+
@handler.call(context)
|
42
|
+
end
|
43
|
+
|
44
|
+
private
|
45
|
+
|
46
|
+
def apply_endpoint_headers(context, headers)
|
47
|
+
headers.each do |key, values|
|
48
|
+
value = values
|
49
|
+
.compact
|
50
|
+
.map { |s| Seahorse::Util.escape_header_list_string(s.to_s) }
|
51
|
+
.join(',')
|
52
|
+
|
53
|
+
context.http_request.headers[key] = value
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
def parameters_for_operation(context)
|
58
|
+
case context.operation_name
|
59
|
+
when :associate_application_fleet
|
60
|
+
Aws::AppStream::Endpoints::AssociateApplicationFleet.build(context)
|
61
|
+
when :associate_application_to_entitlement
|
62
|
+
Aws::AppStream::Endpoints::AssociateApplicationToEntitlement.build(context)
|
63
|
+
when :associate_fleet
|
64
|
+
Aws::AppStream::Endpoints::AssociateFleet.build(context)
|
65
|
+
when :batch_associate_user_stack
|
66
|
+
Aws::AppStream::Endpoints::BatchAssociateUserStack.build(context)
|
67
|
+
when :batch_disassociate_user_stack
|
68
|
+
Aws::AppStream::Endpoints::BatchDisassociateUserStack.build(context)
|
69
|
+
when :copy_image
|
70
|
+
Aws::AppStream::Endpoints::CopyImage.build(context)
|
71
|
+
when :create_app_block
|
72
|
+
Aws::AppStream::Endpoints::CreateAppBlock.build(context)
|
73
|
+
when :create_application
|
74
|
+
Aws::AppStream::Endpoints::CreateApplication.build(context)
|
75
|
+
when :create_directory_config
|
76
|
+
Aws::AppStream::Endpoints::CreateDirectoryConfig.build(context)
|
77
|
+
when :create_entitlement
|
78
|
+
Aws::AppStream::Endpoints::CreateEntitlement.build(context)
|
79
|
+
when :create_fleet
|
80
|
+
Aws::AppStream::Endpoints::CreateFleet.build(context)
|
81
|
+
when :create_image_builder
|
82
|
+
Aws::AppStream::Endpoints::CreateImageBuilder.build(context)
|
83
|
+
when :create_image_builder_streaming_url
|
84
|
+
Aws::AppStream::Endpoints::CreateImageBuilderStreamingURL.build(context)
|
85
|
+
when :create_stack
|
86
|
+
Aws::AppStream::Endpoints::CreateStack.build(context)
|
87
|
+
when :create_streaming_url
|
88
|
+
Aws::AppStream::Endpoints::CreateStreamingURL.build(context)
|
89
|
+
when :create_updated_image
|
90
|
+
Aws::AppStream::Endpoints::CreateUpdatedImage.build(context)
|
91
|
+
when :create_usage_report_subscription
|
92
|
+
Aws::AppStream::Endpoints::CreateUsageReportSubscription.build(context)
|
93
|
+
when :create_user
|
94
|
+
Aws::AppStream::Endpoints::CreateUser.build(context)
|
95
|
+
when :delete_app_block
|
96
|
+
Aws::AppStream::Endpoints::DeleteAppBlock.build(context)
|
97
|
+
when :delete_application
|
98
|
+
Aws::AppStream::Endpoints::DeleteApplication.build(context)
|
99
|
+
when :delete_directory_config
|
100
|
+
Aws::AppStream::Endpoints::DeleteDirectoryConfig.build(context)
|
101
|
+
when :delete_entitlement
|
102
|
+
Aws::AppStream::Endpoints::DeleteEntitlement.build(context)
|
103
|
+
when :delete_fleet
|
104
|
+
Aws::AppStream::Endpoints::DeleteFleet.build(context)
|
105
|
+
when :delete_image
|
106
|
+
Aws::AppStream::Endpoints::DeleteImage.build(context)
|
107
|
+
when :delete_image_builder
|
108
|
+
Aws::AppStream::Endpoints::DeleteImageBuilder.build(context)
|
109
|
+
when :delete_image_permissions
|
110
|
+
Aws::AppStream::Endpoints::DeleteImagePermissions.build(context)
|
111
|
+
when :delete_stack
|
112
|
+
Aws::AppStream::Endpoints::DeleteStack.build(context)
|
113
|
+
when :delete_usage_report_subscription
|
114
|
+
Aws::AppStream::Endpoints::DeleteUsageReportSubscription.build(context)
|
115
|
+
when :delete_user
|
116
|
+
Aws::AppStream::Endpoints::DeleteUser.build(context)
|
117
|
+
when :describe_app_blocks
|
118
|
+
Aws::AppStream::Endpoints::DescribeAppBlocks.build(context)
|
119
|
+
when :describe_application_fleet_associations
|
120
|
+
Aws::AppStream::Endpoints::DescribeApplicationFleetAssociations.build(context)
|
121
|
+
when :describe_applications
|
122
|
+
Aws::AppStream::Endpoints::DescribeApplications.build(context)
|
123
|
+
when :describe_directory_configs
|
124
|
+
Aws::AppStream::Endpoints::DescribeDirectoryConfigs.build(context)
|
125
|
+
when :describe_entitlements
|
126
|
+
Aws::AppStream::Endpoints::DescribeEntitlements.build(context)
|
127
|
+
when :describe_fleets
|
128
|
+
Aws::AppStream::Endpoints::DescribeFleets.build(context)
|
129
|
+
when :describe_image_builders
|
130
|
+
Aws::AppStream::Endpoints::DescribeImageBuilders.build(context)
|
131
|
+
when :describe_image_permissions
|
132
|
+
Aws::AppStream::Endpoints::DescribeImagePermissions.build(context)
|
133
|
+
when :describe_images
|
134
|
+
Aws::AppStream::Endpoints::DescribeImages.build(context)
|
135
|
+
when :describe_sessions
|
136
|
+
Aws::AppStream::Endpoints::DescribeSessions.build(context)
|
137
|
+
when :describe_stacks
|
138
|
+
Aws::AppStream::Endpoints::DescribeStacks.build(context)
|
139
|
+
when :describe_usage_report_subscriptions
|
140
|
+
Aws::AppStream::Endpoints::DescribeUsageReportSubscriptions.build(context)
|
141
|
+
when :describe_user_stack_associations
|
142
|
+
Aws::AppStream::Endpoints::DescribeUserStackAssociations.build(context)
|
143
|
+
when :describe_users
|
144
|
+
Aws::AppStream::Endpoints::DescribeUsers.build(context)
|
145
|
+
when :disable_user
|
146
|
+
Aws::AppStream::Endpoints::DisableUser.build(context)
|
147
|
+
when :disassociate_application_fleet
|
148
|
+
Aws::AppStream::Endpoints::DisassociateApplicationFleet.build(context)
|
149
|
+
when :disassociate_application_from_entitlement
|
150
|
+
Aws::AppStream::Endpoints::DisassociateApplicationFromEntitlement.build(context)
|
151
|
+
when :disassociate_fleet
|
152
|
+
Aws::AppStream::Endpoints::DisassociateFleet.build(context)
|
153
|
+
when :enable_user
|
154
|
+
Aws::AppStream::Endpoints::EnableUser.build(context)
|
155
|
+
when :expire_session
|
156
|
+
Aws::AppStream::Endpoints::ExpireSession.build(context)
|
157
|
+
when :list_associated_fleets
|
158
|
+
Aws::AppStream::Endpoints::ListAssociatedFleets.build(context)
|
159
|
+
when :list_associated_stacks
|
160
|
+
Aws::AppStream::Endpoints::ListAssociatedStacks.build(context)
|
161
|
+
when :list_entitled_applications
|
162
|
+
Aws::AppStream::Endpoints::ListEntitledApplications.build(context)
|
163
|
+
when :list_tags_for_resource
|
164
|
+
Aws::AppStream::Endpoints::ListTagsForResource.build(context)
|
165
|
+
when :start_fleet
|
166
|
+
Aws::AppStream::Endpoints::StartFleet.build(context)
|
167
|
+
when :start_image_builder
|
168
|
+
Aws::AppStream::Endpoints::StartImageBuilder.build(context)
|
169
|
+
when :stop_fleet
|
170
|
+
Aws::AppStream::Endpoints::StopFleet.build(context)
|
171
|
+
when :stop_image_builder
|
172
|
+
Aws::AppStream::Endpoints::StopImageBuilder.build(context)
|
173
|
+
when :tag_resource
|
174
|
+
Aws::AppStream::Endpoints::TagResource.build(context)
|
175
|
+
when :untag_resource
|
176
|
+
Aws::AppStream::Endpoints::UntagResource.build(context)
|
177
|
+
when :update_application
|
178
|
+
Aws::AppStream::Endpoints::UpdateApplication.build(context)
|
179
|
+
when :update_directory_config
|
180
|
+
Aws::AppStream::Endpoints::UpdateDirectoryConfig.build(context)
|
181
|
+
when :update_entitlement
|
182
|
+
Aws::AppStream::Endpoints::UpdateEntitlement.build(context)
|
183
|
+
when :update_fleet
|
184
|
+
Aws::AppStream::Endpoints::UpdateFleet.build(context)
|
185
|
+
when :update_image_permissions
|
186
|
+
Aws::AppStream::Endpoints::UpdateImagePermissions.build(context)
|
187
|
+
when :update_stack
|
188
|
+
Aws::AppStream::Endpoints::UpdateStack.build(context)
|
189
|
+
end
|
190
|
+
end
|
191
|
+
end
|
192
|
+
|
193
|
+
def add_handlers(handlers, _config)
|
194
|
+
handlers.add(Handler, step: :build, priority: 75)
|
195
|
+
end
|
196
|
+
end
|
197
|
+
end
|
198
|
+
end
|
@@ -372,7 +372,7 @@ module Aws::AppStream
|
|
372
372
|
# {
|
373
373
|
# stack_name: "String", # required
|
374
374
|
# user_name: "Username", # required
|
375
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
375
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
376
376
|
# send_email_notification: false,
|
377
377
|
# },
|
378
378
|
# ],
|
@@ -410,7 +410,7 @@ module Aws::AppStream
|
|
410
410
|
# {
|
411
411
|
# stack_name: "String", # required
|
412
412
|
# user_name: "Username", # required
|
413
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
413
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
414
414
|
# send_email_notification: false,
|
415
415
|
# },
|
416
416
|
# ],
|
@@ -440,6 +440,42 @@ module Aws::AppStream
|
|
440
440
|
include Aws::Structure
|
441
441
|
end
|
442
442
|
|
443
|
+
# The certificate-based authentication properties used to authenticate
|
444
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
445
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
446
|
+
# when certificate-based authentication is **Enabled** . Fallback allows
|
447
|
+
# users to log in using their AD domain password if certificate-based
|
448
|
+
# authentication is unsuccessful, or to unlock a desktop lock screen.
|
449
|
+
# **Enabled\_no\_directory\_login\_fallback** enables certificate-based
|
450
|
+
# authentication, but does not allow users to log in using their AD
|
451
|
+
# domain password. Users will be disconnected to re-authenticate using
|
452
|
+
# certificates.
|
453
|
+
#
|
454
|
+
# @note When making an API call, you may pass CertificateBasedAuthProperties
|
455
|
+
# data as a hash:
|
456
|
+
#
|
457
|
+
# {
|
458
|
+
# status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
|
459
|
+
# certificate_authority_arn: "Arn",
|
460
|
+
# }
|
461
|
+
#
|
462
|
+
# @!attribute [rw] status
|
463
|
+
# The status of the certificate-based authentication properties.
|
464
|
+
# @return [String]
|
465
|
+
#
|
466
|
+
# @!attribute [rw] certificate_authority_arn
|
467
|
+
# The ARN of the AWS Certificate Manager Private CA resource.
|
468
|
+
# @return [String]
|
469
|
+
#
|
470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CertificateBasedAuthProperties AWS API Documentation
|
471
|
+
#
|
472
|
+
class CertificateBasedAuthProperties < Struct.new(
|
473
|
+
:status,
|
474
|
+
:certificate_authority_arn)
|
475
|
+
SENSITIVE = []
|
476
|
+
include Aws::Structure
|
477
|
+
end
|
478
|
+
|
443
479
|
# Describes the capacity for a fleet.
|
444
480
|
#
|
445
481
|
# @note When making an API call, you may pass ComputeCapacity
|
@@ -744,6 +780,10 @@ module Aws::AppStream
|
|
744
780
|
# account_name: "AccountName", # required
|
745
781
|
# account_password: "AccountPassword", # required
|
746
782
|
# },
|
783
|
+
# certificate_based_auth_properties: {
|
784
|
+
# status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
|
785
|
+
# certificate_authority_arn: "Arn",
|
786
|
+
# },
|
747
787
|
# }
|
748
788
|
#
|
749
789
|
# @!attribute [rw] directory_name
|
@@ -761,12 +801,26 @@ module Aws::AppStream
|
|
761
801
|
# builder to connect to the directory.
|
762
802
|
# @return [Types::ServiceAccountCredentials]
|
763
803
|
#
|
804
|
+
# @!attribute [rw] certificate_based_auth_properties
|
805
|
+
# The certificate-based authentication properties used to authenticate
|
806
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
807
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
808
|
+
# when certificate-based authentication is **Enabled** . Fallback
|
809
|
+
# allows users to log in using their AD domain password if
|
810
|
+
# certificate-based authentication is unsuccessful, or to unlock a
|
811
|
+
# desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
|
812
|
+
# enables certificate-based authentication, but does not allow users
|
813
|
+
# to log in using their AD domain password. Users will be disconnected
|
814
|
+
# to re-authenticate using certificates.
|
815
|
+
# @return [Types::CertificateBasedAuthProperties]
|
816
|
+
#
|
764
817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfigRequest AWS API Documentation
|
765
818
|
#
|
766
819
|
class CreateDirectoryConfigRequest < Struct.new(
|
767
820
|
:directory_name,
|
768
821
|
:organizational_unit_distinguished_names,
|
769
|
-
:service_account_credentials
|
822
|
+
:service_account_credentials,
|
823
|
+
:certificate_based_auth_properties)
|
770
824
|
SENSITIVE = []
|
771
825
|
include Aws::Structure
|
772
826
|
end
|
@@ -905,6 +959,10 @@ module Aws::AppStream
|
|
905
959
|
#
|
906
960
|
# * stream.standard.large
|
907
961
|
#
|
962
|
+
# * stream.standard.xlarge
|
963
|
+
#
|
964
|
+
# * stream.standard.2xlarge
|
965
|
+
#
|
908
966
|
# * stream.compute.large
|
909
967
|
#
|
910
968
|
# * stream.compute.xlarge
|
@@ -970,6 +1028,12 @@ module Aws::AppStream
|
|
970
1028
|
# * stream.standard.small
|
971
1029
|
#
|
972
1030
|
# * stream.standard.medium
|
1031
|
+
#
|
1032
|
+
# * stream.standard.large
|
1033
|
+
#
|
1034
|
+
# * stream.standard.xlarge
|
1035
|
+
#
|
1036
|
+
# * stream.standard.2xlarge
|
973
1037
|
# @return [String]
|
974
1038
|
#
|
975
1039
|
# @!attribute [rw] fleet_type
|
@@ -1798,7 +1862,7 @@ module Aws::AppStream
|
|
1798
1862
|
# message_action: "SUPPRESS", # accepts SUPPRESS, RESEND
|
1799
1863
|
# first_name: "UserAttributeValue",
|
1800
1864
|
# last_name: "UserAttributeValue",
|
1801
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
1865
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
1802
1866
|
# }
|
1803
1867
|
#
|
1804
1868
|
# @!attribute [rw] user_name
|
@@ -2105,7 +2169,7 @@ module Aws::AppStream
|
|
2105
2169
|
#
|
2106
2170
|
# {
|
2107
2171
|
# user_name: "Username", # required
|
2108
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
2172
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
2109
2173
|
# }
|
2110
2174
|
#
|
2111
2175
|
# @!attribute [rw] user_name
|
@@ -2625,7 +2689,7 @@ module Aws::AppStream
|
|
2625
2689
|
# user_id: "UserId",
|
2626
2690
|
# next_token: "String",
|
2627
2691
|
# limit: 1,
|
2628
|
-
# authentication_type: "API", # accepts API, SAML, USERPOOL
|
2692
|
+
# authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
|
2629
2693
|
# }
|
2630
2694
|
#
|
2631
2695
|
# @!attribute [rw] stack_name
|
@@ -2782,7 +2846,7 @@ module Aws::AppStream
|
|
2782
2846
|
# {
|
2783
2847
|
# stack_name: "String",
|
2784
2848
|
# user_name: "Username",
|
2785
|
-
# authentication_type: "API", # accepts API, SAML, USERPOOL
|
2849
|
+
# authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
|
2786
2850
|
# max_results: 1,
|
2787
2851
|
# next_token: "String",
|
2788
2852
|
# }
|
@@ -2847,7 +2911,7 @@ module Aws::AppStream
|
|
2847
2911
|
# data as a hash:
|
2848
2912
|
#
|
2849
2913
|
# {
|
2850
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
2914
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
2851
2915
|
# max_results: 1,
|
2852
2916
|
# next_token: "String",
|
2853
2917
|
# }
|
@@ -2916,13 +2980,27 @@ module Aws::AppStream
|
|
2916
2980
|
# The time the directory configuration was created.
|
2917
2981
|
# @return [Time]
|
2918
2982
|
#
|
2983
|
+
# @!attribute [rw] certificate_based_auth_properties
|
2984
|
+
# The certificate-based authentication properties used to authenticate
|
2985
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
2986
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
2987
|
+
# when certificate-based authentication is **Enabled** . Fallback
|
2988
|
+
# allows users to log in using their AD domain password if
|
2989
|
+
# certificate-based authentication is unsuccessful, or to unlock a
|
2990
|
+
# desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
|
2991
|
+
# enables certificate-based authentication, but does not allow users
|
2992
|
+
# to log in using their AD domain password. Users will be disconnected
|
2993
|
+
# to re-authenticate using certificates.
|
2994
|
+
# @return [Types::CertificateBasedAuthProperties]
|
2995
|
+
#
|
2919
2996
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DirectoryConfig AWS API Documentation
|
2920
2997
|
#
|
2921
2998
|
class DirectoryConfig < Struct.new(
|
2922
2999
|
:directory_name,
|
2923
3000
|
:organizational_unit_distinguished_names,
|
2924
3001
|
:service_account_credentials,
|
2925
|
-
:created_time
|
3002
|
+
:created_time,
|
3003
|
+
:certificate_based_auth_properties)
|
2926
3004
|
SENSITIVE = []
|
2927
3005
|
include Aws::Structure
|
2928
3006
|
end
|
@@ -2932,7 +3010,7 @@ module Aws::AppStream
|
|
2932
3010
|
#
|
2933
3011
|
# {
|
2934
3012
|
# user_name: "Username", # required
|
2935
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
3013
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
2936
3014
|
# }
|
2937
3015
|
#
|
2938
3016
|
# @!attribute [rw] user_name
|
@@ -3088,7 +3166,7 @@ module Aws::AppStream
|
|
3088
3166
|
#
|
3089
3167
|
# {
|
3090
3168
|
# user_name: "Username", # required
|
3091
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
3169
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
3092
3170
|
# }
|
3093
3171
|
#
|
3094
3172
|
# @!attribute [rw] user_name
|
@@ -4957,6 +5035,10 @@ module Aws::AppStream
|
|
4957
5035
|
# account_name: "AccountName", # required
|
4958
5036
|
# account_password: "AccountPassword", # required
|
4959
5037
|
# },
|
5038
|
+
# certificate_based_auth_properties: {
|
5039
|
+
# status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
|
5040
|
+
# certificate_authority_arn: "Arn",
|
5041
|
+
# },
|
4960
5042
|
# }
|
4961
5043
|
#
|
4962
5044
|
# @!attribute [rw] directory_name
|
@@ -4973,12 +5055,26 @@ module Aws::AppStream
|
|
4973
5055
|
# builder to connect to the directory.
|
4974
5056
|
# @return [Types::ServiceAccountCredentials]
|
4975
5057
|
#
|
5058
|
+
# @!attribute [rw] certificate_based_auth_properties
|
5059
|
+
# The certificate-based authentication properties used to authenticate
|
5060
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
5061
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
5062
|
+
# when certificate-based authentication is **Enabled** . Fallback
|
5063
|
+
# allows users to log in using their AD domain password if
|
5064
|
+
# certificate-based authentication is unsuccessful, or to unlock a
|
5065
|
+
# desktop lock screen. **Enabled\_no\_directory\_login\_fallback**
|
5066
|
+
# enables certificate-based authentication, but does not allow users
|
5067
|
+
# to log in using their AD domain password. Users will be disconnected
|
5068
|
+
# to re-authenticate using certificates.
|
5069
|
+
# @return [Types::CertificateBasedAuthProperties]
|
5070
|
+
#
|
4976
5071
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfigRequest AWS API Documentation
|
4977
5072
|
#
|
4978
5073
|
class UpdateDirectoryConfigRequest < Struct.new(
|
4979
5074
|
:directory_name,
|
4980
5075
|
:organizational_unit_distinguished_names,
|
4981
|
-
:service_account_credentials
|
5076
|
+
:service_account_credentials,
|
5077
|
+
:certificate_based_auth_properties)
|
4982
5078
|
SENSITIVE = []
|
4983
5079
|
include Aws::Structure
|
4984
5080
|
end
|
@@ -5115,6 +5211,10 @@ module Aws::AppStream
|
|
5115
5211
|
#
|
5116
5212
|
# * stream.standard.large
|
5117
5213
|
#
|
5214
|
+
# * stream.standard.xlarge
|
5215
|
+
#
|
5216
|
+
# * stream.standard.2xlarge
|
5217
|
+
#
|
5118
5218
|
# * stream.compute.large
|
5119
5219
|
#
|
5120
5220
|
# * stream.compute.xlarge
|
@@ -5180,6 +5280,12 @@ module Aws::AppStream
|
|
5180
5280
|
# * stream.standard.small
|
5181
5281
|
#
|
5182
5282
|
# * stream.standard.medium
|
5283
|
+
#
|
5284
|
+
# * stream.standard.large
|
5285
|
+
#
|
5286
|
+
# * stream.standard.xlarge
|
5287
|
+
#
|
5288
|
+
# * stream.standard.2xlarge
|
5183
5289
|
# @return [String]
|
5184
5290
|
#
|
5185
5291
|
# @!attribute [rw] compute_capacity
|
@@ -5673,7 +5779,7 @@ module Aws::AppStream
|
|
5673
5779
|
# {
|
5674
5780
|
# stack_name: "String", # required
|
5675
5781
|
# user_name: "Username", # required
|
5676
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
5782
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
5677
5783
|
# send_email_notification: false,
|
5678
5784
|
# }
|
5679
5785
|
#
|
data/lib/aws-sdk-appstream.rb
CHANGED
@@ -13,10 +13,14 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-appstream/types'
|
15
15
|
require_relative 'aws-sdk-appstream/client_api'
|
16
|
+
require_relative 'aws-sdk-appstream/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-appstream/client'
|
17
18
|
require_relative 'aws-sdk-appstream/errors'
|
18
19
|
require_relative 'aws-sdk-appstream/waiters'
|
19
20
|
require_relative 'aws-sdk-appstream/resource'
|
21
|
+
require_relative 'aws-sdk-appstream/endpoint_parameters'
|
22
|
+
require_relative 'aws-sdk-appstream/endpoint_provider'
|
23
|
+
require_relative 'aws-sdk-appstream/endpoints'
|
20
24
|
require_relative 'aws-sdk-appstream/customizations'
|
21
25
|
|
22
26
|
# This module provides support for Amazon AppStream. This module is available in the
|
@@ -49,6 +53,6 @@ require_relative 'aws-sdk-appstream/customizations'
|
|
49
53
|
# @!group service
|
50
54
|
module Aws::AppStream
|
51
55
|
|
52
|
-
GEM_VERSION = '1.
|
56
|
+
GEM_VERSION = '1.68.0'
|
53
57
|
|
54
58
|
end
|
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.68.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: 2022-
|
11
|
+
date: 2022-10-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-appstream/client.rb
|
60
60
|
- lib/aws-sdk-appstream/client_api.rb
|
61
61
|
- lib/aws-sdk-appstream/customizations.rb
|
62
|
+
- lib/aws-sdk-appstream/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-appstream/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-appstream/endpoints.rb
|
62
65
|
- lib/aws-sdk-appstream/errors.rb
|
66
|
+
- lib/aws-sdk-appstream/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-appstream/resource.rb
|
64
68
|
- lib/aws-sdk-appstream/types.rb
|
65
69
|
- lib/aws-sdk-appstream/waiters.rb
|