aws-sdk-workspaces 1.96.0 → 1.98.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4175ddc99ce4570b6a8f76f19ca5a9441857c4030bb852862be821377a8675f8
4
- data.tar.gz: eee5b57901edf8805ed3925bbb898ed171b87c1849818b5990ba07e7d4df456e
3
+ metadata.gz: 77e15df370da195c72ae06ec5baca5d568c5c6b2fc58ce78bbdc8864916b90f1
4
+ data.tar.gz: 32dc856c7b68720ec6e46c6b8dc2b160462b440a8df4f2200685c4b4605b310c
5
5
  SHA512:
6
- metadata.gz: cf0f9be9f6cfb01a94583a470361fbfa3c20178f23a0d51522dc8e6b6b2fa9744bc0c22269cbba12f24835ceaabe4a678ab0e586c1df7c150d96e1c8a5636e24
7
- data.tar.gz: bd91565701a09035795bbac4da194f5c27e1164fe6937b938a5f534fde81a032ff01b392457dc842b94ec7251877dd970e977c4fdac006828dbe87f37b119747
6
+ metadata.gz: 56418999dc98831c67416f9f4a265099e9c3cd124d59a5c7b546265d6b46b81804b8128e01fed2e84d759863d8e389c33129f712aa1b02724be618177f18bf6e
7
+ data.tar.gz: 3777a8fcc5ea93c740ff08de649080bb9486bdf3d7d812727a0792c9c16e4cf48a7e15268ffc1ab9a36de7883dffb71fed39646192d8b6737a6adbde9d3ca774
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.98.0 (2024-02-05)
5
+ ------------------
6
+
7
+ * Feature - Added definitions of various WorkSpace states
8
+
9
+ 1.97.0 (2024-01-26)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.96.0 (2024-01-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.96.0
1
+ 1.98.0
@@ -3989,7 +3989,7 @@ module Aws::WorkSpaces
3989
3989
  params: params,
3990
3990
  config: config)
3991
3991
  context[:gem_name] = 'aws-sdk-workspaces'
3992
- context[:gem_version] = '1.96.0'
3992
+ context[:gem_version] = '1.98.0'
3993
3993
  Seahorse::Client::Request.new(handlers, context)
3994
3994
  end
3995
3995
 
@@ -14,6 +14,7 @@ module Aws::WorkSpaces
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::WorkSpaces::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -4179,6 +4179,46 @@ module Aws::WorkSpaces
4179
4179
  # @!attribute [rw] state
4180
4180
  # The operational state of the WorkSpace.
4181
4181
  #
4182
+ # * `PENDING` – The WorkSpace is in a waiting state (for example, the
4183
+ # WorkSpace is being created).
4184
+ #
4185
+ # * `AVAILABLE` – The WorkSpace is running and has passed the health
4186
+ # checks.
4187
+ #
4188
+ # * `IMPAIRED` – Refer to `UNHEALTHY` state.
4189
+ #
4190
+ # * `UNHEALTHY` – The WorkSpace is not responding to health checks.
4191
+ #
4192
+ # * `REBOOTING` – The WorkSpace is being rebooted (restarted).
4193
+ #
4194
+ # * `STARTING` – The WorkSpace is starting up and health checks are
4195
+ # being run.
4196
+ #
4197
+ # * `REBUILDING` – The WorkSpace is being rebuilt.
4198
+ #
4199
+ # * `RESTORING` – The WorkSpace is being restored.
4200
+ #
4201
+ # * `MAINTENANCE` – The WorkSpace is undergoing scheduled maintenance
4202
+ # by Amazon Web Services.
4203
+ #
4204
+ # * `ADMIN_MAINTENANCE` – The WorkSpace is undergoing maintenance by
4205
+ # the WorkSpaces administrator.
4206
+ #
4207
+ # * `TERMINATING` – The WorkSpace is being deleted.
4208
+ #
4209
+ # * `TERMINATED` – The WorkSpace has been deleted.
4210
+ #
4211
+ # * `SUSPENDED` – The WorkSpace has been suspended for image creation.
4212
+ #
4213
+ # * `UPDATING` – The WorkSpace is undergoing an update.
4214
+ #
4215
+ # * `STOPPING` – The WorkSpace is being stopped.
4216
+ #
4217
+ # * `STOPPED` – The WorkSpace has been stopped.
4218
+ #
4219
+ # * `ERROR ` – The WorkSpace is an error state (for example, an error
4220
+ # occurred during startup).
4221
+ #
4182
4222
  # <note markdown="1"> After a WorkSpace is terminated, the `TERMINATED` state is returned
4183
4223
  # only briefly before the WorkSpace directory metadata is cleaned up,
4184
4224
  # 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.96.0'
55
+ GEM_VERSION = '1.98.0'
56
56
 
57
57
  end