aws-sdk-ec2 1.350.0 → 1.351.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 +30 -17
- data/lib/aws-sdk-ec2/client_api.rb +1 -0
- data/lib/aws-sdk-ec2/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-ec2/endpoint_provider.rb +81 -81
- data/lib/aws-sdk-ec2/image.rb +2 -2
- data/lib/aws-sdk-ec2/resource.rb +1 -2
- data/lib/aws-sdk-ec2/types.rb +23 -8
- 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: 4de16cb9359029ca8b6daed0d78b291dd030adcee873764085560b20db4039d0
|
|
4
|
+
data.tar.gz: c83d067a8d338a3ee1e2718a0fb23a2e485916a81ee9709d4da8174f4f313fa7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 891f9477ac83a2e8c2ee5dc4342e7af752dc9344836917253955cd8439bb664999321b215a28a046dad197bc2a2e03d87d479d209ceb6c3ee8a2a176e52c0af4
|
|
7
|
+
data.tar.gz: d5f4770eef28287b6b106d0a23b8169281ea4e84ecf9850e95d6b3705b5ae2b544983964452c222421a1e70ae4bdc992d942b80108f93edb3a5f6634e227e83f
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.351.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -3639,9 +3639,9 @@ module Aws::EC2
|
|
|
3639
3639
|
end
|
|
3640
3640
|
|
|
3641
3641
|
# Removes your Amazon Web Services account from the launch permissions
|
|
3642
|
-
# for the specified AMI. For more information, see [Cancel
|
|
3643
|
-
#
|
|
3644
|
-
# Compute Cloud User Guide*.
|
|
3642
|
+
# for the specified AMI. For more information, see [Cancel having an AMI
|
|
3643
|
+
# shared with your Amazon Web Services account][1] in the *Amazon
|
|
3644
|
+
# Elastic Compute Cloud User Guide*.
|
|
3645
3645
|
#
|
|
3646
3646
|
#
|
|
3647
3647
|
#
|
|
@@ -4079,8 +4079,8 @@ module Aws::EC2
|
|
|
4079
4079
|
# Outposts][2] in the *Amazon Elastic Compute Cloud User Guide*.
|
|
4080
4080
|
#
|
|
4081
4081
|
# For more information about the prerequisites and limits when copying
|
|
4082
|
-
# an AMI, see [
|
|
4083
|
-
#
|
|
4082
|
+
# an AMI, see [Copy an AMI][3] in the *Amazon Elastic Compute Cloud User
|
|
4083
|
+
# Guide*.
|
|
4084
4084
|
#
|
|
4085
4085
|
#
|
|
4086
4086
|
#
|
|
@@ -4106,7 +4106,7 @@ module Aws::EC2
|
|
|
4106
4106
|
# you cannot create an unencrypted copy of an encrypted snapshot. The
|
|
4107
4107
|
# default KMS key for Amazon EBS is used unless you specify a
|
|
4108
4108
|
# non-default Key Management Service (KMS) KMS key using `KmsKeyId`. For
|
|
4109
|
-
# more information, see [Amazon EBS
|
|
4109
|
+
# more information, see [Amazon EBS encryption][1] in the *Amazon
|
|
4110
4110
|
# Elastic Compute Cloud User Guide*.
|
|
4111
4111
|
#
|
|
4112
4112
|
#
|
|
@@ -4156,7 +4156,7 @@ module Aws::EC2
|
|
|
4156
4156
|
# the destination Outpost. You cannot copy an AMI from an Outpost to a
|
|
4157
4157
|
# Region, from one Outpost to another, or within the same Outpost.
|
|
4158
4158
|
#
|
|
4159
|
-
# For more information, see [
|
|
4159
|
+
# For more information, see [ Copy AMIs from an Amazon Web Services
|
|
4160
4160
|
# Region to an Outpost][1] in the *Amazon Elastic Compute Cloud User
|
|
4161
4161
|
# Guide*.
|
|
4162
4162
|
#
|
|
@@ -4170,6 +4170,19 @@ module Aws::EC2
|
|
|
4170
4170
|
# If you have the required permissions, the error response is
|
|
4171
4171
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
4172
4172
|
#
|
|
4173
|
+
# @option params [Boolean] :copy_image_tags
|
|
4174
|
+
# Indicates whether to include your user-defined AMI tags when copying
|
|
4175
|
+
# the AMI.
|
|
4176
|
+
#
|
|
4177
|
+
# The following tags will not be copied:
|
|
4178
|
+
#
|
|
4179
|
+
# * System tags (prefixed with `aws:`)
|
|
4180
|
+
#
|
|
4181
|
+
# * For public and shared AMIs, user-defined tags that are attached by
|
|
4182
|
+
# other Amazon Web Services accounts
|
|
4183
|
+
#
|
|
4184
|
+
# Default: Your user-defined AMI tags are not copied.
|
|
4185
|
+
#
|
|
4173
4186
|
# @return [Types::CopyImageResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4174
4187
|
#
|
|
4175
4188
|
# * {Types::CopyImageResult#image_id #image_id} => String
|
|
@@ -4203,6 +4216,7 @@ module Aws::EC2
|
|
|
4203
4216
|
# source_region: "String", # required
|
|
4204
4217
|
# destination_outpost_arn: "String",
|
|
4205
4218
|
# dry_run: false,
|
|
4219
|
+
# copy_image_tags: false,
|
|
4206
4220
|
# })
|
|
4207
4221
|
#
|
|
4208
4222
|
# @example Response structure
|
|
@@ -6498,7 +6512,7 @@ module Aws::EC2
|
|
|
6498
6512
|
# launch an instance from this new AMI, the instance automatically
|
|
6499
6513
|
# launches with those additional volumes.
|
|
6500
6514
|
#
|
|
6501
|
-
# For more information, see [
|
|
6515
|
+
# For more information, see [Create an Amazon EBS-backed Linux AMI][1]
|
|
6502
6516
|
# in the *Amazon Elastic Compute Cloud User Guide*.
|
|
6503
6517
|
#
|
|
6504
6518
|
#
|
|
@@ -17346,8 +17360,8 @@ module Aws::EC2
|
|
|
17346
17360
|
#
|
|
17347
17361
|
# If you deregister an AMI that matches a Recycle Bin retention rule,
|
|
17348
17362
|
# the AMI is retained in the Recycle Bin for the specified retention
|
|
17349
|
-
# period. For more information, see [Recycle Bin][1] in the Amazon
|
|
17350
|
-
# Elastic Compute Cloud User Guide
|
|
17363
|
+
# period. For more information, see [Recycle Bin][1] in the *Amazon
|
|
17364
|
+
# Elastic Compute Cloud User Guide*.
|
|
17351
17365
|
#
|
|
17352
17366
|
# When you deregister an AMI, it doesn't affect any instances that
|
|
17353
17367
|
# you've already launched from the AMI. You'll continue to incur usage
|
|
@@ -21527,8 +21541,7 @@ module Aws::EC2
|
|
|
21527
21541
|
# recommend that you use the **Owner** request parameter instead of
|
|
21528
21542
|
# this filter.
|
|
21529
21543
|
#
|
|
21530
|
-
# * `platform` - The platform.
|
|
21531
|
-
# `windows`.
|
|
21544
|
+
# * `platform` - The platform. The only supported value is `windows`.
|
|
21532
21545
|
#
|
|
21533
21546
|
# * `product-code` - The product code.
|
|
21534
21547
|
#
|
|
@@ -46251,8 +46264,8 @@ module Aws::EC2
|
|
|
46251
46264
|
|
|
46252
46265
|
# Registers an AMI. When you're creating an AMI, this is the final step
|
|
46253
46266
|
# you must complete before you can launch an instance from the AMI. For
|
|
46254
|
-
# more information about creating AMIs, see [
|
|
46255
|
-
#
|
|
46267
|
+
# more information about creating AMIs, see [Create your own AMI][1] in
|
|
46268
|
+
# the *Amazon Elastic Compute Cloud User Guide*.
|
|
46256
46269
|
#
|
|
46257
46270
|
# <note markdown="1"> For Amazon EBS-backed instances, CreateImage creates and registers the
|
|
46258
46271
|
# AMI in a single request, so you don't have to register the AMI
|
|
@@ -46304,8 +46317,8 @@ module Aws::EC2
|
|
|
46304
46317
|
# you purchase a Reserved Instance without the matching billing product
|
|
46305
46318
|
# code, the Reserved Instance will not be applied to the On-Demand
|
|
46306
46319
|
# Instance. For information about how to obtain the platform details and
|
|
46307
|
-
# billing information of an AMI, see [
|
|
46308
|
-
# the *Amazon Elastic Compute Cloud User Guide*.
|
|
46320
|
+
# billing information of an AMI, see [Understand AMI billing
|
|
46321
|
+
# information][4] in the *Amazon Elastic Compute Cloud User Guide*.
|
|
46309
46322
|
#
|
|
46310
46323
|
#
|
|
46311
46324
|
#
|
|
@@ -52590,7 +52603,7 @@ module Aws::EC2
|
|
|
52590
52603
|
params: params,
|
|
52591
52604
|
config: config)
|
|
52592
52605
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
52593
|
-
context[:gem_version] = '1.
|
|
52606
|
+
context[:gem_version] = '1.351.0'
|
|
52594
52607
|
Seahorse::Client::Request.new(handlers, context)
|
|
52595
52608
|
end
|
|
52596
52609
|
|
|
@@ -3927,6 +3927,7 @@ module Aws::EC2
|
|
|
3927
3927
|
CopyImageRequest.add_member(:source_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceRegion"))
|
|
3928
3928
|
CopyImageRequest.add_member(:destination_outpost_arn, Shapes::ShapeRef.new(shape: String, location_name: "DestinationOutpostArn"))
|
|
3929
3929
|
CopyImageRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
|
3930
|
+
CopyImageRequest.add_member(:copy_image_tags, Shapes::ShapeRef.new(shape: Boolean, location_name: "CopyImageTags"))
|
|
3930
3931
|
CopyImageRequest.struct_class = Types::CopyImageRequest
|
|
3931
3932
|
|
|
3932
3933
|
CopyImageResult.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "imageId"))
|
|
@@ -50,6 +50,9 @@ module Aws::EC2
|
|
|
50
50
|
|
|
51
51
|
def initialize(options = {})
|
|
52
52
|
self[:region] = options[:region]
|
|
53
|
+
if self[:region].nil?
|
|
54
|
+
raise ArgumentError, "Missing required EndpointParameter: :region"
|
|
55
|
+
end
|
|
53
56
|
self[:use_dual_stack] = options[:use_dual_stack]
|
|
54
57
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
|
55
58
|
if self[:use_dual_stack].nil?
|
|
@@ -29,87 +29,87 @@ module Aws::EC2
|
|
|
29
29
|
# @api private
|
|
30
30
|
RULES = <<-JSON
|
|
31
31
|
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
32
|
+
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
|
|
33
|
+
YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
|
|
34
|
+
ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
|
|
35
|
+
aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
|
|
36
|
+
ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
|
|
37
|
+
IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
|
|
38
|
+
bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
|
|
39
|
+
aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
|
|
40
|
+
IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
|
|
41
|
+
IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
|
|
42
|
+
aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
|
|
43
|
+
Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
|
|
44
|
+
cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
|
|
45
|
+
bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
|
|
46
|
+
YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
|
|
47
|
+
bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
|
|
48
|
+
ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
|
|
49
|
+
IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
|
|
50
|
+
b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
|
|
51
|
+
ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
|
|
52
|
+
dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
|
|
53
|
+
c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
|
|
54
|
+
c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
|
|
55
|
+
dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
|
|
56
|
+
eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
|
|
57
|
+
In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
|
|
58
|
+
UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
|
|
59
|
+
cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
|
|
60
|
+
cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
|
|
61
|
+
ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
|
|
62
|
+
IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
|
|
63
|
+
bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
|
|
64
|
+
LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
|
|
65
|
+
bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
|
|
66
|
+
IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
|
|
67
|
+
YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
|
|
68
|
+
Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
|
|
69
|
+
YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
|
70
|
+
aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
|
|
71
|
+
biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
|
|
72
|
+
fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
|
|
73
|
+
cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
|
|
74
|
+
cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
|
|
75
|
+
ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
|
|
76
|
+
Ijp7InVybCI6Imh0dHBzOi8vZWMyLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlv
|
|
77
|
+
blJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
|
|
78
|
+
ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlv
|
|
79
|
+
bnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxl
|
|
80
|
+
ZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9y
|
|
81
|
+
IGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4i
|
|
82
|
+
OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRy
|
|
83
|
+
dWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7
|
|
84
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRB
|
|
85
|
+
dHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBv
|
|
86
|
+
cnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
|
87
|
+
aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
|
88
|
+
Olt7ImZuIjoic3RyaW5nRXF1YWxzIiwiYXJndiI6WyJhd3MtdXMtZ292Iix7
|
|
89
|
+
ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
|
|
90
|
+
dCJ9LCJuYW1lIl19XX1dLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Vj
|
|
91
|
+
Mi57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9w
|
|
92
|
+
ZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifSx7
|
|
93
|
+
ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Vj
|
|
94
|
+
Mi1maXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIs
|
|
95
|
+
InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
|
|
96
|
+
dCJ9XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5h
|
|
97
|
+
YmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBT
|
|
98
|
+
IiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9v
|
|
99
|
+
bGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRy
|
|
100
|
+
dWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7
|
|
101
|
+
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRB
|
|
102
|
+
dHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBv
|
|
103
|
+
cnRzRHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
|
|
104
|
+
b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9lYzIu
|
|
105
|
+
e1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9
|
|
106
|
+
IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
|
|
107
|
+
aW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1YWxTdGFjayBp
|
|
108
|
+
cyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
|
|
109
|
+
IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
|
|
110
|
+
XSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9lYzIue1JlZ2lvbn0ue1Bh
|
|
111
|
+
cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
|
|
112
|
+
YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
|
|
113
113
|
|
|
114
114
|
JSON
|
|
115
115
|
end
|
data/lib/aws-sdk-ec2/image.rb
CHANGED
|
@@ -88,8 +88,8 @@ module Aws::EC2
|
|
|
88
88
|
end
|
|
89
89
|
|
|
90
90
|
# The platform details associated with the billing code of the AMI. For
|
|
91
|
-
# more information, see [
|
|
92
|
-
# Elastic Compute Cloud User Guide*.
|
|
91
|
+
# more information, see [Understand AMI billing information][1] in the
|
|
92
|
+
# *Amazon Elastic Compute Cloud User Guide*.
|
|
93
93
|
#
|
|
94
94
|
#
|
|
95
95
|
#
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
|
@@ -2129,8 +2129,7 @@ module Aws::EC2
|
|
|
2129
2129
|
# recommend that you use the **Owner** request parameter instead of
|
|
2130
2130
|
# this filter.
|
|
2131
2131
|
#
|
|
2132
|
-
# * `platform` - The platform.
|
|
2133
|
-
# `windows`.
|
|
2132
|
+
# * `platform` - The platform. The only supported value is `windows`.
|
|
2134
2133
|
#
|
|
2135
2134
|
# * `product-code` - The product code.
|
|
2136
2135
|
#
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -6517,6 +6517,7 @@ module Aws::EC2
|
|
|
6517
6517
|
# source_region: "String", # required
|
|
6518
6518
|
# destination_outpost_arn: "String",
|
|
6519
6519
|
# dry_run: false,
|
|
6520
|
+
# copy_image_tags: false,
|
|
6520
6521
|
# }
|
|
6521
6522
|
#
|
|
6522
6523
|
# @!attribute [rw] client_token
|
|
@@ -6539,7 +6540,7 @@ module Aws::EC2
|
|
|
6539
6540
|
# snapshot, but you cannot create an unencrypted copy of an encrypted
|
|
6540
6541
|
# snapshot. The default KMS key for Amazon EBS is used unless you
|
|
6541
6542
|
# specify a non-default Key Management Service (KMS) KMS key using
|
|
6542
|
-
# `KmsKeyId`. For more information, see [Amazon EBS
|
|
6543
|
+
# `KmsKeyId`. For more information, see [Amazon EBS encryption][1] in
|
|
6543
6544
|
# the *Amazon Elastic Compute Cloud User Guide*.
|
|
6544
6545
|
#
|
|
6545
6546
|
#
|
|
@@ -6594,7 +6595,7 @@ module Aws::EC2
|
|
|
6594
6595
|
# the destination Outpost. You cannot copy an AMI from an Outpost to a
|
|
6595
6596
|
# Region, from one Outpost to another, or within the same Outpost.
|
|
6596
6597
|
#
|
|
6597
|
-
# For more information, see [
|
|
6598
|
+
# For more information, see [ Copy AMIs from an Amazon Web Services
|
|
6598
6599
|
# Region to an Outpost][1] in the *Amazon Elastic Compute Cloud User
|
|
6599
6600
|
# Guide*.
|
|
6600
6601
|
#
|
|
@@ -6610,6 +6611,20 @@ module Aws::EC2
|
|
|
6610
6611
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
6611
6612
|
# @return [Boolean]
|
|
6612
6613
|
#
|
|
6614
|
+
# @!attribute [rw] copy_image_tags
|
|
6615
|
+
# Indicates whether to include your user-defined AMI tags when copying
|
|
6616
|
+
# the AMI.
|
|
6617
|
+
#
|
|
6618
|
+
# The following tags will not be copied:
|
|
6619
|
+
#
|
|
6620
|
+
# * System tags (prefixed with `aws:`)
|
|
6621
|
+
#
|
|
6622
|
+
# * For public and shared AMIs, user-defined tags that are attached by
|
|
6623
|
+
# other Amazon Web Services accounts
|
|
6624
|
+
#
|
|
6625
|
+
# Default: Your user-defined AMI tags are not copied.
|
|
6626
|
+
# @return [Boolean]
|
|
6627
|
+
#
|
|
6613
6628
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CopyImageRequest AWS API Documentation
|
|
6614
6629
|
#
|
|
6615
6630
|
class CopyImageRequest < Struct.new(
|
|
@@ -6621,7 +6636,8 @@ module Aws::EC2
|
|
|
6621
6636
|
:source_image_id,
|
|
6622
6637
|
:source_region,
|
|
6623
6638
|
:destination_outpost_arn,
|
|
6624
|
-
:dry_run
|
|
6639
|
+
:dry_run,
|
|
6640
|
+
:copy_image_tags)
|
|
6625
6641
|
SENSITIVE = []
|
|
6626
6642
|
include Aws::Structure
|
|
6627
6643
|
end
|
|
@@ -21704,8 +21720,7 @@ module Aws::EC2
|
|
|
21704
21720
|
# recommend that you use the **Owner** request parameter instead of
|
|
21705
21721
|
# this filter.
|
|
21706
21722
|
#
|
|
21707
|
-
# * `platform` - The platform.
|
|
21708
|
-
# `windows`.
|
|
21723
|
+
# * `platform` - The platform. The only supported value is `windows`.
|
|
21709
21724
|
#
|
|
21710
21725
|
# * `product-code` - The product code.
|
|
21711
21726
|
#
|
|
@@ -39698,8 +39713,8 @@ module Aws::EC2
|
|
|
39698
39713
|
#
|
|
39699
39714
|
# @!attribute [rw] platform_details
|
|
39700
39715
|
# The platform details associated with the billing code of the AMI.
|
|
39701
|
-
# For more information, see [
|
|
39702
|
-
# *Amazon Elastic Compute Cloud User Guide*.
|
|
39716
|
+
# For more information, see [Understand AMI billing information][1] in
|
|
39717
|
+
# the *Amazon Elastic Compute Cloud User Guide*.
|
|
39703
39718
|
#
|
|
39704
39719
|
#
|
|
39705
39720
|
#
|
|
@@ -62768,7 +62783,7 @@ module Aws::EC2
|
|
|
62768
62783
|
# @!attribute [rw] aws_access_key_id
|
|
62769
62784
|
# The access key ID of the owner of the bucket. Before you specify a
|
|
62770
62785
|
# value for your access key ID, review and follow the guidance in
|
|
62771
|
-
# [Best
|
|
62786
|
+
# [Best practices for managing Amazon Web Services access keys][1].
|
|
62772
62787
|
#
|
|
62773
62788
|
#
|
|
62774
62789
|
#
|
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.351.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-
|
|
11
|
+
date: 2022-11-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|