aws-sdk-workspaces 1.98.0 → 1.100.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 +12 -1
- data/lib/aws-sdk-workspaces/client_api.rb +4 -0
- data/lib/aws-sdk-workspaces/types.rb +20 -2
- data/lib/aws-sdk-workspaces.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +3 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f269827e09883e48f7577a099a9e951deab489fbc7f22d1c997e09a034d0ba5
|
4
|
+
data.tar.gz: 8df459540ffd7fe76e47926606e994b576533808f1c6137b95cc227d1e8f79bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ce0757d8f4171e884a0d21db44a0f4c723a71cd8fcf952e5352fa666c20875103fc535ae62dcc1499608024574a859e9a206ad650d3fbcd5a0905e91956ffd7
|
7
|
+
data.tar.gz: f9acffb759e37d2c8e4ae6c79c0a0644e5244cf3fef074e93f195b7420f4aa26ffcf4b97454ff0af5c5d512032c92941a4274273da5090dbe8a3e69cd6ca9f88
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.100.0 (2024-03-07)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added note for user decoupling
|
8
|
+
|
9
|
+
1.99.0 (2024-02-08)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName".
|
13
|
+
|
4
14
|
1.98.0 (2024-02-05)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.100.0
|
@@ -1092,6 +1092,9 @@ module Aws::WorkSpaces
|
|
1092
1092
|
# * You don't need to specify the `PCOIP` protocol for Linux bundles
|
1093
1093
|
# because `WSP` is the default protocol for those bundles.
|
1094
1094
|
#
|
1095
|
+
# * User-decoupled WorkSpaces are only supported by Amazon WorkSpaces
|
1096
|
+
# Core.
|
1097
|
+
#
|
1095
1098
|
# </note>
|
1096
1099
|
#
|
1097
1100
|
#
|
@@ -1132,6 +1135,7 @@ module Aws::WorkSpaces
|
|
1132
1135
|
# value: "TagValue",
|
1133
1136
|
# },
|
1134
1137
|
# ],
|
1138
|
+
# workspace_name: "WorkspaceName",
|
1135
1139
|
# },
|
1136
1140
|
# ],
|
1137
1141
|
# })
|
@@ -1156,6 +1160,7 @@ module Aws::WorkSpaces
|
|
1156
1160
|
# resp.failed_requests[0].workspace_request.tags #=> Array
|
1157
1161
|
# resp.failed_requests[0].workspace_request.tags[0].key #=> String
|
1158
1162
|
# resp.failed_requests[0].workspace_request.tags[0].value #=> String
|
1163
|
+
# resp.failed_requests[0].workspace_request.workspace_name #=> String
|
1159
1164
|
# resp.failed_requests[0].error_code #=> String
|
1160
1165
|
# resp.failed_requests[0].error_message #=> String
|
1161
1166
|
# resp.pending_requests #=> Array
|
@@ -1172,6 +1177,7 @@ module Aws::WorkSpaces
|
|
1172
1177
|
# resp.pending_requests[0].volume_encryption_key #=> String
|
1173
1178
|
# resp.pending_requests[0].user_volume_encryption_enabled #=> Boolean
|
1174
1179
|
# resp.pending_requests[0].root_volume_encryption_enabled #=> Boolean
|
1180
|
+
# resp.pending_requests[0].workspace_name #=> String
|
1175
1181
|
# resp.pending_requests[0].workspace_properties.running_mode #=> String, one of "AUTO_STOP", "ALWAYS_ON", "MANUAL"
|
1176
1182
|
# resp.pending_requests[0].workspace_properties.running_mode_auto_stop_timeout_in_minutes #=> Integer
|
1177
1183
|
# resp.pending_requests[0].workspace_properties.root_volume_size_gib #=> Integer
|
@@ -2463,6 +2469,9 @@ module Aws::WorkSpaces
|
|
2463
2469
|
# If you received a `NextToken` from a previous call that was paginated,
|
2464
2470
|
# provide this token to receive the next set of results.
|
2465
2471
|
#
|
2472
|
+
# @option params [String] :workspace_name
|
2473
|
+
# The name of the user-decoupled WorkSpace.
|
2474
|
+
#
|
2466
2475
|
# @return [Types::DescribeWorkspacesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2467
2476
|
#
|
2468
2477
|
# * {Types::DescribeWorkspacesResult#workspaces #workspaces} => Array<Types::Workspace>
|
@@ -2479,6 +2488,7 @@ module Aws::WorkSpaces
|
|
2479
2488
|
# bundle_id: "BundleId",
|
2480
2489
|
# limit: 1,
|
2481
2490
|
# next_token: "PaginationToken",
|
2491
|
+
# workspace_name: "WorkspaceName",
|
2482
2492
|
# })
|
2483
2493
|
#
|
2484
2494
|
# @example Response structure
|
@@ -2497,6 +2507,7 @@ module Aws::WorkSpaces
|
|
2497
2507
|
# resp.workspaces[0].volume_encryption_key #=> String
|
2498
2508
|
# resp.workspaces[0].user_volume_encryption_enabled #=> Boolean
|
2499
2509
|
# resp.workspaces[0].root_volume_encryption_enabled #=> Boolean
|
2510
|
+
# resp.workspaces[0].workspace_name #=> String
|
2500
2511
|
# resp.workspaces[0].workspace_properties.running_mode #=> String, one of "AUTO_STOP", "ALWAYS_ON", "MANUAL"
|
2501
2512
|
# resp.workspaces[0].workspace_properties.running_mode_auto_stop_timeout_in_minutes #=> Integer
|
2502
2513
|
# resp.workspaces[0].workspace_properties.root_volume_size_gib #=> Integer
|
@@ -3989,7 +4000,7 @@ module Aws::WorkSpaces
|
|
3989
4000
|
params: params,
|
3990
4001
|
config: config)
|
3991
4002
|
context[:gem_name] = 'aws-sdk-workspaces'
|
3992
|
-
context[:gem_version] = '1.
|
4003
|
+
context[:gem_version] = '1.100.0'
|
3993
4004
|
Seahorse::Client::Request.new(handlers, context)
|
3994
4005
|
end
|
3995
4006
|
|
@@ -401,6 +401,7 @@ module Aws::WorkSpaces
|
|
401
401
|
WorkspaceImageRequiredTenancy = Shapes::StringShape.new(name: 'WorkspaceImageRequiredTenancy')
|
402
402
|
WorkspaceImageState = Shapes::StringShape.new(name: 'WorkspaceImageState')
|
403
403
|
WorkspaceList = Shapes::ListShape.new(name: 'WorkspaceList')
|
404
|
+
WorkspaceName = Shapes::StringShape.new(name: 'WorkspaceName')
|
404
405
|
WorkspaceProperties = Shapes::StructureShape.new(name: 'WorkspaceProperties')
|
405
406
|
WorkspaceRequest = Shapes::StructureShape.new(name: 'WorkspaceRequest')
|
406
407
|
WorkspaceRequestList = Shapes::ListShape.new(name: 'WorkspaceRequestList')
|
@@ -895,6 +896,7 @@ module Aws::WorkSpaces
|
|
895
896
|
DescribeWorkspacesRequest.add_member(:bundle_id, Shapes::ShapeRef.new(shape: BundleId, location_name: "BundleId"))
|
896
897
|
DescribeWorkspacesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: Limit, location_name: "Limit"))
|
897
898
|
DescribeWorkspacesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "NextToken"))
|
899
|
+
DescribeWorkspacesRequest.add_member(:workspace_name, Shapes::ShapeRef.new(shape: WorkspaceName, location_name: "WorkspaceName"))
|
898
900
|
DescribeWorkspacesRequest.struct_class = Types::DescribeWorkspacesRequest
|
899
901
|
|
900
902
|
DescribeWorkspacesResult.add_member(:workspaces, Shapes::ShapeRef.new(shape: WorkspaceList, location_name: "Workspaces"))
|
@@ -1384,6 +1386,7 @@ module Aws::WorkSpaces
|
|
1384
1386
|
Workspace.add_member(:volume_encryption_key, Shapes::ShapeRef.new(shape: VolumeEncryptionKey, location_name: "VolumeEncryptionKey"))
|
1385
1387
|
Workspace.add_member(:user_volume_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "UserVolumeEncryptionEnabled"))
|
1386
1388
|
Workspace.add_member(:root_volume_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "RootVolumeEncryptionEnabled"))
|
1389
|
+
Workspace.add_member(:workspace_name, Shapes::ShapeRef.new(shape: WorkspaceName, location_name: "WorkspaceName"))
|
1387
1390
|
Workspace.add_member(:workspace_properties, Shapes::ShapeRef.new(shape: WorkspaceProperties, location_name: "WorkspaceProperties"))
|
1388
1391
|
Workspace.add_member(:modification_states, Shapes::ShapeRef.new(shape: ModificationStateList, location_name: "ModificationStates"))
|
1389
1392
|
Workspace.add_member(:related_workspaces, Shapes::ShapeRef.new(shape: RelatedWorkspaces, location_name: "RelatedWorkspaces"))
|
@@ -1490,6 +1493,7 @@ module Aws::WorkSpaces
|
|
1490
1493
|
WorkspaceRequest.add_member(:root_volume_encryption_enabled, Shapes::ShapeRef.new(shape: BooleanObject, location_name: "RootVolumeEncryptionEnabled"))
|
1491
1494
|
WorkspaceRequest.add_member(:workspace_properties, Shapes::ShapeRef.new(shape: WorkspaceProperties, location_name: "WorkspaceProperties"))
|
1492
1495
|
WorkspaceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1496
|
+
WorkspaceRequest.add_member(:workspace_name, Shapes::ShapeRef.new(shape: WorkspaceName, location_name: "WorkspaceName"))
|
1493
1497
|
WorkspaceRequest.struct_class = Types::WorkspaceRequest
|
1494
1498
|
|
1495
1499
|
WorkspaceRequestList.member = Shapes::ShapeRef.new(shape: WorkspaceRequest)
|
@@ -2158,6 +2158,10 @@ module Aws::WorkSpaces
|
|
2158
2158
|
# paginated, provide this token to receive the next set of results.
|
2159
2159
|
# @return [String]
|
2160
2160
|
#
|
2161
|
+
# @!attribute [rw] workspace_name
|
2162
|
+
# The name of the user-decoupled WorkSpace.
|
2163
|
+
# @return [String]
|
2164
|
+
#
|
2161
2165
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DescribeWorkspacesRequest AWS API Documentation
|
2162
2166
|
#
|
2163
2167
|
class DescribeWorkspacesRequest < Struct.new(
|
@@ -2166,7 +2170,8 @@ module Aws::WorkSpaces
|
|
2166
2170
|
:user_name,
|
2167
2171
|
:bundle_id,
|
2168
2172
|
:limit,
|
2169
|
-
:next_token
|
2173
|
+
:next_token,
|
2174
|
+
:workspace_name)
|
2170
2175
|
SENSITIVE = []
|
2171
2176
|
include Aws::Structure
|
2172
2177
|
end
|
@@ -4273,6 +4278,10 @@ module Aws::WorkSpaces
|
|
4273
4278
|
# Indicates whether the data stored on the root volume is encrypted.
|
4274
4279
|
# @return [Boolean]
|
4275
4280
|
#
|
4281
|
+
# @!attribute [rw] workspace_name
|
4282
|
+
# The name of the user-decoupled WorkSpace.
|
4283
|
+
# @return [String]
|
4284
|
+
#
|
4276
4285
|
# @!attribute [rw] workspace_properties
|
4277
4286
|
# The properties of the WorkSpace.
|
4278
4287
|
# @return [Types::WorkspaceProperties]
|
@@ -4310,6 +4319,7 @@ module Aws::WorkSpaces
|
|
4310
4319
|
:volume_encryption_key,
|
4311
4320
|
:user_volume_encryption_enabled,
|
4312
4321
|
:root_volume_encryption_enabled,
|
4322
|
+
:workspace_name,
|
4313
4323
|
:workspace_properties,
|
4314
4324
|
:modification_states,
|
4315
4325
|
:related_workspaces,
|
@@ -4882,6 +4892,9 @@ module Aws::WorkSpaces
|
|
4882
4892
|
# @!attribute [rw] user_name
|
4883
4893
|
# The user name of the user for the WorkSpace. This user name must
|
4884
4894
|
# exist in the Directory Service directory for the WorkSpace.
|
4895
|
+
#
|
4896
|
+
# The reserved keyword, `[UNDEFINED]`, is used when creating
|
4897
|
+
# user-decoupled WorkSpaces.
|
4885
4898
|
# @return [String]
|
4886
4899
|
#
|
4887
4900
|
# @!attribute [rw] bundle_id
|
@@ -4910,6 +4923,10 @@ module Aws::WorkSpaces
|
|
4910
4923
|
# The tags for the WorkSpace.
|
4911
4924
|
# @return [Array<Types::Tag>]
|
4912
4925
|
#
|
4926
|
+
# @!attribute [rw] workspace_name
|
4927
|
+
# The name of the user-decoupled WorkSpace.
|
4928
|
+
# @return [String]
|
4929
|
+
#
|
4913
4930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceRequest AWS API Documentation
|
4914
4931
|
#
|
4915
4932
|
class WorkspaceRequest < Struct.new(
|
@@ -4920,7 +4937,8 @@ module Aws::WorkSpaces
|
|
4920
4937
|
:user_volume_encryption_enabled,
|
4921
4938
|
:root_volume_encryption_enabled,
|
4922
4939
|
:workspace_properties,
|
4923
|
-
:tags
|
4940
|
+
:tags,
|
4941
|
+
:workspace_name)
|
4924
4942
|
SENSITIVE = []
|
4925
4943
|
include Aws::Structure
|
4926
4944
|
end
|
data/lib/aws-sdk-workspaces.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -329,7 +329,8 @@ module Aws
|
|
329
329
|
key: ::String,
|
330
330
|
value: ::String?
|
331
331
|
},
|
332
|
-
]
|
332
|
+
]?,
|
333
|
+
workspace_name: ::String?
|
333
334
|
},
|
334
335
|
]
|
335
336
|
) -> _CreateWorkspacesResponseSuccess
|
@@ -672,7 +673,8 @@ module Aws
|
|
672
673
|
?user_name: ::String,
|
673
674
|
?bundle_id: ::String,
|
674
675
|
?limit: ::Integer,
|
675
|
-
?next_token: ::String
|
676
|
+
?next_token: ::String,
|
677
|
+
?workspace_name: ::String
|
676
678
|
) -> _DescribeWorkspacesResponseSuccess
|
677
679
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWorkspacesResponseSuccess
|
678
680
|
|
data/sig/types.rbs
CHANGED
@@ -651,6 +651,7 @@ module Aws::WorkSpaces
|
|
651
651
|
attr_accessor bundle_id: ::String
|
652
652
|
attr_accessor limit: ::Integer
|
653
653
|
attr_accessor next_token: ::String
|
654
|
+
attr_accessor workspace_name: ::String
|
654
655
|
SENSITIVE: []
|
655
656
|
end
|
656
657
|
|
@@ -1250,6 +1251,7 @@ module Aws::WorkSpaces
|
|
1250
1251
|
attr_accessor volume_encryption_key: ::String
|
1251
1252
|
attr_accessor user_volume_encryption_enabled: bool
|
1252
1253
|
attr_accessor root_volume_encryption_enabled: bool
|
1254
|
+
attr_accessor workspace_name: ::String
|
1253
1255
|
attr_accessor workspace_properties: Types::WorkspaceProperties
|
1254
1256
|
attr_accessor modification_states: ::Array[Types::ModificationState]
|
1255
1257
|
attr_accessor related_workspaces: ::Array[Types::RelatedWorkspaceProperties]
|
@@ -1362,6 +1364,7 @@ module Aws::WorkSpaces
|
|
1362
1364
|
attr_accessor root_volume_encryption_enabled: bool
|
1363
1365
|
attr_accessor workspace_properties: Types::WorkspaceProperties
|
1364
1366
|
attr_accessor tags: ::Array[Types::Tag]
|
1367
|
+
attr_accessor workspace_name: ::String
|
1365
1368
|
SENSITIVE: []
|
1366
1369
|
end
|
1367
1370
|
|
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.100.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-
|
11
|
+
date: 2024-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|