aws-sdk-workspaces 1.99.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 849067813875020db188e4e1af2904a554e395ebfa937106a71bed5a9d473e89
4
- data.tar.gz: 894f137c59061dc9f5288d6a78f6106265fefae15a06c34c8ad62a8dd3411e46
3
+ metadata.gz: 5f269827e09883e48f7577a099a9e951deab489fbc7f22d1c997e09a034d0ba5
4
+ data.tar.gz: 8df459540ffd7fe76e47926606e994b576533808f1c6137b95cc227d1e8f79bc
5
5
  SHA512:
6
- metadata.gz: 2ba6fd83dfc650408e15ce86790e8b3cf799431ea2d6fd05fb8f417909a38fa2252254505daa0c71f238626bb3ee50181e6d8fa48337606069ab573a14a7f370
7
- data.tar.gz: 0edee01fa363b27af5ba6f2587896844110c2e455d970662b1b0b41a3f880e4768af0af3d7d99d80145bcefdbbb401a17dedffede31874c9021cd896a4611d7e
6
+ metadata.gz: 6ce0757d8f4171e884a0d21db44a0f4c723a71cd8fcf952e5352fa666c20875103fc535ae62dcc1499608024574a859e9a206ad650d3fbcd5a0905e91956ffd7
7
+ data.tar.gz: f9acffb759e37d2c8e4ae6c79c0a0644e5244cf3fef074e93f195b7420f4aa26ffcf4b97454ff0af5c5d512032c92941a4274273da5090dbe8a3e69cd6ca9f88
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.99.0 (2024-02-08)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.99.0
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
  #
@@ -3384,8 +3387,10 @@ module Aws::WorkSpaces
3384
3387
 
3385
3388
  # Reboots the specified WorkSpaces.
3386
3389
  #
3387
- # You cannot reboot a WorkSpace unless its state is `AVAILABLE` or
3388
- # `UNHEALTHY`.
3390
+ # You cannot reboot a WorkSpace unless its state is `AVAILABLE`,
3391
+ # `UNHEALTHY`, or `REBOOTING`. Reboot a WorkSpace in the `REBOOTING`
3392
+ # state only if your WorkSpace has been stuck in the `REBOOTING` state
3393
+ # for over 20 minutes.
3389
3394
  #
3390
3395
  # This operation is asynchronous and returns before the WorkSpaces have
3391
3396
  # rebooted.
@@ -3995,7 +4000,7 @@ module Aws::WorkSpaces
3995
4000
  params: params,
3996
4001
  config: config)
3997
4002
  context[:gem_name] = 'aws-sdk-workspaces'
3998
- context[:gem_version] = '1.99.0'
4003
+ context[:gem_version] = '1.100.0'
3999
4004
  Seahorse::Client::Request.new(handlers, context)
4000
4005
  end
4001
4006
 
@@ -4184,6 +4184,46 @@ module Aws::WorkSpaces
4184
4184
  # @!attribute [rw] state
4185
4185
  # The operational state of the WorkSpace.
4186
4186
  #
4187
+ # * `PENDING` – The WorkSpace is in a waiting state (for example, the
4188
+ # WorkSpace is being created).
4189
+ #
4190
+ # * `AVAILABLE` – The WorkSpace is running and has passed the health
4191
+ # checks.
4192
+ #
4193
+ # * `IMPAIRED` – Refer to `UNHEALTHY` state.
4194
+ #
4195
+ # * `UNHEALTHY` – The WorkSpace is not responding to health checks.
4196
+ #
4197
+ # * `REBOOTING` – The WorkSpace is being rebooted (restarted).
4198
+ #
4199
+ # * `STARTING` – The WorkSpace is starting up and health checks are
4200
+ # being run.
4201
+ #
4202
+ # * `REBUILDING` – The WorkSpace is being rebuilt.
4203
+ #
4204
+ # * `RESTORING` – The WorkSpace is being restored.
4205
+ #
4206
+ # * `MAINTENANCE` – The WorkSpace is undergoing scheduled maintenance
4207
+ # by Amazon Web Services.
4208
+ #
4209
+ # * `ADMIN_MAINTENANCE` – The WorkSpace is undergoing maintenance by
4210
+ # the WorkSpaces administrator.
4211
+ #
4212
+ # * `TERMINATING` – The WorkSpace is being deleted.
4213
+ #
4214
+ # * `TERMINATED` – The WorkSpace has been deleted.
4215
+ #
4216
+ # * `SUSPENDED` – The WorkSpace has been suspended for image creation.
4217
+ #
4218
+ # * `UPDATING` – The WorkSpace is undergoing an update.
4219
+ #
4220
+ # * `STOPPING` – The WorkSpace is being stopped.
4221
+ #
4222
+ # * `STOPPED` – The WorkSpace has been stopped.
4223
+ #
4224
+ # * `ERROR ` – The WorkSpace is an error state (for example, an error
4225
+ # occurred during startup).
4226
+ #
4187
4227
  # <note markdown="1"> After a WorkSpace is terminated, the `TERMINATED` state is returned
4188
4228
  # only briefly before the WorkSpace directory metadata is cleaned up,
4189
4229
  # so this state is rarely returned. To confirm that a WorkSpace is
@@ -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.99.0'
55
+ GEM_VERSION = '1.100.0'
56
56
 
57
57
  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.99.0
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-02-08 00:00:00.000000000 Z
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