aws-sdk-ec2 1.41.0 → 1.42.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 +3 -3
- data/lib/aws-sdk-ec2/client_api.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +1 -1
- data/lib/aws-sdk-ec2/volume.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ce9de32ac2be99847d061d4a0d82fe6ecbfa0c80
|
|
4
|
+
data.tar.gz: 23f614927756c76cdd571b11076b50220083bc4b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7fbef9b5c4b2ac762e874d83a80ff03949edf3fa7586cb20a781d500a5d5073fa62299a35f20c556eaafd5353ddbf14178c37887abdc27e7a138354fd9151d05
|
|
7
|
+
data.tar.gz: 5c807c06afab4dd783e0fe7b1b1d2c8864e3b6705a7dee836622c3368b59384677e20903db4f54529be7449eaa0dd9190aeaae9291414b3198dff9bd8626081d
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -16312,7 +16312,7 @@ module Aws::EC2
|
|
|
16312
16312
|
#
|
|
16313
16313
|
# [1]: http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSVolumes.html
|
|
16314
16314
|
#
|
|
16315
|
-
# @option params [String] :attribute
|
|
16315
|
+
# @option params [required, String] :attribute
|
|
16316
16316
|
# The attribute of the volume. This parameter is required.
|
|
16317
16317
|
#
|
|
16318
16318
|
# @option params [required, String] :volume_id
|
|
@@ -16351,7 +16351,7 @@ module Aws::EC2
|
|
|
16351
16351
|
# @example Request syntax with placeholder values
|
|
16352
16352
|
#
|
|
16353
16353
|
# resp = client.describe_volume_attribute({
|
|
16354
|
-
# attribute: "autoEnableIO", # accepts autoEnableIO, productCodes
|
|
16354
|
+
# attribute: "autoEnableIO", # required, accepts autoEnableIO, productCodes
|
|
16355
16355
|
# volume_id: "String", # required
|
|
16356
16356
|
# dry_run: false,
|
|
16357
16357
|
# })
|
|
@@ -25697,7 +25697,7 @@ module Aws::EC2
|
|
|
25697
25697
|
params: params,
|
|
25698
25698
|
config: config)
|
|
25699
25699
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
25700
|
-
context[:gem_version] = '1.
|
|
25700
|
+
context[:gem_version] = '1.42.0'
|
|
25701
25701
|
Seahorse::Client::Request.new(handlers, context)
|
|
25702
25702
|
end
|
|
25703
25703
|
|
|
@@ -2905,7 +2905,7 @@ module Aws::EC2
|
|
|
2905
2905
|
DescribeTagsResult.add_member(:tags, Shapes::ShapeRef.new(shape: TagDescriptionList, location_name: "tagSet"))
|
|
2906
2906
|
DescribeTagsResult.struct_class = Types::DescribeTagsResult
|
|
2907
2907
|
|
|
2908
|
-
DescribeVolumeAttributeRequest.add_member(:attribute, Shapes::ShapeRef.new(shape: VolumeAttributeName, location_name: "Attribute"))
|
|
2908
|
+
DescribeVolumeAttributeRequest.add_member(:attribute, Shapes::ShapeRef.new(shape: VolumeAttributeName, required: true, location_name: "Attribute"))
|
|
2909
2909
|
DescribeVolumeAttributeRequest.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "VolumeId"))
|
|
2910
2910
|
DescribeVolumeAttributeRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
2911
2911
|
DescribeVolumeAttributeRequest.struct_class = Types::DescribeVolumeAttributeRequest
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -12681,7 +12681,7 @@ module Aws::EC2
|
|
|
12681
12681
|
# data as a hash:
|
|
12682
12682
|
#
|
|
12683
12683
|
# {
|
|
12684
|
-
# attribute: "autoEnableIO", # accepts autoEnableIO, productCodes
|
|
12684
|
+
# attribute: "autoEnableIO", # required, accepts autoEnableIO, productCodes
|
|
12685
12685
|
# volume_id: "String", # required
|
|
12686
12686
|
# dry_run: false,
|
|
12687
12687
|
# }
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -371,11 +371,11 @@ module Aws::EC2
|
|
|
371
371
|
# @example Request syntax with placeholder values
|
|
372
372
|
#
|
|
373
373
|
# volume.describe_attribute({
|
|
374
|
-
# attribute: "autoEnableIO", # accepts autoEnableIO, productCodes
|
|
374
|
+
# attribute: "autoEnableIO", # required, accepts autoEnableIO, productCodes
|
|
375
375
|
# dry_run: false,
|
|
376
376
|
# })
|
|
377
377
|
# @param [Hash] options ({})
|
|
378
|
-
# @option options [String] :attribute
|
|
378
|
+
# @option options [required, String] :attribute
|
|
379
379
|
# The attribute of the volume. This parameter is required.
|
|
380
380
|
# @option options [Boolean] :dry_run
|
|
381
381
|
# Checks whether you have the required permissions for the action,
|
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.42.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: 2018-08-
|
|
11
|
+
date: 2018-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|