aws-sdk-appstream 1.66.0 → 1.68.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/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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8bb1ca00eb2ec143caf5c85954990cdaa5dbfecb475a5a7175888da11e2a2071
|
4
|
+
data.tar.gz: ecd57a38a5126c94f309dbb753ef480114e7ef05c4eb6f5e4116020720d4e872
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a09a3fdd921c1725cd18c81ce021dff1155acb66b059632cf3b836a0f0e34bd78375e7452d9e7c4540a37e107f08f4526a019de2b26678548ef2c8cf7a3c561
|
7
|
+
data.tar.gz: 4ff28979bcc76c618b60fcc18030a88a139e3c9b7bf5855e8d0425d431f4bd0ff064ba04c0594f7942d9ccf03239aa4ec4bb11f84d99ba2d1218ae9b37b5fa73
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.68.0 (2022-10-28)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release includes CertificateBasedAuthProperties in CreateDirectoryConfig and UpdateDirectoryConfig.
|
8
|
+
|
9
|
+
1.67.0 (2022-10-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.66.0 (2022-06-29)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.68.0
|
@@ -30,7 +30,7 @@ require 'aws-sdk-core/plugins/http_checksum.rb'
|
|
30
30
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
31
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
32
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
33
|
-
require 'aws-sdk-core/plugins/
|
33
|
+
require 'aws-sdk-core/plugins/sign.rb'
|
34
34
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
35
35
|
|
36
36
|
Aws::Plugins::GlobalConfiguration.add_identifier(:appstream)
|
@@ -79,8 +79,9 @@ module Aws::AppStream
|
|
79
79
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
80
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
81
|
add_plugin(Aws::Plugins::RecursionDetection)
|
82
|
-
add_plugin(Aws::Plugins::
|
82
|
+
add_plugin(Aws::Plugins::Sign)
|
83
83
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
84
|
+
add_plugin(Aws::AppStream::Plugins::Endpoints)
|
84
85
|
|
85
86
|
# @overload initialize(options)
|
86
87
|
# @param [Hash] options
|
@@ -297,6 +298,19 @@ module Aws::AppStream
|
|
297
298
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
298
299
|
# requests are made, and retries are disabled.
|
299
300
|
#
|
301
|
+
# @option options [Aws::TokenProvider] :token_provider
|
302
|
+
# A Bearer Token Provider. This can be an instance of any one of the
|
303
|
+
# following classes:
|
304
|
+
#
|
305
|
+
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
306
|
+
# tokens.
|
307
|
+
#
|
308
|
+
# * `Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an
|
309
|
+
# access token generated from `aws login`.
|
310
|
+
#
|
311
|
+
# When `:token_provider` is not configured directly, the `Aws::TokenProviderChain`
|
312
|
+
# will be used to search for tokens configured for your profile in shared configuration files.
|
313
|
+
#
|
300
314
|
# @option options [Boolean] :use_dualstack_endpoint
|
301
315
|
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
302
316
|
# will be used if available.
|
@@ -310,6 +324,9 @@ module Aws::AppStream
|
|
310
324
|
# When `true`, request parameters are validated before
|
311
325
|
# sending the request.
|
312
326
|
#
|
327
|
+
# @option options [Aws::AppStream::EndpointProvider] :endpoint_provider
|
328
|
+
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::AppStream::EndpointParameters`
|
329
|
+
#
|
313
330
|
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
314
331
|
# requests through. Formatted like 'http://proxy.com:123'.
|
315
332
|
#
|
@@ -469,7 +486,7 @@ module Aws::AppStream
|
|
469
486
|
# {
|
470
487
|
# stack_name: "String", # required
|
471
488
|
# user_name: "Username", # required
|
472
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
489
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
473
490
|
# send_email_notification: false,
|
474
491
|
# },
|
475
492
|
# ],
|
@@ -480,7 +497,7 @@ module Aws::AppStream
|
|
480
497
|
# resp.errors #=> Array
|
481
498
|
# resp.errors[0].user_stack_association.stack_name #=> String
|
482
499
|
# resp.errors[0].user_stack_association.user_name #=> String
|
483
|
-
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
500
|
+
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
|
484
501
|
# resp.errors[0].user_stack_association.send_email_notification #=> Boolean
|
485
502
|
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
486
503
|
# resp.errors[0].error_message #=> String
|
@@ -510,7 +527,7 @@ module Aws::AppStream
|
|
510
527
|
# {
|
511
528
|
# stack_name: "String", # required
|
512
529
|
# user_name: "Username", # required
|
513
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
530
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
514
531
|
# send_email_notification: false,
|
515
532
|
# },
|
516
533
|
# ],
|
@@ -521,7 +538,7 @@ module Aws::AppStream
|
|
521
538
|
# resp.errors #=> Array
|
522
539
|
# resp.errors[0].user_stack_association.stack_name #=> String
|
523
540
|
# resp.errors[0].user_stack_association.user_name #=> String
|
524
|
-
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
541
|
+
# resp.errors[0].user_stack_association.authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
|
525
542
|
# resp.errors[0].user_stack_association.send_email_notification #=> Boolean
|
526
543
|
# resp.errors[0].error_code #=> String, one of "STACK_NOT_FOUND", "USER_NAME_NOT_FOUND", "DIRECTORY_NOT_FOUND", "INTERNAL_ERROR"
|
527
544
|
# resp.errors[0].error_message #=> String
|
@@ -782,6 +799,18 @@ module Aws::AppStream
|
|
782
799
|
# The credentials for the service account used by the fleet or image
|
783
800
|
# builder to connect to the directory.
|
784
801
|
#
|
802
|
+
# @option params [Types::CertificateBasedAuthProperties] :certificate_based_auth_properties
|
803
|
+
# The certificate-based authentication properties used to authenticate
|
804
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
805
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
806
|
+
# when certificate-based authentication is **Enabled** . Fallback allows
|
807
|
+
# users to log in using their AD domain password if certificate-based
|
808
|
+
# authentication is unsuccessful, or to unlock a desktop lock screen.
|
809
|
+
# **Enabled\_no\_directory\_login\_fallback** enables certificate-based
|
810
|
+
# authentication, but does not allow users to log in using their AD
|
811
|
+
# domain password. Users will be disconnected to re-authenticate using
|
812
|
+
# certificates.
|
813
|
+
#
|
785
814
|
# @return [Types::CreateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
786
815
|
#
|
787
816
|
# * {Types::CreateDirectoryConfigResult#directory_config #directory_config} => Types::DirectoryConfig
|
@@ -795,6 +824,10 @@ module Aws::AppStream
|
|
795
824
|
# account_name: "AccountName", # required
|
796
825
|
# account_password: "AccountPassword", # required
|
797
826
|
# },
|
827
|
+
# certificate_based_auth_properties: {
|
828
|
+
# status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
|
829
|
+
# certificate_authority_arn: "Arn",
|
830
|
+
# },
|
798
831
|
# })
|
799
832
|
#
|
800
833
|
# @example Response structure
|
@@ -805,6 +838,8 @@ module Aws::AppStream
|
|
805
838
|
# resp.directory_config.service_account_credentials.account_name #=> String
|
806
839
|
# resp.directory_config.service_account_credentials.account_password #=> String
|
807
840
|
# resp.directory_config.created_time #=> Time
|
841
|
+
# resp.directory_config.certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED", "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"
|
842
|
+
# resp.directory_config.certificate_based_auth_properties.certificate_authority_arn #=> String
|
808
843
|
#
|
809
844
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfig AWS API Documentation
|
810
845
|
#
|
@@ -878,8 +913,8 @@ module Aws::AppStream
|
|
878
913
|
req.send_request(options)
|
879
914
|
end
|
880
915
|
|
881
|
-
# Creates a fleet. A fleet consists of streaming instances that
|
882
|
-
#
|
916
|
+
# Creates a fleet. A fleet consists of streaming instances that your
|
917
|
+
# users access for their applications and desktops.
|
883
918
|
#
|
884
919
|
# @option params [required, String] :name
|
885
920
|
# A unique name for the fleet.
|
@@ -900,6 +935,10 @@ module Aws::AppStream
|
|
900
935
|
#
|
901
936
|
# * stream.standard.large
|
902
937
|
#
|
938
|
+
# * stream.standard.xlarge
|
939
|
+
#
|
940
|
+
# * stream.standard.2xlarge
|
941
|
+
#
|
903
942
|
# * stream.compute.large
|
904
943
|
#
|
905
944
|
# * stream.compute.xlarge
|
@@ -966,6 +1005,12 @@ module Aws::AppStream
|
|
966
1005
|
#
|
967
1006
|
# * stream.standard.medium
|
968
1007
|
#
|
1008
|
+
# * stream.standard.large
|
1009
|
+
#
|
1010
|
+
# * stream.standard.xlarge
|
1011
|
+
#
|
1012
|
+
# * stream.standard.2xlarge
|
1013
|
+
#
|
969
1014
|
# @option params [String] :fleet_type
|
970
1015
|
# The fleet type.
|
971
1016
|
#
|
@@ -1861,7 +1906,7 @@ module Aws::AppStream
|
|
1861
1906
|
# message_action: "SUPPRESS", # accepts SUPPRESS, RESEND
|
1862
1907
|
# first_name: "UserAttributeValue",
|
1863
1908
|
# last_name: "UserAttributeValue",
|
1864
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
1909
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
1865
1910
|
# })
|
1866
1911
|
#
|
1867
1912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateUser AWS API Documentation
|
@@ -2200,7 +2245,7 @@ module Aws::AppStream
|
|
2200
2245
|
#
|
2201
2246
|
# resp = client.delete_user({
|
2202
2247
|
# user_name: "Username", # required
|
2203
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
2248
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
2204
2249
|
# })
|
2205
2250
|
#
|
2206
2251
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteUser AWS API Documentation
|
@@ -2409,6 +2454,8 @@ module Aws::AppStream
|
|
2409
2454
|
# resp.directory_configs[0].service_account_credentials.account_name #=> String
|
2410
2455
|
# resp.directory_configs[0].service_account_credentials.account_password #=> String
|
2411
2456
|
# resp.directory_configs[0].created_time #=> Time
|
2457
|
+
# resp.directory_configs[0].certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED", "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"
|
2458
|
+
# resp.directory_configs[0].certificate_based_auth_properties.certificate_authority_arn #=> String
|
2412
2459
|
# resp.next_token #=> String
|
2413
2460
|
#
|
2414
2461
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeDirectoryConfigs AWS API Documentation
|
@@ -2807,7 +2854,7 @@ module Aws::AppStream
|
|
2807
2854
|
# user_id: "UserId",
|
2808
2855
|
# next_token: "String",
|
2809
2856
|
# limit: 1,
|
2810
|
-
# authentication_type: "API", # accepts API, SAML, USERPOOL
|
2857
|
+
# authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
|
2811
2858
|
# })
|
2812
2859
|
#
|
2813
2860
|
# @example Response structure
|
@@ -2821,7 +2868,7 @@ module Aws::AppStream
|
|
2821
2868
|
# resp.sessions[0].connection_state #=> String, one of "CONNECTED", "NOT_CONNECTED"
|
2822
2869
|
# resp.sessions[0].start_time #=> Time
|
2823
2870
|
# resp.sessions[0].max_expiration_time #=> Time
|
2824
|
-
# resp.sessions[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
2871
|
+
# resp.sessions[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
|
2825
2872
|
# resp.sessions[0].network_access_configuration.eni_private_ip_address #=> String
|
2826
2873
|
# resp.sessions[0].network_access_configuration.eni_id #=> String
|
2827
2874
|
# resp.next_token #=> String
|
@@ -2980,7 +3027,7 @@ module Aws::AppStream
|
|
2980
3027
|
# resp = client.describe_user_stack_associations({
|
2981
3028
|
# stack_name: "String",
|
2982
3029
|
# user_name: "Username",
|
2983
|
-
# authentication_type: "API", # accepts API, SAML, USERPOOL
|
3030
|
+
# authentication_type: "API", # accepts API, SAML, USERPOOL, AWS_AD
|
2984
3031
|
# max_results: 1,
|
2985
3032
|
# next_token: "String",
|
2986
3033
|
# })
|
@@ -2990,7 +3037,7 @@ module Aws::AppStream
|
|
2990
3037
|
# resp.user_stack_associations #=> Array
|
2991
3038
|
# resp.user_stack_associations[0].stack_name #=> String
|
2992
3039
|
# resp.user_stack_associations[0].user_name #=> String
|
2993
|
-
# resp.user_stack_associations[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
3040
|
+
# resp.user_stack_associations[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
|
2994
3041
|
# resp.user_stack_associations[0].send_email_notification #=> Boolean
|
2995
3042
|
# resp.next_token #=> String
|
2996
3043
|
#
|
@@ -3025,7 +3072,7 @@ module Aws::AppStream
|
|
3025
3072
|
# @example Request syntax with placeholder values
|
3026
3073
|
#
|
3027
3074
|
# resp = client.describe_users({
|
3028
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
3075
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
3029
3076
|
# max_results: 1,
|
3030
3077
|
# next_token: "String",
|
3031
3078
|
# })
|
@@ -3040,7 +3087,7 @@ module Aws::AppStream
|
|
3040
3087
|
# resp.users[0].first_name #=> String
|
3041
3088
|
# resp.users[0].last_name #=> String
|
3042
3089
|
# resp.users[0].created_time #=> Time
|
3043
|
-
# resp.users[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL"
|
3090
|
+
# resp.users[0].authentication_type #=> String, one of "API", "SAML", "USERPOOL", "AWS_AD"
|
3044
3091
|
# resp.next_token #=> String
|
3045
3092
|
#
|
3046
3093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeUsers AWS API Documentation
|
@@ -3072,7 +3119,7 @@ module Aws::AppStream
|
|
3072
3119
|
#
|
3073
3120
|
# resp = client.disable_user({
|
3074
3121
|
# user_name: "Username", # required
|
3075
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
3122
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
3076
3123
|
# })
|
3077
3124
|
#
|
3078
3125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DisableUser AWS API Documentation
|
@@ -3189,7 +3236,7 @@ module Aws::AppStream
|
|
3189
3236
|
#
|
3190
3237
|
# resp = client.enable_user({
|
3191
3238
|
# user_name: "Username", # required
|
3192
|
-
# authentication_type: "API", # required, accepts API, SAML, USERPOOL
|
3239
|
+
# authentication_type: "API", # required, accepts API, SAML, USERPOOL, AWS_AD
|
3193
3240
|
# })
|
3194
3241
|
#
|
3195
3242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/EnableUser AWS API Documentation
|
@@ -3726,6 +3773,18 @@ module Aws::AppStream
|
|
3726
3773
|
# The credentials for the service account used by the fleet or image
|
3727
3774
|
# builder to connect to the directory.
|
3728
3775
|
#
|
3776
|
+
# @option params [Types::CertificateBasedAuthProperties] :certificate_based_auth_properties
|
3777
|
+
# The certificate-based authentication properties used to authenticate
|
3778
|
+
# SAML 2.0 Identity Provider (IdP) user identities to Active Directory
|
3779
|
+
# domain-joined streaming instances. Fallback is turned on by default
|
3780
|
+
# when certificate-based authentication is **Enabled** . Fallback allows
|
3781
|
+
# users to log in using their AD domain password if certificate-based
|
3782
|
+
# authentication is unsuccessful, or to unlock a desktop lock screen.
|
3783
|
+
# **Enabled\_no\_directory\_login\_fallback** enables certificate-based
|
3784
|
+
# authentication, but does not allow users to log in using their AD
|
3785
|
+
# domain password. Users will be disconnected to re-authenticate using
|
3786
|
+
# certificates.
|
3787
|
+
#
|
3729
3788
|
# @return [Types::UpdateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3730
3789
|
#
|
3731
3790
|
# * {Types::UpdateDirectoryConfigResult#directory_config #directory_config} => Types::DirectoryConfig
|
@@ -3739,6 +3798,10 @@ module Aws::AppStream
|
|
3739
3798
|
# account_name: "AccountName", # required
|
3740
3799
|
# account_password: "AccountPassword", # required
|
3741
3800
|
# },
|
3801
|
+
# certificate_based_auth_properties: {
|
3802
|
+
# status: "DISABLED", # accepts DISABLED, ENABLED, ENABLED_NO_DIRECTORY_LOGIN_FALLBACK
|
3803
|
+
# certificate_authority_arn: "Arn",
|
3804
|
+
# },
|
3742
3805
|
# })
|
3743
3806
|
#
|
3744
3807
|
# @example Response structure
|
@@ -3749,6 +3812,8 @@ module Aws::AppStream
|
|
3749
3812
|
# resp.directory_config.service_account_credentials.account_name #=> String
|
3750
3813
|
# resp.directory_config.service_account_credentials.account_password #=> String
|
3751
3814
|
# resp.directory_config.created_time #=> Time
|
3815
|
+
# resp.directory_config.certificate_based_auth_properties.status #=> String, one of "DISABLED", "ENABLED", "ENABLED_NO_DIRECTORY_LOGIN_FALLBACK"
|
3816
|
+
# resp.directory_config.certificate_based_auth_properties.certificate_authority_arn #=> String
|
3752
3817
|
#
|
3753
3818
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfig AWS API Documentation
|
3754
3819
|
#
|
@@ -3858,6 +3923,10 @@ module Aws::AppStream
|
|
3858
3923
|
#
|
3859
3924
|
# * stream.standard.large
|
3860
3925
|
#
|
3926
|
+
# * stream.standard.xlarge
|
3927
|
+
#
|
3928
|
+
# * stream.standard.2xlarge
|
3929
|
+
#
|
3861
3930
|
# * stream.compute.large
|
3862
3931
|
#
|
3863
3932
|
# * stream.compute.xlarge
|
@@ -3924,6 +3993,12 @@ module Aws::AppStream
|
|
3924
3993
|
#
|
3925
3994
|
# * stream.standard.medium
|
3926
3995
|
#
|
3996
|
+
# * stream.standard.large
|
3997
|
+
#
|
3998
|
+
# * stream.standard.xlarge
|
3999
|
+
#
|
4000
|
+
# * stream.standard.2xlarge
|
4001
|
+
#
|
3927
4002
|
# @option params [Types::ComputeCapacity] :compute_capacity
|
3928
4003
|
# The desired capacity for the fleet. This is not allowed for Elastic
|
3929
4004
|
# fleets.
|
@@ -4309,7 +4384,7 @@ module Aws::AppStream
|
|
4309
4384
|
params: params,
|
4310
4385
|
config: config)
|
4311
4386
|
context[:gem_name] = 'aws-sdk-appstream'
|
4312
|
-
context[:gem_version] = '1.
|
4387
|
+
context[:gem_version] = '1.68.0'
|
4313
4388
|
Seahorse::Client::Request.new(handlers, context)
|
4314
4389
|
end
|
4315
4390
|
|
@@ -48,6 +48,8 @@ module Aws::AppStream
|
|
48
48
|
BatchDisassociateUserStackResult = Shapes::StructureShape.new(name: 'BatchDisassociateUserStackResult')
|
49
49
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
50
50
|
BooleanObject = Shapes::BooleanShape.new(name: 'BooleanObject')
|
51
|
+
CertificateBasedAuthProperties = Shapes::StructureShape.new(name: 'CertificateBasedAuthProperties')
|
52
|
+
CertificateBasedAuthStatus = Shapes::StringShape.new(name: 'CertificateBasedAuthStatus')
|
51
53
|
ComputeCapacity = Shapes::StructureShape.new(name: 'ComputeCapacity')
|
52
54
|
ComputeCapacityStatus = Shapes::StructureShape.new(name: 'ComputeCapacityStatus')
|
53
55
|
ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
|
@@ -388,6 +390,10 @@ module Aws::AppStream
|
|
388
390
|
BatchDisassociateUserStackResult.add_member(:errors, Shapes::ShapeRef.new(shape: UserStackAssociationErrorList, location_name: "errors"))
|
389
391
|
BatchDisassociateUserStackResult.struct_class = Types::BatchDisassociateUserStackResult
|
390
392
|
|
393
|
+
CertificateBasedAuthProperties.add_member(:status, Shapes::ShapeRef.new(shape: CertificateBasedAuthStatus, location_name: "Status"))
|
394
|
+
CertificateBasedAuthProperties.add_member(:certificate_authority_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "CertificateAuthorityArn"))
|
395
|
+
CertificateBasedAuthProperties.struct_class = Types::CertificateBasedAuthProperties
|
396
|
+
|
391
397
|
ComputeCapacity.add_member(:desired_instances, Shapes::ShapeRef.new(shape: Integer, required: true, location_name: "DesiredInstances"))
|
392
398
|
ComputeCapacity.struct_class = Types::ComputeCapacity
|
393
399
|
|
@@ -439,6 +445,7 @@ module Aws::AppStream
|
|
439
445
|
CreateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
440
446
|
CreateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, required: true, location_name: "OrganizationalUnitDistinguishedNames"))
|
441
447
|
CreateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
|
448
|
+
CreateDirectoryConfigRequest.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
|
442
449
|
CreateDirectoryConfigRequest.struct_class = Types::CreateDirectoryConfigRequest
|
443
450
|
|
444
451
|
CreateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
|
@@ -759,6 +766,7 @@ module Aws::AppStream
|
|
759
766
|
DirectoryConfig.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, location_name: "OrganizationalUnitDistinguishedNames"))
|
760
767
|
DirectoryConfig.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
|
761
768
|
DirectoryConfig.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
769
|
+
DirectoryConfig.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
|
762
770
|
DirectoryConfig.struct_class = Types::DirectoryConfig
|
763
771
|
|
764
772
|
DirectoryConfigList.member = Shapes::ShapeRef.new(shape: DirectoryConfig)
|
@@ -1150,6 +1158,7 @@ module Aws::AppStream
|
|
1150
1158
|
UpdateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
1151
1159
|
UpdateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, location_name: "OrganizationalUnitDistinguishedNames"))
|
1152
1160
|
UpdateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
|
1161
|
+
UpdateDirectoryConfigRequest.add_member(:certificate_based_auth_properties, Shapes::ShapeRef.new(shape: CertificateBasedAuthProperties, location_name: "CertificateBasedAuthProperties"))
|
1153
1162
|
UpdateDirectoryConfigRequest.struct_class = Types::UpdateDirectoryConfigRequest
|
1154
1163
|
|
1155
1164
|
UpdateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
|
@@ -0,0 +1,66 @@
|
|
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
|
+
module Aws::AppStream
|
11
|
+
# Endpoint parameters used to influence endpoints per request.
|
12
|
+
#
|
13
|
+
# @!attribute region
|
14
|
+
# The AWS region used to dispatch the request.
|
15
|
+
#
|
16
|
+
# @return [String]
|
17
|
+
#
|
18
|
+
# @!attribute use_dual_stack
|
19
|
+
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
20
|
+
#
|
21
|
+
# @return [Boolean]
|
22
|
+
#
|
23
|
+
# @!attribute use_fips
|
24
|
+
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
25
|
+
#
|
26
|
+
# @return [Boolean]
|
27
|
+
#
|
28
|
+
# @!attribute endpoint
|
29
|
+
# Override the endpoint used to send this request
|
30
|
+
#
|
31
|
+
# @return [String]
|
32
|
+
#
|
33
|
+
EndpointParameters = Struct.new(
|
34
|
+
:region,
|
35
|
+
:use_dual_stack,
|
36
|
+
:use_fips,
|
37
|
+
:endpoint,
|
38
|
+
) do
|
39
|
+
include Aws::Structure
|
40
|
+
|
41
|
+
# @api private
|
42
|
+
class << self
|
43
|
+
PARAM_MAP = {
|
44
|
+
'Region' => :region,
|
45
|
+
'UseDualStack' => :use_dual_stack,
|
46
|
+
'UseFIPS' => :use_fips,
|
47
|
+
'Endpoint' => :endpoint,
|
48
|
+
}.freeze
|
49
|
+
end
|
50
|
+
|
51
|
+
def initialize(options = {})
|
52
|
+
self[:region] = options[:region]
|
53
|
+
self[:use_dual_stack] = options[:use_dual_stack]
|
54
|
+
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
55
|
+
if self[:use_dual_stack].nil?
|
56
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_dual_stack"
|
57
|
+
end
|
58
|
+
self[:use_fips] = options[:use_fips]
|
59
|
+
self[:use_fips] = false if self[:use_fips].nil?
|
60
|
+
if self[:use_fips].nil?
|
61
|
+
raise ArgumentError, "Missing required EndpointParameter: :use_fips"
|
62
|
+
end
|
63
|
+
self[:endpoint] = options[:endpoint]
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
@@ -0,0 +1,112 @@
|
|
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
|
+
module Aws::AppStream
|
11
|
+
class EndpointProvider
|
12
|
+
def initialize(rule_set = nil)
|
13
|
+
@@rule_set ||= begin
|
14
|
+
endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
|
15
|
+
Aws::Endpoints::RuleSet.new(
|
16
|
+
version: endpoint_rules['version'],
|
17
|
+
service_id: endpoint_rules['serviceId'],
|
18
|
+
parameters: endpoint_rules['parameters'],
|
19
|
+
rules: endpoint_rules['rules']
|
20
|
+
)
|
21
|
+
end
|
22
|
+
@provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
|
23
|
+
end
|
24
|
+
|
25
|
+
def resolve_endpoint(parameters)
|
26
|
+
@provider.resolve_endpoint(parameters)
|
27
|
+
end
|
28
|
+
|
29
|
+
# @api private
|
30
|
+
RULES = <<-JSON
|
31
|
+
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
+
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
+
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
+
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
+
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
+
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
+
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
+
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
+
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
+
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
+
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
+
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
+
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
+
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
+
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
+
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
+
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
+
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
+
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
+
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
+
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
+
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
+
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
+
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
+
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
+
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
+
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
+
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
+
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
+
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
+
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
+
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
+
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
+
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
+
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
+
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
+
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
+
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
+
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
+
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
+
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
+
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
+
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
+
dCI6eyJ1cmwiOiJodHRwczovL2FwcHN0cmVhbTItZmlwcy57UmVnaW9ufS57
|
77
|
+
UGFydGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0
|
78
|
+
aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsi
|
79
|
+
Y29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFy
|
80
|
+
ZSBlbmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
|
81
|
+
dCBvbmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25z
|
82
|
+
IjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VG
|
83
|
+
SVBTIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
84
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
|
85
|
+
biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
|
86
|
+
fSwic3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
87
|
+
eyJjb25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
|
88
|
+
ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYXBwc3Ry
|
89
|
+
ZWFtMi1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4
|
90
|
+
fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
|
91
|
+
b2ludCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMg
|
92
|
+
ZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBG
|
93
|
+
SVBTIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
94
|
+
Ym9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9
|
95
|
+
LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
96
|
+
Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJn
|
97
|
+
ZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1
|
98
|
+
cHBvcnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpb
|
99
|
+
eyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9h
|
100
|
+
cHBzdHJlYW0yLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNr
|
101
|
+
RG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5
|
102
|
+
cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJE
|
103
|
+
dWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBu
|
104
|
+
b3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29u
|
105
|
+
ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vYXBwc3Ry
|
106
|
+
ZWFtMi57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJw
|
107
|
+
cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
|
108
|
+
fV19XX0=
|
109
|
+
|
110
|
+
JSON
|
111
|
+
end
|
112
|
+
end
|