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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 14eb615cc2c99958593a28c362a6ff68268af21c85270eef80d35a8aa35e2f3b
4
- data.tar.gz: 72d49c753bcd0c23ec8e543d88c3f0a546170ed29dd5e7add142e630385b6b04
3
+ metadata.gz: 3f188a7d3e0249b9d840c0bd2fcc9119e8b86f5906365494f180f8326ef9dc77
4
+ data.tar.gz: 54102ac98975c07a8c7f864c0409b034cfe155718cfdf3ea3cc68305e92607c2
5
5
  SHA512:
6
- metadata.gz: c1ce36b1cfc890ea591fb9186df3f0b1fe1aa8b71cc4acd83c07a1f45519375423b4ca99186463c2a610202eaf4ba6ff43642ee397ed7fb63e6bd46398cd5253
7
- data.tar.gz: 59c2d23ad3d07928fc7ca2acb2ae968f5a9e1bdbd82b634c34b1201af1c0dfe004b7508c04372fdb5d3d710a44e119274213601a570a36dfaec3f0fdc8a22fd6
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.259.0
1
+ 1.260.0
@@ -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.259.0'
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")
@@ -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
@@ -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.259.0'
75
+ GEM_VERSION = '1.260.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.259.0
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-26 00:00:00.000000000 Z
11
+ date: 2021-08-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4