aws-sdk-ec2 1.458.0 → 1.460.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/classic_address.rb +5 -5
- data/lib/aws-sdk-ec2/client.rb +40 -40
- data/lib/aws-sdk-ec2/client_api.rb +1 -0
- data/lib/aws-sdk-ec2/customizations/instance.rb +1 -1
- data/lib/aws-sdk-ec2/customizations/resource.rb +1 -1
- data/lib/aws-sdk-ec2/dhcp_options.rb +6 -6
- data/lib/aws-sdk-ec2/image.rb +9 -9
- data/lib/aws-sdk-ec2/instance.rb +38 -38
- data/lib/aws-sdk-ec2/internet_gateway.rb +7 -7
- data/lib/aws-sdk-ec2/key_pair.rb +2 -2
- data/lib/aws-sdk-ec2/key_pair_info.rb +3 -3
- data/lib/aws-sdk-ec2/nat_gateway.rb +5 -5
- data/lib/aws-sdk-ec2/network_acl.rb +9 -9
- data/lib/aws-sdk-ec2/network_interface.rb +12 -12
- data/lib/aws-sdk-ec2/network_interface_association.rb +3 -3
- data/lib/aws-sdk-ec2/placement_group.rb +4 -4
- data/lib/aws-sdk-ec2/resource.rb +39 -39
- data/lib/aws-sdk-ec2/route.rb +3 -3
- data/lib/aws-sdk-ec2/route_table.rb +7 -7
- data/lib/aws-sdk-ec2/route_table_association.rb +3 -3
- data/lib/aws-sdk-ec2/security_group.rb +9 -9
- data/lib/aws-sdk-ec2/snapshot.rb +10 -10
- data/lib/aws-sdk-ec2/subnet.rb +11 -11
- data/lib/aws-sdk-ec2/tag.rb +4 -4
- data/lib/aws-sdk-ec2/volume.rb +13 -13
- data/lib/aws-sdk-ec2/vpc.rb +30 -30
- data/lib/aws-sdk-ec2/vpc_address.rb +4 -4
- data/lib/aws-sdk-ec2/vpc_peering_connection.rb +6 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +15 -15
- data/sig/instance.rbs +1 -1
- data/sig/resource.rbs +1 -1
- data/sig/subnet.rbs +1 -1
- data/sig/types.rbs +24 -24
- metadata +4 -4
@@ -85,7 +85,7 @@ module Aws::EC2
|
|
85
85
|
#
|
86
86
|
# @return [self]
|
87
87
|
def load
|
88
|
-
resp = Aws::Plugins::UserAgent.
|
88
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
89
89
|
@client.describe_network_acls(network_acl_ids: [@id])
|
90
90
|
end
|
91
91
|
@data = resp.network_acls[0]
|
@@ -202,7 +202,7 @@ module Aws::EC2
|
|
202
202
|
:retry
|
203
203
|
end
|
204
204
|
end
|
205
|
-
Aws::Plugins::UserAgent.
|
205
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
206
206
|
Aws::Waiters::Waiter.new(options).wait({})
|
207
207
|
end
|
208
208
|
end
|
@@ -272,7 +272,7 @@ module Aws::EC2
|
|
272
272
|
# @return [EmptyStructure]
|
273
273
|
def create_entry(options = {})
|
274
274
|
options = options.merge(network_acl_id: @id)
|
275
|
-
resp = Aws::Plugins::UserAgent.
|
275
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
276
276
|
@client.create_network_acl_entry(options)
|
277
277
|
end
|
278
278
|
resp.data
|
@@ -303,7 +303,7 @@ module Aws::EC2
|
|
303
303
|
def create_tags(options = {})
|
304
304
|
batch = []
|
305
305
|
options = Aws::Util.deep_merge(options, resources: [@id])
|
306
|
-
resp = Aws::Plugins::UserAgent.
|
306
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
307
307
|
@client.create_tags(options)
|
308
308
|
end
|
309
309
|
options[:tags].each do |t|
|
@@ -350,7 +350,7 @@ module Aws::EC2
|
|
350
350
|
def delete_tags(options = {})
|
351
351
|
batch = []
|
352
352
|
options = Aws::Util.deep_merge(options, resources: [@id])
|
353
|
-
resp = Aws::Plugins::UserAgent.
|
353
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
354
354
|
@client.delete_tags(options)
|
355
355
|
end
|
356
356
|
options[:tags].each do |t|
|
@@ -378,7 +378,7 @@ module Aws::EC2
|
|
378
378
|
# @return [EmptyStructure]
|
379
379
|
def delete(options = {})
|
380
380
|
options = options.merge(network_acl_id: @id)
|
381
|
-
resp = Aws::Plugins::UserAgent.
|
381
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
382
382
|
@client.delete_network_acl(options)
|
383
383
|
end
|
384
384
|
resp.data
|
@@ -404,7 +404,7 @@ module Aws::EC2
|
|
404
404
|
# @return [EmptyStructure]
|
405
405
|
def delete_entry(options = {})
|
406
406
|
options = options.merge(network_acl_id: @id)
|
407
|
-
resp = Aws::Plugins::UserAgent.
|
407
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
408
408
|
@client.delete_network_acl_entry(options)
|
409
409
|
end
|
410
410
|
resp.data
|
@@ -428,7 +428,7 @@ module Aws::EC2
|
|
428
428
|
# @return [Types::ReplaceNetworkAclAssociationResult]
|
429
429
|
def replace_association(options = {})
|
430
430
|
options = options.merge(network_acl_id: @id)
|
431
|
-
resp = Aws::Plugins::UserAgent.
|
431
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
432
432
|
@client.replace_network_acl_association(options)
|
433
433
|
end
|
434
434
|
resp.data
|
@@ -492,7 +492,7 @@ module Aws::EC2
|
|
492
492
|
# @return [EmptyStructure]
|
493
493
|
def replace_entry(options = {})
|
494
494
|
options = options.merge(network_acl_id: @id)
|
495
|
-
resp = Aws::Plugins::UserAgent.
|
495
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
496
496
|
@client.replace_network_acl_entry(options)
|
497
497
|
end
|
498
498
|
resp.data
|
@@ -215,7 +215,7 @@ module Aws::EC2
|
|
215
215
|
#
|
216
216
|
# @return [self]
|
217
217
|
def load
|
218
|
-
resp = Aws::Plugins::UserAgent.
|
218
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
219
219
|
@client.describe_network_interfaces(network_interface_ids: [@id])
|
220
220
|
end
|
221
221
|
@data = resp.network_interfaces[0]
|
@@ -332,7 +332,7 @@ module Aws::EC2
|
|
332
332
|
:retry
|
333
333
|
end
|
334
334
|
end
|
335
|
-
Aws::Plugins::UserAgent.
|
335
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
336
336
|
Aws::Waiters::Waiter.new(options).wait({})
|
337
337
|
end
|
338
338
|
end
|
@@ -374,7 +374,7 @@ module Aws::EC2
|
|
374
374
|
# @return [Types::AssignPrivateIpAddressesResult]
|
375
375
|
def assign_private_ip_addresses(options = {})
|
376
376
|
options = options.merge(network_interface_id: @id)
|
377
|
-
resp = Aws::Plugins::UserAgent.
|
377
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
378
378
|
@client.assign_private_ip_addresses(options)
|
379
379
|
end
|
380
380
|
resp.data
|
@@ -414,7 +414,7 @@ module Aws::EC2
|
|
414
414
|
# @return [Types::AttachNetworkInterfaceResult]
|
415
415
|
def attach(options = {})
|
416
416
|
options = options.merge(network_interface_id: @id)
|
417
|
-
resp = Aws::Plugins::UserAgent.
|
417
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
418
418
|
@client.attach_network_interface(options)
|
419
419
|
end
|
420
420
|
resp.data
|
@@ -445,7 +445,7 @@ module Aws::EC2
|
|
445
445
|
def create_tags(options = {})
|
446
446
|
batch = []
|
447
447
|
options = Aws::Util.deep_merge(options, resources: [@id])
|
448
|
-
resp = Aws::Plugins::UserAgent.
|
448
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
449
449
|
@client.create_tags(options)
|
450
450
|
end
|
451
451
|
options[:tags].each do |t|
|
@@ -492,7 +492,7 @@ module Aws::EC2
|
|
492
492
|
def delete_tags(options = {})
|
493
493
|
batch = []
|
494
494
|
options = Aws::Util.deep_merge(options, resources: [@id])
|
495
|
-
resp = Aws::Plugins::UserAgent.
|
495
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
496
496
|
@client.delete_tags(options)
|
497
497
|
end
|
498
498
|
options[:tags].each do |t|
|
@@ -520,7 +520,7 @@ module Aws::EC2
|
|
520
520
|
# @return [EmptyStructure]
|
521
521
|
def delete(options = {})
|
522
522
|
options = options.merge(network_interface_id: @id)
|
523
|
-
resp = Aws::Plugins::UserAgent.
|
523
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
524
524
|
@client.delete_network_interface(options)
|
525
525
|
end
|
526
526
|
resp.data
|
@@ -543,7 +543,7 @@ module Aws::EC2
|
|
543
543
|
# @return [Types::DescribeNetworkInterfaceAttributeResult]
|
544
544
|
def describe_attribute(options = {})
|
545
545
|
options = options.merge(network_interface_id: @id)
|
546
|
-
resp = Aws::Plugins::UserAgent.
|
546
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
547
547
|
@client.describe_network_interface_attribute(options)
|
548
548
|
end
|
549
549
|
resp.data
|
@@ -586,7 +586,7 @@ module Aws::EC2
|
|
586
586
|
# @return [EmptyStructure]
|
587
587
|
def detach(options = {})
|
588
588
|
options = options.merge(attachment_id: data[:attachment][:attachment_id])
|
589
|
-
resp = Aws::Plugins::UserAgent.
|
589
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
590
590
|
@client.detach_network_interface(options)
|
591
591
|
end
|
592
592
|
resp.data
|
@@ -671,7 +671,7 @@ module Aws::EC2
|
|
671
671
|
# @return [EmptyStructure]
|
672
672
|
def modify_attribute(options = {})
|
673
673
|
options = options.merge(network_interface_id: @id)
|
674
|
-
resp = Aws::Plugins::UserAgent.
|
674
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
675
675
|
@client.modify_network_interface_attribute(options)
|
676
676
|
end
|
677
677
|
resp.data
|
@@ -694,7 +694,7 @@ module Aws::EC2
|
|
694
694
|
# @return [EmptyStructure]
|
695
695
|
def reset_attribute(options = {})
|
696
696
|
options = options.merge(network_interface_id: @id)
|
697
|
-
resp = Aws::Plugins::UserAgent.
|
697
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
698
698
|
@client.reset_network_interface_attribute(options)
|
699
699
|
end
|
700
700
|
resp.data
|
@@ -716,7 +716,7 @@ module Aws::EC2
|
|
716
716
|
# @return [EmptyStructure]
|
717
717
|
def unassign_private_ip_addresses(options = {})
|
718
718
|
options = options.merge(network_interface_id: @id)
|
719
|
-
resp = Aws::Plugins::UserAgent.
|
719
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
720
720
|
@client.unassign_private_ip_addresses(options)
|
721
721
|
end
|
722
722
|
resp.data
|
@@ -79,7 +79,7 @@ module Aws::EC2
|
|
79
79
|
#
|
80
80
|
# @return [self]
|
81
81
|
def load
|
82
|
-
resp = Aws::Plugins::UserAgent.
|
82
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
83
83
|
@client.describe_network_interfaces(filters: [{
|
84
84
|
name: "association.association-id",
|
85
85
|
values: [@id]
|
@@ -199,7 +199,7 @@ module Aws::EC2
|
|
199
199
|
:retry
|
200
200
|
end
|
201
201
|
end
|
202
|
-
Aws::Plugins::UserAgent.
|
202
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
203
203
|
Aws::Waiters::Waiter.new(options).wait({})
|
204
204
|
end
|
205
205
|
end
|
@@ -223,7 +223,7 @@ module Aws::EC2
|
|
223
223
|
# @return [EmptyStructure]
|
224
224
|
def delete(options = {})
|
225
225
|
options = options.merge(association_id: @id)
|
226
|
-
resp = Aws::Plugins::UserAgent.
|
226
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
227
227
|
@client.disassociate_address(options)
|
228
228
|
end
|
229
229
|
resp.data
|
@@ -93,7 +93,7 @@ module Aws::EC2
|
|
93
93
|
#
|
94
94
|
# @return [self]
|
95
95
|
def load
|
96
|
-
resp = Aws::Plugins::UserAgent.
|
96
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
97
97
|
@client.describe_placement_groups(group_names: [@name])
|
98
98
|
end
|
99
99
|
@data = resp.placement_groups[0]
|
@@ -210,7 +210,7 @@ module Aws::EC2
|
|
210
210
|
:retry
|
211
211
|
end
|
212
212
|
end
|
213
|
-
Aws::Plugins::UserAgent.
|
213
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
214
214
|
Aws::Waiters::Waiter.new(options).wait({})
|
215
215
|
end
|
216
216
|
end
|
@@ -231,7 +231,7 @@ module Aws::EC2
|
|
231
231
|
# @return [EmptyStructure]
|
232
232
|
def delete(options = {})
|
233
233
|
options = options.merge(group_name: @name)
|
234
|
-
resp = Aws::Plugins::UserAgent.
|
234
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
235
235
|
@client.delete_placement_group(options)
|
236
236
|
end
|
237
237
|
resp.data
|
@@ -693,7 +693,7 @@ module Aws::EC2
|
|
693
693
|
name: "placement-group-name",
|
694
694
|
values: [@name]
|
695
695
|
}])
|
696
|
-
resp = Aws::Plugins::UserAgent.
|
696
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
697
697
|
@client.describe_instances(options)
|
698
698
|
end
|
699
699
|
resp.each_page do |page|
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -69,7 +69,7 @@ module Aws::EC2
|
|
69
69
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
70
70
|
# @return [DhcpOptions]
|
71
71
|
def create_dhcp_options(options = {})
|
72
|
-
resp = Aws::Plugins::UserAgent.
|
72
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
73
73
|
@client.create_dhcp_options(options)
|
74
74
|
end
|
75
75
|
DhcpOptions.new(
|
@@ -101,7 +101,7 @@ module Aws::EC2
|
|
101
101
|
# },
|
102
102
|
# ],
|
103
103
|
# image_id: "ImageId",
|
104
|
-
# instance_type: "a1.medium", # accepts a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6g.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gd.metal, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, c6i.large, c6i.xlarge, c6i.2xlarge, c6i.4xlarge, c6i.8xlarge, c6i.12xlarge, c6i.16xlarge, c6i.24xlarge, c6i.32xlarge, c6i.metal, cc1.4xlarge, cc2.8xlarge, cg1.4xlarge, cr1.8xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, dl1.24xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, g5.xlarge, g5.2xlarge, g5.4xlarge, g5.8xlarge, g5.12xlarge, g5.16xlarge, g5.24xlarge, g5.48xlarge, g5g.xlarge, g5g.2xlarge, g5g.4xlarge, g5g.8xlarge, g5g.16xlarge, g5g.metal, hi1.4xlarge, hpc6a.48xlarge, hs1.8xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, im4gn.large, im4gn.xlarge, im4gn.2xlarge, im4gn.4xlarge, im4gn.8xlarge, im4gn.16xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, is4gen.medium, is4gen.large, is4gen.xlarge, is4gen.2xlarge, is4gen.4xlarge, is4gen.8xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, m6a.large, m6a.xlarge, m6a.2xlarge, m6a.4xlarge, m6a.8xlarge, m6a.12xlarge, m6a.16xlarge, m6a.24xlarge, m6a.32xlarge, m6a.48xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, m6i.metal, mac1.metal, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6g.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, r6gd.metal, r6i.large, r6i.xlarge, r6i.2xlarge, r6i.4xlarge, r6i.8xlarge, r6i.12xlarge, r6i.16xlarge, r6i.24xlarge, r6i.32xlarge, r6i.metal, t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, x2iezn.2xlarge, x2iezn.4xlarge, x2iezn.6xlarge, x2iezn.8xlarge, x2iezn.12xlarge, x2iezn.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, x2idn.16xlarge, x2idn.24xlarge, x2idn.32xlarge, x2iedn.xlarge, x2iedn.2xlarge, x2iedn.4xlarge, x2iedn.8xlarge, x2iedn.16xlarge, x2iedn.24xlarge, x2iedn.32xlarge, c6a.large, c6a.xlarge, c6a.2xlarge, c6a.4xlarge, c6a.8xlarge, c6a.12xlarge, c6a.16xlarge, c6a.24xlarge, c6a.32xlarge, c6a.48xlarge, c6a.metal, m6a.metal, i4i.large, i4i.xlarge, i4i.2xlarge, i4i.4xlarge, i4i.8xlarge, i4i.16xlarge, i4i.32xlarge, i4i.metal, x2idn.metal, x2iedn.metal, c7g.medium, c7g.large, c7g.xlarge, c7g.2xlarge, c7g.4xlarge, c7g.8xlarge, c7g.12xlarge, c7g.16xlarge, mac2.metal, c6id.large, c6id.xlarge, c6id.2xlarge, c6id.4xlarge, c6id.8xlarge, c6id.12xlarge, c6id.16xlarge, c6id.24xlarge, c6id.32xlarge, c6id.metal, m6id.large, m6id.xlarge, m6id.2xlarge, m6id.4xlarge, m6id.8xlarge, m6id.12xlarge, m6id.16xlarge, m6id.24xlarge, m6id.32xlarge, m6id.metal, r6id.large, r6id.xlarge, r6id.2xlarge, r6id.4xlarge, r6id.8xlarge, r6id.12xlarge, r6id.16xlarge, r6id.24xlarge, r6id.32xlarge, r6id.metal, r6a.large, r6a.xlarge, r6a.2xlarge, r6a.4xlarge, r6a.8xlarge, r6a.12xlarge, r6a.16xlarge, r6a.24xlarge, r6a.32xlarge, r6a.48xlarge, r6a.metal, p4de.24xlarge, u-3tb1.56xlarge, u-18tb1.112xlarge, u-24tb1.112xlarge, trn1.2xlarge, trn1.32xlarge, hpc6id.32xlarge, c6in.large, c6in.xlarge, c6in.2xlarge, c6in.4xlarge, c6in.8xlarge, c6in.12xlarge, c6in.16xlarge, c6in.24xlarge, c6in.32xlarge, m6in.large, m6in.xlarge, m6in.2xlarge, m6in.4xlarge, m6in.8xlarge, m6in.12xlarge, m6in.16xlarge, m6in.24xlarge, m6in.32xlarge, m6idn.large, m6idn.xlarge, m6idn.2xlarge, m6idn.4xlarge, m6idn.8xlarge, m6idn.12xlarge, m6idn.16xlarge, m6idn.24xlarge, m6idn.32xlarge, r6in.large, r6in.xlarge, r6in.2xlarge, r6in.4xlarge, r6in.8xlarge, r6in.12xlarge, r6in.16xlarge, r6in.24xlarge, r6in.32xlarge, r6idn.large, r6idn.xlarge, r6idn.2xlarge, r6idn.4xlarge, r6idn.8xlarge, r6idn.12xlarge, r6idn.16xlarge, r6idn.24xlarge, r6idn.32xlarge, c7g.metal, m7g.medium, m7g.large, m7g.xlarge, m7g.2xlarge, m7g.4xlarge, m7g.8xlarge, m7g.12xlarge, m7g.16xlarge, m7g.metal, r7g.medium, r7g.large, r7g.xlarge, r7g.2xlarge, r7g.4xlarge, r7g.8xlarge, r7g.12xlarge, r7g.16xlarge, r7g.metal, c6in.metal, m6in.metal, m6idn.metal, r6in.metal, r6idn.metal, inf2.xlarge, inf2.8xlarge, inf2.24xlarge, inf2.48xlarge, trn1n.32xlarge, i4g.large, i4g.xlarge, i4g.2xlarge, i4g.4xlarge, i4g.8xlarge, i4g.16xlarge, hpc7g.4xlarge, hpc7g.8xlarge, hpc7g.16xlarge, c7gn.medium, c7gn.large, c7gn.xlarge, c7gn.2xlarge, c7gn.4xlarge, c7gn.8xlarge, c7gn.12xlarge, c7gn.16xlarge, p5.48xlarge, m7i.large, m7i.xlarge, m7i.2xlarge, m7i.4xlarge, m7i.8xlarge, m7i.12xlarge, m7i.16xlarge, m7i.24xlarge, m7i.48xlarge, m7i-flex.large, m7i-flex.xlarge, m7i-flex.2xlarge, m7i-flex.4xlarge, m7i-flex.8xlarge, m7a.medium, m7a.large, m7a.xlarge, m7a.2xlarge, m7a.4xlarge, m7a.8xlarge, m7a.12xlarge, m7a.16xlarge, m7a.24xlarge, m7a.32xlarge, m7a.48xlarge, m7a.metal-48xl, hpc7a.12xlarge, hpc7a.24xlarge, hpc7a.48xlarge, hpc7a.96xlarge, c7gd.medium, c7gd.large, c7gd.xlarge, c7gd.2xlarge, c7gd.4xlarge, c7gd.8xlarge, c7gd.12xlarge, c7gd.16xlarge, m7gd.medium, m7gd.large, m7gd.xlarge, m7gd.2xlarge, m7gd.4xlarge, m7gd.8xlarge, m7gd.12xlarge, m7gd.16xlarge, r7gd.medium, r7gd.large, r7gd.xlarge, r7gd.2xlarge, r7gd.4xlarge, r7gd.8xlarge, r7gd.12xlarge, r7gd.16xlarge, r7a.medium, r7a.large, r7a.xlarge, r7a.2xlarge, r7a.4xlarge, r7a.8xlarge, r7a.12xlarge, r7a.16xlarge, r7a.24xlarge, r7a.32xlarge, r7a.48xlarge, c7i.large, c7i.xlarge, c7i.2xlarge, c7i.4xlarge, c7i.8xlarge, c7i.12xlarge, c7i.16xlarge, c7i.24xlarge, c7i.48xlarge, mac2-m2pro.metal, r7iz.large, r7iz.xlarge, r7iz.2xlarge, r7iz.4xlarge, r7iz.8xlarge, r7iz.12xlarge, r7iz.16xlarge, r7iz.32xlarge, c7a.medium, c7a.large, c7a.xlarge, c7a.2xlarge, c7a.4xlarge, c7a.8xlarge, c7a.12xlarge, c7a.16xlarge, c7a.24xlarge, c7a.32xlarge, c7a.48xlarge, c7a.metal-48xl, r7a.metal-48xl, r7i.large, r7i.xlarge, r7i.2xlarge, r7i.4xlarge, r7i.8xlarge, r7i.12xlarge, r7i.16xlarge, r7i.24xlarge, r7i.48xlarge, dl2q.24xlarge, mac2-m2.metal, i4i.12xlarge, i4i.24xlarge, c7i.metal-24xl, c7i.metal-48xl, m7i.metal-24xl, m7i.metal-48xl, r7i.metal-24xl, r7i.metal-48xl, r7iz.metal-16xl, r7iz.metal-32xl, c7gd.metal, m7gd.metal, r7gd.metal, g6.xlarge, g6.2xlarge, g6.4xlarge, g6.8xlarge, g6.12xlarge, g6.16xlarge, g6.24xlarge, g6.48xlarge, gr6.4xlarge, gr6.8xlarge
|
104
|
+
# instance_type: "a1.medium", # accepts a1.medium, a1.large, a1.xlarge, a1.2xlarge, a1.4xlarge, a1.metal, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, c5.large, c5.xlarge, c5.2xlarge, c5.4xlarge, c5.9xlarge, c5.12xlarge, c5.18xlarge, c5.24xlarge, c5.metal, c5a.large, c5a.xlarge, c5a.2xlarge, c5a.4xlarge, c5a.8xlarge, c5a.12xlarge, c5a.16xlarge, c5a.24xlarge, c5ad.large, c5ad.xlarge, c5ad.2xlarge, c5ad.4xlarge, c5ad.8xlarge, c5ad.12xlarge, c5ad.16xlarge, c5ad.24xlarge, c5d.large, c5d.xlarge, c5d.2xlarge, c5d.4xlarge, c5d.9xlarge, c5d.12xlarge, c5d.18xlarge, c5d.24xlarge, c5d.metal, c5n.large, c5n.xlarge, c5n.2xlarge, c5n.4xlarge, c5n.9xlarge, c5n.18xlarge, c5n.metal, c6g.medium, c6g.large, c6g.xlarge, c6g.2xlarge, c6g.4xlarge, c6g.8xlarge, c6g.12xlarge, c6g.16xlarge, c6g.metal, c6gd.medium, c6gd.large, c6gd.xlarge, c6gd.2xlarge, c6gd.4xlarge, c6gd.8xlarge, c6gd.12xlarge, c6gd.16xlarge, c6gd.metal, c6gn.medium, c6gn.large, c6gn.xlarge, c6gn.2xlarge, c6gn.4xlarge, c6gn.8xlarge, c6gn.12xlarge, c6gn.16xlarge, c6i.large, c6i.xlarge, c6i.2xlarge, c6i.4xlarge, c6i.8xlarge, c6i.12xlarge, c6i.16xlarge, c6i.24xlarge, c6i.32xlarge, c6i.metal, cc1.4xlarge, cc2.8xlarge, cg1.4xlarge, cr1.8xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, d3.xlarge, d3.2xlarge, d3.4xlarge, d3.8xlarge, d3en.xlarge, d3en.2xlarge, d3en.4xlarge, d3en.6xlarge, d3en.8xlarge, d3en.12xlarge, dl1.24xlarge, f1.2xlarge, f1.4xlarge, f1.16xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, g3s.xlarge, g4ad.xlarge, g4ad.2xlarge, g4ad.4xlarge, g4ad.8xlarge, g4ad.16xlarge, g4dn.xlarge, g4dn.2xlarge, g4dn.4xlarge, g4dn.8xlarge, g4dn.12xlarge, g4dn.16xlarge, g4dn.metal, g5.xlarge, g5.2xlarge, g5.4xlarge, g5.8xlarge, g5.12xlarge, g5.16xlarge, g5.24xlarge, g5.48xlarge, g5g.xlarge, g5g.2xlarge, g5g.4xlarge, g5g.8xlarge, g5g.16xlarge, g5g.metal, hi1.4xlarge, hpc6a.48xlarge, hs1.8xlarge, h1.2xlarge, h1.4xlarge, h1.8xlarge, h1.16xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, i3.metal, i3en.large, i3en.xlarge, i3en.2xlarge, i3en.3xlarge, i3en.6xlarge, i3en.12xlarge, i3en.24xlarge, i3en.metal, im4gn.large, im4gn.xlarge, im4gn.2xlarge, im4gn.4xlarge, im4gn.8xlarge, im4gn.16xlarge, inf1.xlarge, inf1.2xlarge, inf1.6xlarge, inf1.24xlarge, is4gen.medium, is4gen.large, is4gen.xlarge, is4gen.2xlarge, is4gen.4xlarge, is4gen.8xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m5.large, m5.xlarge, m5.2xlarge, m5.4xlarge, m5.8xlarge, m5.12xlarge, m5.16xlarge, m5.24xlarge, m5.metal, m5a.large, m5a.xlarge, m5a.2xlarge, m5a.4xlarge, m5a.8xlarge, m5a.12xlarge, m5a.16xlarge, m5a.24xlarge, m5ad.large, m5ad.xlarge, m5ad.2xlarge, m5ad.4xlarge, m5ad.8xlarge, m5ad.12xlarge, m5ad.16xlarge, m5ad.24xlarge, m5d.large, m5d.xlarge, m5d.2xlarge, m5d.4xlarge, m5d.8xlarge, m5d.12xlarge, m5d.16xlarge, m5d.24xlarge, m5d.metal, m5dn.large, m5dn.xlarge, m5dn.2xlarge, m5dn.4xlarge, m5dn.8xlarge, m5dn.12xlarge, m5dn.16xlarge, m5dn.24xlarge, m5dn.metal, m5n.large, m5n.xlarge, m5n.2xlarge, m5n.4xlarge, m5n.8xlarge, m5n.12xlarge, m5n.16xlarge, m5n.24xlarge, m5n.metal, m5zn.large, m5zn.xlarge, m5zn.2xlarge, m5zn.3xlarge, m5zn.6xlarge, m5zn.12xlarge, m5zn.metal, m6a.large, m6a.xlarge, m6a.2xlarge, m6a.4xlarge, m6a.8xlarge, m6a.12xlarge, m6a.16xlarge, m6a.24xlarge, m6a.32xlarge, m6a.48xlarge, m6g.metal, m6g.medium, m6g.large, m6g.xlarge, m6g.2xlarge, m6g.4xlarge, m6g.8xlarge, m6g.12xlarge, m6g.16xlarge, m6gd.metal, m6gd.medium, m6gd.large, m6gd.xlarge, m6gd.2xlarge, m6gd.4xlarge, m6gd.8xlarge, m6gd.12xlarge, m6gd.16xlarge, m6i.large, m6i.xlarge, m6i.2xlarge, m6i.4xlarge, m6i.8xlarge, m6i.12xlarge, m6i.16xlarge, m6i.24xlarge, m6i.32xlarge, m6i.metal, mac1.metal, p2.xlarge, p2.8xlarge, p2.16xlarge, p3.2xlarge, p3.8xlarge, p3.16xlarge, p3dn.24xlarge, p4d.24xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, r5.large, r5.xlarge, r5.2xlarge, r5.4xlarge, r5.8xlarge, r5.12xlarge, r5.16xlarge, r5.24xlarge, r5.metal, r5a.large, r5a.xlarge, r5a.2xlarge, r5a.4xlarge, r5a.8xlarge, r5a.12xlarge, r5a.16xlarge, r5a.24xlarge, r5ad.large, r5ad.xlarge, r5ad.2xlarge, r5ad.4xlarge, r5ad.8xlarge, r5ad.12xlarge, r5ad.16xlarge, r5ad.24xlarge, r5b.large, r5b.xlarge, r5b.2xlarge, r5b.4xlarge, r5b.8xlarge, r5b.12xlarge, r5b.16xlarge, r5b.24xlarge, r5b.metal, r5d.large, r5d.xlarge, r5d.2xlarge, r5d.4xlarge, r5d.8xlarge, r5d.12xlarge, r5d.16xlarge, r5d.24xlarge, r5d.metal, r5dn.large, r5dn.xlarge, r5dn.2xlarge, r5dn.4xlarge, r5dn.8xlarge, r5dn.12xlarge, r5dn.16xlarge, r5dn.24xlarge, r5dn.metal, r5n.large, r5n.xlarge, r5n.2xlarge, r5n.4xlarge, r5n.8xlarge, r5n.12xlarge, r5n.16xlarge, r5n.24xlarge, r5n.metal, r6g.medium, r6g.large, r6g.xlarge, r6g.2xlarge, r6g.4xlarge, r6g.8xlarge, r6g.12xlarge, r6g.16xlarge, r6g.metal, r6gd.medium, r6gd.large, r6gd.xlarge, r6gd.2xlarge, r6gd.4xlarge, r6gd.8xlarge, r6gd.12xlarge, r6gd.16xlarge, r6gd.metal, r6i.large, r6i.xlarge, r6i.2xlarge, r6i.4xlarge, r6i.8xlarge, r6i.12xlarge, r6i.16xlarge, r6i.24xlarge, r6i.32xlarge, r6i.metal, t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, t3.nano, t3.micro, t3.small, t3.medium, t3.large, t3.xlarge, t3.2xlarge, t3a.nano, t3a.micro, t3a.small, t3a.medium, t3a.large, t3a.xlarge, t3a.2xlarge, t4g.nano, t4g.micro, t4g.small, t4g.medium, t4g.large, t4g.xlarge, t4g.2xlarge, u-6tb1.56xlarge, u-6tb1.112xlarge, u-9tb1.112xlarge, u-12tb1.112xlarge, u-6tb1.metal, u-9tb1.metal, u-12tb1.metal, u-18tb1.metal, u-24tb1.metal, vt1.3xlarge, vt1.6xlarge, vt1.24xlarge, x1.16xlarge, x1.32xlarge, x1e.xlarge, x1e.2xlarge, x1e.4xlarge, x1e.8xlarge, x1e.16xlarge, x1e.32xlarge, x2iezn.2xlarge, x2iezn.4xlarge, x2iezn.6xlarge, x2iezn.8xlarge, x2iezn.12xlarge, x2iezn.metal, x2gd.medium, x2gd.large, x2gd.xlarge, x2gd.2xlarge, x2gd.4xlarge, x2gd.8xlarge, x2gd.12xlarge, x2gd.16xlarge, x2gd.metal, z1d.large, z1d.xlarge, z1d.2xlarge, z1d.3xlarge, z1d.6xlarge, z1d.12xlarge, z1d.metal, x2idn.16xlarge, x2idn.24xlarge, x2idn.32xlarge, x2iedn.xlarge, x2iedn.2xlarge, x2iedn.4xlarge, x2iedn.8xlarge, x2iedn.16xlarge, x2iedn.24xlarge, x2iedn.32xlarge, c6a.large, c6a.xlarge, c6a.2xlarge, c6a.4xlarge, c6a.8xlarge, c6a.12xlarge, c6a.16xlarge, c6a.24xlarge, c6a.32xlarge, c6a.48xlarge, c6a.metal, m6a.metal, i4i.large, i4i.xlarge, i4i.2xlarge, i4i.4xlarge, i4i.8xlarge, i4i.16xlarge, i4i.32xlarge, i4i.metal, x2idn.metal, x2iedn.metal, c7g.medium, c7g.large, c7g.xlarge, c7g.2xlarge, c7g.4xlarge, c7g.8xlarge, c7g.12xlarge, c7g.16xlarge, mac2.metal, c6id.large, c6id.xlarge, c6id.2xlarge, c6id.4xlarge, c6id.8xlarge, c6id.12xlarge, c6id.16xlarge, c6id.24xlarge, c6id.32xlarge, c6id.metal, m6id.large, m6id.xlarge, m6id.2xlarge, m6id.4xlarge, m6id.8xlarge, m6id.12xlarge, m6id.16xlarge, m6id.24xlarge, m6id.32xlarge, m6id.metal, r6id.large, r6id.xlarge, r6id.2xlarge, r6id.4xlarge, r6id.8xlarge, r6id.12xlarge, r6id.16xlarge, r6id.24xlarge, r6id.32xlarge, r6id.metal, r6a.large, r6a.xlarge, r6a.2xlarge, r6a.4xlarge, r6a.8xlarge, r6a.12xlarge, r6a.16xlarge, r6a.24xlarge, r6a.32xlarge, r6a.48xlarge, r6a.metal, p4de.24xlarge, u-3tb1.56xlarge, u-18tb1.112xlarge, u-24tb1.112xlarge, trn1.2xlarge, trn1.32xlarge, hpc6id.32xlarge, c6in.large, c6in.xlarge, c6in.2xlarge, c6in.4xlarge, c6in.8xlarge, c6in.12xlarge, c6in.16xlarge, c6in.24xlarge, c6in.32xlarge, m6in.large, m6in.xlarge, m6in.2xlarge, m6in.4xlarge, m6in.8xlarge, m6in.12xlarge, m6in.16xlarge, m6in.24xlarge, m6in.32xlarge, m6idn.large, m6idn.xlarge, m6idn.2xlarge, m6idn.4xlarge, m6idn.8xlarge, m6idn.12xlarge, m6idn.16xlarge, m6idn.24xlarge, m6idn.32xlarge, r6in.large, r6in.xlarge, r6in.2xlarge, r6in.4xlarge, r6in.8xlarge, r6in.12xlarge, r6in.16xlarge, r6in.24xlarge, r6in.32xlarge, r6idn.large, r6idn.xlarge, r6idn.2xlarge, r6idn.4xlarge, r6idn.8xlarge, r6idn.12xlarge, r6idn.16xlarge, r6idn.24xlarge, r6idn.32xlarge, c7g.metal, m7g.medium, m7g.large, m7g.xlarge, m7g.2xlarge, m7g.4xlarge, m7g.8xlarge, m7g.12xlarge, m7g.16xlarge, m7g.metal, r7g.medium, r7g.large, r7g.xlarge, r7g.2xlarge, r7g.4xlarge, r7g.8xlarge, r7g.12xlarge, r7g.16xlarge, r7g.metal, c6in.metal, m6in.metal, m6idn.metal, r6in.metal, r6idn.metal, inf2.xlarge, inf2.8xlarge, inf2.24xlarge, inf2.48xlarge, trn1n.32xlarge, i4g.large, i4g.xlarge, i4g.2xlarge, i4g.4xlarge, i4g.8xlarge, i4g.16xlarge, hpc7g.4xlarge, hpc7g.8xlarge, hpc7g.16xlarge, c7gn.medium, c7gn.large, c7gn.xlarge, c7gn.2xlarge, c7gn.4xlarge, c7gn.8xlarge, c7gn.12xlarge, c7gn.16xlarge, p5.48xlarge, m7i.large, m7i.xlarge, m7i.2xlarge, m7i.4xlarge, m7i.8xlarge, m7i.12xlarge, m7i.16xlarge, m7i.24xlarge, m7i.48xlarge, m7i-flex.large, m7i-flex.xlarge, m7i-flex.2xlarge, m7i-flex.4xlarge, m7i-flex.8xlarge, m7a.medium, m7a.large, m7a.xlarge, m7a.2xlarge, m7a.4xlarge, m7a.8xlarge, m7a.12xlarge, m7a.16xlarge, m7a.24xlarge, m7a.32xlarge, m7a.48xlarge, m7a.metal-48xl, hpc7a.12xlarge, hpc7a.24xlarge, hpc7a.48xlarge, hpc7a.96xlarge, c7gd.medium, c7gd.large, c7gd.xlarge, c7gd.2xlarge, c7gd.4xlarge, c7gd.8xlarge, c7gd.12xlarge, c7gd.16xlarge, m7gd.medium, m7gd.large, m7gd.xlarge, m7gd.2xlarge, m7gd.4xlarge, m7gd.8xlarge, m7gd.12xlarge, m7gd.16xlarge, r7gd.medium, r7gd.large, r7gd.xlarge, r7gd.2xlarge, r7gd.4xlarge, r7gd.8xlarge, r7gd.12xlarge, r7gd.16xlarge, r7a.medium, r7a.large, r7a.xlarge, r7a.2xlarge, r7a.4xlarge, r7a.8xlarge, r7a.12xlarge, r7a.16xlarge, r7a.24xlarge, r7a.32xlarge, r7a.48xlarge, c7i.large, c7i.xlarge, c7i.2xlarge, c7i.4xlarge, c7i.8xlarge, c7i.12xlarge, c7i.16xlarge, c7i.24xlarge, c7i.48xlarge, mac2-m2pro.metal, r7iz.large, r7iz.xlarge, r7iz.2xlarge, r7iz.4xlarge, r7iz.8xlarge, r7iz.12xlarge, r7iz.16xlarge, r7iz.32xlarge, c7a.medium, c7a.large, c7a.xlarge, c7a.2xlarge, c7a.4xlarge, c7a.8xlarge, c7a.12xlarge, c7a.16xlarge, c7a.24xlarge, c7a.32xlarge, c7a.48xlarge, c7a.metal-48xl, r7a.metal-48xl, r7i.large, r7i.xlarge, r7i.2xlarge, r7i.4xlarge, r7i.8xlarge, r7i.12xlarge, r7i.16xlarge, r7i.24xlarge, r7i.48xlarge, dl2q.24xlarge, mac2-m2.metal, i4i.12xlarge, i4i.24xlarge, c7i.metal-24xl, c7i.metal-48xl, m7i.metal-24xl, m7i.metal-48xl, r7i.metal-24xl, r7i.metal-48xl, r7iz.metal-16xl, r7iz.metal-32xl, c7gd.metal, m7gd.metal, r7gd.metal, g6.xlarge, g6.2xlarge, g6.4xlarge, g6.8xlarge, g6.12xlarge, g6.16xlarge, g6.24xlarge, g6.48xlarge, gr6.4xlarge, gr6.8xlarge, c7i-flex.large, c7i-flex.xlarge, c7i-flex.2xlarge, c7i-flex.4xlarge, c7i-flex.8xlarge, u7i-12tb.224xlarge, u7in-16tb.224xlarge, u7in-24tb.224xlarge, u7in-32tb.224xlarge
|
105
105
|
# ipv_6_address_count: 1,
|
106
106
|
# ipv_6_addresses: [
|
107
107
|
# {
|
@@ -621,7 +621,7 @@ module Aws::EC2
|
|
621
621
|
# @return [Instance::Collection]
|
622
622
|
def create_instances(options = {})
|
623
623
|
batch = []
|
624
|
-
resp = Aws::Plugins::UserAgent.
|
624
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
625
625
|
@client.run_instances(options)
|
626
626
|
end
|
627
627
|
resp.data.instances.each do |i|
|
@@ -660,7 +660,7 @@ module Aws::EC2
|
|
660
660
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
661
661
|
# @return [InternetGateway]
|
662
662
|
def create_internet_gateway(options = {})
|
663
|
-
resp = Aws::Plugins::UserAgent.
|
663
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
664
664
|
@client.create_internet_gateway(options)
|
665
665
|
end
|
666
666
|
InternetGateway.new(
|
@@ -712,7 +712,7 @@ module Aws::EC2
|
|
712
712
|
# Default: `pem`
|
713
713
|
# @return [KeyPair]
|
714
714
|
def create_key_pair(options = {})
|
715
|
-
resp = Aws::Plugins::UserAgent.
|
715
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
716
716
|
@client.create_key_pair(options)
|
717
717
|
end
|
718
718
|
KeyPair.new(
|
@@ -805,7 +805,7 @@ module Aws::EC2
|
|
805
805
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-nat-gateway.html#nat-gateway-creating
|
806
806
|
# @return [NatGateway]
|
807
807
|
def create_nat_gateway(options = {})
|
808
|
-
resp = Aws::Plugins::UserAgent.
|
808
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
809
809
|
@client.create_nat_gateway(options)
|
810
810
|
end
|
811
811
|
NatGateway.new(
|
@@ -853,7 +853,7 @@ module Aws::EC2
|
|
853
853
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
854
854
|
# @return [NetworkAcl]
|
855
855
|
def create_network_acl(options = {})
|
856
|
-
resp = Aws::Plugins::UserAgent.
|
856
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
857
857
|
@client.create_network_acl(options)
|
858
858
|
end
|
859
859
|
NetworkAcl.new(
|
@@ -1028,7 +1028,7 @@ module Aws::EC2
|
|
1028
1028
|
# A connection tracking specification for the network interface.
|
1029
1029
|
# @return [NetworkInterface]
|
1030
1030
|
def create_network_interface(options = {})
|
1031
|
-
resp = Aws::Plugins::UserAgent.
|
1031
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1032
1032
|
@client.create_network_interface(options)
|
1033
1033
|
end
|
1034
1034
|
NetworkInterface.new(
|
@@ -1084,7 +1084,7 @@ module Aws::EC2
|
|
1084
1084
|
# * Rack – No usage restrictions.
|
1085
1085
|
# @return [PlacementGroup]
|
1086
1086
|
def create_placement_group(options = {})
|
1087
|
-
Aws::Plugins::UserAgent.
|
1087
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1088
1088
|
@client.create_placement_group(options)
|
1089
1089
|
end
|
1090
1090
|
PlacementGroup.new(
|
@@ -1131,7 +1131,7 @@ module Aws::EC2
|
|
1131
1131
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Run_Instance_Idempotency.html
|
1132
1132
|
# @return [RouteTable]
|
1133
1133
|
def create_route_table(options = {})
|
1134
|
-
resp = Aws::Plugins::UserAgent.
|
1134
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1135
1135
|
@client.create_route_table(options)
|
1136
1136
|
end
|
1137
1137
|
RouteTable.new(
|
@@ -1186,7 +1186,7 @@ module Aws::EC2
|
|
1186
1186
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1187
1187
|
# @return [SecurityGroup]
|
1188
1188
|
def create_security_group(options = {})
|
1189
|
-
resp = Aws::Plugins::UserAgent.
|
1189
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1190
1190
|
@client.create_security_group(options)
|
1191
1191
|
end
|
1192
1192
|
SecurityGroup.new(
|
@@ -1249,7 +1249,7 @@ module Aws::EC2
|
|
1249
1249
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1250
1250
|
# @return [Snapshot]
|
1251
1251
|
def create_snapshot(options = {})
|
1252
|
-
resp = Aws::Plugins::UserAgent.
|
1252
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1253
1253
|
@client.create_snapshot(options)
|
1254
1254
|
end
|
1255
1255
|
Snapshot.new(
|
@@ -1341,7 +1341,7 @@ module Aws::EC2
|
|
1341
1341
|
# An IPv6 netmask length for the subnet.
|
1342
1342
|
# @return [Subnet]
|
1343
1343
|
def create_subnet(options = {})
|
1344
|
-
resp = Aws::Plugins::UserAgent.
|
1344
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1345
1345
|
@client.create_subnet(options)
|
1346
1346
|
end
|
1347
1347
|
Subnet.new(
|
@@ -1380,7 +1380,7 @@ module Aws::EC2
|
|
1380
1380
|
# set the value to an empty string.
|
1381
1381
|
# @return [EmptyStructure]
|
1382
1382
|
def create_tags(options = {})
|
1383
|
-
resp = Aws::Plugins::UserAgent.
|
1383
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1384
1384
|
@client.create_tags(options)
|
1385
1385
|
end
|
1386
1386
|
resp.data
|
@@ -1423,7 +1423,7 @@ module Aws::EC2
|
|
1423
1423
|
# Constraints: Up to 1000 tags.
|
1424
1424
|
# @return [EmptyStructure]
|
1425
1425
|
def delete_tags(options = {})
|
1426
|
-
resp = Aws::Plugins::UserAgent.
|
1426
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1427
1427
|
@client.delete_tags(options)
|
1428
1428
|
end
|
1429
1429
|
resp.data
|
@@ -1603,7 +1603,7 @@ module Aws::EC2
|
|
1603
1603
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
1604
1604
|
# @return [Volume]
|
1605
1605
|
def create_volume(options = {})
|
1606
|
-
resp = Aws::Plugins::UserAgent.
|
1606
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1607
1607
|
@client.create_volume(options)
|
1608
1608
|
end
|
1609
1609
|
Volume.new(
|
@@ -1722,7 +1722,7 @@ module Aws::EC2
|
|
1722
1722
|
# The tags to assign to the VPC.
|
1723
1723
|
# @return [Vpc]
|
1724
1724
|
def create_vpc(options = {})
|
1725
|
-
resp = Aws::Plugins::UserAgent.
|
1725
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1726
1726
|
@client.create_vpc(options)
|
1727
1727
|
end
|
1728
1728
|
Vpc.new(
|
@@ -1777,7 +1777,7 @@ module Aws::EC2
|
|
1777
1777
|
# The tags to assign to the peering connection.
|
1778
1778
|
# @return [VpcPeeringConnection]
|
1779
1779
|
def create_vpc_peering_connection(options = {})
|
1780
|
-
resp = Aws::Plugins::UserAgent.
|
1780
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1781
1781
|
@client.create_vpc_peering_connection(options)
|
1782
1782
|
end
|
1783
1783
|
VpcPeeringConnection.new(
|
@@ -1804,7 +1804,7 @@ module Aws::EC2
|
|
1804
1804
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
1805
1805
|
# @return [EmptyStructure]
|
1806
1806
|
def disassociate_route_table(options = {})
|
1807
|
-
resp = Aws::Plugins::UserAgent.
|
1807
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1808
1808
|
@client.disassociate_route_table(options)
|
1809
1809
|
end
|
1810
1810
|
resp.data
|
@@ -1843,7 +1843,7 @@ module Aws::EC2
|
|
1843
1843
|
# The tags to apply to the imported key pair.
|
1844
1844
|
# @return [KeyPairInfo]
|
1845
1845
|
def import_key_pair(options = {})
|
1846
|
-
resp = Aws::Plugins::UserAgent.
|
1846
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
1847
1847
|
@client.import_key_pair(options)
|
1848
1848
|
end
|
1849
1849
|
KeyPairInfo.new(
|
@@ -2047,7 +2047,7 @@ module Aws::EC2
|
|
2047
2047
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html
|
2048
2048
|
# @return [Image]
|
2049
2049
|
def register_image(options = {})
|
2050
|
-
resp = Aws::Plugins::UserAgent.
|
2050
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2051
2051
|
@client.register_image(options)
|
2052
2052
|
end
|
2053
2053
|
Image.new(
|
@@ -2125,7 +2125,7 @@ module Aws::EC2
|
|
2125
2125
|
name: "domain",
|
2126
2126
|
values: ["standard"]
|
2127
2127
|
}])
|
2128
|
-
resp = Aws::Plugins::UserAgent.
|
2128
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2129
2129
|
@client.describe_addresses(options)
|
2130
2130
|
end
|
2131
2131
|
resp.data.addresses.each do |a|
|
@@ -2195,7 +2195,7 @@ module Aws::EC2
|
|
2195
2195
|
# @return [DhcpOptions::Collection]
|
2196
2196
|
def dhcp_options_sets(options = {})
|
2197
2197
|
batches = Enumerator.new do |y|
|
2198
|
-
resp = Aws::Plugins::UserAgent.
|
2198
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2199
2199
|
@client.describe_dhcp_options(options)
|
2200
2200
|
end
|
2201
2201
|
resp.each_page do |page|
|
@@ -2391,7 +2391,7 @@ module Aws::EC2
|
|
2391
2391
|
# @return [Image::Collection]
|
2392
2392
|
def images(options = {})
|
2393
2393
|
batches = Enumerator.new do |y|
|
2394
|
-
resp = Aws::Plugins::UserAgent.
|
2394
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2395
2395
|
@client.describe_images(options)
|
2396
2396
|
end
|
2397
2397
|
resp.each_page do |page|
|
@@ -2868,7 +2868,7 @@ module Aws::EC2
|
|
2868
2868
|
# @return [Instance::Collection]
|
2869
2869
|
def instances(options = {})
|
2870
2870
|
batches = Enumerator.new do |y|
|
2871
|
-
resp = Aws::Plugins::UserAgent.
|
2871
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2872
2872
|
@client.describe_instances(options)
|
2873
2873
|
end
|
2874
2874
|
resp.each_page do |page|
|
@@ -2945,7 +2945,7 @@ module Aws::EC2
|
|
2945
2945
|
# @return [InternetGateway::Collection]
|
2946
2946
|
def internet_gateways(options = {})
|
2947
2947
|
batches = Enumerator.new do |y|
|
2948
|
-
resp = Aws::Plugins::UserAgent.
|
2948
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
2949
2949
|
@client.describe_internet_gateways(options)
|
2950
2950
|
end
|
2951
2951
|
resp.each_page do |page|
|
@@ -3024,7 +3024,7 @@ module Aws::EC2
|
|
3024
3024
|
def key_pairs(options = {})
|
3025
3025
|
batches = Enumerator.new do |y|
|
3026
3026
|
batch = []
|
3027
|
-
resp = Aws::Plugins::UserAgent.
|
3027
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3028
3028
|
@client.describe_key_pairs(options)
|
3029
3029
|
end
|
3030
3030
|
resp.data.key_pairs.each do |k|
|
@@ -3092,7 +3092,7 @@ module Aws::EC2
|
|
3092
3092
|
# @return [NatGateway::Collection]
|
3093
3093
|
def nat_gateways(options = {})
|
3094
3094
|
batches = Enumerator.new do |y|
|
3095
|
-
resp = Aws::Plugins::UserAgent.
|
3095
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3096
3096
|
@client.describe_nat_gateways(options)
|
3097
3097
|
end
|
3098
3098
|
resp.each_page do |page|
|
@@ -3201,7 +3201,7 @@ module Aws::EC2
|
|
3201
3201
|
# @return [NetworkAcl::Collection]
|
3202
3202
|
def network_acls(options = {})
|
3203
3203
|
batches = Enumerator.new do |y|
|
3204
|
-
resp = Aws::Plugins::UserAgent.
|
3204
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3205
3205
|
@client.describe_network_acls(options)
|
3206
3206
|
end
|
3207
3207
|
resp.each_page do |page|
|
@@ -3368,7 +3368,7 @@ module Aws::EC2
|
|
3368
3368
|
# @return [NetworkInterface::Collection]
|
3369
3369
|
def network_interfaces(options = {})
|
3370
3370
|
batches = Enumerator.new do |y|
|
3371
|
-
resp = Aws::Plugins::UserAgent.
|
3371
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3372
3372
|
@client.describe_network_interfaces(options)
|
3373
3373
|
end
|
3374
3374
|
resp.each_page do |page|
|
@@ -3450,7 +3450,7 @@ module Aws::EC2
|
|
3450
3450
|
def placement_groups(options = {})
|
3451
3451
|
batches = Enumerator.new do |y|
|
3452
3452
|
batch = []
|
3453
|
-
resp = Aws::Plugins::UserAgent.
|
3453
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3454
3454
|
@client.describe_placement_groups(options)
|
3455
3455
|
end
|
3456
3456
|
resp.data.placement_groups.each do |p|
|
@@ -3581,7 +3581,7 @@ module Aws::EC2
|
|
3581
3581
|
# @return [RouteTable::Collection]
|
3582
3582
|
def route_tables(options = {})
|
3583
3583
|
batches = Enumerator.new do |y|
|
3584
|
-
resp = Aws::Plugins::UserAgent.
|
3584
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3585
3585
|
@client.describe_route_tables(options)
|
3586
3586
|
end
|
3587
3587
|
resp.each_page do |page|
|
@@ -3722,7 +3722,7 @@ module Aws::EC2
|
|
3722
3722
|
# @return [SecurityGroup::Collection]
|
3723
3723
|
def security_groups(options = {})
|
3724
3724
|
batches = Enumerator.new do |y|
|
3725
|
-
resp = Aws::Plugins::UserAgent.
|
3725
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3726
3726
|
@client.describe_security_groups(options)
|
3727
3727
|
end
|
3728
3728
|
resp.each_page do |page|
|
@@ -3826,7 +3826,7 @@ module Aws::EC2
|
|
3826
3826
|
# @return [Snapshot::Collection]
|
3827
3827
|
def snapshots(options = {})
|
3828
3828
|
batches = Enumerator.new do |y|
|
3829
|
-
resp = Aws::Plugins::UserAgent.
|
3829
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3830
3830
|
@client.describe_snapshots(options)
|
3831
3831
|
end
|
3832
3832
|
resp.each_page do |page|
|
@@ -3967,7 +3967,7 @@ module Aws::EC2
|
|
3967
3967
|
# @return [Subnet::Collection]
|
3968
3968
|
def subnets(options = {})
|
3969
3969
|
batches = Enumerator.new do |y|
|
3970
|
-
resp = Aws::Plugins::UserAgent.
|
3970
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
3971
3971
|
@client.describe_subnets(options)
|
3972
3972
|
end
|
3973
3973
|
resp.each_page do |page|
|
@@ -4071,7 +4071,7 @@ module Aws::EC2
|
|
4071
4071
|
# @return [Volume::Collection]
|
4072
4072
|
def volumes(options = {})
|
4073
4073
|
batches = Enumerator.new do |y|
|
4074
|
-
resp = Aws::Plugins::UserAgent.
|
4074
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
4075
4075
|
@client.describe_volumes(options)
|
4076
4076
|
end
|
4077
4077
|
resp.each_page do |page|
|
@@ -4165,7 +4165,7 @@ module Aws::EC2
|
|
4165
4165
|
name: "domain",
|
4166
4166
|
values: ["vpc"]
|
4167
4167
|
}])
|
4168
|
-
resp = Aws::Plugins::UserAgent.
|
4168
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
4169
4169
|
@client.describe_addresses(options)
|
4170
4170
|
end
|
4171
4171
|
resp.data.addresses.each do |a|
|
@@ -4254,7 +4254,7 @@ module Aws::EC2
|
|
4254
4254
|
# @return [VpcPeeringConnection::Collection]
|
4255
4255
|
def vpc_peering_connections(options = {})
|
4256
4256
|
batches = Enumerator.new do |y|
|
4257
|
-
resp = Aws::Plugins::UserAgent.
|
4257
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
4258
4258
|
@client.describe_vpc_peering_connections(options)
|
4259
4259
|
end
|
4260
4260
|
resp.each_page do |page|
|
@@ -4346,7 +4346,7 @@ module Aws::EC2
|
|
4346
4346
|
# @return [Vpc::Collection]
|
4347
4347
|
def vpcs(options = {})
|
4348
4348
|
batches = Enumerator.new do |y|
|
4349
|
-
resp = Aws::Plugins::UserAgent.
|
4349
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
4350
4350
|
@client.describe_vpcs(options)
|
4351
4351
|
end
|
4352
4352
|
resp.each_page do |page|
|
data/lib/aws-sdk-ec2/route.rb
CHANGED
@@ -267,7 +267,7 @@ module Aws::EC2
|
|
267
267
|
:retry
|
268
268
|
end
|
269
269
|
end
|
270
|
-
Aws::Plugins::UserAgent.
|
270
|
+
Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
271
271
|
Aws::Waiters::Waiter.new(options).wait({})
|
272
272
|
end
|
273
273
|
end
|
@@ -298,7 +298,7 @@ module Aws::EC2
|
|
298
298
|
route_table_id: @route_table_id,
|
299
299
|
destination_cidr_block: @destination_cidr_block
|
300
300
|
)
|
301
|
-
resp = Aws::Plugins::UserAgent.
|
301
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
302
302
|
@client.delete_route(options)
|
303
303
|
end
|
304
304
|
resp.data
|
@@ -367,7 +367,7 @@ module Aws::EC2
|
|
367
367
|
route_table_id: @route_table_id,
|
368
368
|
destination_cidr_block: @destination_cidr_block
|
369
369
|
)
|
370
|
-
resp = Aws::Plugins::UserAgent.
|
370
|
+
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
371
371
|
@client.replace_route(options)
|
372
372
|
end
|
373
373
|
resp.data
|