aws-sdk-workspaces 1.57.0 → 1.61.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-workspaces/client.rb +15 -4
- data/lib/aws-sdk-workspaces.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f304565c6cb9464bff327b9c77fc160e84d6832e6cc0037f05f14d50ac177398
|
|
4
|
+
data.tar.gz: e179746effb7010dc66795bb91eefdd90416d41bfcfbb0dbac83d8ecd7b4f035
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fa2d1315dcfcc43839c1e6608bac84d91b7a174d04ce5f2095afbbaf8ce58f4f015e72a65b68af33a53a3f7e0458783c380ea7c0062ca48c42943857424daef9
|
|
7
|
+
data.tar.gz: bfecc6b11d4518f3bf862ad9bc167cf7332f791fdd3d60664b4d26f037ef480a7ef7f4b5e3cac030dd70c0b91c3d1e059f2951c1c3e6aef881c9f91ecb8b060f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.61.0 (2021-11-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.60.0 (2021-11-23)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Documentation updates for Amazon WorkSpaces
|
|
13
|
+
|
|
14
|
+
1.59.0 (2021-11-04)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.58.0 (2021-10-18)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
23
|
+
|
|
4
24
|
1.57.0 (2021-09-30)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.61.0
|
|
@@ -119,7 +119,9 @@ module Aws::WorkSpaces
|
|
|
119
119
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
|
120
120
|
# are very aggressive. Construct and pass an instance of
|
|
121
121
|
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
|
122
|
-
# enable retries and extended timeouts.
|
|
122
|
+
# enable retries and extended timeouts. Instance profile credential
|
|
123
|
+
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
|
124
|
+
# to true.
|
|
123
125
|
#
|
|
124
126
|
# @option options [required, String] :region
|
|
125
127
|
# The AWS region to connect to. The configured `:region` is
|
|
@@ -285,6 +287,15 @@ module Aws::WorkSpaces
|
|
|
285
287
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
286
288
|
# requests are made, and retries are disabled.
|
|
287
289
|
#
|
|
290
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
291
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
292
|
+
# will be used if available.
|
|
293
|
+
#
|
|
294
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
295
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
296
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
297
|
+
# is set to `true`.
|
|
298
|
+
#
|
|
288
299
|
# @option options [Boolean] :validate_params (true)
|
|
289
300
|
# When `true`, request parameters are validated before
|
|
290
301
|
# sending the request.
|
|
@@ -667,8 +678,8 @@ module Aws::WorkSpaces
|
|
|
667
678
|
# To determine which WorkSpace images need to be updated with the latest
|
|
668
679
|
# Amazon WorkSpaces requirements, use [ DescribeWorkspaceImages][1].
|
|
669
680
|
#
|
|
670
|
-
# <note markdown="1"> * Only Windows 10
|
|
671
|
-
# this time.
|
|
681
|
+
# <note markdown="1"> * Only Windows 10, Windows Sever 2016, and Windows Server 2019
|
|
682
|
+
# WorkSpace images can be programmatically updated at this time.
|
|
672
683
|
#
|
|
673
684
|
# * Microsoft Windows updates and other application updates are not
|
|
674
685
|
# included in the update process.
|
|
@@ -2845,7 +2856,7 @@ module Aws::WorkSpaces
|
|
|
2845
2856
|
params: params,
|
|
2846
2857
|
config: config)
|
|
2847
2858
|
context[:gem_name] = 'aws-sdk-workspaces'
|
|
2848
|
-
context[:gem_version] = '1.
|
|
2859
|
+
context[:gem_version] = '1.61.0'
|
|
2849
2860
|
Seahorse::Client::Request.new(handlers, context)
|
|
2850
2861
|
end
|
|
2851
2862
|
|
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.61.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: 2021-
|
|
11
|
+
date: 2021-11-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.122.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.122.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|