aws-sdk-ec2 1.259.0 → 1.260.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +6 -1
- data/lib/aws-sdk-ec2/client_api.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +13 -2
- 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: 3f188a7d3e0249b9d840c0bd2fcc9119e8b86f5906365494f180f8326ef9dc77
|
4
|
+
data.tar.gz: 54102ac98975c07a8c7f864c0409b034cfe155718cfdf3ea3cc68305e92607c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 886876eb6cf71976077aacee755180ea1568751ee008e2c5ed38c8c82c25bac8c270704a353aa2958cececfdf95abba71cf560c0e3117eaacb3be3c78fb30684
|
7
|
+
data.tar.gz: ccb8210ddbae6f6d5dbb769ff2f977a8adacaa13c71d77404c8351f7fd2e3c49b22728e11716c8951854cbf2270f479662261052071d333c9279612ecd55321d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.260.0 (2021-08-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the BootMode flag to the ImportImage API and showing the detected BootMode of an ImportImage task.
|
8
|
+
|
4
9
|
1.259.0 (2021-08-26)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.260.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -18376,6 +18376,7 @@ module Aws::EC2
|
|
18376
18376
|
# resp.import_image_tasks[0].license_specifications #=> Array
|
18377
18377
|
# resp.import_image_tasks[0].license_specifications[0].license_configuration_arn #=> String
|
18378
18378
|
# resp.import_image_tasks[0].usage_operation #=> String
|
18379
|
+
# resp.import_image_tasks[0].boot_mode #=> String, one of "legacy-bios", "uefi"
|
18379
18380
|
# resp.next_token #=> String
|
18380
18381
|
#
|
18381
18382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeImportImageTasks AWS API Documentation
|
@@ -33047,6 +33048,9 @@ module Aws::EC2
|
|
33047
33048
|
#
|
33048
33049
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html
|
33049
33050
|
#
|
33051
|
+
# @option params [String] :boot_mode
|
33052
|
+
# The boot mode of the virtual machine.
|
33053
|
+
#
|
33050
33054
|
# @return [Types::ImportImageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
33051
33055
|
#
|
33052
33056
|
# * {Types::ImportImageResult#architecture #architecture} => String
|
@@ -33115,6 +33119,7 @@ module Aws::EC2
|
|
33115
33119
|
# },
|
33116
33120
|
# ],
|
33117
33121
|
# usage_operation: "String",
|
33122
|
+
# boot_mode: "legacy-bios", # accepts legacy-bios, uefi
|
33118
33123
|
# })
|
33119
33124
|
#
|
33120
33125
|
# @example Response structure
|
@@ -43615,7 +43620,7 @@ module Aws::EC2
|
|
43615
43620
|
params: params,
|
43616
43621
|
config: config)
|
43617
43622
|
context[:gem_name] = 'aws-sdk-ec2'
|
43618
|
-
context[:gem_version] = '1.
|
43623
|
+
context[:gem_version] = '1.260.0'
|
43619
43624
|
Seahorse::Client::Request.new(handlers, context)
|
43620
43625
|
end
|
43621
43626
|
|
@@ -7164,6 +7164,7 @@ module Aws::EC2
|
|
7164
7164
|
ImportImageRequest.add_member(:license_specifications, Shapes::ShapeRef.new(shape: ImportImageLicenseSpecificationListRequest, location_name: "LicenseSpecifications"))
|
7165
7165
|
ImportImageRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
7166
7166
|
ImportImageRequest.add_member(:usage_operation, Shapes::ShapeRef.new(shape: String, location_name: "UsageOperation"))
|
7167
|
+
ImportImageRequest.add_member(:boot_mode, Shapes::ShapeRef.new(shape: BootModeValues, location_name: "BootMode"))
|
7167
7168
|
ImportImageRequest.struct_class = Types::ImportImageRequest
|
7168
7169
|
|
7169
7170
|
ImportImageResult.add_member(:architecture, Shapes::ShapeRef.new(shape: String, location_name: "architecture"))
|
@@ -7200,6 +7201,7 @@ module Aws::EC2
|
|
7200
7201
|
ImportImageTask.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
7201
7202
|
ImportImageTask.add_member(:license_specifications, Shapes::ShapeRef.new(shape: ImportImageLicenseSpecificationListResponse, location_name: "licenseSpecifications"))
|
7202
7203
|
ImportImageTask.add_member(:usage_operation, Shapes::ShapeRef.new(shape: String, location_name: "usageOperation"))
|
7204
|
+
ImportImageTask.add_member(:boot_mode, Shapes::ShapeRef.new(shape: BootModeValues, location_name: "bootMode"))
|
7203
7205
|
ImportImageTask.struct_class = Types::ImportImageTask
|
7204
7206
|
|
7205
7207
|
ImportImageTaskList.member = Shapes::ShapeRef.new(shape: ImportImageTask, location_name: "item")
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -33413,6 +33413,7 @@ module Aws::EC2
|
|
33413
33413
|
# },
|
33414
33414
|
# ],
|
33415
33415
|
# usage_operation: "String",
|
33416
|
+
# boot_mode: "legacy-bios", # accepts legacy-bios, uefi
|
33416
33417
|
# }
|
33417
33418
|
#
|
33418
33419
|
# @!attribute [rw] architecture
|
@@ -33551,6 +33552,10 @@ module Aws::EC2
|
|
33551
33552
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/billing-info-fields.html
|
33552
33553
|
# @return [String]
|
33553
33554
|
#
|
33555
|
+
# @!attribute [rw] boot_mode
|
33556
|
+
# The boot mode of the virtual machine.
|
33557
|
+
# @return [String]
|
33558
|
+
#
|
33554
33559
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportImageRequest AWS API Documentation
|
33555
33560
|
#
|
33556
33561
|
class ImportImageRequest < Struct.new(
|
@@ -33568,7 +33573,8 @@ module Aws::EC2
|
|
33568
33573
|
:role_name,
|
33569
33574
|
:license_specifications,
|
33570
33575
|
:tag_specifications,
|
33571
|
-
:usage_operation
|
33576
|
+
:usage_operation,
|
33577
|
+
:boot_mode)
|
33572
33578
|
SENSITIVE = []
|
33573
33579
|
include Aws::Structure
|
33574
33580
|
end
|
@@ -33734,6 +33740,10 @@ module Aws::EC2
|
|
33734
33740
|
# The usage operation value.
|
33735
33741
|
# @return [String]
|
33736
33742
|
#
|
33743
|
+
# @!attribute [rw] boot_mode
|
33744
|
+
# The boot mode of the virtual machine.
|
33745
|
+
# @return [String]
|
33746
|
+
#
|
33737
33747
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ImportImageTask AWS API Documentation
|
33738
33748
|
#
|
33739
33749
|
class ImportImageTask < Struct.new(
|
@@ -33752,7 +33762,8 @@ module Aws::EC2
|
|
33752
33762
|
:status_message,
|
33753
33763
|
:tags,
|
33754
33764
|
:license_specifications,
|
33755
|
-
:usage_operation
|
33765
|
+
:usage_operation,
|
33766
|
+
:boot_mode)
|
33756
33767
|
SENSITIVE = []
|
33757
33768
|
include Aws::Structure
|
33758
33769
|
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.260.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-08-
|
11
|
+
date: 2021-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|