aws-sdk-ec2 1.153.0 → 1.154.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +1 -1
- data/lib/aws-sdk-ec2/image.rb +2 -2
- data/lib/aws-sdk-ec2/instance.rb +2 -2
- data/lib/aws-sdk-ec2/plugins/region_validation.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +2 -2
- data/lib/aws-sdk-ec2/vpc.rb +2 -2
- data/lib/aws-sdk-ec2/vpc_peering_connection.rb +2 -2
- 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: d99b785a25fe86becfe5284820383ecf38cec572254c11fb5353689a835e7cb1
|
|
4
|
+
data.tar.gz: 1ae4e5a9b78460aa4f842f33e7ce6e240b911df8c3ab9a8798abdbf14855004b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 769250b0d717565509376a3d089deaf3bc54cbba2b74034953a0de1e2b2baa5b8b80ac28d2715fee5a277e553d43117e0b8ecb13d8be64bd41844e2ce9e9cc32
|
|
7
|
+
data.tar.gz: bfc294ad2d4cdb02eaa771aea2a308aada9a52dfea48f83ef0b29f49764263b76578263c8ecd81822baa6bd261cb42aa8abb03e1130ead469b5b81312e244683
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -36825,7 +36825,7 @@ module Aws::EC2
|
|
|
36825
36825
|
params: params,
|
|
36826
36826
|
config: config)
|
|
36827
36827
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
36828
|
-
context[:gem_version] = '1.
|
|
36828
|
+
context[:gem_version] = '1.154.0'
|
|
36829
36829
|
Seahorse::Client::Request.new(handlers, context)
|
|
36830
36830
|
end
|
|
36831
36831
|
|
data/lib/aws-sdk-ec2/image.rb
CHANGED
|
@@ -605,8 +605,8 @@ module Aws::EC2
|
|
|
605
605
|
|
|
606
606
|
def yield_waiter_and_warn(waiter, &block)
|
|
607
607
|
if !@waiter_block_warned
|
|
608
|
-
msg = "pass options to configure the waiter; "
|
|
609
|
-
|
|
608
|
+
msg = "pass options to configure the waiter; "\
|
|
609
|
+
"yielding the waiter is deprecated"
|
|
610
610
|
warn(msg)
|
|
611
611
|
@waiter_block_warned = true
|
|
612
612
|
end
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
|
@@ -1566,8 +1566,8 @@ module Aws::EC2
|
|
|
1566
1566
|
|
|
1567
1567
|
def yield_waiter_and_warn(waiter, &block)
|
|
1568
1568
|
if !@waiter_block_warned
|
|
1569
|
-
msg = "pass options to configure the waiter; "
|
|
1570
|
-
|
|
1569
|
+
msg = "pass options to configure the waiter; "\
|
|
1570
|
+
"yielding the waiter is deprecated"
|
|
1571
1571
|
warn(msg)
|
|
1572
1572
|
@waiter_block_warned = true
|
|
1573
1573
|
end
|
|
@@ -7,8 +7,8 @@ module Aws
|
|
|
7
7
|
def after_initialize(client)
|
|
8
8
|
if region = client.config.region
|
|
9
9
|
if matches = region.match(/^(\w+-\w+-\d+)[a-z]$/)
|
|
10
|
-
msg = ":region option must a region name, not an availability "
|
|
11
|
-
|
|
10
|
+
msg = ":region option must a region name, not an availability "\
|
|
11
|
+
"zone name; try `#{matches[1]}' instead of `#{matches[0]}'"
|
|
12
12
|
raise ArgumentError, msg
|
|
13
13
|
end
|
|
14
14
|
end
|
data/lib/aws-sdk-ec2/snapshot.rb
CHANGED
|
@@ -607,8 +607,8 @@ module Aws::EC2
|
|
|
607
607
|
|
|
608
608
|
def yield_waiter_and_warn(waiter, &block)
|
|
609
609
|
if !@waiter_block_warned
|
|
610
|
-
msg = "pass options to configure the waiter; "
|
|
611
|
-
|
|
610
|
+
msg = "pass options to configure the waiter; "\
|
|
611
|
+
"yielding the waiter is deprecated"
|
|
612
612
|
warn(msg)
|
|
613
613
|
@waiter_block_warned = true
|
|
614
614
|
end
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -1939,8 +1939,8 @@ module Aws::EC2
|
|
|
1939
1939
|
|
|
1940
1940
|
def yield_waiter_and_warn(waiter, &block)
|
|
1941
1941
|
if !@waiter_block_warned
|
|
1942
|
-
msg = "pass options to configure the waiter; "
|
|
1943
|
-
|
|
1942
|
+
msg = "pass options to configure the waiter; "\
|
|
1943
|
+
"yielding the waiter is deprecated"
|
|
1944
1944
|
warn(msg)
|
|
1945
1945
|
@waiter_block_warned = true
|
|
1946
1946
|
end
|
|
@@ -333,8 +333,8 @@ module Aws::EC2
|
|
|
333
333
|
|
|
334
334
|
def yield_waiter_and_warn(waiter, &block)
|
|
335
335
|
if !@waiter_block_warned
|
|
336
|
-
msg = "pass options to configure the waiter; "
|
|
337
|
-
|
|
336
|
+
msg = "pass options to configure the waiter; "\
|
|
337
|
+
"yielding the waiter is deprecated"
|
|
338
338
|
warn(msg)
|
|
339
339
|
@waiter_block_warned = true
|
|
340
340
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-ec2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.154.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: 2020-04-
|
|
11
|
+
date: 2020-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|