aws-sdk-workspaces 1.99.0 → 1.101.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-workspaces/client.rb +236 -3
- data/lib/aws-sdk-workspaces/client_api.rb +166 -0
- data/lib/aws-sdk-workspaces/endpoints.rb +84 -0
- data/lib/aws-sdk-workspaces/errors.rb +48 -0
- data/lib/aws-sdk-workspaces/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-workspaces/types.rb +304 -1
- data/lib/aws-sdk-workspaces.rb +2 -2
- data/sig/client.rbs +69 -0
- data/sig/errors.rbs +9 -0
- data/sig/types.rbs +92 -0
- metadata +2 -2
@@ -10,6 +10,36 @@
|
|
10
10
|
module Aws::WorkSpaces
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# @!attribute [rw] link_id
|
14
|
+
# The identifier of the account link.
|
15
|
+
# @return [String]
|
16
|
+
#
|
17
|
+
# @!attribute [rw] client_token
|
18
|
+
# A string of up to 64 ASCII characters that Amazon EFS uses to ensure
|
19
|
+
# idempotent creation.
|
20
|
+
# @return [String]
|
21
|
+
#
|
22
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AcceptAccountLinkInvitationRequest AWS API Documentation
|
23
|
+
#
|
24
|
+
class AcceptAccountLinkInvitationRequest < Struct.new(
|
25
|
+
:link_id,
|
26
|
+
:client_token)
|
27
|
+
SENSITIVE = []
|
28
|
+
include Aws::Structure
|
29
|
+
end
|
30
|
+
|
31
|
+
# @!attribute [rw] account_link
|
32
|
+
# Information about the account link.
|
33
|
+
# @return [Types::AccountLink]
|
34
|
+
#
|
35
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AcceptAccountLinkInvitationResult AWS API Documentation
|
36
|
+
#
|
37
|
+
class AcceptAccountLinkInvitationResult < Struct.new(
|
38
|
+
:account_link)
|
39
|
+
SENSITIVE = []
|
40
|
+
include Aws::Structure
|
41
|
+
end
|
42
|
+
|
13
43
|
# The user is not authorized to access a resource.
|
14
44
|
#
|
15
45
|
# @!attribute [rw] message
|
@@ -23,6 +53,35 @@ module Aws::WorkSpaces
|
|
23
53
|
include Aws::Structure
|
24
54
|
end
|
25
55
|
|
56
|
+
# Information about about the account link.
|
57
|
+
#
|
58
|
+
# @!attribute [rw] account_link_id
|
59
|
+
# The identifier of the account link.
|
60
|
+
# @return [String]
|
61
|
+
#
|
62
|
+
# @!attribute [rw] account_link_status
|
63
|
+
# The status of the account link.
|
64
|
+
# @return [String]
|
65
|
+
#
|
66
|
+
# @!attribute [rw] source_account_id
|
67
|
+
# The identifier of the source account.
|
68
|
+
# @return [String]
|
69
|
+
#
|
70
|
+
# @!attribute [rw] target_account_id
|
71
|
+
# The identifier of the target account.
|
72
|
+
# @return [String]
|
73
|
+
#
|
74
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AccountLink AWS API Documentation
|
75
|
+
#
|
76
|
+
class AccountLink < Struct.new(
|
77
|
+
:account_link_id,
|
78
|
+
:account_link_status,
|
79
|
+
:source_account_id,
|
80
|
+
:target_account_id)
|
81
|
+
SENSITIVE = []
|
82
|
+
include Aws::Structure
|
83
|
+
end
|
84
|
+
|
26
85
|
# Describes a modification to the configuration of Bring Your Own
|
27
86
|
# License (BYOL) for the specified account.
|
28
87
|
#
|
@@ -373,6 +432,19 @@ module Aws::WorkSpaces
|
|
373
432
|
include Aws::Structure
|
374
433
|
end
|
375
434
|
|
435
|
+
# The `TargetAccountId` is already linked or invited.
|
436
|
+
#
|
437
|
+
# @!attribute [rw] message
|
438
|
+
# @return [String]
|
439
|
+
#
|
440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ConflictException AWS API Documentation
|
441
|
+
#
|
442
|
+
class ConflictException < Struct.new(
|
443
|
+
:message)
|
444
|
+
SENSITIVE = []
|
445
|
+
include Aws::Structure
|
446
|
+
end
|
447
|
+
|
376
448
|
# Describes an Amazon Connect client add-in.
|
377
449
|
#
|
378
450
|
# @!attribute [rw] add_in_id
|
@@ -554,6 +626,36 @@ module Aws::WorkSpaces
|
|
554
626
|
include Aws::Structure
|
555
627
|
end
|
556
628
|
|
629
|
+
# @!attribute [rw] target_account_id
|
630
|
+
# The identifier of the target account.
|
631
|
+
# @return [String]
|
632
|
+
#
|
633
|
+
# @!attribute [rw] client_token
|
634
|
+
# A string of up to 64 ASCII characters that Amazon EFS uses to ensure
|
635
|
+
# idempotent creation.
|
636
|
+
# @return [String]
|
637
|
+
#
|
638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateAccountLinkInvitationRequest AWS API Documentation
|
639
|
+
#
|
640
|
+
class CreateAccountLinkInvitationRequest < Struct.new(
|
641
|
+
:target_account_id,
|
642
|
+
:client_token)
|
643
|
+
SENSITIVE = []
|
644
|
+
include Aws::Structure
|
645
|
+
end
|
646
|
+
|
647
|
+
# @!attribute [rw] account_link
|
648
|
+
# Information about the account link.
|
649
|
+
# @return [Types::AccountLink]
|
650
|
+
#
|
651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CreateAccountLinkInvitationResult AWS API Documentation
|
652
|
+
#
|
653
|
+
class CreateAccountLinkInvitationResult < Struct.new(
|
654
|
+
:account_link)
|
655
|
+
SENSITIVE = []
|
656
|
+
include Aws::Structure
|
657
|
+
end
|
658
|
+
|
557
659
|
# @!attribute [rw] resource_id
|
558
660
|
# The directory identifier for which to configure the client add-in.
|
559
661
|
# @return [String]
|
@@ -1161,6 +1263,36 @@ module Aws::WorkSpaces
|
|
1161
1263
|
include Aws::Structure
|
1162
1264
|
end
|
1163
1265
|
|
1266
|
+
# @!attribute [rw] link_id
|
1267
|
+
# The identifier of the account link.
|
1268
|
+
# @return [String]
|
1269
|
+
#
|
1270
|
+
# @!attribute [rw] client_token
|
1271
|
+
# A string of up to 64 ASCII characters that Amazon EFS uses to ensure
|
1272
|
+
# idempotent creation.
|
1273
|
+
# @return [String]
|
1274
|
+
#
|
1275
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteAccountLinkInvitationRequest AWS API Documentation
|
1276
|
+
#
|
1277
|
+
class DeleteAccountLinkInvitationRequest < Struct.new(
|
1278
|
+
:link_id,
|
1279
|
+
:client_token)
|
1280
|
+
SENSITIVE = []
|
1281
|
+
include Aws::Structure
|
1282
|
+
end
|
1283
|
+
|
1284
|
+
# @!attribute [rw] account_link
|
1285
|
+
# Information about the account link.
|
1286
|
+
# @return [Types::AccountLink]
|
1287
|
+
#
|
1288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeleteAccountLinkInvitationResult AWS API Documentation
|
1289
|
+
#
|
1290
|
+
class DeleteAccountLinkInvitationResult < Struct.new(
|
1291
|
+
:account_link)
|
1292
|
+
SENSITIVE = []
|
1293
|
+
include Aws::Structure
|
1294
|
+
end
|
1295
|
+
|
1164
1296
|
# @!attribute [rw] resource_id
|
1165
1297
|
# The directory identifier of the WorkSpace for which you want to
|
1166
1298
|
# delete client branding.
|
@@ -1392,11 +1524,16 @@ module Aws::WorkSpaces
|
|
1392
1524
|
# Amazon WorkSpaces to manage the WorkSpace.
|
1393
1525
|
# @return [String]
|
1394
1526
|
#
|
1527
|
+
# @!attribute [rw] dedicated_tenancy_account_type
|
1528
|
+
# The type of linked account.
|
1529
|
+
# @return [String]
|
1530
|
+
#
|
1395
1531
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeAccountResult AWS API Documentation
|
1396
1532
|
#
|
1397
1533
|
class DescribeAccountResult < Struct.new(
|
1398
1534
|
:dedicated_tenancy_support,
|
1399
|
-
:dedicated_tenancy_management_cidr_range
|
1535
|
+
:dedicated_tenancy_management_cidr_range,
|
1536
|
+
:dedicated_tenancy_account_type)
|
1400
1537
|
SENSITIVE = []
|
1401
1538
|
include Aws::Structure
|
1402
1539
|
end
|
@@ -2362,6 +2499,35 @@ module Aws::WorkSpaces
|
|
2362
2499
|
include Aws::Structure
|
2363
2500
|
end
|
2364
2501
|
|
2502
|
+
# @!attribute [rw] link_id
|
2503
|
+
# The identifier of the account to link.
|
2504
|
+
# @return [String]
|
2505
|
+
#
|
2506
|
+
# @!attribute [rw] linked_account_id
|
2507
|
+
# The identifier of the account link
|
2508
|
+
# @return [String]
|
2509
|
+
#
|
2510
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/GetAccountLinkRequest AWS API Documentation
|
2511
|
+
#
|
2512
|
+
class GetAccountLinkRequest < Struct.new(
|
2513
|
+
:link_id,
|
2514
|
+
:linked_account_id)
|
2515
|
+
SENSITIVE = []
|
2516
|
+
include Aws::Structure
|
2517
|
+
end
|
2518
|
+
|
2519
|
+
# @!attribute [rw] account_link
|
2520
|
+
# The account link of the account link to retrieve.
|
2521
|
+
# @return [Types::AccountLink]
|
2522
|
+
#
|
2523
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/GetAccountLinkResult AWS API Documentation
|
2524
|
+
#
|
2525
|
+
class GetAccountLinkResult < Struct.new(
|
2526
|
+
:account_link)
|
2527
|
+
SENSITIVE = []
|
2528
|
+
include Aws::Structure
|
2529
|
+
end
|
2530
|
+
|
2365
2531
|
# Describes the Amazon Web Services accounts that have been granted
|
2366
2532
|
# permission to use a shared image. For more information about sharing
|
2367
2533
|
# images, see [ Share or Unshare a Custom WorkSpaces Image][1].
|
@@ -2597,6 +2763,19 @@ module Aws::WorkSpaces
|
|
2597
2763
|
#
|
2598
2764
|
class IncompatibleApplicationsException < Aws::EmptyStructure; end
|
2599
2765
|
|
2766
|
+
# Unexpected server error occured.
|
2767
|
+
#
|
2768
|
+
# @!attribute [rw] message
|
2769
|
+
# @return [String]
|
2770
|
+
#
|
2771
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/InternalServerException AWS API Documentation
|
2772
|
+
#
|
2773
|
+
class InternalServerException < Struct.new(
|
2774
|
+
:message)
|
2775
|
+
SENSITIVE = []
|
2776
|
+
include Aws::Structure
|
2777
|
+
end
|
2778
|
+
|
2600
2779
|
# One or more parameter values are not valid.
|
2601
2780
|
#
|
2602
2781
|
# @!attribute [rw] message
|
@@ -2839,6 +3018,47 @@ module Aws::WorkSpaces
|
|
2839
3018
|
include Aws::Structure
|
2840
3019
|
end
|
2841
3020
|
|
3021
|
+
# @!attribute [rw] link_status_filter
|
3022
|
+
# Filters the account based on their link status.
|
3023
|
+
# @return [Array<String>]
|
3024
|
+
#
|
3025
|
+
# @!attribute [rw] next_token
|
3026
|
+
# The token to use to retrieve the next page of results. This value is
|
3027
|
+
# null when there are no more results to return.
|
3028
|
+
# @return [String]
|
3029
|
+
#
|
3030
|
+
# @!attribute [rw] max_results
|
3031
|
+
# The maximum number of accounts to return.
|
3032
|
+
# @return [Integer]
|
3033
|
+
#
|
3034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ListAccountLinksRequest AWS API Documentation
|
3035
|
+
#
|
3036
|
+
class ListAccountLinksRequest < Struct.new(
|
3037
|
+
:link_status_filter,
|
3038
|
+
:next_token,
|
3039
|
+
:max_results)
|
3040
|
+
SENSITIVE = []
|
3041
|
+
include Aws::Structure
|
3042
|
+
end
|
3043
|
+
|
3044
|
+
# @!attribute [rw] account_links
|
3045
|
+
# Information about the account links.
|
3046
|
+
# @return [Array<Types::AccountLink>]
|
3047
|
+
#
|
3048
|
+
# @!attribute [rw] next_token
|
3049
|
+
# The token to use to retrieve the next page of results. This value is
|
3050
|
+
# null when there are no more results to return.
|
3051
|
+
# @return [String]
|
3052
|
+
#
|
3053
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ListAccountLinksResult AWS API Documentation
|
3054
|
+
#
|
3055
|
+
class ListAccountLinksResult < Struct.new(
|
3056
|
+
:account_links,
|
3057
|
+
:next_token)
|
3058
|
+
SENSITIVE = []
|
3059
|
+
include Aws::Structure
|
3060
|
+
end
|
3061
|
+
|
2842
3062
|
# @!attribute [rw] management_cidr_range_constraint
|
2843
3063
|
# The IP address range to search. Specify an IP address range that is
|
2844
3064
|
# compatible with your network and in CIDR notation (that is, specify
|
@@ -3391,6 +3611,35 @@ module Aws::WorkSpaces
|
|
3391
3611
|
#
|
3392
3612
|
class RegisterWorkspaceDirectoryResult < Aws::EmptyStructure; end
|
3393
3613
|
|
3614
|
+
# @!attribute [rw] link_id
|
3615
|
+
# The identifier of the account link
|
3616
|
+
# @return [String]
|
3617
|
+
#
|
3618
|
+
# @!attribute [rw] client_token
|
3619
|
+
# The client token of the account link invitation to reject.
|
3620
|
+
# @return [String]
|
3621
|
+
#
|
3622
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/RejectAccountLinkInvitationRequest AWS API Documentation
|
3623
|
+
#
|
3624
|
+
class RejectAccountLinkInvitationRequest < Struct.new(
|
3625
|
+
:link_id,
|
3626
|
+
:client_token)
|
3627
|
+
SENSITIVE = []
|
3628
|
+
include Aws::Structure
|
3629
|
+
end
|
3630
|
+
|
3631
|
+
# @!attribute [rw] account_link
|
3632
|
+
# Information about the account link.
|
3633
|
+
# @return [Types::AccountLink]
|
3634
|
+
#
|
3635
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/RejectAccountLinkInvitationResult AWS API Documentation
|
3636
|
+
#
|
3637
|
+
class RejectAccountLinkInvitationResult < Struct.new(
|
3638
|
+
:account_link)
|
3639
|
+
SENSITIVE = []
|
3640
|
+
include Aws::Structure
|
3641
|
+
end
|
3642
|
+
|
3394
3643
|
# Describes the related WorkSpace. The related WorkSpace could be a
|
3395
3644
|
# standby WorkSpace or primary WorkSpace related to the specified
|
3396
3645
|
# WorkSpace.
|
@@ -4094,6 +4343,20 @@ module Aws::WorkSpaces
|
|
4094
4343
|
include Aws::Structure
|
4095
4344
|
end
|
4096
4345
|
|
4346
|
+
# You either haven't provided a `TargetAccountId` or are using the same
|
4347
|
+
# value for `TargetAccountId` and `SourceAccountId`.
|
4348
|
+
#
|
4349
|
+
# @!attribute [rw] message
|
4350
|
+
# @return [String]
|
4351
|
+
#
|
4352
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ValidationException AWS API Documentation
|
4353
|
+
#
|
4354
|
+
class ValidationException < Struct.new(
|
4355
|
+
:message)
|
4356
|
+
SENSITIVE = []
|
4357
|
+
include Aws::Structure
|
4358
|
+
end
|
4359
|
+
|
4097
4360
|
# Describes the WorkSpace application.
|
4098
4361
|
#
|
4099
4362
|
# @!attribute [rw] application_id
|
@@ -4184,6 +4447,46 @@ module Aws::WorkSpaces
|
|
4184
4447
|
# @!attribute [rw] state
|
4185
4448
|
# The operational state of the WorkSpace.
|
4186
4449
|
#
|
4450
|
+
# * `PENDING` – The WorkSpace is in a waiting state (for example, the
|
4451
|
+
# WorkSpace is being created).
|
4452
|
+
#
|
4453
|
+
# * `AVAILABLE` – The WorkSpace is running and has passed the health
|
4454
|
+
# checks.
|
4455
|
+
#
|
4456
|
+
# * `IMPAIRED` – Refer to `UNHEALTHY` state.
|
4457
|
+
#
|
4458
|
+
# * `UNHEALTHY` – The WorkSpace is not responding to health checks.
|
4459
|
+
#
|
4460
|
+
# * `REBOOTING` – The WorkSpace is being rebooted (restarted).
|
4461
|
+
#
|
4462
|
+
# * `STARTING` – The WorkSpace is starting up and health checks are
|
4463
|
+
# being run.
|
4464
|
+
#
|
4465
|
+
# * `REBUILDING` – The WorkSpace is being rebuilt.
|
4466
|
+
#
|
4467
|
+
# * `RESTORING` – The WorkSpace is being restored.
|
4468
|
+
#
|
4469
|
+
# * `MAINTENANCE` – The WorkSpace is undergoing scheduled maintenance
|
4470
|
+
# by Amazon Web Services.
|
4471
|
+
#
|
4472
|
+
# * `ADMIN_MAINTENANCE` – The WorkSpace is undergoing maintenance by
|
4473
|
+
# the WorkSpaces administrator.
|
4474
|
+
#
|
4475
|
+
# * `TERMINATING` – The WorkSpace is being deleted.
|
4476
|
+
#
|
4477
|
+
# * `TERMINATED` – The WorkSpace has been deleted.
|
4478
|
+
#
|
4479
|
+
# * `SUSPENDED` – The WorkSpace has been suspended for image creation.
|
4480
|
+
#
|
4481
|
+
# * `UPDATING` – The WorkSpace is undergoing an update.
|
4482
|
+
#
|
4483
|
+
# * `STOPPING` – The WorkSpace is being stopped.
|
4484
|
+
#
|
4485
|
+
# * `STOPPED` – The WorkSpace has been stopped.
|
4486
|
+
#
|
4487
|
+
# * `ERROR ` – The WorkSpace is an error state (for example, an error
|
4488
|
+
# occurred during startup).
|
4489
|
+
#
|
4187
4490
|
# <note markdown="1"> After a WorkSpace is terminated, the `TERMINATED` state is returned
|
4188
4491
|
# only briefly before the WorkSpace directory metadata is cleaned up,
|
4189
4492
|
# so this state is rarely returned. To confirm that a WorkSpace is
|
data/lib/aws-sdk-workspaces.rb
CHANGED
@@ -32,7 +32,7 @@ require_relative 'aws-sdk-workspaces/customizations'
|
|
32
32
|
# structure.
|
33
33
|
#
|
34
34
|
# work_spaces = Aws::WorkSpaces::Client.new
|
35
|
-
# resp = work_spaces.
|
35
|
+
# resp = work_spaces.accept_account_link_invitation(params)
|
36
36
|
#
|
37
37
|
# See {Client} for more information.
|
38
38
|
#
|
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-workspaces/customizations'
|
|
52
52
|
# @!group service
|
53
53
|
module Aws::WorkSpaces
|
54
54
|
|
55
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.101.0'
|
56
56
|
|
57
57
|
end
|
data/sig/client.rbs
CHANGED
@@ -73,6 +73,17 @@ module Aws
|
|
73
73
|
| (?Hash[Symbol, untyped]) -> instance
|
74
74
|
|
75
75
|
|
76
|
+
interface _AcceptAccountLinkInvitationResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AcceptAccountLinkInvitationResult]
|
78
|
+
def account_link: () -> Types::AccountLink
|
79
|
+
end
|
80
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#accept_account_link_invitation-instance_method
|
81
|
+
def accept_account_link_invitation: (
|
82
|
+
link_id: ::String,
|
83
|
+
?client_token: ::String
|
84
|
+
) -> _AcceptAccountLinkInvitationResponseSuccess
|
85
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AcceptAccountLinkInvitationResponseSuccess
|
86
|
+
|
76
87
|
interface _AssociateConnectionAliasResponseSuccess
|
77
88
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateConnectionAliasResult]
|
78
89
|
def connection_identifier: () -> ::String
|
@@ -139,6 +150,17 @@ module Aws
|
|
139
150
|
) -> _CopyWorkspaceImageResponseSuccess
|
140
151
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CopyWorkspaceImageResponseSuccess
|
141
152
|
|
153
|
+
interface _CreateAccountLinkInvitationResponseSuccess
|
154
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAccountLinkInvitationResult]
|
155
|
+
def account_link: () -> Types::AccountLink
|
156
|
+
end
|
157
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#create_account_link_invitation-instance_method
|
158
|
+
def create_account_link_invitation: (
|
159
|
+
target_account_id: ::String,
|
160
|
+
?client_token: ::String
|
161
|
+
) -> _CreateAccountLinkInvitationResponseSuccess
|
162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAccountLinkInvitationResponseSuccess
|
163
|
+
|
142
164
|
interface _CreateConnectClientAddInResponseSuccess
|
143
165
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateConnectClientAddInResult]
|
144
166
|
def add_in_id: () -> ::String
|
@@ -336,6 +358,17 @@ module Aws
|
|
336
358
|
) -> _CreateWorkspacesResponseSuccess
|
337
359
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkspacesResponseSuccess
|
338
360
|
|
361
|
+
interface _DeleteAccountLinkInvitationResponseSuccess
|
362
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAccountLinkInvitationResult]
|
363
|
+
def account_link: () -> Types::AccountLink
|
364
|
+
end
|
365
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#delete_account_link_invitation-instance_method
|
366
|
+
def delete_account_link_invitation: (
|
367
|
+
link_id: ::String,
|
368
|
+
?client_token: ::String
|
369
|
+
) -> _DeleteAccountLinkInvitationResponseSuccess
|
370
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAccountLinkInvitationResponseSuccess
|
371
|
+
|
339
372
|
interface _DeleteClientBrandingResponseSuccess
|
340
373
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClientBrandingResult]
|
341
374
|
end
|
@@ -426,6 +459,7 @@ module Aws
|
|
426
459
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountResult]
|
427
460
|
def dedicated_tenancy_support: () -> ("ENABLED" | "DISABLED")
|
428
461
|
def dedicated_tenancy_management_cidr_range: () -> ::String
|
462
|
+
def dedicated_tenancy_account_type: () -> ("SOURCE_ACCOUNT" | "TARGET_ACCOUNT")
|
429
463
|
end
|
430
464
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#describe_account-instance_method
|
431
465
|
def describe_account: (
|
@@ -720,6 +754,17 @@ module Aws
|
|
720
754
|
) -> _DisassociateWorkspaceApplicationResponseSuccess
|
721
755
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateWorkspaceApplicationResponseSuccess
|
722
756
|
|
757
|
+
interface _GetAccountLinkResponseSuccess
|
758
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetAccountLinkResult]
|
759
|
+
def account_link: () -> Types::AccountLink
|
760
|
+
end
|
761
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#get_account_link-instance_method
|
762
|
+
def get_account_link: (
|
763
|
+
?link_id: ::String,
|
764
|
+
?linked_account_id: ::String
|
765
|
+
) -> _GetAccountLinkResponseSuccess
|
766
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAccountLinkResponseSuccess
|
767
|
+
|
723
768
|
interface _ImportClientBrandingResponseSuccess
|
724
769
|
include ::Seahorse::Client::_ResponseSuccess[Types::ImportClientBrandingResult]
|
725
770
|
def device_type_windows: () -> Types::DefaultClientBrandingAttributes
|
@@ -799,6 +844,19 @@ module Aws
|
|
799
844
|
) -> _ImportWorkspaceImageResponseSuccess
|
800
845
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportWorkspaceImageResponseSuccess
|
801
846
|
|
847
|
+
interface _ListAccountLinksResponseSuccess
|
848
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAccountLinksResult]
|
849
|
+
def account_links: () -> ::Array[Types::AccountLink]
|
850
|
+
def next_token: () -> ::String
|
851
|
+
end
|
852
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#list_account_links-instance_method
|
853
|
+
def list_account_links: (
|
854
|
+
?link_status_filter: Array[("LINKED" | "LINKING_FAILED" | "LINK_NOT_FOUND" | "PENDING_ACCEPTANCE_BY_TARGET_ACCOUNT" | "REJECTED")],
|
855
|
+
?next_token: ::String,
|
856
|
+
?max_results: ::Integer
|
857
|
+
) -> _ListAccountLinksResponseSuccess
|
858
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAccountLinksResponseSuccess
|
859
|
+
|
802
860
|
interface _ListAvailableManagementCidrRangesResponseSuccess
|
803
861
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAvailableManagementCidrRangesResult]
|
804
862
|
def management_cidr_ranges: () -> ::Array[::String]
|
@@ -1004,6 +1062,17 @@ module Aws
|
|
1004
1062
|
) -> _RegisterWorkspaceDirectoryResponseSuccess
|
1005
1063
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterWorkspaceDirectoryResponseSuccess
|
1006
1064
|
|
1065
|
+
interface _RejectAccountLinkInvitationResponseSuccess
|
1066
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::RejectAccountLinkInvitationResult]
|
1067
|
+
def account_link: () -> Types::AccountLink
|
1068
|
+
end
|
1069
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/WorkSpaces/Client.html#reject_account_link_invitation-instance_method
|
1070
|
+
def reject_account_link_invitation: (
|
1071
|
+
link_id: ::String,
|
1072
|
+
?client_token: ::String
|
1073
|
+
) -> _RejectAccountLinkInvitationResponseSuccess
|
1074
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RejectAccountLinkInvitationResponseSuccess
|
1075
|
+
|
1007
1076
|
interface _RestoreWorkspaceResponseSuccess
|
1008
1077
|
include ::Seahorse::Client::_ResponseSuccess[Types::RestoreWorkspaceResult]
|
1009
1078
|
end
|
data/sig/errors.rbs
CHANGED
@@ -18,8 +18,14 @@ module Aws
|
|
18
18
|
end
|
19
19
|
class ComputeNotCompatibleException < ::Aws::Errors::ServiceError
|
20
20
|
end
|
21
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
22
|
+
def message: () -> ::String
|
23
|
+
end
|
21
24
|
class IncompatibleApplicationsException < ::Aws::Errors::ServiceError
|
22
25
|
end
|
26
|
+
class InternalServerException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
23
29
|
class InvalidParameterValuesException < ::Aws::Errors::ServiceError
|
24
30
|
def message: () -> ::String
|
25
31
|
end
|
@@ -65,6 +71,9 @@ module Aws
|
|
65
71
|
class UnsupportedWorkspaceConfigurationException < ::Aws::Errors::ServiceError
|
66
72
|
def message: () -> ::String
|
67
73
|
end
|
74
|
+
class ValidationException < ::Aws::Errors::ServiceError
|
75
|
+
def message: () -> ::String
|
76
|
+
end
|
68
77
|
class WorkspacesDefaultRoleNotFoundException < ::Aws::Errors::ServiceError
|
69
78
|
def message: () -> ::String
|
70
79
|
end
|