aws-sdk-ec2 1.326.0 → 1.327.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 124cc5fc8759635e4e81ccaf2b2cd1094514eee4d76562f97498ec2031535a98
4
- data.tar.gz: 7c246ef8cd1d906092361f4f7777acf1bb71f1a87e2b3566087180cea1c99352
3
+ metadata.gz: 61cdc4a27e7ed1d6d762228566c99e7c18e61392a7f3222633ae63c1ef0769a6
4
+ data.tar.gz: a5b44942763826afca1345c67670a259192da0e67113406f143103993cbe5437
5
5
  SHA512:
6
- metadata.gz: 5df9dec2d3f2c144b1b87e96754572a4915ea9639e012f159cd019fe9da8b9166ec4809fc84e175ff8cbdaa0e38260b3a2b8b29e52ed1914ffcf717c21fc3168
7
- data.tar.gz: b4997b5c7b9b92dd4c3769f1dc5f2f5b282007d8f963d610bdff8216df2e07b4898725f5b8ae0f76ba7aef47df8fdd88d0635520775618ae2a8dabc96036199a
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.326.0
1
+ 1.327.0
@@ -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.326.0'
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"))
@@ -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
@@ -72,6 +72,6 @@ require_relative 'aws-sdk-ec2/customizations'
72
72
  # @!group service
73
73
  module Aws::EC2
74
74
 
75
- GEM_VERSION = '1.326.0'
75
+ GEM_VERSION = '1.327.0'
76
76
 
77
77
  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.326.0
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-07-29 00:00:00.000000000 Z
11
+ date: 2022-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4