aws-sdk-workspaces 1.97.0 → 1.99.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1ce28cb38154176b6a580240a05025a49e3f47a30932d4e7d9d646237a0f45b
4
- data.tar.gz: a91c32204b21ce1227dafd4a9fceeaa26cbaae9e1c9b95477f85c4b143081db8
3
+ metadata.gz: 849067813875020db188e4e1af2904a554e395ebfa937106a71bed5a9d473e89
4
+ data.tar.gz: 894f137c59061dc9f5288d6a78f6106265fefae15a06c34c8ad62a8dd3411e46
5
5
  SHA512:
6
- metadata.gz: a7e7b538b070900dbdd4befaf7f9ef7e73ea707b316d7b397ab30d34cea227295703038f22f9eb902e5ecc84e2871325c02044027b57138a599525e2e9bba538
7
- data.tar.gz: 930ccb6542f04f38086a25e80374bab4dd0bc44b285cdfe5bbefd032e7c6c6ad2397ca4eb538b9ef122429951f1c3017c11e58209066dbfa1d501fc5adf389bf
6
+ metadata.gz: 2ba6fd83dfc650408e15ce86790e8b3cf799431ea2d6fd05fb8f417909a38fa2252254505daa0c71f238626bb3ee50181e6d8fa48337606069ab573a14a7f370
7
+ data.tar.gz: 0edee01fa363b27af5ba6f2587896844110c2e455d970662b1b0b41a3f880e4768af0af3d7d99d80145bcefdbbb401a17dedffede31874c9021cd896a4611d7e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.99.0 (2024-02-08)
5
+ ------------------
6
+
7
+ * 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".
8
+
9
+ 1.98.0 (2024-02-05)
10
+ ------------------
11
+
12
+ * Feature - Added definitions of various WorkSpace states
13
+
4
14
  1.97.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.97.0
1
+ 1.99.0
@@ -1132,6 +1132,7 @@ module Aws::WorkSpaces
1132
1132
  # value: "TagValue",
1133
1133
  # },
1134
1134
  # ],
1135
+ # workspace_name: "WorkspaceName",
1135
1136
  # },
1136
1137
  # ],
1137
1138
  # })
@@ -1156,6 +1157,7 @@ module Aws::WorkSpaces
1156
1157
  # resp.failed_requests[0].workspace_request.tags #=> Array
1157
1158
  # resp.failed_requests[0].workspace_request.tags[0].key #=> String
1158
1159
  # resp.failed_requests[0].workspace_request.tags[0].value #=> String
1160
+ # resp.failed_requests[0].workspace_request.workspace_name #=> String
1159
1161
  # resp.failed_requests[0].error_code #=> String
1160
1162
  # resp.failed_requests[0].error_message #=> String
1161
1163
  # resp.pending_requests #=> Array
@@ -1172,6 +1174,7 @@ module Aws::WorkSpaces
1172
1174
  # resp.pending_requests[0].volume_encryption_key #=> String
1173
1175
  # resp.pending_requests[0].user_volume_encryption_enabled #=> Boolean
1174
1176
  # resp.pending_requests[0].root_volume_encryption_enabled #=> Boolean
1177
+ # resp.pending_requests[0].workspace_name #=> String
1175
1178
  # resp.pending_requests[0].workspace_properties.running_mode #=> String, one of "AUTO_STOP", "ALWAYS_ON", "MANUAL"
1176
1179
  # resp.pending_requests[0].workspace_properties.running_mode_auto_stop_timeout_in_minutes #=> Integer
1177
1180
  # resp.pending_requests[0].workspace_properties.root_volume_size_gib #=> Integer
@@ -2463,6 +2466,9 @@ module Aws::WorkSpaces
2463
2466
  # If you received a `NextToken` from a previous call that was paginated,
2464
2467
  # provide this token to receive the next set of results.
2465
2468
  #
2469
+ # @option params [String] :workspace_name
2470
+ # The name of the user-decoupled WorkSpace.
2471
+ #
2466
2472
  # @return [Types::DescribeWorkspacesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2467
2473
  #
2468
2474
  # * {Types::DescribeWorkspacesResult#workspaces #workspaces} => Array<Types::Workspace>
@@ -2479,6 +2485,7 @@ module Aws::WorkSpaces
2479
2485
  # bundle_id: "BundleId",
2480
2486
  # limit: 1,
2481
2487
  # next_token: "PaginationToken",
2488
+ # workspace_name: "WorkspaceName",
2482
2489
  # })
2483
2490
  #
2484
2491
  # @example Response structure
@@ -2497,6 +2504,7 @@ module Aws::WorkSpaces
2497
2504
  # resp.workspaces[0].volume_encryption_key #=> String
2498
2505
  # resp.workspaces[0].user_volume_encryption_enabled #=> Boolean
2499
2506
  # resp.workspaces[0].root_volume_encryption_enabled #=> Boolean
2507
+ # resp.workspaces[0].workspace_name #=> String
2500
2508
  # resp.workspaces[0].workspace_properties.running_mode #=> String, one of "AUTO_STOP", "ALWAYS_ON", "MANUAL"
2501
2509
  # resp.workspaces[0].workspace_properties.running_mode_auto_stop_timeout_in_minutes #=> Integer
2502
2510
  # resp.workspaces[0].workspace_properties.root_volume_size_gib #=> Integer
@@ -3376,10 +3384,8 @@ module Aws::WorkSpaces
3376
3384
 
3377
3385
  # Reboots the specified WorkSpaces.
3378
3386
  #
3379
- # You cannot reboot a WorkSpace unless its state is `AVAILABLE`,
3380
- # `UNHEALTHY`, or `REBOOTING`. Reboot a WorkSpace in the `REBOOTING`
3381
- # state only if your WorkSpace has been stuck in the `REBOOTING` state
3382
- # for over 20 minutes.
3387
+ # You cannot reboot a WorkSpace unless its state is `AVAILABLE` or
3388
+ # `UNHEALTHY`.
3383
3389
  #
3384
3390
  # This operation is asynchronous and returns before the WorkSpaces have
3385
3391
  # rebooted.
@@ -3989,7 +3995,7 @@ module Aws::WorkSpaces
3989
3995
  params: params,
3990
3996
  config: config)
3991
3997
  context[:gem_name] = 'aws-sdk-workspaces'
3992
- context[:gem_version] = '1.97.0'
3998
+ context[:gem_version] = '1.99.0'
3993
3999
  Seahorse::Client::Request.new(handlers, context)
3994
4000
  end
3995
4001
 
@@ -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
@@ -4233,6 +4238,10 @@ module Aws::WorkSpaces
4233
4238
  # Indicates whether the data stored on the root volume is encrypted.
4234
4239
  # @return [Boolean]
4235
4240
  #
4241
+ # @!attribute [rw] workspace_name
4242
+ # The name of the user-decoupled WorkSpace.
4243
+ # @return [String]
4244
+ #
4236
4245
  # @!attribute [rw] workspace_properties
4237
4246
  # The properties of the WorkSpace.
4238
4247
  # @return [Types::WorkspaceProperties]
@@ -4270,6 +4279,7 @@ module Aws::WorkSpaces
4270
4279
  :volume_encryption_key,
4271
4280
  :user_volume_encryption_enabled,
4272
4281
  :root_volume_encryption_enabled,
4282
+ :workspace_name,
4273
4283
  :workspace_properties,
4274
4284
  :modification_states,
4275
4285
  :related_workspaces,
@@ -4842,6 +4852,9 @@ module Aws::WorkSpaces
4842
4852
  # @!attribute [rw] user_name
4843
4853
  # The user name of the user for the WorkSpace. This user name must
4844
4854
  # exist in the Directory Service directory for the WorkSpace.
4855
+ #
4856
+ # The reserved keyword, `[UNDEFINED]`, is used when creating
4857
+ # user-decoupled WorkSpaces.
4845
4858
  # @return [String]
4846
4859
  #
4847
4860
  # @!attribute [rw] bundle_id
@@ -4870,6 +4883,10 @@ module Aws::WorkSpaces
4870
4883
  # The tags for the WorkSpace.
4871
4884
  # @return [Array<Types::Tag>]
4872
4885
  #
4886
+ # @!attribute [rw] workspace_name
4887
+ # The name of the user-decoupled WorkSpace.
4888
+ # @return [String]
4889
+ #
4873
4890
  # @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/WorkspaceRequest AWS API Documentation
4874
4891
  #
4875
4892
  class WorkspaceRequest < Struct.new(
@@ -4880,7 +4897,8 @@ module Aws::WorkSpaces
4880
4897
  :user_volume_encryption_enabled,
4881
4898
  :root_volume_encryption_enabled,
4882
4899
  :workspace_properties,
4883
- :tags)
4900
+ :tags,
4901
+ :workspace_name)
4884
4902
  SENSITIVE = []
4885
4903
  include Aws::Structure
4886
4904
  end
@@ -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.97.0'
55
+ GEM_VERSION = '1.99.0'
56
56
 
57
57
  end
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.97.0
4
+ version: 1.99.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-01-26 00:00:00.000000000 Z
11
+ date: 2024-02-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core