aws-sdk-workspaces 1.106.0 → 1.108.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +498 -14
- data/lib/aws-sdk-workspaces/client_api.rb +386 -2
- data/lib/aws-sdk-workspaces/endpoints.rb +126 -0
- data/lib/aws-sdk-workspaces/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-workspaces/types.rb +804 -5
- data/lib/aws-sdk-workspaces.rb +1 -1
- data/sig/client.rbs +171 -8
- data/sig/types.rbs +232 -5
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -42,6 +42,12 @@ module Aws::WorkSpaces
|
|
42
42
|
SENSITIVE: []
|
43
43
|
end
|
44
44
|
|
45
|
+
class ActiveDirectoryConfig
|
46
|
+
attr_accessor domain_name: ::String
|
47
|
+
attr_accessor service_account_secret_arn: ::String
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
45
51
|
class ApplicationNotSupportedException < Aws::EmptyStructure
|
46
52
|
end
|
47
53
|
|
@@ -56,6 +62,19 @@ module Aws::WorkSpaces
|
|
56
62
|
SENSITIVE: []
|
57
63
|
end
|
58
64
|
|
65
|
+
class ApplicationSettingsRequest
|
66
|
+
attr_accessor status: ("DISABLED" | "ENABLED")
|
67
|
+
attr_accessor settings_group: ::String
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class ApplicationSettingsResponse
|
72
|
+
attr_accessor status: ("DISABLED" | "ENABLED")
|
73
|
+
attr_accessor settings_group: ::String
|
74
|
+
attr_accessor s3_bucket_name: ::String
|
75
|
+
SENSITIVE: []
|
76
|
+
end
|
77
|
+
|
59
78
|
class AssociateConnectionAliasRequest
|
60
79
|
attr_accessor alias_id: ::String
|
61
80
|
attr_accessor resource_id: ::String
|
@@ -113,6 +132,19 @@ module Aws::WorkSpaces
|
|
113
132
|
SENSITIVE: []
|
114
133
|
end
|
115
134
|
|
135
|
+
class Capacity
|
136
|
+
attr_accessor desired_user_sessions: ::Integer
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class CapacityStatus
|
141
|
+
attr_accessor available_user_sessions: ::Integer
|
142
|
+
attr_accessor desired_user_sessions: ::Integer
|
143
|
+
attr_accessor actual_user_sessions: ::Integer
|
144
|
+
attr_accessor active_user_sessions: ::Integer
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
116
148
|
class CertificateBasedAuthProperties
|
117
149
|
attr_accessor status: ("DISABLED" | "ENABLED")
|
118
150
|
attr_accessor certificate_authority_arn: ::String
|
@@ -306,6 +338,23 @@ module Aws::WorkSpaces
|
|
306
338
|
SENSITIVE: []
|
307
339
|
end
|
308
340
|
|
341
|
+
class CreateWorkspacesPoolRequest
|
342
|
+
attr_accessor pool_name: ::String
|
343
|
+
attr_accessor description: ::String
|
344
|
+
attr_accessor bundle_id: ::String
|
345
|
+
attr_accessor directory_id: ::String
|
346
|
+
attr_accessor capacity: Types::Capacity
|
347
|
+
attr_accessor tags: ::Array[Types::Tag]
|
348
|
+
attr_accessor application_settings: Types::ApplicationSettingsRequest
|
349
|
+
attr_accessor timeout_settings: Types::TimeoutSettings
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class CreateWorkspacesPoolResult
|
354
|
+
attr_accessor workspaces_pool: Types::WorkspacesPool
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
309
358
|
class CreateWorkspacesRequest
|
310
359
|
attr_accessor workspaces: ::Array[Types::WorkspaceRequest]
|
311
360
|
SENSITIVE: []
|
@@ -348,6 +397,7 @@ module Aws::WorkSpaces
|
|
348
397
|
attr_accessor custom_security_group_id: ::String
|
349
398
|
attr_accessor user_enabled_as_local_administrator: bool
|
350
399
|
attr_accessor enable_maintenance_mode: bool
|
400
|
+
attr_accessor instance_iam_role_arn: ::String
|
351
401
|
SENSITIVE: []
|
352
402
|
end
|
353
403
|
|
@@ -479,7 +529,7 @@ module Aws::WorkSpaces
|
|
479
529
|
attr_accessor application_ids: ::Array[::String]
|
480
530
|
attr_accessor compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
|
481
531
|
attr_accessor license_type: ("LICENSED" | "UNLICENSED")
|
482
|
-
attr_accessor operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022")]
|
532
|
+
attr_accessor operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8")]
|
483
533
|
attr_accessor owner: ::String
|
484
534
|
attr_accessor max_results: ::Integer
|
485
535
|
attr_accessor next_token: ::String
|
@@ -629,6 +679,7 @@ module Aws::WorkSpaces
|
|
629
679
|
|
630
680
|
class DescribeWorkspaceDirectoriesRequest
|
631
681
|
attr_accessor directory_ids: ::Array[::String]
|
682
|
+
attr_accessor workspace_directory_names: ::Array[::String]
|
632
683
|
attr_accessor limit: ::Integer
|
633
684
|
attr_accessor next_token: ::String
|
634
685
|
SENSITIVE: []
|
@@ -691,6 +742,41 @@ module Aws::WorkSpaces
|
|
691
742
|
SENSITIVE: []
|
692
743
|
end
|
693
744
|
|
745
|
+
class DescribeWorkspacesPoolSessionsRequest
|
746
|
+
attr_accessor pool_id: ::String
|
747
|
+
attr_accessor user_id: ::String
|
748
|
+
attr_accessor limit: ::Integer
|
749
|
+
attr_accessor next_token: ::String
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class DescribeWorkspacesPoolSessionsResult
|
754
|
+
attr_accessor sessions: ::Array[Types::WorkspacesPoolSession]
|
755
|
+
attr_accessor next_token: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class DescribeWorkspacesPoolsFilter
|
760
|
+
attr_accessor name: ("PoolName")
|
761
|
+
attr_accessor values: ::Array[::String]
|
762
|
+
attr_accessor operator: ("EQUALS" | "NOTEQUALS" | "CONTAINS" | "NOTCONTAINS")
|
763
|
+
SENSITIVE: []
|
764
|
+
end
|
765
|
+
|
766
|
+
class DescribeWorkspacesPoolsRequest
|
767
|
+
attr_accessor pool_ids: ::Array[::String]
|
768
|
+
attr_accessor filters: ::Array[Types::DescribeWorkspacesPoolsFilter]
|
769
|
+
attr_accessor limit: ::Integer
|
770
|
+
attr_accessor next_token: ::String
|
771
|
+
SENSITIVE: []
|
772
|
+
end
|
773
|
+
|
774
|
+
class DescribeWorkspacesPoolsResult
|
775
|
+
attr_accessor workspaces_pools: ::Array[Types::WorkspacesPool]
|
776
|
+
attr_accessor next_token: ::String
|
777
|
+
SENSITIVE: []
|
778
|
+
end
|
779
|
+
|
694
780
|
class DescribeWorkspacesRequest
|
695
781
|
attr_accessor workspace_ids: ::Array[::String]
|
696
782
|
attr_accessor directory_id: ::String
|
@@ -963,6 +1049,15 @@ module Aws::WorkSpaces
|
|
963
1049
|
class ModifySelfservicePermissionsResult < Aws::EmptyStructure
|
964
1050
|
end
|
965
1051
|
|
1052
|
+
class ModifyStreamingPropertiesRequest
|
1053
|
+
attr_accessor resource_id: ::String
|
1054
|
+
attr_accessor streaming_properties: Types::StreamingProperties
|
1055
|
+
SENSITIVE: []
|
1056
|
+
end
|
1057
|
+
|
1058
|
+
class ModifyStreamingPropertiesResult < Aws::EmptyStructure
|
1059
|
+
end
|
1060
|
+
|
966
1061
|
class ModifyWorkspaceAccessPropertiesRequest
|
967
1062
|
attr_accessor resource_id: ::String
|
968
1063
|
attr_accessor workspace_access_properties: Types::WorkspaceAccessProperties
|
@@ -1000,6 +1095,12 @@ module Aws::WorkSpaces
|
|
1000
1095
|
class ModifyWorkspaceStateResult < Aws::EmptyStructure
|
1001
1096
|
end
|
1002
1097
|
|
1098
|
+
class NetworkAccessConfiguration
|
1099
|
+
attr_accessor eni_private_ip_address: ::String
|
1100
|
+
attr_accessor eni_id: ::String
|
1101
|
+
SENSITIVE: []
|
1102
|
+
end
|
1103
|
+
|
1003
1104
|
class OperatingSystem
|
1004
1105
|
attr_accessor type: ("WINDOWS" | "LINUX")
|
1005
1106
|
SENSITIVE: []
|
@@ -1064,10 +1165,18 @@ module Aws::WorkSpaces
|
|
1064
1165
|
attr_accessor enable_self_service: bool
|
1065
1166
|
attr_accessor tenancy: ("DEDICATED" | "SHARED")
|
1066
1167
|
attr_accessor tags: ::Array[Types::Tag]
|
1168
|
+
attr_accessor workspace_directory_name: ::String
|
1169
|
+
attr_accessor workspace_directory_description: ::String
|
1170
|
+
attr_accessor user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE")
|
1171
|
+
attr_accessor workspace_type: ("PERSONAL" | "POOLS")
|
1172
|
+
attr_accessor active_directory_config: Types::ActiveDirectoryConfig
|
1067
1173
|
SENSITIVE: []
|
1068
1174
|
end
|
1069
1175
|
|
1070
|
-
class RegisterWorkspaceDirectoryResult
|
1176
|
+
class RegisterWorkspaceDirectoryResult
|
1177
|
+
attr_accessor directory_id: ::String
|
1178
|
+
attr_accessor state: ("REGISTERING" | "REGISTERED" | "DEREGISTERING" | "DEREGISTERED" | "ERROR")
|
1179
|
+
SENSITIVE: []
|
1071
1180
|
end
|
1072
1181
|
|
1073
1182
|
class RejectAccountLinkInvitationRequest
|
@@ -1191,6 +1300,14 @@ module Aws::WorkSpaces
|
|
1191
1300
|
SENSITIVE: []
|
1192
1301
|
end
|
1193
1302
|
|
1303
|
+
class StartWorkspacesPoolRequest
|
1304
|
+
attr_accessor pool_id: ::String
|
1305
|
+
SENSITIVE: []
|
1306
|
+
end
|
1307
|
+
|
1308
|
+
class StartWorkspacesPoolResult < Aws::EmptyStructure
|
1309
|
+
end
|
1310
|
+
|
1194
1311
|
class StartWorkspacesRequest
|
1195
1312
|
attr_accessor start_workspace_requests: ::Array[Types::StartRequest]
|
1196
1313
|
SENSITIVE: []
|
@@ -1206,6 +1323,14 @@ module Aws::WorkSpaces
|
|
1206
1323
|
SENSITIVE: []
|
1207
1324
|
end
|
1208
1325
|
|
1326
|
+
class StopWorkspacesPoolRequest
|
1327
|
+
attr_accessor pool_id: ::String
|
1328
|
+
SENSITIVE: []
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
class StopWorkspacesPoolResult < Aws::EmptyStructure
|
1332
|
+
end
|
1333
|
+
|
1209
1334
|
class StopWorkspacesRequest
|
1210
1335
|
attr_accessor stop_workspace_requests: ::Array[Types::StopRequest]
|
1211
1336
|
SENSITIVE: []
|
@@ -1216,6 +1341,19 @@ module Aws::WorkSpaces
|
|
1216
1341
|
SENSITIVE: []
|
1217
1342
|
end
|
1218
1343
|
|
1344
|
+
class StorageConnector
|
1345
|
+
attr_accessor connector_type: ("HOME_FOLDER")
|
1346
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
1347
|
+
SENSITIVE: []
|
1348
|
+
end
|
1349
|
+
|
1350
|
+
class StreamingProperties
|
1351
|
+
attr_accessor streaming_experience_preferred_protocol: ("TCP" | "UDP")
|
1352
|
+
attr_accessor user_settings: ::Array[Types::UserSetting]
|
1353
|
+
attr_accessor storage_connectors: ::Array[Types::StorageConnector]
|
1354
|
+
SENSITIVE: []
|
1355
|
+
end
|
1356
|
+
|
1219
1357
|
class Tag
|
1220
1358
|
attr_accessor key: ::String
|
1221
1359
|
attr_accessor value: ::String
|
@@ -1227,6 +1365,22 @@ module Aws::WorkSpaces
|
|
1227
1365
|
SENSITIVE: []
|
1228
1366
|
end
|
1229
1367
|
|
1368
|
+
class TerminateWorkspacesPoolRequest
|
1369
|
+
attr_accessor pool_id: ::String
|
1370
|
+
SENSITIVE: []
|
1371
|
+
end
|
1372
|
+
|
1373
|
+
class TerminateWorkspacesPoolResult < Aws::EmptyStructure
|
1374
|
+
end
|
1375
|
+
|
1376
|
+
class TerminateWorkspacesPoolSessionRequest
|
1377
|
+
attr_accessor session_id: ::String
|
1378
|
+
SENSITIVE: []
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
class TerminateWorkspacesPoolSessionResult < Aws::EmptyStructure
|
1382
|
+
end
|
1383
|
+
|
1230
1384
|
class TerminateWorkspacesRequest
|
1231
1385
|
attr_accessor terminate_workspace_requests: ::Array[Types::TerminateRequest]
|
1232
1386
|
SENSITIVE: []
|
@@ -1237,6 +1391,13 @@ module Aws::WorkSpaces
|
|
1237
1391
|
SENSITIVE: []
|
1238
1392
|
end
|
1239
1393
|
|
1394
|
+
class TimeoutSettings
|
1395
|
+
attr_accessor disconnect_timeout_in_seconds: ::Integer
|
1396
|
+
attr_accessor idle_disconnect_timeout_in_seconds: ::Integer
|
1397
|
+
attr_accessor max_user_duration_in_seconds: ::Integer
|
1398
|
+
SENSITIVE: []
|
1399
|
+
end
|
1400
|
+
|
1240
1401
|
class UnsupportedNetworkConfigurationException
|
1241
1402
|
attr_accessor message: ::String
|
1242
1403
|
SENSITIVE: []
|
@@ -1301,6 +1462,29 @@ module Aws::WorkSpaces
|
|
1301
1462
|
class UpdateWorkspaceImagePermissionResult < Aws::EmptyStructure
|
1302
1463
|
end
|
1303
1464
|
|
1465
|
+
class UpdateWorkspacesPoolRequest
|
1466
|
+
attr_accessor pool_id: ::String
|
1467
|
+
attr_accessor description: ::String
|
1468
|
+
attr_accessor bundle_id: ::String
|
1469
|
+
attr_accessor directory_id: ::String
|
1470
|
+
attr_accessor capacity: Types::Capacity
|
1471
|
+
attr_accessor application_settings: Types::ApplicationSettingsRequest
|
1472
|
+
attr_accessor timeout_settings: Types::TimeoutSettings
|
1473
|
+
SENSITIVE: []
|
1474
|
+
end
|
1475
|
+
|
1476
|
+
class UpdateWorkspacesPoolResult
|
1477
|
+
attr_accessor workspaces_pool: Types::WorkspacesPool
|
1478
|
+
SENSITIVE: []
|
1479
|
+
end
|
1480
|
+
|
1481
|
+
class UserSetting
|
1482
|
+
attr_accessor action: ("CLIPBOARD_COPY_FROM_LOCAL_DEVICE" | "CLIPBOARD_COPY_TO_LOCAL_DEVICE" | "PRINTING_TO_LOCAL_DEVICE" | "SMART_CARD")
|
1483
|
+
attr_accessor permission: ("ENABLED" | "DISABLED")
|
1484
|
+
attr_accessor maximum_length: ::Integer
|
1485
|
+
SENSITIVE: []
|
1486
|
+
end
|
1487
|
+
|
1304
1488
|
class UserStorage
|
1305
1489
|
attr_accessor capacity: ::String
|
1306
1490
|
SENSITIVE: []
|
@@ -1320,7 +1504,7 @@ module Aws::WorkSpaces
|
|
1320
1504
|
attr_accessor owner: ::String
|
1321
1505
|
attr_accessor state: ("PENDING" | "ERROR" | "AVAILABLE" | "UNINSTALL_ONLY")
|
1322
1506
|
attr_accessor supported_compute_type_names: ::Array[("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")]
|
1323
|
-
attr_accessor supported_operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022")]
|
1507
|
+
attr_accessor supported_operating_system_names: ::Array[("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8")]
|
1324
1508
|
SENSITIVE: []
|
1325
1509
|
end
|
1326
1510
|
|
@@ -1395,6 +1579,7 @@ module Aws::WorkSpaces
|
|
1395
1579
|
attr_accessor custom_security_group_id: ::String
|
1396
1580
|
attr_accessor user_enabled_as_local_administrator: bool
|
1397
1581
|
attr_accessor enable_maintenance_mode: bool
|
1582
|
+
attr_accessor instance_iam_role_arn: ::String
|
1398
1583
|
SENSITIVE: []
|
1399
1584
|
end
|
1400
1585
|
|
@@ -1407,7 +1592,7 @@ module Aws::WorkSpaces
|
|
1407
1592
|
attr_accessor dns_ip_addresses: ::Array[::String]
|
1408
1593
|
attr_accessor customer_user_name: ::String
|
1409
1594
|
attr_accessor iam_role_id: ::String
|
1410
|
-
attr_accessor directory_type: ("SIMPLE_AD" | "AD_CONNECTOR")
|
1595
|
+
attr_accessor directory_type: ("SIMPLE_AD" | "AD_CONNECTOR" | "CUSTOMER_MANAGED")
|
1411
1596
|
attr_accessor workspace_security_group_id: ::String
|
1412
1597
|
attr_accessor state: ("REGISTERING" | "REGISTERED" | "DEREGISTERING" | "DEREGISTERED" | "ERROR")
|
1413
1598
|
attr_accessor workspace_creation_properties: Types::DefaultWorkspaceCreationProperties
|
@@ -1417,6 +1602,13 @@ module Aws::WorkSpaces
|
|
1417
1602
|
attr_accessor selfservice_permissions: Types::SelfservicePermissions
|
1418
1603
|
attr_accessor saml_properties: Types::SamlProperties
|
1419
1604
|
attr_accessor certificate_based_auth_properties: Types::CertificateBasedAuthProperties
|
1605
|
+
attr_accessor workspace_directory_name: ::String
|
1606
|
+
attr_accessor workspace_directory_description: ::String
|
1607
|
+
attr_accessor user_identity_type: ("CUSTOMER_MANAGED" | "AWS_DIRECTORY_SERVICE")
|
1608
|
+
attr_accessor workspace_type: ("PERSONAL" | "POOLS")
|
1609
|
+
attr_accessor active_directory_config: Types::ActiveDirectoryConfig
|
1610
|
+
attr_accessor streaming_properties: Types::StreamingProperties
|
1611
|
+
attr_accessor error_message: ::String
|
1420
1612
|
SENSITIVE: []
|
1421
1613
|
end
|
1422
1614
|
|
@@ -1443,7 +1635,7 @@ module Aws::WorkSpaces
|
|
1443
1635
|
attr_accessor user_volume_size_gib: ::Integer
|
1444
1636
|
attr_accessor compute_type_name: ("VALUE" | "STANDARD" | "PERFORMANCE" | "POWER" | "GRAPHICS" | "POWERPRO" | "GRAPHICSPRO" | "GRAPHICS_G4DN" | "GRAPHICSPRO_G4DN")
|
1445
1637
|
attr_accessor protocols: ::Array[("PCOIP" | "WSP")]
|
1446
|
-
attr_accessor operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022")
|
1638
|
+
attr_accessor operating_system_name: ("AMAZON_LINUX_2" | "UBUNTU_18_04" | "UBUNTU_20_04" | "UBUNTU_22_04" | "UNKNOWN" | "WINDOWS_10" | "WINDOWS_11" | "WINDOWS_7" | "WINDOWS_SERVER_2016" | "WINDOWS_SERVER_2019" | "WINDOWS_SERVER_2022" | "RHEL_8")
|
1447
1639
|
SENSITIVE: []
|
1448
1640
|
end
|
1449
1641
|
|
@@ -1483,5 +1675,40 @@ module Aws::WorkSpaces
|
|
1483
1675
|
attr_accessor user_rules: ::Array[Types::IpRuleItem]
|
1484
1676
|
SENSITIVE: []
|
1485
1677
|
end
|
1678
|
+
|
1679
|
+
class WorkspacesPool
|
1680
|
+
attr_accessor pool_id: ::String
|
1681
|
+
attr_accessor pool_arn: ::String
|
1682
|
+
attr_accessor capacity_status: Types::CapacityStatus
|
1683
|
+
attr_accessor pool_name: ::String
|
1684
|
+
attr_accessor description: ::String
|
1685
|
+
attr_accessor state: ("CREATING" | "DELETING" | "RUNNING" | "STARTING" | "STOPPED" | "STOPPING" | "UPDATING")
|
1686
|
+
attr_accessor created_at: ::Time
|
1687
|
+
attr_accessor bundle_id: ::String
|
1688
|
+
attr_accessor directory_id: ::String
|
1689
|
+
attr_accessor errors: ::Array[Types::WorkspacesPoolError]
|
1690
|
+
attr_accessor application_settings: Types::ApplicationSettingsResponse
|
1691
|
+
attr_accessor timeout_settings: Types::TimeoutSettings
|
1692
|
+
SENSITIVE: []
|
1693
|
+
end
|
1694
|
+
|
1695
|
+
class WorkspacesPoolError
|
1696
|
+
attr_accessor error_code: ("IAM_SERVICE_ROLE_IS_MISSING" | "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" | "MACHINE_ROLE_IS_MISSING" | "STS_DISABLED_IN_REGION" | "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" | "IGW_NOT_ATTACHED" | "IAM_SERVICE_ROLE_MISSING_DESCRIBE_SECURITY_GROUPS_ACTION" | "WORKSPACES_POOL_STOPPED" | "WORKSPACES_POOL_INSTANCE_PROVISIONING_FAILURE" | "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" | "DOMAIN_JOIN_ERROR_SECRET_ACTION_PERMISSION_IS_MISSING" | "DOMAIN_JOIN_ERROR_SECRET_DECRYPTION_FAILURE" | "DOMAIN_JOIN_ERROR_SECRET_STATE_INVALID" | "DOMAIN_JOIN_ERROR_SECRET_NOT_FOUND" | "DOMAIN_JOIN_ERROR_SECRET_VALUE_KEY_NOT_FOUND" | "DOMAIN_JOIN_ERROR_SECRET_INVALID" | "BUNDLE_NOT_FOUND" | "DIRECTORY_NOT_FOUND" | "INSUFFICIENT_PERMISSIONS_ERROR" | "DEFAULT_OU_IS_MISSING")
|
1697
|
+
attr_accessor error_message: ::String
|
1698
|
+
SENSITIVE: []
|
1699
|
+
end
|
1700
|
+
|
1701
|
+
class WorkspacesPoolSession
|
1702
|
+
attr_accessor authentication_type: ("SAML")
|
1703
|
+
attr_accessor connection_state: ("CONNECTED" | "NOT_CONNECTED")
|
1704
|
+
attr_accessor session_id: ::String
|
1705
|
+
attr_accessor instance_id: ::String
|
1706
|
+
attr_accessor pool_id: ::String
|
1707
|
+
attr_accessor expiration_time: ::Time
|
1708
|
+
attr_accessor network_access_configuration: Types::NetworkAccessConfiguration
|
1709
|
+
attr_accessor start_time: ::Time
|
1710
|
+
attr_accessor user_id: ::String
|
1711
|
+
SENSITIVE: []
|
1712
|
+
end
|
1486
1713
|
end
|
1487
1714
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-workspaces
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.108.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-06-
|
11
|
+
date: 2024-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|