aws-sdk-workspaces 1.95.0 → 1.96.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: ff2f681b2dff9fe8d88b777952e30d88eb8f3a5c3b59073aaeb85602718bd621
4
- data.tar.gz: 209ad45d6261cbf8cfa6f1ceec986fb354c9a9d70217a70e589666d9f18044d1
3
+ metadata.gz: 4175ddc99ce4570b6a8f76f19ca5a9441857c4030bb852862be821377a8675f8
4
+ data.tar.gz: eee5b57901edf8805ed3925bbb898ed171b87c1849818b5990ba07e7d4df456e
5
5
  SHA512:
6
- metadata.gz: b4e301d4341736deb881db5223f96225ae8a4f9902891614dd72c05aab5ccadc7a2995166b01fd8cb14f8997d37438818820255a364cc46d181659f2ef4693b7
7
- data.tar.gz: fe149cd545704ee3a664b902873c7bc41a2094b7c0ed152a2288f8a8c41486bb408fa859c35ea0babb82111d045dbcb49d723373681ddf47a8217b692dbd4cfb
6
+ metadata.gz: cf0f9be9f6cfb01a94583a470361fbfa3c20178f23a0d51522dc8e6b6b2fa9744bc0c22269cbba12f24835ceaabe4a678ab0e586c1df7c150d96e1c8a5636e24
7
+ data.tar.gz: bd91565701a09035795bbac4da194f5c27e1164fe6937b938a5f534fde81a032ff01b392457dc842b94ec7251877dd970e977c4fdac006828dbe87f37b119747
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.96.0 (2024-01-11)
5
+ ------------------
6
+
7
+ * Feature - Added AWS Workspaces RebootWorkspaces API - Extended Reboot documentation update
8
+
4
9
  1.95.0 (2023-12-14)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.95.0
1
+ 1.96.0
@@ -1092,17 +1092,11 @@ 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
- # * Ensure you review your running mode to ensure you are using a
1096
- # running mode that is optimal for your needs and budget. For more
1097
- # information on switching running modes, see [ Can I switch between
1098
- # hourly and monthly billing?][2]
1099
- #
1100
1095
  # </note>
1101
1096
  #
1102
1097
  #
1103
1098
  #
1104
1099
  # [1]: http://aws.amazon.com/workspaces/core/
1105
- # [2]: https://aws.amazon.com/workspaces/faqs/#:~:text=Q%3A%20Can%20I%20switch%20between%20hourly%20and%20monthly%20billing%3F
1106
1100
  #
1107
1101
  # @option params [required, Array<Types::WorkspaceRequest>] :workspaces
1108
1102
  # The WorkSpaces to create. You can specify up to 25 WorkSpaces.
@@ -3382,8 +3376,10 @@ module Aws::WorkSpaces
3382
3376
 
3383
3377
  # Reboots the specified WorkSpaces.
3384
3378
  #
3385
- # You cannot reboot a WorkSpace unless its state is `AVAILABLE` or
3386
- # `UNHEALTHY`.
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
3383
  #
3388
3384
  # This operation is asynchronous and returns before the WorkSpaces have
3389
3385
  # rebooted.
@@ -3993,7 +3989,7 @@ module Aws::WorkSpaces
3993
3989
  params: params,
3994
3990
  config: config)
3995
3991
  context[:gem_name] = 'aws-sdk-workspaces'
3996
- context[:gem_version] = '1.95.0'
3992
+ context[:gem_version] = '1.96.0'
3997
3993
  Seahorse::Client::Request.new(handlers, context)
3998
3994
  end
3999
3995
 
@@ -4747,14 +4747,9 @@ module Aws::WorkSpaces
4747
4747
  # The running mode. For more information, see [Manage the WorkSpace
4748
4748
  # Running Mode][1].
4749
4749
  #
4750
- # <note markdown="1"> * The `MANUAL` value is only supported by Amazon WorkSpaces Core.
4751
- # Contact your account team to be allow-listed to use this value.
4752
- # For more information, see [Amazon WorkSpaces Core][2].
4753
- #
4754
- # * Ensure you review your running mode to ensure you are using a
4755
- # running mode that is optimal for your needs and budget. For more
4756
- # information on switching running modes, see [ Can I switch between
4757
- # hourly and monthly billing?][3]
4750
+ # <note markdown="1"> The `MANUAL` value is only supported by Amazon WorkSpaces Core.
4751
+ # Contact your account team to be allow-listed to use this value. For
4752
+ # more information, see [Amazon WorkSpaces Core][2].
4758
4753
  #
4759
4754
  # </note>
4760
4755
  #
@@ -4762,7 +4757,6 @@ module Aws::WorkSpaces
4762
4757
  #
4763
4758
  # [1]: https://docs.aws.amazon.com/workspaces/latest/adminguide/running-mode.html
4764
4759
  # [2]: http://aws.amazon.com/workspaces/core/
4765
- # [3]: https://aws.amazon.com/workspaces/faqs/#:~:text=Q%3A%20Can%20I%20switch%20between%20hourly%20and%20monthly%20billing%3F
4766
4760
  # @return [String]
4767
4761
  #
4768
4762
  # @!attribute [rw] running_mode_auto_stop_timeout_in_minutes
@@ -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.95.0'
55
+ GEM_VERSION = '1.96.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.95.0
4
+ version: 1.96.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-14 00:00:00.000000000 Z
11
+ date: 2024-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -72,7 +72,7 @@ licenses:
72
72
  metadata:
73
73
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspaces
74
74
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspaces/CHANGELOG.md
75
- post_install_message:
75
+ post_install_message:
76
76
  rdoc_options: []
77
77
  require_paths:
78
78
  - lib
@@ -87,8 +87,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
90
+ rubygems_version: 3.4.10
91
+ signing_key:
92
92
  specification_version: 4
93
93
  summary: AWS SDK for Ruby - Amazon WorkSpaces
94
94
  test_files: []