aws-sdk-ebs 1.17.0 → 1.21.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-ebs/client.rb +14 -3
- data/lib/aws-sdk-ebs/types.rb +1 -1
- data/lib/aws-sdk-ebs.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: 9867a56cb60b2462075349b149bdcd07a1d834113ac68baa0ca9ed20c776215b
|
|
4
|
+
data.tar.gz: 1914f6aeb3f736ceb80bbbeb7e675d234670e088d281a9e544d41c5d00ae52e9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54e62a0b933f167a47c12293027c6d6e227dcf50ecae09c044e7a28bccacc93898a5a5964e6f806f9dcf0937a75d397638db6565a85a13d234d780c5ec4b13de
|
|
7
|
+
data.tar.gz: 8977b4d89e9b46e80dc42dca2451828ecfa012c6fe99c88b2fcbdbc2435d9e8eccc160100976dc12ea0ea44d024b386515c4f1ab49a16cd546411a87ad7e180a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,26 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.21.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.20.0 (2021-11-04)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
14
|
+
1.19.0 (2021-10-18)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.18.0 (2021-09-02)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Documentation updates for Amazon EBS direct APIs.
|
|
23
|
+
|
|
4
24
|
1.17.0 (2021-09-01)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.21.0
|
data/lib/aws-sdk-ebs/client.rb
CHANGED
|
@@ -119,7 +119,9 @@ module Aws::EBS
|
|
|
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
|
|
@@ -275,6 +277,15 @@ module Aws::EBS
|
|
|
275
277
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
|
276
278
|
# requests are made, and retries are disabled.
|
|
277
279
|
#
|
|
280
|
+
# @option options [Boolean] :use_dualstack_endpoint
|
|
281
|
+
# When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
|
|
282
|
+
# will be used if available.
|
|
283
|
+
#
|
|
284
|
+
# @option options [Boolean] :use_fips_endpoint
|
|
285
|
+
# When set to `true`, fips compatible endpoints will be used if available.
|
|
286
|
+
# When a `fips` region is used, the region is normalized and this config
|
|
287
|
+
# is set to `true`.
|
|
288
|
+
#
|
|
278
289
|
# @option options [Boolean] :validate_params (true)
|
|
279
290
|
# When `true`, request parameters are validated before
|
|
280
291
|
# sending the request.
|
|
@@ -649,7 +660,7 @@ module Aws::EBS
|
|
|
649
660
|
# [1]: https://docs.aws.amazon.com/ebs/latest/APIReference/API_PutSnapshotBlock.html
|
|
650
661
|
#
|
|
651
662
|
# @option params [required, Integer] :volume_size
|
|
652
|
-
# The size of the volume, in GiB. The maximum size is `
|
|
663
|
+
# The size of the volume, in GiB. The maximum size is `65536` GiB (64
|
|
653
664
|
# TiB).
|
|
654
665
|
#
|
|
655
666
|
# @option params [String] :parent_snapshot_id
|
|
@@ -806,7 +817,7 @@ module Aws::EBS
|
|
|
806
817
|
params: params,
|
|
807
818
|
config: config)
|
|
808
819
|
context[:gem_name] = 'aws-sdk-ebs'
|
|
809
|
-
context[:gem_version] = '1.
|
|
820
|
+
context[:gem_version] = '1.21.0'
|
|
810
821
|
Seahorse::Client::Request.new(handlers, context)
|
|
811
822
|
end
|
|
812
823
|
|
data/lib/aws-sdk-ebs/types.rb
CHANGED
|
@@ -581,7 +581,7 @@ module Aws::EBS
|
|
|
581
581
|
# }
|
|
582
582
|
#
|
|
583
583
|
# @!attribute [rw] volume_size
|
|
584
|
-
# The size of the volume, in GiB. The maximum size is `
|
|
584
|
+
# The size of the volume, in GiB. The maximum size is `65536` GiB (64
|
|
585
585
|
# TiB).
|
|
586
586
|
# @return [Integer]
|
|
587
587
|
#
|
data/lib/aws-sdk-ebs.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ebs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.21.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
|