aws-sdk-appstream 1.0.0.rc9 → 1.0.0.rc10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-appstream.rb +1 -1
- data/lib/aws-sdk-appstream/client.rb +247 -14
- data/lib/aws-sdk-appstream/client_api.rb +117 -1
- data/lib/aws-sdk-appstream/types.rb +353 -18
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: efab148803efc408ff7d3cb80a9e3da07901435d
|
4
|
+
data.tar.gz: c87090ece16e82519f0210fbee8bcd86c868e5de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06786e7c6fc92d1eb818729909967185a5138861039e7f6d934ce0b4daaef9765dd8f52bb7caf66343132d5f300ab7b741ce0c4f51550c24a5fde0fa5b045f3e
|
7
|
+
data.tar.gz: aa0697f63173754f492c48bf30e06238cc8b6dd1f039faf96bcdd115c6f83c5f02fb89901485ef6dd036c2ee1a56e360b4bfb54de7404f16630e6f93f960a318
|
data/lib/aws-sdk-appstream.rb
CHANGED
@@ -181,6 +181,53 @@ module Aws::AppStream
|
|
181
181
|
req.send_request(options)
|
182
182
|
end
|
183
183
|
|
184
|
+
# Creates a directory configuration with the given parameters.
|
185
|
+
#
|
186
|
+
# @option params [required, String] :directory_name
|
187
|
+
# The fully qualified name of the directory, such as corp.example.com
|
188
|
+
#
|
189
|
+
# @option params [required, Array<String>] :organizational_unit_distinguished_names
|
190
|
+
# The list of the distinguished names of organizational units to place
|
191
|
+
# computer accounts in.
|
192
|
+
#
|
193
|
+
# @option params [required, Types::ServiceAccountCredentials] :service_account_credentials
|
194
|
+
# The *AccountName* and *AccountPassword* values for the service
|
195
|
+
# account, which are used by the streaming instance to connect to the
|
196
|
+
# directory.
|
197
|
+
#
|
198
|
+
# @return [Types::CreateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
199
|
+
#
|
200
|
+
# * {Types::CreateDirectoryConfigResult#directory_config #directory_config} => Types::DirectoryConfig
|
201
|
+
#
|
202
|
+
# @example Request syntax with placeholder values
|
203
|
+
#
|
204
|
+
# resp = client.create_directory_config({
|
205
|
+
# directory_name: "DirectoryName", # required
|
206
|
+
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"], # required
|
207
|
+
# service_account_credentials: { # required
|
208
|
+
# account_name: "AccountName", # required
|
209
|
+
# account_password: "AccountPassword", # required
|
210
|
+
# },
|
211
|
+
# })
|
212
|
+
#
|
213
|
+
# @example Response structure
|
214
|
+
#
|
215
|
+
# resp.directory_config.directory_name #=> String
|
216
|
+
# resp.directory_config.organizational_unit_distinguished_names #=> Array
|
217
|
+
# resp.directory_config.organizational_unit_distinguished_names[0] #=> String
|
218
|
+
# resp.directory_config.service_account_credentials.account_name #=> String
|
219
|
+
# resp.directory_config.service_account_credentials.account_password #=> String
|
220
|
+
# resp.directory_config.created_time #=> Time
|
221
|
+
#
|
222
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfig AWS API Documentation
|
223
|
+
#
|
224
|
+
# @overload create_directory_config(params = {})
|
225
|
+
# @param [Hash] params ({})
|
226
|
+
def create_directory_config(params = {}, options = {})
|
227
|
+
req = build_request(:create_directory_config, params)
|
228
|
+
req.send_request(options)
|
229
|
+
end
|
230
|
+
|
184
231
|
# Creates a new fleet.
|
185
232
|
#
|
186
233
|
# @option params [required, String] :name
|
@@ -191,7 +238,31 @@ module Aws::AppStream
|
|
191
238
|
#
|
192
239
|
# @option params [required, String] :instance_type
|
193
240
|
# The instance type of compute resources for the fleet. Fleet instances
|
194
|
-
# are launched from this instance type.
|
241
|
+
# are launched from this instance type. Available instance types are:
|
242
|
+
#
|
243
|
+
# * stream.standard.medium
|
244
|
+
#
|
245
|
+
# * stream.standard.large
|
246
|
+
#
|
247
|
+
# * stream.compute.large
|
248
|
+
#
|
249
|
+
# * stream.compute.xlarge
|
250
|
+
#
|
251
|
+
# * stream.compute.2xlarge
|
252
|
+
#
|
253
|
+
# * stream.compute.4xlarge
|
254
|
+
#
|
255
|
+
# * stream.compute.8xlarge
|
256
|
+
#
|
257
|
+
# * stream.memory.large
|
258
|
+
#
|
259
|
+
# * stream.memory.xlarge
|
260
|
+
#
|
261
|
+
# * stream.memory.2xlarge
|
262
|
+
#
|
263
|
+
# * stream.memory.4xlarge
|
264
|
+
#
|
265
|
+
# * stream.memory.8xlarge
|
195
266
|
#
|
196
267
|
# @option params [required, Types::ComputeCapacity] :compute_capacity
|
197
268
|
# The parameters for the capacity allocated to the fleet.
|
@@ -216,7 +287,12 @@ module Aws::AppStream
|
|
216
287
|
# The display name of the fleet.
|
217
288
|
#
|
218
289
|
# @option params [Boolean] :enable_default_internet_access
|
219
|
-
# Enables or disables default
|
290
|
+
# Enables or disables default internet access for the fleet.
|
291
|
+
#
|
292
|
+
# @option params [Types::DomainJoinInfo] :domain_join_info
|
293
|
+
# The *DirectoryName* and *OrganizationalUnitDistinguishedName* values,
|
294
|
+
# which are used to join domains for the AppStream 2.0 streaming
|
295
|
+
# instances.
|
220
296
|
#
|
221
297
|
# @return [Types::CreateFleetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
222
298
|
#
|
@@ -240,6 +316,10 @@ module Aws::AppStream
|
|
240
316
|
# description: "Description",
|
241
317
|
# display_name: "DisplayName",
|
242
318
|
# enable_default_internet_access: false,
|
319
|
+
# domain_join_info: {
|
320
|
+
# directory_name: "DirectoryName",
|
321
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
322
|
+
# },
|
243
323
|
# })
|
244
324
|
#
|
245
325
|
# @example Response structure
|
@@ -263,9 +343,11 @@ module Aws::AppStream
|
|
263
343
|
# resp.fleet.vpc_config.security_group_ids[0] #=> String
|
264
344
|
# resp.fleet.created_time #=> Time
|
265
345
|
# resp.fleet.fleet_errors #=> Array
|
266
|
-
# resp.fleet.fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION"
|
346
|
+
# resp.fleet.fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
267
347
|
# resp.fleet.fleet_errors[0].error_message #=> String
|
268
348
|
# resp.fleet.enable_default_internet_access #=> Boolean
|
349
|
+
# resp.fleet.domain_join_info.directory_name #=> String
|
350
|
+
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
269
351
|
#
|
270
352
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleet AWS API Documentation
|
271
353
|
#
|
@@ -366,7 +448,7 @@ module Aws::AppStream
|
|
366
448
|
# resp = client.create_streaming_url({
|
367
449
|
# stack_name: "String", # required
|
368
450
|
# fleet_name: "String", # required
|
369
|
-
# user_id: "
|
451
|
+
# user_id: "StreamingUrlUserId", # required
|
370
452
|
# application_id: "String",
|
371
453
|
# validity: 1,
|
372
454
|
# session_context: "String",
|
@@ -386,6 +468,28 @@ module Aws::AppStream
|
|
386
468
|
req.send_request(options)
|
387
469
|
end
|
388
470
|
|
471
|
+
# Deletes the directory configuration with the given parameters.
|
472
|
+
#
|
473
|
+
# @option params [required, String] :directory_name
|
474
|
+
# The name of the directory configuration to be deleted.
|
475
|
+
#
|
476
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
477
|
+
#
|
478
|
+
# @example Request syntax with placeholder values
|
479
|
+
#
|
480
|
+
# resp = client.delete_directory_config({
|
481
|
+
# directory_name: "DirectoryName", # required
|
482
|
+
# })
|
483
|
+
#
|
484
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteDirectoryConfig AWS API Documentation
|
485
|
+
#
|
486
|
+
# @overload delete_directory_config(params = {})
|
487
|
+
# @param [Hash] params ({})
|
488
|
+
def delete_directory_config(params = {}, options = {})
|
489
|
+
req = build_request(:delete_directory_config, params)
|
490
|
+
req.send_request(options)
|
491
|
+
end
|
492
|
+
|
389
493
|
# Deletes a fleet.
|
390
494
|
#
|
391
495
|
# @option params [required, String] :name
|
@@ -432,6 +536,51 @@ module Aws::AppStream
|
|
432
536
|
req.send_request(options)
|
433
537
|
end
|
434
538
|
|
539
|
+
# Returns a list describing the specified directory configurations.
|
540
|
+
#
|
541
|
+
# @option params [Array<String>] :directory_names
|
542
|
+
# A specific list of directory names.
|
543
|
+
#
|
544
|
+
# @option params [Integer] :max_results
|
545
|
+
# The size of each page of results.
|
546
|
+
#
|
547
|
+
# @option params [String] :next_token
|
548
|
+
# The DescribeDirectoryConfigsResult.NextToken from a previous call to
|
549
|
+
# DescribeDirectoryConfigs. If this is the first call, pass null.
|
550
|
+
#
|
551
|
+
# @return [Types::DescribeDirectoryConfigsResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
552
|
+
#
|
553
|
+
# * {Types::DescribeDirectoryConfigsResult#directory_configs #directory_configs} => Array<Types::DirectoryConfig>
|
554
|
+
# * {Types::DescribeDirectoryConfigsResult#next_token #next_token} => String
|
555
|
+
#
|
556
|
+
# @example Request syntax with placeholder values
|
557
|
+
#
|
558
|
+
# resp = client.describe_directory_configs({
|
559
|
+
# directory_names: ["DirectoryName"],
|
560
|
+
# max_results: 1,
|
561
|
+
# next_token: "String",
|
562
|
+
# })
|
563
|
+
#
|
564
|
+
# @example Response structure
|
565
|
+
#
|
566
|
+
# resp.directory_configs #=> Array
|
567
|
+
# resp.directory_configs[0].directory_name #=> String
|
568
|
+
# resp.directory_configs[0].organizational_unit_distinguished_names #=> Array
|
569
|
+
# resp.directory_configs[0].organizational_unit_distinguished_names[0] #=> String
|
570
|
+
# resp.directory_configs[0].service_account_credentials.account_name #=> String
|
571
|
+
# resp.directory_configs[0].service_account_credentials.account_password #=> String
|
572
|
+
# resp.directory_configs[0].created_time #=> Time
|
573
|
+
# resp.next_token #=> String
|
574
|
+
#
|
575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeDirectoryConfigs AWS API Documentation
|
576
|
+
#
|
577
|
+
# @overload describe_directory_configs(params = {})
|
578
|
+
# @param [Hash] params ({})
|
579
|
+
def describe_directory_configs(params = {}, options = {})
|
580
|
+
req = build_request(:describe_directory_configs, params)
|
581
|
+
req.send_request(options)
|
582
|
+
end
|
583
|
+
|
435
584
|
# If fleet names are provided, this operation describes the specified
|
436
585
|
# fleets; otherwise, all the fleets in the account are described.
|
437
586
|
#
|
@@ -477,9 +626,11 @@ module Aws::AppStream
|
|
477
626
|
# resp.fleets[0].vpc_config.security_group_ids[0] #=> String
|
478
627
|
# resp.fleets[0].created_time #=> Time
|
479
628
|
# resp.fleets[0].fleet_errors #=> Array
|
480
|
-
# resp.fleets[0].fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION"
|
629
|
+
# resp.fleets[0].fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
481
630
|
# resp.fleets[0].fleet_errors[0].error_message #=> String
|
482
631
|
# resp.fleets[0].enable_default_internet_access #=> Boolean
|
632
|
+
# resp.fleets[0].domain_join_info.directory_name #=> String
|
633
|
+
# resp.fleets[0].domain_join_info.organizational_unit_distinguished_name #=> String
|
483
634
|
# resp.next_token #=> String
|
484
635
|
#
|
485
636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeFleets AWS API Documentation
|
@@ -545,8 +696,8 @@ module Aws::AppStream
|
|
545
696
|
|
546
697
|
# Describes the streaming sessions for a stack and a fleet. If a user ID
|
547
698
|
# is provided, this operation returns streaming sessions for only that
|
548
|
-
# user.
|
549
|
-
#
|
699
|
+
# user. To retrieve the next set of items, pass this value for the
|
700
|
+
# `nextToken` parameter in a subsequent call to this operation. If an
|
550
701
|
# authentication type is not provided, the operation defaults to users
|
551
702
|
# authenticated using a streaming URL.
|
552
703
|
#
|
@@ -612,8 +763,8 @@ module Aws::AppStream
|
|
612
763
|
|
613
764
|
# If stack names are not provided, this operation describes the
|
614
765
|
# specified stacks; otherwise, all stacks in the account are described.
|
615
|
-
#
|
616
|
-
#
|
766
|
+
# To retrieve the next set of items, pass the `nextToken` value in a
|
767
|
+
# subsequent call to this operation.
|
617
768
|
#
|
618
769
|
# @option params [Array<String>] :names
|
619
770
|
# The stack names to describe. Use null to describe all the stacks for
|
@@ -824,6 +975,53 @@ module Aws::AppStream
|
|
824
975
|
req.send_request(options)
|
825
976
|
end
|
826
977
|
|
978
|
+
# Updates the directory configuration with the given parameters.
|
979
|
+
#
|
980
|
+
# @option params [required, String] :directory_name
|
981
|
+
# The name of the existing directory configuration to be updated.
|
982
|
+
#
|
983
|
+
# @option params [Array<String>] :organizational_unit_distinguished_names
|
984
|
+
# The list of the distinguished names of organizational units to place
|
985
|
+
# computer accounts in.
|
986
|
+
#
|
987
|
+
# @option params [Types::ServiceAccountCredentials] :service_account_credentials
|
988
|
+
# The *AccountName* and *AccountPassword* values for the service
|
989
|
+
# account, which are used by the streaming instance to connect to the
|
990
|
+
# directory
|
991
|
+
#
|
992
|
+
# @return [Types::UpdateDirectoryConfigResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
993
|
+
#
|
994
|
+
# * {Types::UpdateDirectoryConfigResult#directory_config #directory_config} => Types::DirectoryConfig
|
995
|
+
#
|
996
|
+
# @example Request syntax with placeholder values
|
997
|
+
#
|
998
|
+
# resp = client.update_directory_config({
|
999
|
+
# directory_name: "DirectoryName", # required
|
1000
|
+
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"],
|
1001
|
+
# service_account_credentials: {
|
1002
|
+
# account_name: "AccountName", # required
|
1003
|
+
# account_password: "AccountPassword", # required
|
1004
|
+
# },
|
1005
|
+
# })
|
1006
|
+
#
|
1007
|
+
# @example Response structure
|
1008
|
+
#
|
1009
|
+
# resp.directory_config.directory_name #=> String
|
1010
|
+
# resp.directory_config.organizational_unit_distinguished_names #=> Array
|
1011
|
+
# resp.directory_config.organizational_unit_distinguished_names[0] #=> String
|
1012
|
+
# resp.directory_config.service_account_credentials.account_name #=> String
|
1013
|
+
# resp.directory_config.service_account_credentials.account_password #=> String
|
1014
|
+
# resp.directory_config.created_time #=> Time
|
1015
|
+
#
|
1016
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfig AWS API Documentation
|
1017
|
+
#
|
1018
|
+
# @overload update_directory_config(params = {})
|
1019
|
+
# @param [Hash] params ({})
|
1020
|
+
def update_directory_config(params = {}, options = {})
|
1021
|
+
req = build_request(:update_directory_config, params)
|
1022
|
+
req.send_request(options)
|
1023
|
+
end
|
1024
|
+
|
827
1025
|
# Updates an existing fleet. All the attributes except the fleet name
|
828
1026
|
# can be updated in the **STOPPED** state. When a fleet is in the
|
829
1027
|
# **RUNNING** state, only `DisplayName` and `ComputeCapacity` can be
|
@@ -838,7 +1036,31 @@ module Aws::AppStream
|
|
838
1036
|
#
|
839
1037
|
# @option params [String] :instance_type
|
840
1038
|
# The instance type of compute resources for the fleet. Fleet instances
|
841
|
-
# are launched from this instance type.
|
1039
|
+
# are launched from this instance type. Available instance types are:
|
1040
|
+
#
|
1041
|
+
# * stream.standard.medium
|
1042
|
+
#
|
1043
|
+
# * stream.standard.large
|
1044
|
+
#
|
1045
|
+
# * stream.compute.large
|
1046
|
+
#
|
1047
|
+
# * stream.compute.xlarge
|
1048
|
+
#
|
1049
|
+
# * stream.compute.2xlarge
|
1050
|
+
#
|
1051
|
+
# * stream.compute.4xlarge
|
1052
|
+
#
|
1053
|
+
# * stream.compute.8xlarge
|
1054
|
+
#
|
1055
|
+
# * stream.memory.large
|
1056
|
+
#
|
1057
|
+
# * stream.memory.xlarge
|
1058
|
+
#
|
1059
|
+
# * stream.memory.2xlarge
|
1060
|
+
#
|
1061
|
+
# * stream.memory.4xlarge
|
1062
|
+
#
|
1063
|
+
# * stream.memory.8xlarge
|
842
1064
|
#
|
843
1065
|
# @option params [Types::ComputeCapacity] :compute_capacity
|
844
1066
|
# The parameters for the capacity allocated to the fleet.
|
@@ -866,7 +1088,12 @@ module Aws::AppStream
|
|
866
1088
|
# The name displayed to end users on the AppStream 2.0 portal.
|
867
1089
|
#
|
868
1090
|
# @option params [Boolean] :enable_default_internet_access
|
869
|
-
# Enables or disables default
|
1091
|
+
# Enables or disables default internet access for the fleet.
|
1092
|
+
#
|
1093
|
+
# @option params [Types::DomainJoinInfo] :domain_join_info
|
1094
|
+
# The *DirectoryName* and *OrganizationalUnitDistinguishedName* values,
|
1095
|
+
# which are used to join domains for the AppStream 2.0 streaming
|
1096
|
+
# instances.
|
870
1097
|
#
|
871
1098
|
# @option params [Array<String>] :attributes_to_delete
|
872
1099
|
# Fleet attributes to be deleted.
|
@@ -894,7 +1121,11 @@ module Aws::AppStream
|
|
894
1121
|
# description: "Description",
|
895
1122
|
# display_name: "DisplayName",
|
896
1123
|
# enable_default_internet_access: false,
|
897
|
-
#
|
1124
|
+
# domain_join_info: {
|
1125
|
+
# directory_name: "DirectoryName",
|
1126
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
1127
|
+
# },
|
1128
|
+
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO
|
898
1129
|
# })
|
899
1130
|
#
|
900
1131
|
# @example Response structure
|
@@ -918,9 +1149,11 @@ module Aws::AppStream
|
|
918
1149
|
# resp.fleet.vpc_config.security_group_ids[0] #=> String
|
919
1150
|
# resp.fleet.created_time #=> Time
|
920
1151
|
# resp.fleet.fleet_errors #=> Array
|
921
|
-
# resp.fleet.fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION"
|
1152
|
+
# resp.fleet.fleet_errors[0].error_code #=> String, one of "IAM_SERVICE_ROLE_MISSING_ENI_DESCRIBE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_CREATE_ACTION", "IAM_SERVICE_ROLE_MISSING_ENI_DELETE_ACTION", "NETWORK_INTERFACE_LIMIT_EXCEEDED", "INTERNAL_SERVICE_ERROR", "IAM_SERVICE_ROLE_IS_MISSING", "SUBNET_HAS_INSUFFICIENT_IP_ADDRESSES", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SUBNET_ACTION", "SUBNET_NOT_FOUND", "IMAGE_NOT_FOUND", "INVALID_SUBNET_CONFIGURATION", "SECURITY_GROUPS_NOT_FOUND", "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION", "DOMAIN_JOIN_ERROR_FILE_NOT_FOUND", "DOMAIN_JOIN_ERROR_ACCESS_DENIED", "DOMAIN_JOIN_ERROR_LOGON_FAILURE", "DOMAIN_JOIN_ERROR_INVALID_PARAMETER", "DOMAIN_JOIN_ERROR_MORE_DATA", "DOMAIN_JOIN_ERROR_NO_SUCH_DOMAIN", "DOMAIN_JOIN_ERROR_NOT_SUPPORTED", "DOMAIN_JOIN_NERR_INVALID_WORKGROUP_NAME", "DOMAIN_JOIN_NERR_WORKSTATION_NOT_STARTED", "DOMAIN_JOIN_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED", "DOMAIN_JOIN_NERR_PASSWORD_EXPIRED", "DOMAIN_JOIN_INTERNAL_SERVICE_ERROR"
|
922
1153
|
# resp.fleet.fleet_errors[0].error_message #=> String
|
923
1154
|
# resp.fleet.enable_default_internet_access #=> Boolean
|
1155
|
+
# resp.fleet.domain_join_info.directory_name #=> String
|
1156
|
+
# resp.fleet.domain_join_info.organizational_unit_distinguished_name #=> String
|
924
1157
|
#
|
925
1158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateFleet AWS API Documentation
|
926
1159
|
#
|
@@ -1003,7 +1236,7 @@ module Aws::AppStream
|
|
1003
1236
|
params: params,
|
1004
1237
|
config: config)
|
1005
1238
|
context[:gem_name] = 'aws-sdk-appstream'
|
1006
|
-
context[:gem_version] = '1.0.0.
|
1239
|
+
context[:gem_version] = '1.0.0.rc10'
|
1007
1240
|
Seahorse::Client::Request.new(handlers, context)
|
1008
1241
|
end
|
1009
1242
|
|
@@ -11,6 +11,8 @@ module Aws::AppStream
|
|
11
11
|
|
12
12
|
include Seahorse::Model
|
13
13
|
|
14
|
+
AccountName = Shapes::StringShape.new(name: 'AccountName')
|
15
|
+
AccountPassword = Shapes::StringShape.new(name: 'AccountPassword')
|
14
16
|
Application = Shapes::StructureShape.new(name: 'Application')
|
15
17
|
Applications = Shapes::ListShape.new(name: 'Applications')
|
16
18
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
@@ -22,16 +24,22 @@ module Aws::AppStream
|
|
22
24
|
ComputeCapacity = Shapes::StructureShape.new(name: 'ComputeCapacity')
|
23
25
|
ComputeCapacityStatus = Shapes::StructureShape.new(name: 'ComputeCapacityStatus')
|
24
26
|
ConcurrentModificationException = Shapes::StructureShape.new(name: 'ConcurrentModificationException')
|
27
|
+
CreateDirectoryConfigRequest = Shapes::StructureShape.new(name: 'CreateDirectoryConfigRequest')
|
28
|
+
CreateDirectoryConfigResult = Shapes::StructureShape.new(name: 'CreateDirectoryConfigResult')
|
25
29
|
CreateFleetRequest = Shapes::StructureShape.new(name: 'CreateFleetRequest')
|
26
30
|
CreateFleetResult = Shapes::StructureShape.new(name: 'CreateFleetResult')
|
27
31
|
CreateStackRequest = Shapes::StructureShape.new(name: 'CreateStackRequest')
|
28
32
|
CreateStackResult = Shapes::StructureShape.new(name: 'CreateStackResult')
|
29
33
|
CreateStreamingURLRequest = Shapes::StructureShape.new(name: 'CreateStreamingURLRequest')
|
30
34
|
CreateStreamingURLResult = Shapes::StructureShape.new(name: 'CreateStreamingURLResult')
|
35
|
+
DeleteDirectoryConfigRequest = Shapes::StructureShape.new(name: 'DeleteDirectoryConfigRequest')
|
36
|
+
DeleteDirectoryConfigResult = Shapes::StructureShape.new(name: 'DeleteDirectoryConfigResult')
|
31
37
|
DeleteFleetRequest = Shapes::StructureShape.new(name: 'DeleteFleetRequest')
|
32
38
|
DeleteFleetResult = Shapes::StructureShape.new(name: 'DeleteFleetResult')
|
33
39
|
DeleteStackRequest = Shapes::StructureShape.new(name: 'DeleteStackRequest')
|
34
40
|
DeleteStackResult = Shapes::StructureShape.new(name: 'DeleteStackResult')
|
41
|
+
DescribeDirectoryConfigsRequest = Shapes::StructureShape.new(name: 'DescribeDirectoryConfigsRequest')
|
42
|
+
DescribeDirectoryConfigsResult = Shapes::StructureShape.new(name: 'DescribeDirectoryConfigsResult')
|
35
43
|
DescribeFleetsRequest = Shapes::StructureShape.new(name: 'DescribeFleetsRequest')
|
36
44
|
DescribeFleetsResult = Shapes::StructureShape.new(name: 'DescribeFleetsResult')
|
37
45
|
DescribeImagesRequest = Shapes::StructureShape.new(name: 'DescribeImagesRequest')
|
@@ -41,9 +49,14 @@ module Aws::AppStream
|
|
41
49
|
DescribeStacksRequest = Shapes::StructureShape.new(name: 'DescribeStacksRequest')
|
42
50
|
DescribeStacksResult = Shapes::StructureShape.new(name: 'DescribeStacksResult')
|
43
51
|
Description = Shapes::StringShape.new(name: 'Description')
|
52
|
+
DirectoryConfig = Shapes::StructureShape.new(name: 'DirectoryConfig')
|
53
|
+
DirectoryConfigList = Shapes::ListShape.new(name: 'DirectoryConfigList')
|
54
|
+
DirectoryName = Shapes::StringShape.new(name: 'DirectoryName')
|
55
|
+
DirectoryNameList = Shapes::ListShape.new(name: 'DirectoryNameList')
|
44
56
|
DisassociateFleetRequest = Shapes::StructureShape.new(name: 'DisassociateFleetRequest')
|
45
57
|
DisassociateFleetResult = Shapes::StructureShape.new(name: 'DisassociateFleetResult')
|
46
58
|
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
59
|
+
DomainJoinInfo = Shapes::StructureShape.new(name: 'DomainJoinInfo')
|
47
60
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
48
61
|
ExpireSessionRequest = Shapes::StructureShape.new(name: 'ExpireSessionRequest')
|
49
62
|
ExpireSessionResult = Shapes::StructureShape.new(name: 'ExpireSessionResult')
|
@@ -73,6 +86,8 @@ module Aws::AppStream
|
|
73
86
|
Metadata = Shapes::MapShape.new(name: 'Metadata')
|
74
87
|
Name = Shapes::StringShape.new(name: 'Name')
|
75
88
|
OperationNotPermittedException = Shapes::StructureShape.new(name: 'OperationNotPermittedException')
|
89
|
+
OrganizationalUnitDistinguishedName = Shapes::StringShape.new(name: 'OrganizationalUnitDistinguishedName')
|
90
|
+
OrganizationalUnitDistinguishedNamesList = Shapes::ListShape.new(name: 'OrganizationalUnitDistinguishedNamesList')
|
76
91
|
PlatformType = Shapes::StringShape.new(name: 'PlatformType')
|
77
92
|
ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
|
78
93
|
ResourceIdentifier = Shapes::StringShape.new(name: 'ResourceIdentifier')
|
@@ -80,6 +95,7 @@ module Aws::AppStream
|
|
80
95
|
ResourceNotAvailableException = Shapes::StructureShape.new(name: 'ResourceNotAvailableException')
|
81
96
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
82
97
|
SecurityGroupIdList = Shapes::ListShape.new(name: 'SecurityGroupIdList')
|
98
|
+
ServiceAccountCredentials = Shapes::StructureShape.new(name: 'ServiceAccountCredentials')
|
83
99
|
Session = Shapes::StructureShape.new(name: 'Session')
|
84
100
|
SessionList = Shapes::ListShape.new(name: 'SessionList')
|
85
101
|
SessionState = Shapes::StringShape.new(name: 'SessionState')
|
@@ -95,10 +111,13 @@ module Aws::AppStream
|
|
95
111
|
StorageConnector = Shapes::StructureShape.new(name: 'StorageConnector')
|
96
112
|
StorageConnectorList = Shapes::ListShape.new(name: 'StorageConnectorList')
|
97
113
|
StorageConnectorType = Shapes::StringShape.new(name: 'StorageConnectorType')
|
114
|
+
StreamingUrlUserId = Shapes::StringShape.new(name: 'StreamingUrlUserId')
|
98
115
|
String = Shapes::StringShape.new(name: 'String')
|
99
116
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
100
117
|
SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
|
101
118
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
119
|
+
UpdateDirectoryConfigRequest = Shapes::StructureShape.new(name: 'UpdateDirectoryConfigRequest')
|
120
|
+
UpdateDirectoryConfigResult = Shapes::StructureShape.new(name: 'UpdateDirectoryConfigResult')
|
102
121
|
UpdateFleetRequest = Shapes::StructureShape.new(name: 'UpdateFleetRequest')
|
103
122
|
UpdateFleetResult = Shapes::StructureShape.new(name: 'UpdateFleetResult')
|
104
123
|
UpdateStackRequest = Shapes::StructureShape.new(name: 'UpdateStackRequest')
|
@@ -133,6 +152,14 @@ module Aws::AppStream
|
|
133
152
|
ComputeCapacityStatus.add_member(:available, Shapes::ShapeRef.new(shape: Integer, location_name: "Available"))
|
134
153
|
ComputeCapacityStatus.struct_class = Types::ComputeCapacityStatus
|
135
154
|
|
155
|
+
CreateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
156
|
+
CreateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, required: true, location_name: "OrganizationalUnitDistinguishedNames"))
|
157
|
+
CreateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, required: true, location_name: "ServiceAccountCredentials"))
|
158
|
+
CreateDirectoryConfigRequest.struct_class = Types::CreateDirectoryConfigRequest
|
159
|
+
|
160
|
+
CreateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
|
161
|
+
CreateDirectoryConfigResult.struct_class = Types::CreateDirectoryConfigResult
|
162
|
+
|
136
163
|
CreateFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "Name"))
|
137
164
|
CreateFleetRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ImageName"))
|
138
165
|
CreateFleetRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "InstanceType"))
|
@@ -143,6 +170,7 @@ module Aws::AppStream
|
|
143
170
|
CreateFleetRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
144
171
|
CreateFleetRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
145
172
|
CreateFleetRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
173
|
+
CreateFleetRequest.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
146
174
|
CreateFleetRequest.struct_class = Types::CreateFleetRequest
|
147
175
|
|
148
176
|
CreateFleetResult.add_member(:fleet, Shapes::ShapeRef.new(shape: Fleet, location_name: "Fleet"))
|
@@ -159,7 +187,7 @@ module Aws::AppStream
|
|
159
187
|
|
160
188
|
CreateStreamingURLRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "StackName"))
|
161
189
|
CreateStreamingURLRequest.add_member(:fleet_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "FleetName"))
|
162
|
-
CreateStreamingURLRequest.add_member(:user_id, Shapes::ShapeRef.new(shape:
|
190
|
+
CreateStreamingURLRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: StreamingUrlUserId, required: true, location_name: "UserId"))
|
163
191
|
CreateStreamingURLRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: String, location_name: "ApplicationId"))
|
164
192
|
CreateStreamingURLRequest.add_member(:validity, Shapes::ShapeRef.new(shape: Long, location_name: "Validity"))
|
165
193
|
CreateStreamingURLRequest.add_member(:session_context, Shapes::ShapeRef.new(shape: String, location_name: "SessionContext"))
|
@@ -169,6 +197,11 @@ module Aws::AppStream
|
|
169
197
|
CreateStreamingURLResult.add_member(:expires, Shapes::ShapeRef.new(shape: Timestamp, location_name: "Expires"))
|
170
198
|
CreateStreamingURLResult.struct_class = Types::CreateStreamingURLResult
|
171
199
|
|
200
|
+
DeleteDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
201
|
+
DeleteDirectoryConfigRequest.struct_class = Types::DeleteDirectoryConfigRequest
|
202
|
+
|
203
|
+
DeleteDirectoryConfigResult.struct_class = Types::DeleteDirectoryConfigResult
|
204
|
+
|
172
205
|
DeleteFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
173
206
|
DeleteFleetRequest.struct_class = Types::DeleteFleetRequest
|
174
207
|
|
@@ -179,6 +212,15 @@ module Aws::AppStream
|
|
179
212
|
|
180
213
|
DeleteStackResult.struct_class = Types::DeleteStackResult
|
181
214
|
|
215
|
+
DescribeDirectoryConfigsRequest.add_member(:directory_names, Shapes::ShapeRef.new(shape: DirectoryNameList, location_name: "DirectoryNames"))
|
216
|
+
DescribeDirectoryConfigsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
|
217
|
+
DescribeDirectoryConfigsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
218
|
+
DescribeDirectoryConfigsRequest.struct_class = Types::DescribeDirectoryConfigsRequest
|
219
|
+
|
220
|
+
DescribeDirectoryConfigsResult.add_member(:directory_configs, Shapes::ShapeRef.new(shape: DirectoryConfigList, location_name: "DirectoryConfigs"))
|
221
|
+
DescribeDirectoryConfigsResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
222
|
+
DescribeDirectoryConfigsResult.struct_class = Types::DescribeDirectoryConfigsResult
|
223
|
+
|
182
224
|
DescribeFleetsRequest.add_member(:names, Shapes::ShapeRef.new(shape: StringList, location_name: "Names"))
|
183
225
|
DescribeFleetsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
184
226
|
DescribeFleetsRequest.struct_class = Types::DescribeFleetsRequest
|
@@ -213,12 +255,26 @@ module Aws::AppStream
|
|
213
255
|
DescribeStacksResult.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
214
256
|
DescribeStacksResult.struct_class = Types::DescribeStacksResult
|
215
257
|
|
258
|
+
DirectoryConfig.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
259
|
+
DirectoryConfig.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, location_name: "OrganizationalUnitDistinguishedNames"))
|
260
|
+
DirectoryConfig.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
|
261
|
+
DirectoryConfig.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
262
|
+
DirectoryConfig.struct_class = Types::DirectoryConfig
|
263
|
+
|
264
|
+
DirectoryConfigList.member = Shapes::ShapeRef.new(shape: DirectoryConfig)
|
265
|
+
|
266
|
+
DirectoryNameList.member = Shapes::ShapeRef.new(shape: DirectoryName)
|
267
|
+
|
216
268
|
DisassociateFleetRequest.add_member(:fleet_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "FleetName"))
|
217
269
|
DisassociateFleetRequest.add_member(:stack_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "StackName"))
|
218
270
|
DisassociateFleetRequest.struct_class = Types::DisassociateFleetRequest
|
219
271
|
|
220
272
|
DisassociateFleetResult.struct_class = Types::DisassociateFleetResult
|
221
273
|
|
274
|
+
DomainJoinInfo.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, location_name: "DirectoryName"))
|
275
|
+
DomainJoinInfo.add_member(:organizational_unit_distinguished_name, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedName, location_name: "OrganizationalUnitDistinguishedName"))
|
276
|
+
DomainJoinInfo.struct_class = Types::DomainJoinInfo
|
277
|
+
|
222
278
|
ExpireSessionRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SessionId"))
|
223
279
|
ExpireSessionRequest.struct_class = Types::ExpireSessionRequest
|
224
280
|
|
@@ -238,6 +294,7 @@ module Aws::AppStream
|
|
238
294
|
Fleet.add_member(:created_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedTime"))
|
239
295
|
Fleet.add_member(:fleet_errors, Shapes::ShapeRef.new(shape: FleetErrors, location_name: "FleetErrors"))
|
240
296
|
Fleet.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
297
|
+
Fleet.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
241
298
|
Fleet.struct_class = Types::Fleet
|
242
299
|
|
243
300
|
FleetAttributes.member = Shapes::ShapeRef.new(shape: FleetAttribute)
|
@@ -290,8 +347,14 @@ module Aws::AppStream
|
|
290
347
|
Metadata.key = Shapes::ShapeRef.new(shape: String)
|
291
348
|
Metadata.value = Shapes::ShapeRef.new(shape: String)
|
292
349
|
|
350
|
+
OrganizationalUnitDistinguishedNamesList.member = Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedName)
|
351
|
+
|
293
352
|
SecurityGroupIdList.member = Shapes::ShapeRef.new(shape: String)
|
294
353
|
|
354
|
+
ServiceAccountCredentials.add_member(:account_name, Shapes::ShapeRef.new(shape: AccountName, required: true, location_name: "AccountName"))
|
355
|
+
ServiceAccountCredentials.add_member(:account_password, Shapes::ShapeRef.new(shape: AccountPassword, required: true, location_name: "AccountPassword"))
|
356
|
+
ServiceAccountCredentials.struct_class = Types::ServiceAccountCredentials
|
357
|
+
|
295
358
|
Session.add_member(:id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Id"))
|
296
359
|
Session.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, required: true, location_name: "UserId"))
|
297
360
|
Session.add_member(:stack_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "StackName"))
|
@@ -339,6 +402,14 @@ module Aws::AppStream
|
|
339
402
|
|
340
403
|
SubnetIdList.member = Shapes::ShapeRef.new(shape: String)
|
341
404
|
|
405
|
+
UpdateDirectoryConfigRequest.add_member(:directory_name, Shapes::ShapeRef.new(shape: DirectoryName, required: true, location_name: "DirectoryName"))
|
406
|
+
UpdateDirectoryConfigRequest.add_member(:organizational_unit_distinguished_names, Shapes::ShapeRef.new(shape: OrganizationalUnitDistinguishedNamesList, location_name: "OrganizationalUnitDistinguishedNames"))
|
407
|
+
UpdateDirectoryConfigRequest.add_member(:service_account_credentials, Shapes::ShapeRef.new(shape: ServiceAccountCredentials, location_name: "ServiceAccountCredentials"))
|
408
|
+
UpdateDirectoryConfigRequest.struct_class = Types::UpdateDirectoryConfigRequest
|
409
|
+
|
410
|
+
UpdateDirectoryConfigResult.add_member(:directory_config, Shapes::ShapeRef.new(shape: DirectoryConfig, location_name: "DirectoryConfig"))
|
411
|
+
UpdateDirectoryConfigResult.struct_class = Types::UpdateDirectoryConfigResult
|
412
|
+
|
342
413
|
UpdateFleetRequest.add_member(:image_name, Shapes::ShapeRef.new(shape: String, location_name: "ImageName"))
|
343
414
|
UpdateFleetRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Name"))
|
344
415
|
UpdateFleetRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: String, location_name: "InstanceType"))
|
@@ -350,6 +421,7 @@ module Aws::AppStream
|
|
350
421
|
UpdateFleetRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
|
351
422
|
UpdateFleetRequest.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
352
423
|
UpdateFleetRequest.add_member(:enable_default_internet_access, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "EnableDefaultInternetAccess"))
|
424
|
+
UpdateFleetRequest.add_member(:domain_join_info, Shapes::ShapeRef.new(shape: DomainJoinInfo, location_name: "DomainJoinInfo"))
|
353
425
|
UpdateFleetRequest.add_member(:attributes_to_delete, Shapes::ShapeRef.new(shape: FleetAttributes, location_name: "AttributesToDelete"))
|
354
426
|
UpdateFleetRequest.struct_class = Types::UpdateFleetRequest
|
355
427
|
|
@@ -396,6 +468,17 @@ module Aws::AppStream
|
|
396
468
|
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
397
469
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
398
470
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
471
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
472
|
+
end)
|
473
|
+
|
474
|
+
api.add_operation(:create_directory_config, Seahorse::Model::Operation.new.tap do |o|
|
475
|
+
o.name = "CreateDirectoryConfig"
|
476
|
+
o.http_method = "POST"
|
477
|
+
o.http_request_uri = "/"
|
478
|
+
o.input = Shapes::ShapeRef.new(shape: CreateDirectoryConfigRequest)
|
479
|
+
o.output = Shapes::ShapeRef.new(shape: CreateDirectoryConfigResult)
|
480
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
481
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
399
482
|
end)
|
400
483
|
|
401
484
|
api.add_operation(:create_fleet, Seahorse::Model::Operation.new.tap do |o|
|
@@ -410,6 +493,8 @@ module Aws::AppStream
|
|
410
493
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
411
494
|
o.errors << Shapes::ShapeRef.new(shape: InvalidRoleException)
|
412
495
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
496
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
497
|
+
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
413
498
|
end)
|
414
499
|
|
415
500
|
api.add_operation(:create_stack, Seahorse::Model::Operation.new.tap do |o|
|
@@ -438,6 +523,16 @@ module Aws::AppStream
|
|
438
523
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
439
524
|
end)
|
440
525
|
|
526
|
+
api.add_operation(:delete_directory_config, Seahorse::Model::Operation.new.tap do |o|
|
527
|
+
o.name = "DeleteDirectoryConfig"
|
528
|
+
o.http_method = "POST"
|
529
|
+
o.http_request_uri = "/"
|
530
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteDirectoryConfigRequest)
|
531
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteDirectoryConfigResult)
|
532
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
533
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
534
|
+
end)
|
535
|
+
|
441
536
|
api.add_operation(:delete_fleet, Seahorse::Model::Operation.new.tap do |o|
|
442
537
|
o.name = "DeleteFleet"
|
443
538
|
o.http_method = "POST"
|
@@ -460,6 +555,15 @@ module Aws::AppStream
|
|
460
555
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
461
556
|
end)
|
462
557
|
|
558
|
+
api.add_operation(:describe_directory_configs, Seahorse::Model::Operation.new.tap do |o|
|
559
|
+
o.name = "DescribeDirectoryConfigs"
|
560
|
+
o.http_method = "POST"
|
561
|
+
o.http_request_uri = "/"
|
562
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeDirectoryConfigsRequest)
|
563
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeDirectoryConfigsResult)
|
564
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
565
|
+
end)
|
566
|
+
|
463
567
|
api.add_operation(:describe_fleets, Seahorse::Model::Operation.new.tap do |o|
|
464
568
|
o.name = "DescribeFleets"
|
465
569
|
o.http_method = "POST"
|
@@ -553,6 +657,17 @@ module Aws::AppStream
|
|
553
657
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
554
658
|
end)
|
555
659
|
|
660
|
+
api.add_operation(:update_directory_config, Seahorse::Model::Operation.new.tap do |o|
|
661
|
+
o.name = "UpdateDirectoryConfig"
|
662
|
+
o.http_method = "POST"
|
663
|
+
o.http_request_uri = "/"
|
664
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateDirectoryConfigRequest)
|
665
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateDirectoryConfigResult)
|
666
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
667
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
668
|
+
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
669
|
+
end)
|
670
|
+
|
556
671
|
api.add_operation(:update_fleet, Seahorse::Model::Operation.new.tap do |o|
|
557
672
|
o.name = "UpdateFleet"
|
558
673
|
o.http_method = "POST"
|
@@ -567,6 +682,7 @@ module Aws::AppStream
|
|
567
682
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
568
683
|
o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
|
569
684
|
o.errors << Shapes::ShapeRef.new(shape: IncompatibleImageException)
|
685
|
+
o.errors << Shapes::ShapeRef.new(shape: OperationNotPermittedException)
|
570
686
|
end)
|
571
687
|
|
572
688
|
api.add_operation(:update_stack, Seahorse::Model::Operation.new.tap do |o|
|
@@ -31,8 +31,8 @@ module Aws::AppStream
|
|
31
31
|
# @return [String]
|
32
32
|
#
|
33
33
|
# @!attribute [rw] enabled
|
34
|
-
#
|
35
|
-
#
|
34
|
+
# If there is a problem, an application can be disabled after image
|
35
|
+
# creation.
|
36
36
|
# @return [Boolean]
|
37
37
|
#
|
38
38
|
# @!attribute [rw] metadata
|
@@ -130,6 +130,53 @@ module Aws::AppStream
|
|
130
130
|
include Aws::Structure
|
131
131
|
end
|
132
132
|
|
133
|
+
# @note When making an API call, you may pass CreateDirectoryConfigRequest
|
134
|
+
# data as a hash:
|
135
|
+
#
|
136
|
+
# {
|
137
|
+
# directory_name: "DirectoryName", # required
|
138
|
+
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"], # required
|
139
|
+
# service_account_credentials: { # required
|
140
|
+
# account_name: "AccountName", # required
|
141
|
+
# account_password: "AccountPassword", # required
|
142
|
+
# },
|
143
|
+
# }
|
144
|
+
#
|
145
|
+
# @!attribute [rw] directory_name
|
146
|
+
# The fully qualified name of the directory, such as corp.example.com
|
147
|
+
# @return [String]
|
148
|
+
#
|
149
|
+
# @!attribute [rw] organizational_unit_distinguished_names
|
150
|
+
# The list of the distinguished names of organizational units to place
|
151
|
+
# computer accounts in.
|
152
|
+
# @return [Array<String>]
|
153
|
+
#
|
154
|
+
# @!attribute [rw] service_account_credentials
|
155
|
+
# The *AccountName* and *AccountPassword* values for the service
|
156
|
+
# account, which are used by the streaming instance to connect to the
|
157
|
+
# directory.
|
158
|
+
# @return [Types::ServiceAccountCredentials]
|
159
|
+
#
|
160
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfigRequest AWS API Documentation
|
161
|
+
#
|
162
|
+
class CreateDirectoryConfigRequest < Struct.new(
|
163
|
+
:directory_name,
|
164
|
+
:organizational_unit_distinguished_names,
|
165
|
+
:service_account_credentials)
|
166
|
+
include Aws::Structure
|
167
|
+
end
|
168
|
+
|
169
|
+
# @!attribute [rw] directory_config
|
170
|
+
# Directory configuration details.
|
171
|
+
# @return [Types::DirectoryConfig]
|
172
|
+
#
|
173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateDirectoryConfigResult AWS API Documentation
|
174
|
+
#
|
175
|
+
class CreateDirectoryConfigResult < Struct.new(
|
176
|
+
:directory_config)
|
177
|
+
include Aws::Structure
|
178
|
+
end
|
179
|
+
|
133
180
|
# Contains the parameters for the new fleet to create.
|
134
181
|
#
|
135
182
|
# @note When making an API call, you may pass CreateFleetRequest
|
@@ -151,6 +198,10 @@ module Aws::AppStream
|
|
151
198
|
# description: "Description",
|
152
199
|
# display_name: "DisplayName",
|
153
200
|
# enable_default_internet_access: false,
|
201
|
+
# domain_join_info: {
|
202
|
+
# directory_name: "DirectoryName",
|
203
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
204
|
+
# },
|
154
205
|
# }
|
155
206
|
#
|
156
207
|
# @!attribute [rw] name
|
@@ -163,7 +214,32 @@ module Aws::AppStream
|
|
163
214
|
#
|
164
215
|
# @!attribute [rw] instance_type
|
165
216
|
# The instance type of compute resources for the fleet. Fleet
|
166
|
-
# instances are launched from this instance type.
|
217
|
+
# instances are launched from this instance type. Available instance
|
218
|
+
# types are:
|
219
|
+
#
|
220
|
+
# * stream.standard.medium
|
221
|
+
#
|
222
|
+
# * stream.standard.large
|
223
|
+
#
|
224
|
+
# * stream.compute.large
|
225
|
+
#
|
226
|
+
# * stream.compute.xlarge
|
227
|
+
#
|
228
|
+
# * stream.compute.2xlarge
|
229
|
+
#
|
230
|
+
# * stream.compute.4xlarge
|
231
|
+
#
|
232
|
+
# * stream.compute.8xlarge
|
233
|
+
#
|
234
|
+
# * stream.memory.large
|
235
|
+
#
|
236
|
+
# * stream.memory.xlarge
|
237
|
+
#
|
238
|
+
# * stream.memory.2xlarge
|
239
|
+
#
|
240
|
+
# * stream.memory.4xlarge
|
241
|
+
#
|
242
|
+
# * stream.memory.8xlarge
|
167
243
|
# @return [String]
|
168
244
|
#
|
169
245
|
# @!attribute [rw] compute_capacity
|
@@ -195,9 +271,15 @@ module Aws::AppStream
|
|
195
271
|
# @return [String]
|
196
272
|
#
|
197
273
|
# @!attribute [rw] enable_default_internet_access
|
198
|
-
# Enables or disables default
|
274
|
+
# Enables or disables default internet access for the fleet.
|
199
275
|
# @return [Boolean]
|
200
276
|
#
|
277
|
+
# @!attribute [rw] domain_join_info
|
278
|
+
# The *DirectoryName* and *OrganizationalUnitDistinguishedName*
|
279
|
+
# values, which are used to join domains for the AppStream 2.0
|
280
|
+
# streaming instances.
|
281
|
+
# @return [Types::DomainJoinInfo]
|
282
|
+
#
|
201
283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateFleetRequest AWS API Documentation
|
202
284
|
#
|
203
285
|
class CreateFleetRequest < Struct.new(
|
@@ -210,7 +292,8 @@ module Aws::AppStream
|
|
210
292
|
:disconnect_timeout_in_seconds,
|
211
293
|
:description,
|
212
294
|
:display_name,
|
213
|
-
:enable_default_internet_access
|
295
|
+
:enable_default_internet_access,
|
296
|
+
:domain_join_info)
|
214
297
|
include Aws::Structure
|
215
298
|
end
|
216
299
|
|
@@ -283,7 +366,7 @@ module Aws::AppStream
|
|
283
366
|
# {
|
284
367
|
# stack_name: "String", # required
|
285
368
|
# fleet_name: "String", # required
|
286
|
-
# user_id: "
|
369
|
+
# user_id: "StreamingUrlUserId", # required
|
287
370
|
# application_id: "String",
|
288
371
|
# validity: 1,
|
289
372
|
# session_context: "String",
|
@@ -333,8 +416,7 @@ module Aws::AppStream
|
|
333
416
|
# @return [String]
|
334
417
|
#
|
335
418
|
# @!attribute [rw] expires
|
336
|
-
# Elapsed seconds after the Unix epoch,
|
337
|
-
# expires.
|
419
|
+
# Elapsed seconds after the Unix epoch, when this URL expires.
|
338
420
|
# @return [Time]
|
339
421
|
#
|
340
422
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/CreateStreamingURLResult AWS API Documentation
|
@@ -345,6 +427,28 @@ module Aws::AppStream
|
|
345
427
|
include Aws::Structure
|
346
428
|
end
|
347
429
|
|
430
|
+
# @note When making an API call, you may pass DeleteDirectoryConfigRequest
|
431
|
+
# data as a hash:
|
432
|
+
#
|
433
|
+
# {
|
434
|
+
# directory_name: "DirectoryName", # required
|
435
|
+
# }
|
436
|
+
#
|
437
|
+
# @!attribute [rw] directory_name
|
438
|
+
# The name of the directory configuration to be deleted.
|
439
|
+
# @return [String]
|
440
|
+
#
|
441
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteDirectoryConfigRequest AWS API Documentation
|
442
|
+
#
|
443
|
+
class DeleteDirectoryConfigRequest < Struct.new(
|
444
|
+
:directory_name)
|
445
|
+
include Aws::Structure
|
446
|
+
end
|
447
|
+
|
448
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DeleteDirectoryConfigResult AWS API Documentation
|
449
|
+
#
|
450
|
+
class DeleteDirectoryConfigResult < Aws::EmptyStructure; end
|
451
|
+
|
348
452
|
# @note When making an API call, you may pass DeleteFleetRequest
|
349
453
|
# data as a hash:
|
350
454
|
#
|
@@ -389,6 +493,55 @@ module Aws::AppStream
|
|
389
493
|
#
|
390
494
|
class DeleteStackResult < Aws::EmptyStructure; end
|
391
495
|
|
496
|
+
# @note When making an API call, you may pass DescribeDirectoryConfigsRequest
|
497
|
+
# data as a hash:
|
498
|
+
#
|
499
|
+
# {
|
500
|
+
# directory_names: ["DirectoryName"],
|
501
|
+
# max_results: 1,
|
502
|
+
# next_token: "String",
|
503
|
+
# }
|
504
|
+
#
|
505
|
+
# @!attribute [rw] directory_names
|
506
|
+
# A specific list of directory names.
|
507
|
+
# @return [Array<String>]
|
508
|
+
#
|
509
|
+
# @!attribute [rw] max_results
|
510
|
+
# The size of each page of results.
|
511
|
+
# @return [Integer]
|
512
|
+
#
|
513
|
+
# @!attribute [rw] next_token
|
514
|
+
# The DescribeDirectoryConfigsResult.NextToken from a previous call to
|
515
|
+
# DescribeDirectoryConfigs. If this is the first call, pass null.
|
516
|
+
# @return [String]
|
517
|
+
#
|
518
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeDirectoryConfigsRequest AWS API Documentation
|
519
|
+
#
|
520
|
+
class DescribeDirectoryConfigsRequest < Struct.new(
|
521
|
+
:directory_names,
|
522
|
+
:max_results,
|
523
|
+
:next_token)
|
524
|
+
include Aws::Structure
|
525
|
+
end
|
526
|
+
|
527
|
+
# @!attribute [rw] directory_configs
|
528
|
+
# The list of directory configurations.
|
529
|
+
# @return [Array<Types::DirectoryConfig>]
|
530
|
+
#
|
531
|
+
# @!attribute [rw] next_token
|
532
|
+
# If not null, more results are available. To retrieve the next set of
|
533
|
+
# items, pass this value for the NextToken parameter in a subsequent
|
534
|
+
# call to DescribeDirectoryConfigs.
|
535
|
+
# @return [String]
|
536
|
+
#
|
537
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DescribeDirectoryConfigsResult AWS API Documentation
|
538
|
+
#
|
539
|
+
class DescribeDirectoryConfigsResult < Struct.new(
|
540
|
+
:directory_configs,
|
541
|
+
:next_token)
|
542
|
+
include Aws::Structure
|
543
|
+
end
|
544
|
+
|
392
545
|
# @note When making an API call, you may pass DescribeFleetsRequest
|
393
546
|
# data as a hash:
|
394
547
|
#
|
@@ -575,6 +728,38 @@ module Aws::AppStream
|
|
575
728
|
include Aws::Structure
|
576
729
|
end
|
577
730
|
|
731
|
+
# Full directory configuration details, which are used to join domains
|
732
|
+
# for the AppStream 2.0 streaming instances.
|
733
|
+
#
|
734
|
+
# @!attribute [rw] directory_name
|
735
|
+
# The fully qualified name of the directory, such as corp.example.com
|
736
|
+
# @return [String]
|
737
|
+
#
|
738
|
+
# @!attribute [rw] organizational_unit_distinguished_names
|
739
|
+
# The list of the distinguished names of organizational units in which
|
740
|
+
# to place computer accounts.
|
741
|
+
# @return [Array<String>]
|
742
|
+
#
|
743
|
+
# @!attribute [rw] service_account_credentials
|
744
|
+
# The *AccountName* and *AccountPassword* of the service account, to
|
745
|
+
# be used by the streaming instance to connect to the directory.
|
746
|
+
# @return [Types::ServiceAccountCredentials]
|
747
|
+
#
|
748
|
+
# @!attribute [rw] created_time
|
749
|
+
# The time stamp when the directory configuration was created within
|
750
|
+
# AppStream 2.0.
|
751
|
+
# @return [Time]
|
752
|
+
#
|
753
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DirectoryConfig AWS API Documentation
|
754
|
+
#
|
755
|
+
class DirectoryConfig < Struct.new(
|
756
|
+
:directory_name,
|
757
|
+
:organizational_unit_distinguished_names,
|
758
|
+
:service_account_credentials,
|
759
|
+
:created_time)
|
760
|
+
include Aws::Structure
|
761
|
+
end
|
762
|
+
|
578
763
|
# @note When making an API call, you may pass DisassociateFleetRequest
|
579
764
|
# data as a hash:
|
580
765
|
#
|
@@ -603,6 +788,35 @@ module Aws::AppStream
|
|
603
788
|
#
|
604
789
|
class DisassociateFleetResult < Aws::EmptyStructure; end
|
605
790
|
|
791
|
+
# The *DirectoryName* and *OrganizationalUnitDistinguishedName* values,
|
792
|
+
# which are used to join domains for the AppStream 2.0 streaming
|
793
|
+
# instances.
|
794
|
+
#
|
795
|
+
# @note When making an API call, you may pass DomainJoinInfo
|
796
|
+
# data as a hash:
|
797
|
+
#
|
798
|
+
# {
|
799
|
+
# directory_name: "DirectoryName",
|
800
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
801
|
+
# }
|
802
|
+
#
|
803
|
+
# @!attribute [rw] directory_name
|
804
|
+
# The fully qualified name of the directory, such as corp.example.com
|
805
|
+
# @return [String]
|
806
|
+
#
|
807
|
+
# @!attribute [rw] organizational_unit_distinguished_name
|
808
|
+
# The distinguished name of the organizational unit to place the
|
809
|
+
# computer account in.
|
810
|
+
# @return [String]
|
811
|
+
#
|
812
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/DomainJoinInfo AWS API Documentation
|
813
|
+
#
|
814
|
+
class DomainJoinInfo < Struct.new(
|
815
|
+
:directory_name,
|
816
|
+
:organizational_unit_distinguished_name)
|
817
|
+
include Aws::Structure
|
818
|
+
end
|
819
|
+
|
606
820
|
# @note When making an API call, you may pass ExpireSessionRequest
|
607
821
|
# data as a hash:
|
608
822
|
#
|
@@ -685,9 +899,15 @@ module Aws::AppStream
|
|
685
899
|
# @return [Array<Types::FleetError>]
|
686
900
|
#
|
687
901
|
# @!attribute [rw] enable_default_internet_access
|
688
|
-
# Whether default
|
902
|
+
# Whether default internet access is enabled for the fleet.
|
689
903
|
# @return [Boolean]
|
690
904
|
#
|
905
|
+
# @!attribute [rw] domain_join_info
|
906
|
+
# The *DirectoryName* and *OrganizationalUnitDistinguishedName*
|
907
|
+
# values, which are used to join domains for the AppStream 2.0
|
908
|
+
# streaming instances.
|
909
|
+
# @return [Types::DomainJoinInfo]
|
910
|
+
#
|
691
911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/Fleet AWS API Documentation
|
692
912
|
#
|
693
913
|
class Fleet < Struct.new(
|
@@ -704,7 +924,8 @@ module Aws::AppStream
|
|
704
924
|
:vpc_config,
|
705
925
|
:created_time,
|
706
926
|
:fleet_errors,
|
707
|
-
:enable_default_internet_access
|
927
|
+
:enable_default_internet_access,
|
928
|
+
:domain_join_info)
|
708
929
|
include Aws::Structure
|
709
930
|
end
|
710
931
|
|
@@ -746,9 +967,9 @@ module Aws::AppStream
|
|
746
967
|
# @return [String]
|
747
968
|
#
|
748
969
|
# @!attribute [rw] state
|
749
|
-
# The image starts in the **PENDING** state
|
750
|
-
# **AVAILABLE
|
751
|
-
#
|
970
|
+
# The image starts in the **PENDING** state. If image creation
|
971
|
+
# succeeds, it moves to **AVAILABLE**. If image creation fails, it
|
972
|
+
# moves to **FAILED**.
|
752
973
|
# @return [String]
|
753
974
|
#
|
754
975
|
# @!attribute [rw] visibility
|
@@ -777,7 +998,7 @@ module Aws::AppStream
|
|
777
998
|
# @return [Array<Types::Application>]
|
778
999
|
#
|
779
1000
|
# @!attribute [rw] created_time
|
780
|
-
# The
|
1001
|
+
# The time stamp when the image was created.
|
781
1002
|
# @return [Time]
|
782
1003
|
#
|
783
1004
|
# @!attribute [rw] public_base_image_released_date
|
@@ -911,6 +1132,37 @@ module Aws::AppStream
|
|
911
1132
|
include Aws::Structure
|
912
1133
|
end
|
913
1134
|
|
1135
|
+
# The *AccountName* and *AccountPassword* of the service account, to be
|
1136
|
+
# used by the streaming instance to connect to the directory.
|
1137
|
+
#
|
1138
|
+
# @note When making an API call, you may pass ServiceAccountCredentials
|
1139
|
+
# data as a hash:
|
1140
|
+
#
|
1141
|
+
# {
|
1142
|
+
# account_name: "AccountName", # required
|
1143
|
+
# account_password: "AccountPassword", # required
|
1144
|
+
# }
|
1145
|
+
#
|
1146
|
+
# @!attribute [rw] account_name
|
1147
|
+
# The user name of an account in the directory that is used by
|
1148
|
+
# AppStream 2.0 streaming instances to connect to the directory. This
|
1149
|
+
# account must have the following privileges: create computer objects,
|
1150
|
+
# join computers to the domain, change/reset the password on
|
1151
|
+
# descendant computer objects for the organizational units specified.
|
1152
|
+
# @return [String]
|
1153
|
+
#
|
1154
|
+
# @!attribute [rw] account_password
|
1155
|
+
# The password for the user account for directory actions.
|
1156
|
+
# @return [String]
|
1157
|
+
#
|
1158
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/ServiceAccountCredentials AWS API Documentation
|
1159
|
+
#
|
1160
|
+
class ServiceAccountCredentials < Struct.new(
|
1161
|
+
:account_name,
|
1162
|
+
:account_password)
|
1163
|
+
include Aws::Structure
|
1164
|
+
end
|
1165
|
+
|
914
1166
|
# Contains the parameters for a streaming session.
|
915
1167
|
#
|
916
1168
|
# @!attribute [rw] id
|
@@ -970,7 +1222,7 @@ module Aws::AppStream
|
|
970
1222
|
# @return [String]
|
971
1223
|
#
|
972
1224
|
# @!attribute [rw] created_time
|
973
|
-
# The
|
1225
|
+
# The time stamp when the stack was created.
|
974
1226
|
# @return [Time]
|
975
1227
|
#
|
976
1228
|
# @!attribute [rw] storage_connectors
|
@@ -1083,6 +1335,53 @@ module Aws::AppStream
|
|
1083
1335
|
include Aws::Structure
|
1084
1336
|
end
|
1085
1337
|
|
1338
|
+
# @note When making an API call, you may pass UpdateDirectoryConfigRequest
|
1339
|
+
# data as a hash:
|
1340
|
+
#
|
1341
|
+
# {
|
1342
|
+
# directory_name: "DirectoryName", # required
|
1343
|
+
# organizational_unit_distinguished_names: ["OrganizationalUnitDistinguishedName"],
|
1344
|
+
# service_account_credentials: {
|
1345
|
+
# account_name: "AccountName", # required
|
1346
|
+
# account_password: "AccountPassword", # required
|
1347
|
+
# },
|
1348
|
+
# }
|
1349
|
+
#
|
1350
|
+
# @!attribute [rw] directory_name
|
1351
|
+
# The name of the existing directory configuration to be updated.
|
1352
|
+
# @return [String]
|
1353
|
+
#
|
1354
|
+
# @!attribute [rw] organizational_unit_distinguished_names
|
1355
|
+
# The list of the distinguished names of organizational units to place
|
1356
|
+
# computer accounts in.
|
1357
|
+
# @return [Array<String>]
|
1358
|
+
#
|
1359
|
+
# @!attribute [rw] service_account_credentials
|
1360
|
+
# The *AccountName* and *AccountPassword* values for the service
|
1361
|
+
# account, which are used by the streaming instance to connect to the
|
1362
|
+
# directory
|
1363
|
+
# @return [Types::ServiceAccountCredentials]
|
1364
|
+
#
|
1365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfigRequest AWS API Documentation
|
1366
|
+
#
|
1367
|
+
class UpdateDirectoryConfigRequest < Struct.new(
|
1368
|
+
:directory_name,
|
1369
|
+
:organizational_unit_distinguished_names,
|
1370
|
+
:service_account_credentials)
|
1371
|
+
include Aws::Structure
|
1372
|
+
end
|
1373
|
+
|
1374
|
+
# @!attribute [rw] directory_config
|
1375
|
+
# The updated directory configuration details.
|
1376
|
+
# @return [Types::DirectoryConfig]
|
1377
|
+
#
|
1378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appstream-2016-12-01/UpdateDirectoryConfigResult AWS API Documentation
|
1379
|
+
#
|
1380
|
+
class UpdateDirectoryConfigResult < Struct.new(
|
1381
|
+
:directory_config)
|
1382
|
+
include Aws::Structure
|
1383
|
+
end
|
1384
|
+
|
1086
1385
|
# @note When making an API call, you may pass UpdateFleetRequest
|
1087
1386
|
# data as a hash:
|
1088
1387
|
#
|
@@ -1103,7 +1402,11 @@ module Aws::AppStream
|
|
1103
1402
|
# description: "Description",
|
1104
1403
|
# display_name: "DisplayName",
|
1105
1404
|
# enable_default_internet_access: false,
|
1106
|
-
#
|
1405
|
+
# domain_join_info: {
|
1406
|
+
# directory_name: "DirectoryName",
|
1407
|
+
# organizational_unit_distinguished_name: "OrganizationalUnitDistinguishedName",
|
1408
|
+
# },
|
1409
|
+
# attributes_to_delete: ["VPC_CONFIGURATION"], # accepts VPC_CONFIGURATION, VPC_CONFIGURATION_SECURITY_GROUP_IDS, DOMAIN_JOIN_INFO
|
1107
1410
|
# }
|
1108
1411
|
#
|
1109
1412
|
# @!attribute [rw] image_name
|
@@ -1116,7 +1419,32 @@ module Aws::AppStream
|
|
1116
1419
|
#
|
1117
1420
|
# @!attribute [rw] instance_type
|
1118
1421
|
# The instance type of compute resources for the fleet. Fleet
|
1119
|
-
# instances are launched from this instance type.
|
1422
|
+
# instances are launched from this instance type. Available instance
|
1423
|
+
# types are:
|
1424
|
+
#
|
1425
|
+
# * stream.standard.medium
|
1426
|
+
#
|
1427
|
+
# * stream.standard.large
|
1428
|
+
#
|
1429
|
+
# * stream.compute.large
|
1430
|
+
#
|
1431
|
+
# * stream.compute.xlarge
|
1432
|
+
#
|
1433
|
+
# * stream.compute.2xlarge
|
1434
|
+
#
|
1435
|
+
# * stream.compute.4xlarge
|
1436
|
+
#
|
1437
|
+
# * stream.compute.8xlarge
|
1438
|
+
#
|
1439
|
+
# * stream.memory.large
|
1440
|
+
#
|
1441
|
+
# * stream.memory.xlarge
|
1442
|
+
#
|
1443
|
+
# * stream.memory.2xlarge
|
1444
|
+
#
|
1445
|
+
# * stream.memory.4xlarge
|
1446
|
+
#
|
1447
|
+
# * stream.memory.8xlarge
|
1120
1448
|
# @return [String]
|
1121
1449
|
#
|
1122
1450
|
# @!attribute [rw] compute_capacity
|
@@ -1152,9 +1480,15 @@ module Aws::AppStream
|
|
1152
1480
|
# @return [String]
|
1153
1481
|
#
|
1154
1482
|
# @!attribute [rw] enable_default_internet_access
|
1155
|
-
# Enables or disables default
|
1483
|
+
# Enables or disables default internet access for the fleet.
|
1156
1484
|
# @return [Boolean]
|
1157
1485
|
#
|
1486
|
+
# @!attribute [rw] domain_join_info
|
1487
|
+
# The *DirectoryName* and *OrganizationalUnitDistinguishedName*
|
1488
|
+
# values, which are used to join domains for the AppStream 2.0
|
1489
|
+
# streaming instances.
|
1490
|
+
# @return [Types::DomainJoinInfo]
|
1491
|
+
#
|
1158
1492
|
# @!attribute [rw] attributes_to_delete
|
1159
1493
|
# Fleet attributes to be deleted.
|
1160
1494
|
# @return [Array<String>]
|
@@ -1173,6 +1507,7 @@ module Aws::AppStream
|
|
1173
1507
|
:description,
|
1174
1508
|
:display_name,
|
1175
1509
|
:enable_default_internet_access,
|
1510
|
+
:domain_join_info,
|
1176
1511
|
:attributes_to_delete)
|
1177
1512
|
include Aws::Structure
|
1178
1513
|
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.0.0.
|
4
|
+
version: 1.0.0.rc10
|
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: 2017-07-
|
11
|
+
date: 2017-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc18
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc18
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|