aws-sdk-ec2 1.326.0 → 1.327.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +2 -1
- data/lib/aws-sdk-ec2/client_api.rb +1 -0
- data/lib/aws-sdk-ec2/types.rb +7 -1
- data/lib/aws-sdk-ec2.rb +1 -1
- 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: 61cdc4a27e7ed1d6d762228566c99e7c18e61392a7f3222633ae63c1ef0769a6
|
4
|
+
data.tar.gz: a5b44942763826afca1345c67670a259192da0e67113406f143103993cbe5437
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74b9b5e3d56413c3146968d66f74b7c94654ba40e9d875ee3b1e6be7923b047841828763addd9266fdd8a216bb042c05ff4526fa7c551bbdc8e8f65f1e9c5e22
|
7
|
+
data.tar.gz: 01c058429011ca44d364b4357d393421c2c629e03a6d0202c1b86e348d9a04b4f54c1e9341409f5ee16e6e33bc652071fe0c7fa8eede2a90f40258788baa7898
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.327.0 (2022-08-10)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for excluding specific data (non-root) volumes from multi-volume snapshot sets created from instances.
|
8
|
+
|
4
9
|
1.326.0 (2022-07-29)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.327.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -10395,6 +10395,7 @@ module Aws::EC2
|
|
10395
10395
|
# instance_specification: { # required
|
10396
10396
|
# instance_id: "InstanceId",
|
10397
10397
|
# exclude_boot_volume: false,
|
10398
|
+
# exclude_data_volume_ids: ["VolumeId"],
|
10398
10399
|
# },
|
10399
10400
|
# outpost_arn: "String",
|
10400
10401
|
# tag_specifications: [
|
@@ -50781,7 +50782,7 @@ module Aws::EC2
|
|
50781
50782
|
params: params,
|
50782
50783
|
config: config)
|
50783
50784
|
context[:gem_name] = 'aws-sdk-ec2'
|
50784
|
-
context[:gem_version] = '1.
|
50785
|
+
context[:gem_version] = '1.327.0'
|
50785
50786
|
Seahorse::Client::Request.new(handlers, context)
|
50786
50787
|
end
|
50787
50788
|
|
@@ -8795,6 +8795,7 @@ module Aws::EC2
|
|
8795
8795
|
|
8796
8796
|
InstanceSpecification.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
8797
8797
|
InstanceSpecification.add_member(:exclude_boot_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExcludeBootVolume"))
|
8798
|
+
InstanceSpecification.add_member(:exclude_data_volume_ids, Shapes::ShapeRef.new(shape: VolumeIdStringList, location_name: "ExcludeDataVolumeId"))
|
8798
8799
|
InstanceSpecification.struct_class = Types::InstanceSpecification
|
8799
8800
|
|
8800
8801
|
InstanceState.add_member(:code, Shapes::ShapeRef.new(shape: Integer, location_name: "code"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -11471,6 +11471,7 @@ module Aws::EC2
|
|
11471
11471
|
# instance_specification: { # required
|
11472
11472
|
# instance_id: "InstanceId",
|
11473
11473
|
# exclude_boot_volume: false,
|
11474
|
+
# exclude_data_volume_ids: ["VolumeId"],
|
11474
11475
|
# },
|
11475
11476
|
# outpost_arn: "String",
|
11476
11477
|
# tag_specifications: [
|
@@ -42717,6 +42718,7 @@ module Aws::EC2
|
|
42717
42718
|
# {
|
42718
42719
|
# instance_id: "InstanceId",
|
42719
42720
|
# exclude_boot_volume: false,
|
42721
|
+
# exclude_data_volume_ids: ["VolumeId"],
|
42720
42722
|
# }
|
42721
42723
|
#
|
42722
42724
|
# @!attribute [rw] instance_id
|
@@ -42727,11 +42729,15 @@ module Aws::EC2
|
|
42727
42729
|
# Excludes the root volume from being snapshotted.
|
42728
42730
|
# @return [Boolean]
|
42729
42731
|
#
|
42732
|
+
# @!attribute [rw] exclude_data_volume_ids
|
42733
|
+
# @return [Array<String>]
|
42734
|
+
#
|
42730
42735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceSpecification AWS API Documentation
|
42731
42736
|
#
|
42732
42737
|
class InstanceSpecification < Struct.new(
|
42733
42738
|
:instance_id,
|
42734
|
-
:exclude_boot_volume
|
42739
|
+
:exclude_boot_volume,
|
42740
|
+
:exclude_data_volume_ids)
|
42735
42741
|
SENSITIVE = []
|
42736
42742
|
include Aws::Structure
|
42737
42743
|
end
|
data/lib/aws-sdk-ec2.rb
CHANGED
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.327.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: 2022-
|
11
|
+
date: 2022-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|