aws-sdk-workspaces 1.110.0 → 1.111.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 +6 -1
- data/lib/aws-sdk-workspaces/types.rb +15 -8
- data/lib/aws-sdk-workspaces.rb +1 -1
- 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: 8b3df6db9ef945c6dfc34bf576d923a8fe30a128b8bf56e963358ecba3ad8944
|
|
4
|
+
data.tar.gz: 8326a452e5def761169ec428031cde97a28b8409cd381347e4d18d007c9029a2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cbb39aedfae4e2fcf2fbb17eeda48e85c998fec62e033c1458e038f302ee3d868c16888ae00d6b7ca5df0a230133661923df2620cd89f7f6d0ac8156474e1bfc
|
|
7
|
+
data.tar.gz: edc543bc63475fcb378a910195e011609d100a66c4c33c16d8ead436c660366ff4737eee16b44b19f3b8749945c6dac7c67e4420c4be86a5144eed0f8ac6a3c4
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.111.0
|
|
@@ -1204,11 +1204,16 @@ module Aws::WorkSpaces
|
|
|
1204
1204
|
# * User-decoupled WorkSpaces are only supported by Amazon WorkSpaces
|
|
1205
1205
|
# Core.
|
|
1206
1206
|
#
|
|
1207
|
+
# * Review your running mode to ensure you are using one that is optimal
|
|
1208
|
+
# for your needs and budget. For more information on switching running
|
|
1209
|
+
# modes, see [ Can I switch between hourly and monthly billing?][2]
|
|
1210
|
+
#
|
|
1207
1211
|
# </note>
|
|
1208
1212
|
#
|
|
1209
1213
|
#
|
|
1210
1214
|
#
|
|
1211
1215
|
# [1]: http://aws.amazon.com/workspaces/core/
|
|
1216
|
+
# [2]: http://aws.amazon.com/workspaces-family/workspaces/faqs/#:~:text=Can%20I%20switch%20between%20hourly%20and%20monthly%20billing%20on%20WorkSpaces%20Personal%3F
|
|
1212
1217
|
#
|
|
1213
1218
|
# @option params [required, Array<Types::WorkspaceRequest>] :workspaces
|
|
1214
1219
|
# The WorkSpaces to create. You can specify up to 25 WorkSpaces.
|
|
@@ -4746,7 +4751,7 @@ module Aws::WorkSpaces
|
|
|
4746
4751
|
params: params,
|
|
4747
4752
|
config: config)
|
|
4748
4753
|
context[:gem_name] = 'aws-sdk-workspaces'
|
|
4749
|
-
context[:gem_version] = '1.
|
|
4754
|
+
context[:gem_version] = '1.111.0'
|
|
4750
4755
|
Seahorse::Client::Request.new(handlers, context)
|
|
4751
4756
|
end
|
|
4752
4757
|
|
|
@@ -422,8 +422,7 @@ module Aws::WorkSpaces
|
|
|
422
422
|
# Describes the user capacity for a pool of WorkSpaces.
|
|
423
423
|
#
|
|
424
424
|
# @!attribute [rw] desired_user_sessions
|
|
425
|
-
# The desired number of user sessions for
|
|
426
|
-
# is not allowed for single-session pools.
|
|
425
|
+
# The desired number of user sessions for the WorkSpaces in the pool.
|
|
427
426
|
# @return [Integer]
|
|
428
427
|
#
|
|
429
428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/Capacity AWS API Documentation
|
|
@@ -437,8 +436,10 @@ module Aws::WorkSpaces
|
|
|
437
436
|
# Describes the capacity status for a pool of WorkSpaces.
|
|
438
437
|
#
|
|
439
438
|
# @!attribute [rw] available_user_sessions
|
|
440
|
-
# The number of user sessions currently
|
|
441
|
-
#
|
|
439
|
+
# The number of user sessions currently available for streaming from
|
|
440
|
+
# your pool.
|
|
441
|
+
#
|
|
442
|
+
# AvailableUserSessions = ActualUserSessions - ActiveUserSessions
|
|
442
443
|
# @return [Integer]
|
|
443
444
|
#
|
|
444
445
|
# @!attribute [rw] desired_user_sessions
|
|
@@ -448,13 +449,14 @@ module Aws::WorkSpaces
|
|
|
448
449
|
# @return [Integer]
|
|
449
450
|
#
|
|
450
451
|
# @!attribute [rw] actual_user_sessions
|
|
451
|
-
# The total number of
|
|
452
|
-
#
|
|
452
|
+
# The total number of user sessions that are available for streaming
|
|
453
|
+
# or are currently streaming in your pool.
|
|
454
|
+
#
|
|
455
|
+
# ActualUserSessions = AvailableUserSessions + ActiveUserSessions
|
|
453
456
|
# @return [Integer]
|
|
454
457
|
#
|
|
455
458
|
# @!attribute [rw] active_user_sessions
|
|
456
|
-
# The number of user sessions currently being used for pool
|
|
457
|
-
# This only applies to multi-session pools.
|
|
459
|
+
# The number of user sessions currently being used for your pool.
|
|
458
460
|
# @return [Integer]
|
|
459
461
|
#
|
|
460
462
|
# @see http://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/CapacityStatus AWS API Documentation
|
|
@@ -5718,10 +5720,15 @@ module Aws::WorkSpaces
|
|
|
5718
5720
|
#
|
|
5719
5721
|
# </note>
|
|
5720
5722
|
#
|
|
5723
|
+
# Review your running mode to ensure you are using one that is optimal
|
|
5724
|
+
# for your needs and budget. For more information on switching running
|
|
5725
|
+
# modes, see [ Can I switch between hourly and monthly billing?][3]
|
|
5726
|
+
#
|
|
5721
5727
|
#
|
|
5722
5728
|
#
|
|
5723
5729
|
# [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/running-mode.html
|
|
5724
5730
|
# [2]: http://aws.amazon.com/workspaces/core/
|
|
5731
|
+
# [3]: http://aws.amazon.com/workspaces-family/workspaces/faqs/#:~:text=Can%20I%20switch%20between%20hourly%20and%20monthly%20billing%20on%20WorkSpaces%20Personal%3F
|
|
5725
5732
|
# @return [String]
|
|
5726
5733
|
#
|
|
5727
5734
|
# @!attribute [rw] running_mode_auto_stop_timeout_in_minutes
|
data/lib/aws-sdk-workspaces.rb
CHANGED
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.111.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-07-
|
|
11
|
+
date: 2024-07-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|