aws-sdk-workspaces 1.88.0 → 1.89.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +372 -1
- data/lib/aws-sdk-workspaces/client_api.rb +325 -0
- data/lib/aws-sdk-workspaces/endpoints.rb +112 -0
- data/lib/aws-sdk-workspaces/errors.rb +65 -0
- data/lib/aws-sdk-workspaces/plugins/endpoints.rb +16 -0
- data/lib/aws-sdk-workspaces/types.rb +607 -4
- data/lib/aws-sdk-workspaces.rb +1 -1
- metadata +2 -2
@@ -67,6 +67,57 @@ module Aws::WorkSpaces
|
|
67
67
|
include Aws::Structure
|
68
68
|
end
|
69
69
|
|
70
|
+
# The specified application is not supported.
|
71
|
+
#
|
72
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ApplicationNotSupportedException AWS API Documentation
|
73
|
+
#
|
74
|
+
class ApplicationNotSupportedException < Aws::EmptyStructure; end
|
75
|
+
|
76
|
+
# Describes the association between an application and an application
|
77
|
+
# resource.
|
78
|
+
#
|
79
|
+
# @!attribute [rw] application_id
|
80
|
+
# The identifier of the application.
|
81
|
+
# @return [String]
|
82
|
+
#
|
83
|
+
# @!attribute [rw] associated_resource_id
|
84
|
+
# The identifier of the associated resource.
|
85
|
+
# @return [String]
|
86
|
+
#
|
87
|
+
# @!attribute [rw] associated_resource_type
|
88
|
+
# The resource type of the associated resource.
|
89
|
+
# @return [String]
|
90
|
+
#
|
91
|
+
# @!attribute [rw] created
|
92
|
+
# The time the association was created.
|
93
|
+
# @return [Time]
|
94
|
+
#
|
95
|
+
# @!attribute [rw] last_updated_time
|
96
|
+
# The time the association status was last updated.
|
97
|
+
# @return [Time]
|
98
|
+
#
|
99
|
+
# @!attribute [rw] state
|
100
|
+
# The status of the application resource association.
|
101
|
+
# @return [String]
|
102
|
+
#
|
103
|
+
# @!attribute [rw] state_reason
|
104
|
+
# The reason the association deployment failed.
|
105
|
+
# @return [Types::AssociationStateReason]
|
106
|
+
#
|
107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ApplicationResourceAssociation AWS API Documentation
|
108
|
+
#
|
109
|
+
class ApplicationResourceAssociation < Struct.new(
|
110
|
+
:application_id,
|
111
|
+
:associated_resource_id,
|
112
|
+
:associated_resource_type,
|
113
|
+
:created,
|
114
|
+
:last_updated_time,
|
115
|
+
:state,
|
116
|
+
:state_reason)
|
117
|
+
SENSITIVE = []
|
118
|
+
include Aws::Structure
|
119
|
+
end
|
120
|
+
|
70
121
|
# @!attribute [rw] alias_id
|
71
122
|
# The identifier of the connection alias.
|
72
123
|
# @return [String]
|
@@ -120,6 +171,56 @@ module Aws::WorkSpaces
|
|
120
171
|
#
|
121
172
|
class AssociateIpGroupsResult < Aws::EmptyStructure; end
|
122
173
|
|
174
|
+
# @!attribute [rw] workspace_id
|
175
|
+
# The identifier of the WorkSpace.
|
176
|
+
# @return [String]
|
177
|
+
#
|
178
|
+
# @!attribute [rw] application_id
|
179
|
+
# The identifier of the application.
|
180
|
+
# @return [String]
|
181
|
+
#
|
182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AssociateWorkspaceApplicationRequest AWS API Documentation
|
183
|
+
#
|
184
|
+
class AssociateWorkspaceApplicationRequest < Struct.new(
|
185
|
+
:workspace_id,
|
186
|
+
:application_id)
|
187
|
+
SENSITIVE = []
|
188
|
+
include Aws::Structure
|
189
|
+
end
|
190
|
+
|
191
|
+
# @!attribute [rw] association
|
192
|
+
# Information about the association between the specified WorkSpace
|
193
|
+
# and the specified application.
|
194
|
+
# @return [Types::WorkspaceResourceAssociation]
|
195
|
+
#
|
196
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AssociateWorkspaceApplicationResult AWS API Documentation
|
197
|
+
#
|
198
|
+
class AssociateWorkspaceApplicationResult < Struct.new(
|
199
|
+
:association)
|
200
|
+
SENSITIVE = []
|
201
|
+
include Aws::Structure
|
202
|
+
end
|
203
|
+
|
204
|
+
# Indicates the reason that the association deployment failed, including
|
205
|
+
# the error code and error message.
|
206
|
+
#
|
207
|
+
# @!attribute [rw] error_code
|
208
|
+
# The error code of the association deployment failure.
|
209
|
+
# @return [String]
|
210
|
+
#
|
211
|
+
# @!attribute [rw] error_message
|
212
|
+
# The error message of the association deployment failure.
|
213
|
+
# @return [String]
|
214
|
+
#
|
215
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/AssociationStateReason AWS API Documentation
|
216
|
+
#
|
217
|
+
class AssociationStateReason < Struct.new(
|
218
|
+
:error_code,
|
219
|
+
:error_message)
|
220
|
+
SENSITIVE = []
|
221
|
+
include Aws::Structure
|
222
|
+
end
|
223
|
+
|
123
224
|
# @!attribute [rw] group_id
|
124
225
|
# The identifier of the group.
|
125
226
|
# @return [String]
|
@@ -141,6 +242,51 @@ module Aws::WorkSpaces
|
|
141
242
|
#
|
142
243
|
class AuthorizeIpRulesResult < Aws::EmptyStructure; end
|
143
244
|
|
245
|
+
# Describes the association between an application and a bundle
|
246
|
+
# resource.
|
247
|
+
#
|
248
|
+
# @!attribute [rw] associated_resource_id
|
249
|
+
# The identifier of the associated resource.
|
250
|
+
# @return [String]
|
251
|
+
#
|
252
|
+
# @!attribute [rw] associated_resource_type
|
253
|
+
# The resource type of the associated resources.
|
254
|
+
# @return [String]
|
255
|
+
#
|
256
|
+
# @!attribute [rw] bundle_id
|
257
|
+
# The identifier of the bundle.
|
258
|
+
# @return [String]
|
259
|
+
#
|
260
|
+
# @!attribute [rw] created
|
261
|
+
# The time the association is created.
|
262
|
+
# @return [Time]
|
263
|
+
#
|
264
|
+
# @!attribute [rw] last_updated_time
|
265
|
+
# The time the association status was last updated.
|
266
|
+
# @return [Time]
|
267
|
+
#
|
268
|
+
# @!attribute [rw] state
|
269
|
+
# The status of the bundle resource association.
|
270
|
+
# @return [String]
|
271
|
+
#
|
272
|
+
# @!attribute [rw] state_reason
|
273
|
+
# The reason the association deployment failed.
|
274
|
+
# @return [Types::AssociationStateReason]
|
275
|
+
#
|
276
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/BundleResourceAssociation AWS API Documentation
|
277
|
+
#
|
278
|
+
class BundleResourceAssociation < Struct.new(
|
279
|
+
:associated_resource_id,
|
280
|
+
:associated_resource_type,
|
281
|
+
:bundle_id,
|
282
|
+
:created,
|
283
|
+
:last_updated_time,
|
284
|
+
:state,
|
285
|
+
:state_reason)
|
286
|
+
SENSITIVE = []
|
287
|
+
include Aws::Structure
|
288
|
+
end
|
289
|
+
|
144
290
|
# Describes the properties of the certificate-based authentication you
|
145
291
|
# want to use with your WorkSpaces.
|
146
292
|
#
|
@@ -206,6 +352,13 @@ module Aws::WorkSpaces
|
|
206
352
|
include Aws::Structure
|
207
353
|
end
|
208
354
|
|
355
|
+
# The compute type of the WorkSpace is not compatible with the
|
356
|
+
# application.
|
357
|
+
#
|
358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ComputeNotCompatibleException AWS API Documentation
|
359
|
+
#
|
360
|
+
class ComputeNotCompatibleException < Aws::EmptyStructure; end
|
361
|
+
|
209
362
|
# Describes the compute type of the bundle.
|
210
363
|
#
|
211
364
|
# @!attribute [rw] name
|
@@ -1117,6 +1270,37 @@ module Aws::WorkSpaces
|
|
1117
1270
|
#
|
1118
1271
|
class DeleteWorkspaceImageResult < Aws::EmptyStructure; end
|
1119
1272
|
|
1273
|
+
# @!attribute [rw] workspace_id
|
1274
|
+
# The identifier of the WorkSpace.
|
1275
|
+
# @return [String]
|
1276
|
+
#
|
1277
|
+
# @!attribute [rw] force
|
1278
|
+
# Indicates whether the force flag is applied for the specified
|
1279
|
+
# WorkSpace. When the force flag is enabled, it allows previously
|
1280
|
+
# failed deployments to be retried.
|
1281
|
+
# @return [Boolean]
|
1282
|
+
#
|
1283
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeployWorkspaceApplicationsRequest AWS API Documentation
|
1284
|
+
#
|
1285
|
+
class DeployWorkspaceApplicationsRequest < Struct.new(
|
1286
|
+
:workspace_id,
|
1287
|
+
:force)
|
1288
|
+
SENSITIVE = []
|
1289
|
+
include Aws::Structure
|
1290
|
+
end
|
1291
|
+
|
1292
|
+
# @!attribute [rw] deployment
|
1293
|
+
# The list of deployed associations and information about them.
|
1294
|
+
# @return [Types::WorkSpaceApplicationDeployment]
|
1295
|
+
#
|
1296
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeployWorkspaceApplicationsResult AWS API Documentation
|
1297
|
+
#
|
1298
|
+
class DeployWorkspaceApplicationsResult < Struct.new(
|
1299
|
+
:deployment)
|
1300
|
+
SENSITIVE = []
|
1301
|
+
include Aws::Structure
|
1302
|
+
end
|
1303
|
+
|
1120
1304
|
# @!attribute [rw] directory_id
|
1121
1305
|
# The identifier of the directory. If any WorkSpaces are registered to
|
1122
1306
|
# this directory, you must remove them before you deregister the
|
@@ -1196,6 +1380,142 @@ module Aws::WorkSpaces
|
|
1196
1380
|
include Aws::Structure
|
1197
1381
|
end
|
1198
1382
|
|
1383
|
+
# @!attribute [rw] max_results
|
1384
|
+
# The maximum number of associations to return.
|
1385
|
+
# @return [Integer]
|
1386
|
+
#
|
1387
|
+
# @!attribute [rw] next_token
|
1388
|
+
# If you received a `NextToken` from a previous call that was
|
1389
|
+
# paginated, provide this token to receive the next set of results.
|
1390
|
+
# @return [String]
|
1391
|
+
#
|
1392
|
+
# @!attribute [rw] application_id
|
1393
|
+
# The identifier of the specified application.
|
1394
|
+
# @return [String]
|
1395
|
+
#
|
1396
|
+
# @!attribute [rw] associated_resource_types
|
1397
|
+
# The resource type of the associated resources.
|
1398
|
+
# @return [Array<String>]
|
1399
|
+
#
|
1400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeApplicationAssociationsRequest AWS API Documentation
|
1401
|
+
#
|
1402
|
+
class DescribeApplicationAssociationsRequest < Struct.new(
|
1403
|
+
:max_results,
|
1404
|
+
:next_token,
|
1405
|
+
:application_id,
|
1406
|
+
:associated_resource_types)
|
1407
|
+
SENSITIVE = []
|
1408
|
+
include Aws::Structure
|
1409
|
+
end
|
1410
|
+
|
1411
|
+
# @!attribute [rw] associations
|
1412
|
+
# List of associations and information about them.
|
1413
|
+
# @return [Array<Types::ApplicationResourceAssociation>]
|
1414
|
+
#
|
1415
|
+
# @!attribute [rw] next_token
|
1416
|
+
# If you received a `NextToken` from a previous call that was
|
1417
|
+
# paginated, provide this token to receive the next set of results.
|
1418
|
+
# @return [String]
|
1419
|
+
#
|
1420
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeApplicationAssociationsResult AWS API Documentation
|
1421
|
+
#
|
1422
|
+
class DescribeApplicationAssociationsResult < Struct.new(
|
1423
|
+
:associations,
|
1424
|
+
:next_token)
|
1425
|
+
SENSITIVE = []
|
1426
|
+
include Aws::Structure
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
# @!attribute [rw] application_ids
|
1430
|
+
# The identifiers of one or more applications.
|
1431
|
+
# @return [Array<String>]
|
1432
|
+
#
|
1433
|
+
# @!attribute [rw] compute_type_names
|
1434
|
+
# The compute types supported by the applications.
|
1435
|
+
# @return [Array<String>]
|
1436
|
+
#
|
1437
|
+
# @!attribute [rw] license_type
|
1438
|
+
# The license availability for the applications.
|
1439
|
+
# @return [String]
|
1440
|
+
#
|
1441
|
+
# @!attribute [rw] operating_system_names
|
1442
|
+
# The operating systems supported by the applications.
|
1443
|
+
# @return [Array<String>]
|
1444
|
+
#
|
1445
|
+
# @!attribute [rw] owner
|
1446
|
+
# The owner of the applications.
|
1447
|
+
# @return [String]
|
1448
|
+
#
|
1449
|
+
# @!attribute [rw] max_results
|
1450
|
+
# The maximum number of applications to return.
|
1451
|
+
# @return [Integer]
|
1452
|
+
#
|
1453
|
+
# @!attribute [rw] next_token
|
1454
|
+
# If you received a `NextToken` from a previous call that was
|
1455
|
+
# paginated, provide this token to receive the next set of results.
|
1456
|
+
# @return [String]
|
1457
|
+
#
|
1458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeApplicationsRequest AWS API Documentation
|
1459
|
+
#
|
1460
|
+
class DescribeApplicationsRequest < Struct.new(
|
1461
|
+
:application_ids,
|
1462
|
+
:compute_type_names,
|
1463
|
+
:license_type,
|
1464
|
+
:operating_system_names,
|
1465
|
+
:owner,
|
1466
|
+
:max_results,
|
1467
|
+
:next_token)
|
1468
|
+
SENSITIVE = []
|
1469
|
+
include Aws::Structure
|
1470
|
+
end
|
1471
|
+
|
1472
|
+
# @!attribute [rw] applications
|
1473
|
+
# List of information about the specified applications.
|
1474
|
+
# @return [Array<Types::WorkSpaceApplication>]
|
1475
|
+
#
|
1476
|
+
# @!attribute [rw] next_token
|
1477
|
+
# If you received a `NextToken` from a previous call that was
|
1478
|
+
# paginated, provide this token to receive the next set of results.
|
1479
|
+
# @return [String]
|
1480
|
+
#
|
1481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeApplicationsResult AWS API Documentation
|
1482
|
+
#
|
1483
|
+
class DescribeApplicationsResult < Struct.new(
|
1484
|
+
:applications,
|
1485
|
+
:next_token)
|
1486
|
+
SENSITIVE = []
|
1487
|
+
include Aws::Structure
|
1488
|
+
end
|
1489
|
+
|
1490
|
+
# @!attribute [rw] bundle_id
|
1491
|
+
# The identifier of the bundle.
|
1492
|
+
# @return [String]
|
1493
|
+
#
|
1494
|
+
# @!attribute [rw] associated_resource_types
|
1495
|
+
# The resource types of the associated resource.
|
1496
|
+
# @return [Array<String>]
|
1497
|
+
#
|
1498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeBundleAssociationsRequest AWS API Documentation
|
1499
|
+
#
|
1500
|
+
class DescribeBundleAssociationsRequest < Struct.new(
|
1501
|
+
:bundle_id,
|
1502
|
+
:associated_resource_types)
|
1503
|
+
SENSITIVE = []
|
1504
|
+
include Aws::Structure
|
1505
|
+
end
|
1506
|
+
|
1507
|
+
# @!attribute [rw] associations
|
1508
|
+
# List of information about the specified associations.
|
1509
|
+
# @return [Array<Types::BundleResourceAssociation>]
|
1510
|
+
#
|
1511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeBundleAssociationsResult AWS API Documentation
|
1512
|
+
#
|
1513
|
+
class DescribeBundleAssociationsResult < Struct.new(
|
1514
|
+
:associations)
|
1515
|
+
SENSITIVE = []
|
1516
|
+
include Aws::Structure
|
1517
|
+
end
|
1518
|
+
|
1199
1519
|
# @!attribute [rw] resource_id
|
1200
1520
|
# The directory identifier of the WorkSpace for which you want to view
|
1201
1521
|
# client branding information.
|
@@ -1404,6 +1724,35 @@ module Aws::WorkSpaces
|
|
1404
1724
|
include Aws::Structure
|
1405
1725
|
end
|
1406
1726
|
|
1727
|
+
# @!attribute [rw] image_id
|
1728
|
+
# The identifier of the image.
|
1729
|
+
# @return [String]
|
1730
|
+
#
|
1731
|
+
# @!attribute [rw] associated_resource_types
|
1732
|
+
# The resource types of the associated resource.
|
1733
|
+
# @return [Array<String>]
|
1734
|
+
#
|
1735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeImageAssociationsRequest AWS API Documentation
|
1736
|
+
#
|
1737
|
+
class DescribeImageAssociationsRequest < Struct.new(
|
1738
|
+
:image_id,
|
1739
|
+
:associated_resource_types)
|
1740
|
+
SENSITIVE = []
|
1741
|
+
include Aws::Structure
|
1742
|
+
end
|
1743
|
+
|
1744
|
+
# @!attribute [rw] associations
|
1745
|
+
# List of information about the specified associations.
|
1746
|
+
# @return [Array<Types::ImageResourceAssociation>]
|
1747
|
+
#
|
1748
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeImageAssociationsResult AWS API Documentation
|
1749
|
+
#
|
1750
|
+
class DescribeImageAssociationsResult < Struct.new(
|
1751
|
+
:associations)
|
1752
|
+
SENSITIVE = []
|
1753
|
+
include Aws::Structure
|
1754
|
+
end
|
1755
|
+
|
1407
1756
|
# @!attribute [rw] group_ids
|
1408
1757
|
# The identifiers of one or more IP access control groups.
|
1409
1758
|
# @return [Array<String>]
|
@@ -1471,6 +1820,35 @@ module Aws::WorkSpaces
|
|
1471
1820
|
include Aws::Structure
|
1472
1821
|
end
|
1473
1822
|
|
1823
|
+
# @!attribute [rw] workspace_id
|
1824
|
+
# The identifier of the WorkSpace.
|
1825
|
+
# @return [String]
|
1826
|
+
#
|
1827
|
+
# @!attribute [rw] associated_resource_types
|
1828
|
+
# The resource types of the associated resources.
|
1829
|
+
# @return [Array<String>]
|
1830
|
+
#
|
1831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeWorkspaceAssociationsRequest AWS API Documentation
|
1832
|
+
#
|
1833
|
+
class DescribeWorkspaceAssociationsRequest < Struct.new(
|
1834
|
+
:workspace_id,
|
1835
|
+
:associated_resource_types)
|
1836
|
+
SENSITIVE = []
|
1837
|
+
include Aws::Structure
|
1838
|
+
end
|
1839
|
+
|
1840
|
+
# @!attribute [rw] associations
|
1841
|
+
# List of information about the specified associations.
|
1842
|
+
# @return [Array<Types::WorkspaceResourceAssociation>]
|
1843
|
+
#
|
1844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeWorkspaceAssociationsResult AWS API Documentation
|
1845
|
+
#
|
1846
|
+
class DescribeWorkspaceAssociationsResult < Struct.new(
|
1847
|
+
:associations)
|
1848
|
+
SENSITIVE = []
|
1849
|
+
include Aws::Structure
|
1850
|
+
end
|
1851
|
+
|
1474
1852
|
# @!attribute [rw] bundle_ids
|
1475
1853
|
# The identifiers of the bundles. You cannot combine this parameter
|
1476
1854
|
# with any other filter.
|
@@ -1830,8 +2208,37 @@ module Aws::WorkSpaces
|
|
1830
2208
|
#
|
1831
2209
|
class DisassociateIpGroupsResult < Aws::EmptyStructure; end
|
1832
2210
|
|
1833
|
-
#
|
1834
|
-
#
|
2211
|
+
# @!attribute [rw] workspace_id
|
2212
|
+
# The identifier of the WorkSpace.
|
2213
|
+
# @return [String]
|
2214
|
+
#
|
2215
|
+
# @!attribute [rw] application_id
|
2216
|
+
# The identifier of the application.
|
2217
|
+
# @return [String]
|
2218
|
+
#
|
2219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DisassociateWorkspaceApplicationRequest AWS API Documentation
|
2220
|
+
#
|
2221
|
+
class DisassociateWorkspaceApplicationRequest < Struct.new(
|
2222
|
+
:workspace_id,
|
2223
|
+
:application_id)
|
2224
|
+
SENSITIVE = []
|
2225
|
+
include Aws::Structure
|
2226
|
+
end
|
2227
|
+
|
2228
|
+
# @!attribute [rw] association
|
2229
|
+
# Information about the targeted association.
|
2230
|
+
# @return [Types::WorkspaceResourceAssociation]
|
2231
|
+
#
|
2232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DisassociateWorkspaceApplicationResult AWS API Documentation
|
2233
|
+
#
|
2234
|
+
class DisassociateWorkspaceApplicationResult < Struct.new(
|
2235
|
+
:association)
|
2236
|
+
SENSITIVE = []
|
2237
|
+
include Aws::Structure
|
2238
|
+
end
|
2239
|
+
|
2240
|
+
# Describes in-depth details about the error. These details include the
|
2241
|
+
# possible causes of the error and troubleshooting information.
|
1835
2242
|
#
|
1836
2243
|
# @!attribute [rw] error_code
|
1837
2244
|
# Indicates the error code returned.
|
@@ -1950,6 +2357,51 @@ module Aws::WorkSpaces
|
|
1950
2357
|
include Aws::Structure
|
1951
2358
|
end
|
1952
2359
|
|
2360
|
+
# Describes the association between an application and an image
|
2361
|
+
# resource.
|
2362
|
+
#
|
2363
|
+
# @!attribute [rw] associated_resource_id
|
2364
|
+
# The identifier of the associated resource.
|
2365
|
+
# @return [String]
|
2366
|
+
#
|
2367
|
+
# @!attribute [rw] associated_resource_type
|
2368
|
+
# The resource type of the associated resources.
|
2369
|
+
# @return [String]
|
2370
|
+
#
|
2371
|
+
# @!attribute [rw] created
|
2372
|
+
# The time the association is created.
|
2373
|
+
# @return [Time]
|
2374
|
+
#
|
2375
|
+
# @!attribute [rw] last_updated_time
|
2376
|
+
# The time the association status was last updated.
|
2377
|
+
# @return [Time]
|
2378
|
+
#
|
2379
|
+
# @!attribute [rw] image_id
|
2380
|
+
# The identifier of the image.
|
2381
|
+
# @return [String]
|
2382
|
+
#
|
2383
|
+
# @!attribute [rw] state
|
2384
|
+
# The status of the image resource association.
|
2385
|
+
# @return [String]
|
2386
|
+
#
|
2387
|
+
# @!attribute [rw] state_reason
|
2388
|
+
# The reason the association deployment failed.
|
2389
|
+
# @return [Types::AssociationStateReason]
|
2390
|
+
#
|
2391
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ImageResourceAssociation AWS API Documentation
|
2392
|
+
#
|
2393
|
+
class ImageResourceAssociation < Struct.new(
|
2394
|
+
:associated_resource_id,
|
2395
|
+
:associated_resource_type,
|
2396
|
+
:created,
|
2397
|
+
:last_updated_time,
|
2398
|
+
:image_id,
|
2399
|
+
:state,
|
2400
|
+
:state_reason)
|
2401
|
+
SENSITIVE = []
|
2402
|
+
include Aws::Structure
|
2403
|
+
end
|
2404
|
+
|
1953
2405
|
# @!attribute [rw] resource_id
|
1954
2406
|
# The directory identifier of the WorkSpace for which you want to
|
1955
2407
|
# import client branding.
|
@@ -2113,6 +2565,12 @@ module Aws::WorkSpaces
|
|
2113
2565
|
include Aws::Structure
|
2114
2566
|
end
|
2115
2567
|
|
2568
|
+
# The specified application is not compatible with the resource.
|
2569
|
+
#
|
2570
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/IncompatibleApplicationsException AWS API Documentation
|
2571
|
+
#
|
2572
|
+
class IncompatibleApplicationsException < Aws::EmptyStructure; end
|
2573
|
+
|
2116
2574
|
# One or more parameter values are not valid.
|
2117
2575
|
#
|
2118
2576
|
# @!attribute [rw] message
|
@@ -2683,6 +3141,13 @@ module Aws::WorkSpaces
|
|
2683
3141
|
include Aws::Structure
|
2684
3142
|
end
|
2685
3143
|
|
3144
|
+
# The operating system of the WorkSpace is not compatible with the
|
3145
|
+
# application.
|
3146
|
+
#
|
3147
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/OperatingSystemNotCompatibleException AWS API Documentation
|
3148
|
+
#
|
3149
|
+
class OperatingSystemNotCompatibleException < Aws::EmptyStructure; end
|
3150
|
+
|
2686
3151
|
# The properties of this WorkSpace are currently being modified. Try
|
2687
3152
|
# again in a moment.
|
2688
3153
|
#
|
@@ -2965,6 +3430,24 @@ module Aws::WorkSpaces
|
|
2965
3430
|
include Aws::Structure
|
2966
3431
|
end
|
2967
3432
|
|
3433
|
+
# The specified resource is currently in use.
|
3434
|
+
#
|
3435
|
+
# @!attribute [rw] message
|
3436
|
+
# @return [String]
|
3437
|
+
#
|
3438
|
+
# @!attribute [rw] resource_id
|
3439
|
+
# The ID of the resource that is in use.
|
3440
|
+
# @return [String]
|
3441
|
+
#
|
3442
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/ResourceInUseException AWS API Documentation
|
3443
|
+
#
|
3444
|
+
class ResourceInUseException < Struct.new(
|
3445
|
+
:message,
|
3446
|
+
:resource_id)
|
3447
|
+
SENSITIVE = []
|
3448
|
+
include Aws::Structure
|
3449
|
+
end
|
3450
|
+
|
2968
3451
|
# Your resource limits have been exceeded.
|
2969
3452
|
#
|
2970
3453
|
# @!attribute [rw] message
|
@@ -3548,6 +4031,75 @@ module Aws::WorkSpaces
|
|
3548
4031
|
include Aws::Structure
|
3549
4032
|
end
|
3550
4033
|
|
4034
|
+
# Describes the WorkSpace application.
|
4035
|
+
#
|
4036
|
+
# @!attribute [rw] application_id
|
4037
|
+
# The identifier of the application.
|
4038
|
+
# @return [String]
|
4039
|
+
#
|
4040
|
+
# @!attribute [rw] created
|
4041
|
+
# The time the application is created.
|
4042
|
+
# @return [Time]
|
4043
|
+
#
|
4044
|
+
# @!attribute [rw] description
|
4045
|
+
# The description of the WorkSpace application.
|
4046
|
+
# @return [String]
|
4047
|
+
#
|
4048
|
+
# @!attribute [rw] license_type
|
4049
|
+
# The license availability for the applications.
|
4050
|
+
# @return [String]
|
4051
|
+
#
|
4052
|
+
# @!attribute [rw] name
|
4053
|
+
# The name of the WorkSpace application.
|
4054
|
+
# @return [String]
|
4055
|
+
#
|
4056
|
+
# @!attribute [rw] owner
|
4057
|
+
# The owner of the WorkSpace application.
|
4058
|
+
# @return [String]
|
4059
|
+
#
|
4060
|
+
# @!attribute [rw] state
|
4061
|
+
# The status of WorkSpace application.
|
4062
|
+
# @return [String]
|
4063
|
+
#
|
4064
|
+
# @!attribute [rw] supported_compute_type_names
|
4065
|
+
# The supported compute types of the WorkSpace application.
|
4066
|
+
# @return [Array<String>]
|
4067
|
+
#
|
4068
|
+
# @!attribute [rw] supported_operating_system_names
|
4069
|
+
# The supported operating systems of the WorkSpace application.
|
4070
|
+
# @return [Array<String>]
|
4071
|
+
#
|
4072
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkSpaceApplication AWS API Documentation
|
4073
|
+
#
|
4074
|
+
class WorkSpaceApplication < Struct.new(
|
4075
|
+
:application_id,
|
4076
|
+
:created,
|
4077
|
+
:description,
|
4078
|
+
:license_type,
|
4079
|
+
:name,
|
4080
|
+
:owner,
|
4081
|
+
:state,
|
4082
|
+
:supported_compute_type_names,
|
4083
|
+
:supported_operating_system_names)
|
4084
|
+
SENSITIVE = []
|
4085
|
+
include Aws::Structure
|
4086
|
+
end
|
4087
|
+
|
4088
|
+
# Describes the WorkSpace application deployment.
|
4089
|
+
#
|
4090
|
+
# @!attribute [rw] associations
|
4091
|
+
# The associations between the applications and the associated
|
4092
|
+
# resources.
|
4093
|
+
# @return [Array<Types::WorkspaceResourceAssociation>]
|
4094
|
+
#
|
4095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkSpaceApplicationDeployment AWS API Documentation
|
4096
|
+
#
|
4097
|
+
class WorkSpaceApplicationDeployment < Struct.new(
|
4098
|
+
:associations)
|
4099
|
+
SENSITIVE = []
|
4100
|
+
include Aws::Structure
|
4101
|
+
end
|
4102
|
+
|
3551
4103
|
# Describes a WorkSpace.
|
3552
4104
|
#
|
3553
4105
|
# @!attribute [rw] workspace_id
|
@@ -4098,7 +4650,8 @@ module Aws::WorkSpaces
|
|
4098
4650
|
# @return [Types::UpdateResult]
|
4099
4651
|
#
|
4100
4652
|
# @!attribute [rw] error_details
|
4101
|
-
#
|
4653
|
+
# Additional details of the error returned for the image, including
|
4654
|
+
# the possible causes of the errors and troubleshooting information.
|
4102
4655
|
# @return [Array<Types::ErrorDetails>]
|
4103
4656
|
#
|
4104
4657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceImage AWS API Documentation
|
@@ -4192,6 +4745,10 @@ module Aws::WorkSpaces
|
|
4192
4745
|
# [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/amazon-workspaces-protocols.html
|
4193
4746
|
# @return [Array<String>]
|
4194
4747
|
#
|
4748
|
+
# @!attribute [rw] operating_system_name
|
4749
|
+
# The name of the operating system.
|
4750
|
+
# @return [String]
|
4751
|
+
#
|
4195
4752
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceProperties AWS API Documentation
|
4196
4753
|
#
|
4197
4754
|
class WorkspaceProperties < Struct.new(
|
@@ -4200,7 +4757,8 @@ module Aws::WorkSpaces
|
|
4200
4757
|
:root_volume_size_gib,
|
4201
4758
|
:user_volume_size_gib,
|
4202
4759
|
:compute_type_name,
|
4203
|
-
:protocols
|
4760
|
+
:protocols,
|
4761
|
+
:operating_system_name)
|
4204
4762
|
SENSITIVE = []
|
4205
4763
|
include Aws::Structure
|
4206
4764
|
end
|
@@ -4259,6 +4817,51 @@ module Aws::WorkSpaces
|
|
4259
4817
|
include Aws::Structure
|
4260
4818
|
end
|
4261
4819
|
|
4820
|
+
# Describes the association between an application and a WorkSpace
|
4821
|
+
# resource.
|
4822
|
+
#
|
4823
|
+
# @!attribute [rw] associated_resource_id
|
4824
|
+
# The identifier of the associated resource.
|
4825
|
+
# @return [String]
|
4826
|
+
#
|
4827
|
+
# @!attribute [rw] associated_resource_type
|
4828
|
+
# The resource types of the associated resource.
|
4829
|
+
# @return [String]
|
4830
|
+
#
|
4831
|
+
# @!attribute [rw] created
|
4832
|
+
# The time the association is created.
|
4833
|
+
# @return [Time]
|
4834
|
+
#
|
4835
|
+
# @!attribute [rw] last_updated_time
|
4836
|
+
# The time the association status was last updated.
|
4837
|
+
# @return [Time]
|
4838
|
+
#
|
4839
|
+
# @!attribute [rw] state
|
4840
|
+
# The status of the WorkSpace resource association.
|
4841
|
+
# @return [String]
|
4842
|
+
#
|
4843
|
+
# @!attribute [rw] state_reason
|
4844
|
+
# The reason the association deployment failed.
|
4845
|
+
# @return [Types::AssociationStateReason]
|
4846
|
+
#
|
4847
|
+
# @!attribute [rw] workspace_id
|
4848
|
+
# The identifier of the WorkSpace.
|
4849
|
+
# @return [String]
|
4850
|
+
#
|
4851
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceResourceAssociation AWS API Documentation
|
4852
|
+
#
|
4853
|
+
class WorkspaceResourceAssociation < Struct.new(
|
4854
|
+
:associated_resource_id,
|
4855
|
+
:associated_resource_type,
|
4856
|
+
:created,
|
4857
|
+
:last_updated_time,
|
4858
|
+
:state,
|
4859
|
+
:state_reason,
|
4860
|
+
:workspace_id)
|
4861
|
+
SENSITIVE = []
|
4862
|
+
include Aws::Structure
|
4863
|
+
end
|
4864
|
+
|
4262
4865
|
# The workspaces\_DefaultRole role could not be found. If this is the
|
4263
4866
|
# first time you are registering a directory, you will need to create
|
4264
4867
|
# the workspaces\_DefaultRole role before you can register a directory.
|