aws-sdk 1.6.0 → 1.6.1
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.
- data/lib/aws/api_config/{EC2-2012-06-01.yml → EC2-2012-07-20.yml} +191 -9
- data/lib/aws/api_config/{ELB-2011-08-15.yml → ELB-2012-06-01.yml} +85 -1
- data/lib/aws/core.rb +1 -1
- data/lib/aws/core/rest_client/output_handler.rb +12 -2
- data/lib/aws/ec2/client.rb +180 -936
- data/lib/aws/ec2/instance_collection.rb +10 -10
- data/lib/aws/ec2/volume.rb +4 -0
- data/lib/aws/ec2/volume_collection.rb +4 -0
- data/lib/aws/elb/client.rb +168 -94
- data/lib/aws/s3/s3_object.rb +1 -1
- metadata +71 -83
data/lib/aws/core.rb
CHANGED
@@ -32,8 +32,18 @@ module AWS
|
|
32
32
|
# hash of response data.
|
33
33
|
# @param [Response] response
|
34
34
|
# @return [Hash]
|
35
|
-
def extract_data response
|
36
|
-
|
35
|
+
def extract_data response
|
36
|
+
|
37
|
+
# parse the response XML body
|
38
|
+
data = @parser.parse(response.http_response.body)
|
39
|
+
|
40
|
+
# extract headers and insert into response
|
41
|
+
(@http[:response_headers] || {}).each_pair do |name,header_name|
|
42
|
+
data[name] = response.http_response.headers[header_name]
|
43
|
+
end
|
44
|
+
|
45
|
+
data
|
46
|
+
|
37
47
|
end
|
38
48
|
|
39
49
|
end
|
data/lib/aws/ec2/client.rb
CHANGED
@@ -17,7 +17,7 @@ module AWS
|
|
17
17
|
# Client class for Amazon Elastic Compute Cloud (EC2).
|
18
18
|
class Client < Core::Client
|
19
19
|
|
20
|
-
API_VERSION = '2012-
|
20
|
+
API_VERSION = '2012-07-20'
|
21
21
|
|
22
22
|
extend Core::QueryClient
|
23
23
|
|
@@ -78,27 +78,31 @@ module AWS
|
|
78
78
|
# * +:domain+ - (String) Set to vpc to allocate the address to your
|
79
79
|
# VPC. By default, will allocate to EC2.
|
80
80
|
# @return [Core::Response]
|
81
|
-
# The #data method of the response object returns
|
82
|
-
# a hash with the following structure:
|
83
|
-
# * +:public_ip+ - (String)
|
84
|
-
# * +:domain+ - (String)
|
85
|
-
# * +:allocation_id+ - (String)
|
86
81
|
define_client_method :allocate_address, 'AllocateAddress'
|
87
82
|
|
83
|
+
# Calls the AssignPrivateIpAddresses API operation.
|
84
|
+
# @method assign_private_ip_addresses(options = {})
|
85
|
+
# @param [Hash] options
|
86
|
+
# * +:network_interface_id+ - *required* - (String)
|
87
|
+
# * +:private_ip_addresses+ - (Array<String>)
|
88
|
+
# * +:secondary_private_ip_address_count+ - (Integer)
|
89
|
+
# * +:allow_reassignment+ - (Boolean)
|
90
|
+
# @return [Core::Response]
|
91
|
+
define_client_method :assign_private_ip_addresses, 'AssignPrivateIpAddresses'
|
92
|
+
|
88
93
|
# Calls the AssociateAddress API operation.
|
89
94
|
# @method associate_address(options = {})
|
90
95
|
# @param [Hash] options
|
91
|
-
# * +:instance_id+ -
|
92
|
-
#
|
96
|
+
# * +:instance_id+ - (String) The instance to associate with the IP
|
97
|
+
# address.
|
93
98
|
# * +:public_ip+ - (String) IP address that you are assigning to the
|
94
99
|
# instance.
|
95
100
|
# * +:allocation_id+ - (String) The allocation ID that AWS returned
|
96
101
|
# when you allocated the elastic IP address for use with Amazon VPC.
|
97
102
|
# * +:network_interface_id+ - (String)
|
103
|
+
# * +:private_ip_address+ - (String)
|
104
|
+
# * +:allow_reassociation+ - (Boolean)
|
98
105
|
# @return [Core::Response]
|
99
|
-
# The #data method of the response object returns
|
100
|
-
# a hash with the following structure:
|
101
|
-
# * +:association_id+ - (String)
|
102
106
|
define_client_method :associate_address, 'AssociateAddress'
|
103
107
|
|
104
108
|
# Calls the AssociateDhcpOptions API operation.
|
@@ -119,9 +123,6 @@ module AWS
|
|
119
123
|
# * +:route_table_id+ - *required* - (String) The ID of the route
|
120
124
|
# table.
|
121
125
|
# @return [Core::Response]
|
122
|
-
# The #data method of the response object returns
|
123
|
-
# a hash with the following structure:
|
124
|
-
# * +:association_id+ - (String)
|
125
126
|
define_client_method :associate_route_table, 'AssociateRouteTable'
|
126
127
|
|
127
128
|
# Calls the AttachInternetGateway API operation.
|
@@ -140,9 +141,6 @@ module AWS
|
|
140
141
|
# * +:instance_id+ - *required* - (String)
|
141
142
|
# * +:device_index+ - *required* - (Integer)
|
142
143
|
# @return [Core::Response]
|
143
|
-
# The #data method of the response object returns
|
144
|
-
# a hash with the following structure:
|
145
|
-
# * +:attachment_id+ - (String)
|
146
144
|
define_client_method :attach_network_interface, 'AttachNetworkInterface'
|
147
145
|
|
148
146
|
# Calls the AttachVolume API operation.
|
@@ -159,10 +157,6 @@ module AWS
|
|
159
157
|
# @return [Core::Response]
|
160
158
|
# The #data method of the response object returns
|
161
159
|
# a hash with the following structure:
|
162
|
-
# * +:volume_id+ - (String)
|
163
|
-
# * +:instance_id+ - (String)
|
164
|
-
# * +:device+ - (String)
|
165
|
-
# * +:status+ - (String)
|
166
160
|
# * +:attach_time+ - (Time)
|
167
161
|
# * +:delete_on_termination+ - (Boolean)
|
168
162
|
define_client_method :attach_volume, 'AttachVolume'
|
@@ -175,11 +169,6 @@ module AWS
|
|
175
169
|
# * +:vpc_id+ - *required* - (String) The ID of the VPC to attach to
|
176
170
|
# the VPN gateway.
|
177
171
|
# @return [Core::Response]
|
178
|
-
# The #data method of the response object returns
|
179
|
-
# a hash with the following structure:
|
180
|
-
# * +:attachment+ - (Hash)
|
181
|
-
# * +:vpc_id+ - (String)
|
182
|
-
# * +:state+ - (String)
|
183
172
|
define_client_method :attach_vpn_gateway, 'AttachVpnGateway'
|
184
173
|
|
185
174
|
# Calls the AuthorizeSecurityGroupEgress API operation.
|
@@ -288,22 +277,8 @@ module AWS
|
|
288
277
|
# The #data method of the response object returns
|
289
278
|
# a hash with the following structure:
|
290
279
|
# * +:bundle_instance_task+ - (Hash)
|
291
|
-
# * +:instance_id+ - (String)
|
292
|
-
# * +:bundle_id+ - (String)
|
293
|
-
# * +:state+ - (String)
|
294
280
|
# * +:start_time+ - (Time)
|
295
281
|
# * +:update_time+ - (Time)
|
296
|
-
# * +:storage+ - (Hash)
|
297
|
-
# * +:s3+ - (Hash)
|
298
|
-
# * +:bucket+ - (String)
|
299
|
-
# * +:prefix+ - (String)
|
300
|
-
# * +:aws_access_key_id+ - (String)
|
301
|
-
# * +:upload_policy+ - (String)
|
302
|
-
# * +:upload_policy_signature+ - (String)
|
303
|
-
# * +:progress+ - (String)
|
304
|
-
# * +:error+ - (Hash)
|
305
|
-
# * +:code+ - (String)
|
306
|
-
# * +:message+ - (String)
|
307
282
|
define_client_method :bundle_instance, 'BundleInstance'
|
308
283
|
|
309
284
|
# Calls the CancelBundleTask API operation.
|
@@ -315,22 +290,8 @@ module AWS
|
|
315
290
|
# The #data method of the response object returns
|
316
291
|
# a hash with the following structure:
|
317
292
|
# * +:bundle_instance_task+ - (Hash)
|
318
|
-
# * +:instance_id+ - (String)
|
319
|
-
# * +:bundle_id+ - (String)
|
320
|
-
# * +:state+ - (String)
|
321
293
|
# * +:start_time+ - (Time)
|
322
294
|
# * +:update_time+ - (Time)
|
323
|
-
# * +:storage+ - (Hash)
|
324
|
-
# * +:s3+ - (Hash)
|
325
|
-
# * +:bucket+ - (String)
|
326
|
-
# * +:prefix+ - (String)
|
327
|
-
# * +:aws_access_key_id+ - (String)
|
328
|
-
# * +:upload_policy+ - (String)
|
329
|
-
# * +:upload_policy_signature+ - (String)
|
330
|
-
# * +:progress+ - (String)
|
331
|
-
# * +:error+ - (Hash)
|
332
|
-
# * +:code+ - (String)
|
333
|
-
# * +:message+ - (String)
|
334
295
|
define_client_method :cancel_bundle_task, 'CancelBundleTask'
|
335
296
|
|
336
297
|
# Calls the CancelConversionTask API operation.
|
@@ -356,9 +317,7 @@ module AWS
|
|
356
317
|
# @return [Core::Response]
|
357
318
|
# The #data method of the response object returns
|
358
319
|
# a hash with the following structure:
|
359
|
-
# * +:spot_instance_request_set+ - (Array
|
360
|
-
# * +:spot_instance_request_id+ - (String)
|
361
|
-
# * +:state+ - (String)
|
320
|
+
# * +:spot_instance_request_set+ - (Array<>)
|
362
321
|
define_client_method :cancel_spot_instance_requests, 'CancelSpotInstanceRequests'
|
363
322
|
|
364
323
|
# Calls the ConfirmProductInstance API operation.
|
@@ -369,9 +328,6 @@ module AWS
|
|
369
328
|
# * +:instance_id+ - *required* - (String) The ID of the instance to
|
370
329
|
# confirm.
|
371
330
|
# @return [Core::Response]
|
372
|
-
# The #data method of the response object returns
|
373
|
-
# a hash with the following structure:
|
374
|
-
# * +:owner_id+ - (String)
|
375
331
|
define_client_method :confirm_product_instance, 'ConfirmProductInstance'
|
376
332
|
|
377
333
|
# Calls the CreateCustomerGateway API operation.
|
@@ -388,14 +344,7 @@ module AWS
|
|
388
344
|
# The #data method of the response object returns
|
389
345
|
# a hash with the following structure:
|
390
346
|
# * +:customer_gateway+ - (Hash)
|
391
|
-
# * +:
|
392
|
-
# * +:state+ - (String)
|
393
|
-
# * +:type+ - (String)
|
394
|
-
# * +:ip_address+ - (String)
|
395
|
-
# * +:bgp_asn+ - (String)
|
396
|
-
# * +:tag_set+ - (Array<Hash>)
|
397
|
-
# * +:key+ - (String)
|
398
|
-
# * +:value+ - (String)
|
347
|
+
# * +:tag_set+ - (Array<>)
|
399
348
|
define_client_method :create_customer_gateway, 'CreateCustomerGateway'
|
400
349
|
|
401
350
|
# Calls the CreateDhcpOptions API operation.
|
@@ -410,13 +359,9 @@ module AWS
|
|
410
359
|
# The #data method of the response object returns
|
411
360
|
# a hash with the following structure:
|
412
361
|
# * +:dhcp_options+ - (Hash)
|
413
|
-
# * +:dhcp_options_id+ - (String)
|
414
362
|
# * +:dhcp_configuration_set+ - (Array<Hash>)
|
415
|
-
# * +:
|
416
|
-
#
|
417
|
-
# * +:tag_set+ - (Array<Hash>)
|
418
|
-
# * +:key+ - (String)
|
419
|
-
# * +:value+ - (String)
|
363
|
+
# * +:value_set+ - (Array<>)
|
364
|
+
# * +:tag_set+ - (Array<>)
|
420
365
|
define_client_method :create_dhcp_options, 'CreateDhcpOptions'
|
421
366
|
|
422
367
|
# Calls the CreateImage API operation.
|
@@ -434,10 +379,23 @@ module AWS
|
|
434
379
|
# to +true+ , Amazon EC2 will not shut down the instance before
|
435
380
|
# creating the image. When this option is used, file system integrity
|
436
381
|
# on the created image cannot be guaranteed.
|
382
|
+
# * +:block_device_mappings+ - (Array<Hash>)
|
383
|
+
# * +:virtual_name+ - (String) Specifies the virtual device name.
|
384
|
+
# * +:device_name+ - (String) Specifies the device name (e.g.,
|
385
|
+
# /dev/sdh).
|
386
|
+
# * +:ebs+ - (Hash) Specifies parameters used to automatically setup
|
387
|
+
# Amazon EBS volumes when the instance is launched.
|
388
|
+
# * +:snapshot_id+ - (String) The ID of the snapshot from which the
|
389
|
+
# volume will be created.
|
390
|
+
# * +:volume_size+ - (Integer) The size of the volume, in
|
391
|
+
# gigabytes.
|
392
|
+
# * +:delete_on_termination+ - (Boolean) Specifies whether the
|
393
|
+
# Amazon EBS volume is deleted on instance termination.
|
394
|
+
# * +:volume_type+ - (String)
|
395
|
+
# * +:iops+ - (Integer)
|
396
|
+
# * +:no_device+ - (String) Specifies the device name to suppress
|
397
|
+
# during instance launch.
|
437
398
|
# @return [Core::Response]
|
438
|
-
# The #data method of the response object returns
|
439
|
-
# a hash with the following structure:
|
440
|
-
# * +:image_id+ - (String)
|
441
399
|
define_client_method :create_image, 'CreateImage'
|
442
400
|
|
443
401
|
# Calls the CreateInstanceExportTask API operation.
|
@@ -445,29 +403,13 @@ module AWS
|
|
445
403
|
# @param [Hash] options
|
446
404
|
# * +:description+ - (String)
|
447
405
|
# * +:instance_id+ - *required* - (String)
|
448
|
-
# * +:target_environment+ -
|
449
|
-
# * +:
|
406
|
+
# * +:target_environment+ - (String)
|
407
|
+
# * +:export_to_s3_task+ - (Hash)
|
450
408
|
# * +:disk_image_format+ - (String)
|
451
409
|
# * +:container_format+ - (String)
|
452
|
-
# * +:s3_bucket+ -
|
410
|
+
# * +:s3_bucket+ - (String)
|
453
411
|
# * +:s3_prefix+ - (String)
|
454
412
|
# @return [Core::Response]
|
455
|
-
# The #data method of the response object returns
|
456
|
-
# a hash with the following structure:
|
457
|
-
# * +:request_id+ - (String)
|
458
|
-
# * +:export_task+ - (Hash)
|
459
|
-
# * +:export_task_id+ - (String)
|
460
|
-
# * +:description+ - (String)
|
461
|
-
# * +:state+ - (String)
|
462
|
-
# * +:status_message+ - (String)
|
463
|
-
# * +:instance_export+ - (Hash)
|
464
|
-
# * +:instance_id+ - (String)
|
465
|
-
# * +:target_environment+ - (String)
|
466
|
-
# * +:export_to_s3+ - (Hash)
|
467
|
-
# * +:disk_image_format+ - (String)
|
468
|
-
# * +:container_format+ - (String)
|
469
|
-
# * +:s3_bucket+ - (String)
|
470
|
-
# * +:s3_key+ - (String)
|
471
413
|
define_client_method :create_instance_export_task, 'CreateInstanceExportTask'
|
472
414
|
|
473
415
|
# Calls the CreateInternetGateway API operation.
|
@@ -477,13 +419,8 @@ module AWS
|
|
477
419
|
# The #data method of the response object returns
|
478
420
|
# a hash with the following structure:
|
479
421
|
# * +:internet_gateway+ - (Hash)
|
480
|
-
# * +:
|
481
|
-
# * +:
|
482
|
-
# * +:vpc_id+ - (String)
|
483
|
-
# * +:state+ - (String)
|
484
|
-
# * +:tag_set+ - (Array<Hash>)
|
485
|
-
# * +:key+ - (String)
|
486
|
-
# * +:value+ - (String)
|
422
|
+
# * +:attachment_set+ - (Array<>)
|
423
|
+
# * +:tag_set+ - (Array<>)
|
487
424
|
define_client_method :create_internet_gateway, 'CreateInternetGateway'
|
488
425
|
|
489
426
|
# Calls the CreateKeyPair API operation.
|
@@ -492,12 +429,6 @@ module AWS
|
|
492
429
|
# * +:key_name+ - *required* - (String) The unique name for the new key
|
493
430
|
# pair.
|
494
431
|
# @return [Core::Response]
|
495
|
-
# The #data method of the response object returns
|
496
|
-
# a hash with the following structure:
|
497
|
-
# * +:key_pair+ - (Hash)
|
498
|
-
# * +:key_name+ - (String)
|
499
|
-
# * +:key_fingerprint+ - (String)
|
500
|
-
# * +:key_material+ - (String)
|
501
432
|
define_client_method :create_key_pair, 'CreateKeyPair'
|
502
433
|
|
503
434
|
# Calls the CreateNetworkAcl API operation.
|
@@ -509,28 +440,18 @@ module AWS
|
|
509
440
|
# The #data method of the response object returns
|
510
441
|
# a hash with the following structure:
|
511
442
|
# * +:network_acl+ - (Hash)
|
512
|
-
# * +:network_acl_id+ - (String)
|
513
|
-
# * +:vpc_id+ - (String)
|
514
443
|
# * +:default+ - (Boolean)
|
515
444
|
# * +:entry_set+ - (Array<Hash>)
|
516
445
|
# * +:rule_number+ - (Integer)
|
517
|
-
# * +:protocol+ - (String)
|
518
|
-
# * +:rule_action+ - (String)
|
519
446
|
# * +:egress+ - (Boolean)
|
520
|
-
# * +:cidr_block+ - (String)
|
521
447
|
# * +:icmp_type_code+ - (Hash)
|
522
448
|
# * +:type+ - (Integer)
|
523
449
|
# * +:code+ - (Integer)
|
524
450
|
# * +:port_range+ - (Hash)
|
525
451
|
# * +:from+ - (Integer)
|
526
452
|
# * +:to+ - (Integer)
|
527
|
-
# * +:association_set+ - (Array
|
528
|
-
#
|
529
|
-
# * +:network_acl_id+ - (String)
|
530
|
-
# * +:subnet_id+ - (String)
|
531
|
-
# * +:tag_set+ - (Array<Hash>)
|
532
|
-
# * +:key+ - (String)
|
533
|
-
# * +:value+ - (String)
|
453
|
+
# * +:association_set+ - (Array<>)
|
454
|
+
# * +:tag_set+ - (Array<>)
|
534
455
|
define_client_method :create_network_acl, 'CreateNetworkAcl'
|
535
456
|
|
536
457
|
# Calls the CreateNetworkAclEntry API operation.
|
@@ -572,42 +493,24 @@ module AWS
|
|
572
493
|
# * +:description+ - (String)
|
573
494
|
# * +:private_ip_address+ - (String)
|
574
495
|
# * +:groups+ - (Array<String>)
|
496
|
+
# * +:private_ip_addresses+ - (Array<Hash>)
|
497
|
+
# * +:private_ip_address+ - *required* - (String)
|
498
|
+
# * +:primary+ - (Boolean)
|
499
|
+
# * +:secondary_private_ip_address_count+ - (Integer)
|
575
500
|
# @return [Core::Response]
|
576
501
|
# The #data method of the response object returns
|
577
502
|
# a hash with the following structure:
|
578
503
|
# * +:network_interface+ - (Hash)
|
579
|
-
# * +:network_interface_id+ - (String)
|
580
|
-
# * +:subnet_id+ - (String)
|
581
|
-
# * +:vpc_id+ - (String)
|
582
|
-
# * +:availability_zone+ - (String)
|
583
|
-
# * +:description+ - (String)
|
584
|
-
# * +:owner_id+ - (String)
|
585
|
-
# * +:requester_id+ - (String)
|
586
504
|
# * +:requester_managed+ - (Boolean)
|
587
|
-
# * +:status+ - (String)
|
588
|
-
# * +:mac_address+ - (String)
|
589
|
-
# * +:private_ip_address+ - (String)
|
590
|
-
# * +:private_dns_name+ - (String)
|
591
505
|
# * +:source_dest_check+ - (Boolean)
|
592
|
-
# * +:group_set+ - (Array
|
593
|
-
# * +:group_name+ - (String)
|
594
|
-
# * +:group_id+ - (String)
|
506
|
+
# * +:group_set+ - (Array<>)
|
595
507
|
# * +:attachment+ - (Hash)
|
596
|
-
# * +:attachment_id+ - (String)
|
597
|
-
# * +:instance_id+ - (String)
|
598
|
-
# * +:instance_owner_id+ - (String)
|
599
508
|
# * +:device_index+ - (Integer)
|
600
|
-
# * +:status+ - (String)
|
601
509
|
# * +:attach_time+ - (Time)
|
602
510
|
# * +:delete_on_termination+ - (Boolean)
|
603
|
-
# * +:
|
604
|
-
#
|
605
|
-
# * +:
|
606
|
-
# * +:allocation_id+ - (String)
|
607
|
-
# * +:association_id+ - (String)
|
608
|
-
# * +:tag_set+ - (Array<Hash>)
|
609
|
-
# * +:key+ - (String)
|
610
|
-
# * +:value+ - (String)
|
511
|
+
# * +:tag_set+ - (Array<>)
|
512
|
+
# * +:private_ip_addresses_set+ - (Array<Hash>)
|
513
|
+
# * +:primary+ - (Boolean)
|
611
514
|
define_client_method :create_network_interface, 'CreateNetworkInterface'
|
612
515
|
|
613
516
|
# Calls the CreatePlacementGroup API operation.
|
@@ -645,23 +548,10 @@ module AWS
|
|
645
548
|
# The #data method of the response object returns
|
646
549
|
# a hash with the following structure:
|
647
550
|
# * +:route_table+ - (Hash)
|
648
|
-
# * +:
|
649
|
-
# * +:vpc_id+ - (String)
|
650
|
-
# * +:route_set+ - (Array<Hash>)
|
651
|
-
# * +:destination_cidr_block+ - (String)
|
652
|
-
# * +:gateway_id+ - (String)
|
653
|
-
# * +:instance_id+ - (String)
|
654
|
-
# * +:instance_owner_id+ - (String)
|
655
|
-
# * +:network_interface_id+ - (String)
|
656
|
-
# * +:state+ - (String)
|
551
|
+
# * +:route_set+ - (Array<>)
|
657
552
|
# * +:association_set+ - (Array<Hash>)
|
658
|
-
# * +:route_table_association_id+ - (String)
|
659
|
-
# * +:route_table_id+ - (String)
|
660
|
-
# * +:subnet_id+ - (String)
|
661
553
|
# * +:main+ - (Boolean)
|
662
|
-
# * +:tag_set+ - (Array
|
663
|
-
# * +:key+ - (String)
|
664
|
-
# * +:value+ - (String)
|
554
|
+
# * +:tag_set+ - (Array<>)
|
665
555
|
define_client_method :create_route_table, 'CreateRouteTable'
|
666
556
|
|
667
557
|
# Calls the CreateSecurityGroup API operation.
|
@@ -672,9 +562,6 @@ module AWS
|
|
672
562
|
# This is informational only.
|
673
563
|
# * +:vpc_id+ - (String) ID of the VPC.
|
674
564
|
# @return [Core::Response]
|
675
|
-
# The #data method of the response object returns
|
676
|
-
# a hash with the following structure:
|
677
|
-
# * +:group_id+ - (String)
|
678
565
|
define_client_method :create_security_group, 'CreateSecurityGroup'
|
679
566
|
|
680
567
|
# Calls the CreateSnapshot API operation.
|
@@ -686,18 +573,9 @@ module AWS
|
|
686
573
|
# @return [Core::Response]
|
687
574
|
# The #data method of the response object returns
|
688
575
|
# a hash with the following structure:
|
689
|
-
# * +:snapshot_id+ - (String)
|
690
|
-
# * +:volume_id+ - (String)
|
691
|
-
# * +:status+ - (String)
|
692
576
|
# * +:start_time+ - (Time)
|
693
|
-
# * +:progress+ - (String)
|
694
|
-
# * +:owner_id+ - (String)
|
695
|
-
# * +:description+ - (String)
|
696
577
|
# * +:volume_size+ - (Integer)
|
697
|
-
# * +:
|
698
|
-
# * +:tag_set+ - (Array<Hash>)
|
699
|
-
# * +:key+ - (String)
|
700
|
-
# * +:value+ - (String)
|
578
|
+
# * +:tag_set+ - (Array<>)
|
701
579
|
define_client_method :create_snapshot, 'CreateSnapshot'
|
702
580
|
|
703
581
|
# Calls the CreateSpotDatafeedSubscription API operation.
|
@@ -708,16 +586,6 @@ module AWS
|
|
708
586
|
# * +:prefix+ - (String) The prefix that is prepended to datafeed
|
709
587
|
# files.
|
710
588
|
# @return [Core::Response]
|
711
|
-
# The #data method of the response object returns
|
712
|
-
# a hash with the following structure:
|
713
|
-
# * +:spot_datafeed_subscription+ - (Hash)
|
714
|
-
# * +:owner_id+ - (String)
|
715
|
-
# * +:bucket+ - (String)
|
716
|
-
# * +:prefix+ - (String)
|
717
|
-
# * +:state+ - (String)
|
718
|
-
# * +:fault+ - (Hash)
|
719
|
-
# * +:code+ - (String)
|
720
|
-
# * +:message+ - (String)
|
721
589
|
define_client_method :create_spot_datafeed_subscription, 'CreateSpotDatafeedSubscription'
|
722
590
|
|
723
591
|
# Calls the CreateSubnet API operation.
|
@@ -733,15 +601,8 @@ module AWS
|
|
733
601
|
# The #data method of the response object returns
|
734
602
|
# a hash with the following structure:
|
735
603
|
# * +:subnet+ - (Hash)
|
736
|
-
# * +:subnet_id+ - (String)
|
737
|
-
# * +:state+ - (String)
|
738
|
-
# * +:vpc_id+ - (String)
|
739
|
-
# * +:cidr_block+ - (String)
|
740
604
|
# * +:available_ip_address_count+ - (Integer)
|
741
|
-
# * +:
|
742
|
-
# * +:tag_set+ - (Array<Hash>)
|
743
|
-
# * +:key+ - (String)
|
744
|
-
# * +:value+ - (String)
|
605
|
+
# * +:tag_set+ - (Array<>)
|
745
606
|
define_client_method :create_subnet, 'CreateSubnet'
|
746
607
|
|
747
608
|
# Calls the CreateTags API operation.
|
@@ -767,25 +628,18 @@ module AWS
|
|
767
628
|
# create the new volume.
|
768
629
|
# * +:availability_zone+ - *required* - (String) The Availability Zone
|
769
630
|
# in which to create the new volume.
|
631
|
+
# * +:volume_type+ - (String)
|
632
|
+
# * +:iops+ - (Integer)
|
770
633
|
# @return [Core::Response]
|
771
634
|
# The #data method of the response object returns
|
772
635
|
# a hash with the following structure:
|
773
|
-
# * +:volume_id+ - (String)
|
774
636
|
# * +:size+ - (Integer)
|
775
|
-
# * +:snapshot_id+ - (String)
|
776
|
-
# * +:availability_zone+ - (String)
|
777
|
-
# * +:status+ - (String)
|
778
637
|
# * +:create_time+ - (Time)
|
779
638
|
# * +:attachment_set+ - (Array<Hash>)
|
780
|
-
# * +:volume_id+ - (String)
|
781
|
-
# * +:instance_id+ - (String)
|
782
|
-
# * +:device+ - (String)
|
783
|
-
# * +:status+ - (String)
|
784
639
|
# * +:attach_time+ - (Time)
|
785
640
|
# * +:delete_on_termination+ - (Boolean)
|
786
|
-
# * +:tag_set+ - (Array
|
787
|
-
#
|
788
|
-
# * +:value+ - (String)
|
641
|
+
# * +:tag_set+ - (Array<>)
|
642
|
+
# * +:iops+ - (Integer)
|
789
643
|
define_client_method :create_volume, 'CreateVolume'
|
790
644
|
|
791
645
|
# Calls the CreateVpc API operation.
|
@@ -800,14 +654,7 @@ module AWS
|
|
800
654
|
# The #data method of the response object returns
|
801
655
|
# a hash with the following structure:
|
802
656
|
# * +:vpc+ - (Hash)
|
803
|
-
# * +:
|
804
|
-
# * +:state+ - (String)
|
805
|
-
# * +:cidr_block+ - (String)
|
806
|
-
# * +:dhcp_options_id+ - (String)
|
807
|
-
# * +:tag_set+ - (Array<Hash>)
|
808
|
-
# * +:key+ - (String)
|
809
|
-
# * +:value+ - (String)
|
810
|
-
# * +:instance_tenancy+ - (String)
|
657
|
+
# * +:tag_set+ - (Array<>)
|
811
658
|
define_client_method :create_vpc, 'CreateVpc'
|
812
659
|
|
813
660
|
# Calls the CreateVpnConnection API operation.
|
@@ -822,20 +669,9 @@ module AWS
|
|
822
669
|
# The #data method of the response object returns
|
823
670
|
# a hash with the following structure:
|
824
671
|
# * +:vpn_connection+ - (Hash)
|
825
|
-
# * +:
|
826
|
-
# * +:state+ - (String)
|
827
|
-
# * +:customer_gateway_configuration+ - (String)
|
828
|
-
# * +:type+ - (String)
|
829
|
-
# * +:customer_gateway_id+ - (String)
|
830
|
-
# * +:vpn_gateway_id+ - (String)
|
831
|
-
# * +:tag_set+ - (Array<Hash>)
|
832
|
-
# * +:key+ - (String)
|
833
|
-
# * +:value+ - (String)
|
672
|
+
# * +:tag_set+ - (Array<>)
|
834
673
|
# * +:vgw_telemetry+ - (Array<Hash>)
|
835
|
-
# * +:outside_ip_address+ - (String)
|
836
|
-
# * +:status+ - (String)
|
837
674
|
# * +:last_status_change+ - (Time)
|
838
|
-
# * +:status_message+ - (String)
|
839
675
|
# * +:accepted_route_count+ - (Integer)
|
840
676
|
define_client_method :create_vpn_connection, 'CreateVpnConnection'
|
841
677
|
|
@@ -850,16 +686,9 @@ module AWS
|
|
850
686
|
# The #data method of the response object returns
|
851
687
|
# a hash with the following structure:
|
852
688
|
# * +:vpn_gateway+ - (Hash)
|
853
|
-
# * +:
|
854
|
-
# * +:
|
689
|
+
# * +:attachments+ - (Array<>)
|
690
|
+
# * +:tag_set+ - (Array<>)
|
855
691
|
# * +:vpn_type+ - (String)
|
856
|
-
# * +:availability_zone+ - (String)
|
857
|
-
# * +:attachments+ - (Array<Hash>)
|
858
|
-
# * +:vpc_id+ - (String)
|
859
|
-
# * +:state+ - (String)
|
860
|
-
# * +:tag_set+ - (Array<Hash>)
|
861
|
-
# * +:key+ - (String)
|
862
|
-
# * +:value+ - (String)
|
863
692
|
define_client_method :create_vpn_gateway, 'CreateVpnGateway'
|
864
693
|
|
865
694
|
# Calls the DeactivateLicense API operation.
|
@@ -1059,14 +888,7 @@ module AWS
|
|
1059
888
|
# @return [Core::Response]
|
1060
889
|
# The #data method of the response object returns
|
1061
890
|
# a hash with the following structure:
|
1062
|
-
# * +:addresses_set+ - (Array
|
1063
|
-
# * +:instance_id+ - (String)
|
1064
|
-
# * +:public_ip+ - (String)
|
1065
|
-
# * +:allocation_id+ - (String)
|
1066
|
-
# * +:association_id+ - (String)
|
1067
|
-
# * +:domain+ - (String)
|
1068
|
-
# * +:network_interface_id+ - (String)
|
1069
|
-
# * +:network_interface_owner_id+ - (String)
|
891
|
+
# * +:addresses_set+ - (Array<>)
|
1070
892
|
define_client_method :describe_addresses, 'DescribeAddresses'
|
1071
893
|
|
1072
894
|
# Calls the DescribeAvailabilityZones API operation.
|
@@ -1085,11 +907,7 @@ module AWS
|
|
1085
907
|
# The #data method of the response object returns
|
1086
908
|
# a hash with the following structure:
|
1087
909
|
# * +:availability_zone_info+ - (Array<Hash>)
|
1088
|
-
# * +:
|
1089
|
-
# * +:zone_state+ - (String)
|
1090
|
-
# * +:region_name+ - (String)
|
1091
|
-
# * +:message_set+ - (Array<Hash>)
|
1092
|
-
# * +:message+ - (String)
|
910
|
+
# * +:message_set+ - (Array<>)
|
1093
911
|
define_client_method :describe_availability_zones, 'DescribeAvailabilityZones'
|
1094
912
|
|
1095
913
|
# Calls the DescribeBundleTasks API operation.
|
@@ -1108,22 +926,8 @@ module AWS
|
|
1108
926
|
# The #data method of the response object returns
|
1109
927
|
# a hash with the following structure:
|
1110
928
|
# * +:bundle_instance_tasks_set+ - (Array<Hash>)
|
1111
|
-
# * +:instance_id+ - (String)
|
1112
|
-
# * +:bundle_id+ - (String)
|
1113
|
-
# * +:state+ - (String)
|
1114
929
|
# * +:start_time+ - (Time)
|
1115
930
|
# * +:update_time+ - (Time)
|
1116
|
-
# * +:storage+ - (Hash)
|
1117
|
-
# * +:s3+ - (Hash)
|
1118
|
-
# * +:bucket+ - (String)
|
1119
|
-
# * +:prefix+ - (String)
|
1120
|
-
# * +:aws_access_key_id+ - (String)
|
1121
|
-
# * +:upload_policy+ - (String)
|
1122
|
-
# * +:upload_policy_signature+ - (String)
|
1123
|
-
# * +:progress+ - (String)
|
1124
|
-
# * +:error+ - (Hash)
|
1125
|
-
# * +:code+ - (String)
|
1126
|
-
# * +:message+ - (String)
|
1127
931
|
define_client_method :describe_bundle_tasks, 'DescribeBundleTasks'
|
1128
932
|
|
1129
933
|
# Calls the DescribeConversionTasks API operation.
|
@@ -1138,43 +942,20 @@ module AWS
|
|
1138
942
|
# The #data method of the response object returns
|
1139
943
|
# a hash with the following structure:
|
1140
944
|
# * +:conversion_tasks+ - (Array<Hash>)
|
1141
|
-
# * +:conversion_task_id+ - (String)
|
1142
|
-
# * +:expiration_time+ - (String)
|
1143
945
|
# * +:import_instance+ - (Hash)
|
1144
946
|
# * +:volumes+ - (Array<Hash>)
|
1145
947
|
# * +:bytes_converted+ - (Integer)
|
1146
|
-
# * +:availability_zone+ - (String)
|
1147
948
|
# * +:image+ - (Hash)
|
1148
|
-
# * +:format+ - (String)
|
1149
949
|
# * +:size+ - (Integer)
|
1150
|
-
# * +:import_manifest_url+ - (String)
|
1151
|
-
# * +:checksum+ - (String)
|
1152
950
|
# * +:volume+ - (Hash)
|
1153
951
|
# * +:size+ - (Integer)
|
1154
|
-
# * +:id+ - (String)
|
1155
|
-
# * +:status+ - (String)
|
1156
|
-
# * +:status_message+ - (String)
|
1157
|
-
# * +:description+ - (String)
|
1158
|
-
# * +:instance_id+ - (String)
|
1159
|
-
# * +:platform+ - (String)
|
1160
|
-
# * +:description+ - (String)
|
1161
952
|
# * +:import_volume+ - (Hash)
|
1162
953
|
# * +:bytes_converted+ - (Integer)
|
1163
|
-
# * +:availability_zone+ - (String)
|
1164
|
-
# * +:description+ - (String)
|
1165
954
|
# * +:image+ - (Hash)
|
1166
|
-
# * +:format+ - (String)
|
1167
955
|
# * +:size+ - (Integer)
|
1168
|
-
# * +:import_manifest_url+ - (String)
|
1169
|
-
# * +:checksum+ - (String)
|
1170
956
|
# * +:volume+ - (Hash)
|
1171
957
|
# * +:size+ - (Integer)
|
1172
|
-
#
|
1173
|
-
# * +:state+ - (String)
|
1174
|
-
# * +:status_message+ - (String)
|
1175
|
-
# * +:tag_set+ - (Array<Hash>)
|
1176
|
-
# * +:key+ - (String)
|
1177
|
-
# * +:value+ - (String)
|
958
|
+
# * +:tag_set+ - (Array<>)
|
1178
959
|
define_client_method :describe_conversion_tasks, 'DescribeConversionTasks'
|
1179
960
|
|
1180
961
|
# Calls the DescribeCustomerGateways API operation.
|
@@ -1193,14 +974,8 @@ module AWS
|
|
1193
974
|
# The #data method of the response object returns
|
1194
975
|
# a hash with the following structure:
|
1195
976
|
# * +:customer_gateway_set+ - (Array<Hash>)
|
1196
|
-
# * +:
|
1197
|
-
# * +:state+ - (String)
|
977
|
+
# * +:tag_set+ - (Array<>)
|
1198
978
|
# * +:vpn_type+ - (String)
|
1199
|
-
# * +:ip_address+ - (String)
|
1200
|
-
# * +:bgp_asn+ - (String)
|
1201
|
-
# * +:tag_set+ - (Array<Hash>)
|
1202
|
-
# * +:key+ - (String)
|
1203
|
-
# * +:value+ - (String)
|
1204
979
|
define_client_method :describe_customer_gateways, 'DescribeCustomerGateways'
|
1205
980
|
|
1206
981
|
# Calls the DescribeDhcpOptions API operation.
|
@@ -1218,13 +993,9 @@ module AWS
|
|
1218
993
|
# The #data method of the response object returns
|
1219
994
|
# a hash with the following structure:
|
1220
995
|
# * +:dhcp_options_set+ - (Array<Hash>)
|
1221
|
-
# * +:dhcp_options_id+ - (String)
|
1222
996
|
# * +:dhcp_configuration_set+ - (Array<Hash>)
|
1223
|
-
# * +:
|
1224
|
-
#
|
1225
|
-
# * +:tag_set+ - (Array<Hash>)
|
1226
|
-
# * +:key+ - (String)
|
1227
|
-
# * +:value+ - (String)
|
997
|
+
# * +:value_set+ - (Array<>)
|
998
|
+
# * +:tag_set+ - (Array<>)
|
1228
999
|
define_client_method :describe_dhcp_options, 'DescribeDhcpOptions'
|
1229
1000
|
|
1230
1001
|
# Calls the DescribeExportTasks API operation.
|
@@ -1234,20 +1005,7 @@ module AWS
|
|
1234
1005
|
# @return [Core::Response]
|
1235
1006
|
# The #data method of the response object returns
|
1236
1007
|
# a hash with the following structure:
|
1237
|
-
# * +:
|
1238
|
-
# * +:export_task_set+ - (Array<Hash>)
|
1239
|
-
# * +:export_task_id+ - (String)
|
1240
|
-
# * +:description+ - (String)
|
1241
|
-
# * +:state+ - (String)
|
1242
|
-
# * +:status_message+ - (String)
|
1243
|
-
# * +:instance_export+ - (Hash)
|
1244
|
-
# * +:instance_id+ - (String)
|
1245
|
-
# * +:target_environment+ - (String)
|
1246
|
-
# * +:export_to_s3+ - (Hash)
|
1247
|
-
# * +:disk_image_format+ - (String)
|
1248
|
-
# * +:container_format+ - (String)
|
1249
|
-
# * +:s3_bucket+ - (String)
|
1250
|
-
# * +:s3_key+ - (String)
|
1008
|
+
# * +:export_task_set+ - (Array<>)
|
1251
1009
|
define_client_method :describe_export_tasks, 'DescribeExportTasks'
|
1252
1010
|
|
1253
1011
|
# Calls the DescribeImageAttribute API operation.
|
@@ -1261,27 +1019,13 @@ module AWS
|
|
1261
1019
|
# @return [Core::Response]
|
1262
1020
|
# The #data method of the response object returns
|
1263
1021
|
# a hash with the following structure:
|
1264
|
-
# * +:
|
1265
|
-
# * +:
|
1266
|
-
# * +:user_id+ - (String)
|
1267
|
-
# * +:group+ - (String)
|
1268
|
-
# * +:product_codes+ - (Array<Hash>)
|
1269
|
-
# * +:product_code+ - (String)
|
1270
|
-
# * +:type+ - (String)
|
1271
|
-
# * +:kernel+ - (Hash)
|
1272
|
-
# * +:value+ - (String)
|
1273
|
-
# * +:ramdisk+ - (Hash)
|
1274
|
-
# * +:value+ - (String)
|
1275
|
-
# * +:description+ - (Hash)
|
1276
|
-
# * +:value+ - (String)
|
1022
|
+
# * +:launch_permission+ - (Array<>)
|
1023
|
+
# * +:product_codes+ - (Array<>)
|
1277
1024
|
# * +:block_device_mapping+ - (Array<Hash>)
|
1278
|
-
# * +:virtual_name+ - (String)
|
1279
|
-
# * +:device_name+ - (String)
|
1280
1025
|
# * +:ebs+ - (Hash)
|
1281
|
-
# * +:snapshot_id+ - (String)
|
1282
1026
|
# * +:volume_size+ - (Integer)
|
1283
1027
|
# * +:delete_on_termination+ - (Boolean)
|
1284
|
-
#
|
1028
|
+
# * +:iops+ - (Integer)
|
1285
1029
|
define_client_method :describe_image_attribute, 'DescribeImageAttribute'
|
1286
1030
|
|
1287
1031
|
# Calls the DescribeImages API operation.
|
@@ -1308,40 +1052,14 @@ module AWS
|
|
1308
1052
|
# The #data method of the response object returns
|
1309
1053
|
# a hash with the following structure:
|
1310
1054
|
# * +:images_set+ - (Array<Hash>)
|
1311
|
-
# * +:image_id+ - (String)
|
1312
|
-
# * +:image_location+ - (String)
|
1313
|
-
# * +:image_state+ - (String)
|
1314
|
-
# * +:image_owner_id+ - (String)
|
1315
1055
|
# * +:is_public+ - (Boolean)
|
1316
|
-
# * +:product_codes+ - (Array
|
1317
|
-
# * +:product_code+ - (String)
|
1318
|
-
# * +:type+ - (String)
|
1319
|
-
# * +:architecture+ - (String)
|
1320
|
-
# * +:image_type+ - (String)
|
1321
|
-
# * +:kernel_id+ - (String)
|
1322
|
-
# * +:ramdisk_id+ - (String)
|
1323
|
-
# * +:platform+ - (String)
|
1324
|
-
# * +:state_reason+ - (Hash)
|
1325
|
-
# * +:code+ - (String)
|
1326
|
-
# * +:message+ - (String)
|
1327
|
-
# * +:image_owner_alias+ - (String)
|
1328
|
-
# * +:name+ - (String)
|
1329
|
-
# * +:description+ - (String)
|
1330
|
-
# * +:root_device_type+ - (String)
|
1331
|
-
# * +:root_device_name+ - (String)
|
1056
|
+
# * +:product_codes+ - (Array<>)
|
1332
1057
|
# * +:block_device_mapping+ - (Array<Hash>)
|
1333
|
-
# * +:virtual_name+ - (String)
|
1334
|
-
# * +:device_name+ - (String)
|
1335
1058
|
# * +:ebs+ - (Hash)
|
1336
|
-
# * +:snapshot_id+ - (String)
|
1337
1059
|
# * +:volume_size+ - (Integer)
|
1338
1060
|
# * +:delete_on_termination+ - (Boolean)
|
1339
|
-
#
|
1340
|
-
# * +:
|
1341
|
-
# * +:tag_set+ - (Array<Hash>)
|
1342
|
-
# * +:key+ - (String)
|
1343
|
-
# * +:value+ - (String)
|
1344
|
-
# * +:hypervisor+ - (String)
|
1061
|
+
# * +:iops+ - (Integer)
|
1062
|
+
# * +:tag_set+ - (Array<>)
|
1345
1063
|
define_client_method :describe_images, 'DescribeImages'
|
1346
1064
|
|
1347
1065
|
# Calls the DescribeInstanceAttribute API operation.
|
@@ -1356,31 +1074,15 @@ module AWS
|
|
1356
1074
|
# @return [Core::Response]
|
1357
1075
|
# The #data method of the response object returns
|
1358
1076
|
# a hash with the following structure:
|
1359
|
-
# * +:instance_id+ - (String)
|
1360
|
-
# * +:instance_type+ - (Hash)
|
1361
|
-
# * +:value+ - (String)
|
1362
|
-
# * +:kernel+ - (Hash)
|
1363
|
-
# * +:value+ - (String)
|
1364
|
-
# * +:ramdisk+ - (Hash)
|
1365
|
-
# * +:value+ - (String)
|
1366
|
-
# * +:user_data+ - (Hash)
|
1367
|
-
# * +:value+ - (String)
|
1368
1077
|
# * +:disable_api_termination+ - (Hash)
|
1369
1078
|
# * +:value+ - (Boolean)
|
1370
|
-
# * +:instance_initiated_shutdown_behavior+ - (Hash)
|
1371
|
-
# * +:value+ - (String)
|
1372
|
-
# * +:root_device_name+ - (Hash)
|
1373
|
-
# * +:value+ - (String)
|
1374
1079
|
# * +:block_device_mapping+ - (Array<Hash>)
|
1375
|
-
# * +:device_name+ - (String)
|
1376
1080
|
# * +:ebs+ - (Hash)
|
1377
|
-
# * +:volume_id+ - (String)
|
1378
|
-
# * +:status+ - (String)
|
1379
1081
|
# * +:attach_time+ - (Time)
|
1380
1082
|
# * +:delete_on_termination+ - (Boolean)
|
1381
|
-
# * +:product_codes+ - (Array
|
1382
|
-
#
|
1383
|
-
# * +:
|
1083
|
+
# * +:product_codes+ - (Array<>)
|
1084
|
+
# * +:ebs_optimized+ - (Hash)
|
1085
|
+
# * +:value+ - (Boolean)
|
1384
1086
|
define_client_method :describe_instance_attribute, 'DescribeInstanceAttribute'
|
1385
1087
|
|
1386
1088
|
# Calls the DescribeInstanceStatus API operation.
|
@@ -1397,31 +1099,22 @@ module AWS
|
|
1397
1099
|
# of results to return.
|
1398
1100
|
# * +:max_results+ - (Integer) The maximum number of paginated instance
|
1399
1101
|
# items per response.
|
1102
|
+
# * +:include_all_instances+ - (Boolean)
|
1400
1103
|
# @return [Core::Response]
|
1401
1104
|
# The #data method of the response object returns
|
1402
1105
|
# a hash with the following structure:
|
1403
1106
|
# * +:instance_status_set+ - (Array<Hash>)
|
1404
|
-
# * +:instance_id+ - (String)
|
1405
|
-
# * +:availability_zone+ - (String)
|
1406
1107
|
# * +:events_set+ - (Array<Hash>)
|
1407
|
-
# * +:code+ - (String)
|
1408
|
-
# * +:description+ - (String)
|
1409
1108
|
# * +:not_before+ - (Time)
|
1410
1109
|
# * +:not_after+ - (Time)
|
1411
1110
|
# * +:instance_state+ - (Hash)
|
1412
1111
|
# * +:code+ - (Integer)
|
1413
|
-
# * +:name+ - (String)
|
1414
1112
|
# * +:system_status+ - (Hash)
|
1415
|
-
# * +:status+ - (String)
|
1416
1113
|
# * +:details+ - (Array<Hash>)
|
1417
|
-
# * +:
|
1418
|
-
# * +:status+ - (String)
|
1114
|
+
# * +:impaired_since+ - (Time)
|
1419
1115
|
# * +:instance_status+ - (Hash)
|
1420
|
-
# * +:status+ - (String)
|
1421
1116
|
# * +:details+ - (Array<Hash>)
|
1422
|
-
# * +:
|
1423
|
-
# * +:status+ - (String)
|
1424
|
-
# * +:next_token+ - (String)
|
1117
|
+
# * +:impaired_since+ - (Time)
|
1425
1118
|
define_client_method :describe_instance_status, 'DescribeInstanceStatus'
|
1426
1119
|
|
1427
1120
|
# Calls the DescribeInstances API operation.
|
@@ -1439,93 +1132,28 @@ module AWS
|
|
1439
1132
|
# The #data method of the response object returns
|
1440
1133
|
# a hash with the following structure:
|
1441
1134
|
# * +:reservation_set+ - (Array<Hash>)
|
1442
|
-
# * +:
|
1443
|
-
# * +:owner_id+ - (String)
|
1444
|
-
# * +:requester_id+ - (String)
|
1445
|
-
# * +:group_set+ - (Array<Hash>)
|
1446
|
-
# * +:group_name+ - (String)
|
1447
|
-
# * +:group_id+ - (String)
|
1135
|
+
# * +:group_set+ - (Array<>)
|
1448
1136
|
# * +:instances_set+ - (Array<Hash>)
|
1449
|
-
# * +:instance_id+ - (String)
|
1450
|
-
# * +:image_id+ - (String)
|
1451
1137
|
# * +:instance_state+ - (Hash)
|
1452
1138
|
# * +:code+ - (Integer)
|
1453
|
-
# * +:name+ - (String)
|
1454
|
-
# * +:private_dns_name+ - (String)
|
1455
|
-
# * +:dns_name+ - (String)
|
1456
|
-
# * +:reason+ - (String)
|
1457
|
-
# * +:key_name+ - (String)
|
1458
1139
|
# * +:ami_launch_index+ - (Integer)
|
1459
|
-
# * +:product_codes+ - (Array
|
1460
|
-
# * +:product_code+ - (String)
|
1461
|
-
# * +:type+ - (String)
|
1462
|
-
# * +:instance_type+ - (String)
|
1140
|
+
# * +:product_codes+ - (Array<>)
|
1463
1141
|
# * +:launch_time+ - (Time)
|
1464
|
-
# * +:placement+ - (Hash)
|
1465
|
-
# * +:availability_zone+ - (String)
|
1466
|
-
# * +:group_name+ - (String)
|
1467
|
-
# * +:tenancy+ - (String)
|
1468
|
-
# * +:kernel_id+ - (String)
|
1469
|
-
# * +:ramdisk_id+ - (String)
|
1470
|
-
# * +:platform+ - (String)
|
1471
|
-
# * +:monitoring+ - (Hash)
|
1472
|
-
# * +:state+ - (String)
|
1473
|
-
# * +:subnet_id+ - (String)
|
1474
|
-
# * +:vpc_id+ - (String)
|
1475
|
-
# * +:private_ip_address+ - (String)
|
1476
|
-
# * +:ip_address+ - (String)
|
1477
|
-
# * +:state_reason+ - (Hash)
|
1478
|
-
# * +:code+ - (String)
|
1479
|
-
# * +:message+ - (String)
|
1480
|
-
# * +:architecture+ - (String)
|
1481
|
-
# * +:root_device_type+ - (String)
|
1482
|
-
# * +:root_device_name+ - (String)
|
1483
1142
|
# * +:block_device_mapping+ - (Array<Hash>)
|
1484
|
-
# * +:device_name+ - (String)
|
1485
1143
|
# * +:ebs+ - (Hash)
|
1486
|
-
# * +:volume_id+ - (String)
|
1487
|
-
# * +:status+ - (String)
|
1488
1144
|
# * +:attach_time+ - (Time)
|
1489
1145
|
# * +:delete_on_termination+ - (Boolean)
|
1490
|
-
# * +:
|
1491
|
-
# * +:
|
1492
|
-
# * +:spot_instance_request_id+ - (String)
|
1493
|
-
# * +:license+ - (Hash)
|
1494
|
-
# * +:pool+ - (String)
|
1495
|
-
# * +:client_token+ - (String)
|
1496
|
-
# * +:tag_set+ - (Array<Hash>)
|
1497
|
-
# * +:key+ - (String)
|
1498
|
-
# * +:value+ - (String)
|
1499
|
-
# * +:group_set+ - (Array<Hash>)
|
1500
|
-
# * +:group_name+ - (String)
|
1501
|
-
# * +:group_id+ - (String)
|
1146
|
+
# * +:tag_set+ - (Array<>)
|
1147
|
+
# * +:group_set+ - (Array<>)
|
1502
1148
|
# * +:source_dest_check+ - (Boolean)
|
1503
|
-
# * +:hypervisor+ - (String)
|
1504
1149
|
# * +:network_interface_set+ - (Array<Hash>)
|
1505
|
-
# * +:network_interface_id+ - (String)
|
1506
|
-
# * +:subnet_id+ - (String)
|
1507
|
-
# * +:vpc_id+ - (String)
|
1508
|
-
# * +:description+ - (String)
|
1509
|
-
# * +:owner_id+ - (String)
|
1510
|
-
# * +:status+ - (String)
|
1511
|
-
# * +:private_ip_address+ - (String)
|
1512
|
-
# * +:private_dns_name+ - (String)
|
1513
1150
|
# * +:source_dest_check+ - (Boolean)
|
1514
|
-
# * +:group_set+ - (Array
|
1515
|
-
# * +:group_name+ - (String)
|
1516
|
-
# * +:group_id+ - (String)
|
1151
|
+
# * +:group_set+ - (Array<>)
|
1517
1152
|
# * +:attachment+ - (Hash)
|
1518
|
-
# * +:attachment_id+ - (String)
|
1519
1153
|
# * +:device_index+ - (Integer)
|
1520
|
-
# * +:status+ - (String)
|
1521
1154
|
# * +:attach_time+ - (Time)
|
1522
1155
|
# * +:delete_on_termination+ - (Boolean)
|
1523
|
-
#
|
1524
|
-
# * +:public_ip+ - (String)
|
1525
|
-
# * +:ip_owner_id+ - (String)
|
1526
|
-
# * +:iam_instance_profile+ - (Hash)
|
1527
|
-
# * +:arn+ - (String)
|
1528
|
-
# * +:id+ - (String)
|
1156
|
+
# * +:ebs_optimized+ - (Boolean)
|
1529
1157
|
define_client_method :describe_instances, 'DescribeInstances'
|
1530
1158
|
|
1531
1159
|
# Calls the DescribeInternetGateways API operation.
|
@@ -1544,13 +1172,8 @@ module AWS
|
|
1544
1172
|
# The #data method of the response object returns
|
1545
1173
|
# a hash with the following structure:
|
1546
1174
|
# * +:internet_gateway_set+ - (Array<Hash>)
|
1547
|
-
# * +:
|
1548
|
-
# * +:
|
1549
|
-
# * +:vpc_id+ - (String)
|
1550
|
-
# * +:state+ - (String)
|
1551
|
-
# * +:tag_set+ - (Array<Hash>)
|
1552
|
-
# * +:key+ - (String)
|
1553
|
-
# * +:value+ - (String)
|
1175
|
+
# * +:attachment_set+ - (Array<>)
|
1176
|
+
# * +:tag_set+ - (Array<>)
|
1554
1177
|
define_client_method :describe_internet_gateways, 'DescribeInternetGateways'
|
1555
1178
|
|
1556
1179
|
# Calls the DescribeKeyPairs API operation.
|
@@ -1567,9 +1190,7 @@ module AWS
|
|
1567
1190
|
# @return [Core::Response]
|
1568
1191
|
# The #data method of the response object returns
|
1569
1192
|
# a hash with the following structure:
|
1570
|
-
# * +:key_set+ - (Array
|
1571
|
-
# * +:key_name+ - (String)
|
1572
|
-
# * +:key_fingerprint+ - (String)
|
1193
|
+
# * +:key_set+ - (Array<>)
|
1573
1194
|
define_client_method :describe_key_pairs, 'DescribeKeyPairs'
|
1574
1195
|
|
1575
1196
|
# Calls the DescribeLicenses API operation.
|
@@ -1587,17 +1208,11 @@ module AWS
|
|
1587
1208
|
# The #data method of the response object returns
|
1588
1209
|
# a hash with the following structure:
|
1589
1210
|
# * +:license_set+ - (Array<Hash>)
|
1590
|
-
# * +:license_id+ - (String)
|
1591
|
-
# * +:type+ - (String)
|
1592
|
-
# * +:pool+ - (String)
|
1593
1211
|
# * +:capacity_set+ - (Array<Hash>)
|
1594
1212
|
# * +:capacity+ - (Integer)
|
1595
1213
|
# * +:instance_capacity+ - (Integer)
|
1596
|
-
# * +:state+ - (String)
|
1597
1214
|
# * +:earliest_allowed_deactivation_time+ - (Time)
|
1598
|
-
# * +:tag_set+ - (Array
|
1599
|
-
# * +:key+ - (String)
|
1600
|
-
# * +:value+ - (String)
|
1215
|
+
# * +:tag_set+ - (Array<>)
|
1601
1216
|
define_client_method :describe_licenses, 'DescribeLicenses'
|
1602
1217
|
|
1603
1218
|
# Calls the DescribeNetworkAcls API operation.
|
@@ -1615,28 +1230,18 @@ module AWS
|
|
1615
1230
|
# The #data method of the response object returns
|
1616
1231
|
# a hash with the following structure:
|
1617
1232
|
# * +:network_acl_set+ - (Array<Hash>)
|
1618
|
-
# * +:network_acl_id+ - (String)
|
1619
|
-
# * +:vpc_id+ - (String)
|
1620
1233
|
# * +:default+ - (Boolean)
|
1621
1234
|
# * +:entry_set+ - (Array<Hash>)
|
1622
1235
|
# * +:rule_number+ - (Integer)
|
1623
|
-
# * +:protocol+ - (String)
|
1624
|
-
# * +:rule_action+ - (String)
|
1625
1236
|
# * +:egress+ - (Boolean)
|
1626
|
-
# * +:cidr_block+ - (String)
|
1627
1237
|
# * +:icmp_type_code+ - (Hash)
|
1628
1238
|
# * +:type+ - (Integer)
|
1629
1239
|
# * +:code+ - (Integer)
|
1630
1240
|
# * +:port_range+ - (Hash)
|
1631
1241
|
# * +:from+ - (Integer)
|
1632
1242
|
# * +:to+ - (Integer)
|
1633
|
-
# * +:association_set+ - (Array
|
1634
|
-
#
|
1635
|
-
# * +:network_acl_id+ - (String)
|
1636
|
-
# * +:subnet_id+ - (String)
|
1637
|
-
# * +:tag_set+ - (Array<Hash>)
|
1638
|
-
# * +:key+ - (String)
|
1639
|
-
# * +:value+ - (String)
|
1243
|
+
# * +:association_set+ - (Array<>)
|
1244
|
+
# * +:tag_set+ - (Array<>)
|
1640
1245
|
define_client_method :describe_network_acls, 'DescribeNetworkAcls'
|
1641
1246
|
|
1642
1247
|
# Calls the DescribeNetworkInterfaceAttribute API operation.
|
@@ -1650,20 +1255,11 @@ module AWS
|
|
1650
1255
|
# @return [Core::Response]
|
1651
1256
|
# The #data method of the response object returns
|
1652
1257
|
# a hash with the following structure:
|
1653
|
-
# * +:network_interface_id+ - (String)
|
1654
|
-
# * +:description+ - (Hash)
|
1655
|
-
# * +:value+ - (String)
|
1656
1258
|
# * +:source_dest_check+ - (Hash)
|
1657
1259
|
# * +:value+ - (Boolean)
|
1658
|
-
# * +:group_set+ - (Array
|
1659
|
-
# * +:group_name+ - (String)
|
1660
|
-
# * +:group_id+ - (String)
|
1260
|
+
# * +:group_set+ - (Array<>)
|
1661
1261
|
# * +:attachment+ - (Hash)
|
1662
|
-
# * +:attachment_id+ - (String)
|
1663
|
-
# * +:instance_id+ - (String)
|
1664
|
-
# * +:instance_owner_id+ - (String)
|
1665
1262
|
# * +:device_index+ - (Integer)
|
1666
|
-
# * +:status+ - (String)
|
1667
1263
|
# * +:attach_time+ - (Time)
|
1668
1264
|
# * +:delete_on_termination+ - (Boolean)
|
1669
1265
|
define_client_method :describe_network_interface_attribute, 'DescribeNetworkInterfaceAttribute'
|
@@ -1680,38 +1276,16 @@ module AWS
|
|
1680
1276
|
# The #data method of the response object returns
|
1681
1277
|
# a hash with the following structure:
|
1682
1278
|
# * +:network_interface_set+ - (Array<Hash>)
|
1683
|
-
# * +:network_interface_id+ - (String)
|
1684
|
-
# * +:subnet_id+ - (String)
|
1685
|
-
# * +:vpc_id+ - (String)
|
1686
|
-
# * +:availability_zone+ - (String)
|
1687
|
-
# * +:description+ - (String)
|
1688
|
-
# * +:owner_id+ - (String)
|
1689
|
-
# * +:requester_id+ - (String)
|
1690
1279
|
# * +:requester_managed+ - (Boolean)
|
1691
|
-
# * +:status+ - (String)
|
1692
|
-
# * +:mac_address+ - (String)
|
1693
|
-
# * +:private_ip_address+ - (String)
|
1694
|
-
# * +:private_dns_name+ - (String)
|
1695
1280
|
# * +:source_dest_check+ - (Boolean)
|
1696
|
-
# * +:groups+ - (Array
|
1697
|
-
# * +:group_name+ - (String)
|
1698
|
-
# * +:group_id+ - (String)
|
1281
|
+
# * +:groups+ - (Array<>)
|
1699
1282
|
# * +:attachment+ - (Hash)
|
1700
|
-
# * +:attachment_id+ - (String)
|
1701
|
-
# * +:instance_id+ - (String)
|
1702
|
-
# * +:instance_owner_id+ - (String)
|
1703
1283
|
# * +:device_index+ - (Integer)
|
1704
|
-
# * +:status+ - (String)
|
1705
1284
|
# * +:attach_time+ - (Time)
|
1706
1285
|
# * +:delete_on_termination+ - (Boolean)
|
1707
|
-
# * +:
|
1708
|
-
#
|
1709
|
-
# * +:
|
1710
|
-
# * +:allocation_id+ - (String)
|
1711
|
-
# * +:association_id+ - (String)
|
1712
|
-
# * +:tag_set+ - (Array<Hash>)
|
1713
|
-
# * +:key+ - (String)
|
1714
|
-
# * +:value+ - (String)
|
1286
|
+
# * +:tag_set+ - (Array<>)
|
1287
|
+
# * +:private_ip_addresses_set+ - (Array<Hash>)
|
1288
|
+
# * +:primary+ - (Boolean)
|
1715
1289
|
define_client_method :describe_network_interfaces, 'DescribeNetworkInterfaces'
|
1716
1290
|
|
1717
1291
|
# Calls the DescribePlacementGroups API operation.
|
@@ -1728,10 +1302,7 @@ module AWS
|
|
1728
1302
|
# @return [Core::Response]
|
1729
1303
|
# The #data method of the response object returns
|
1730
1304
|
# a hash with the following structure:
|
1731
|
-
# * +:placement_group_set+ - (Array
|
1732
|
-
# * +:group_name+ - (String)
|
1733
|
-
# * +:strategy+ - (String)
|
1734
|
-
# * +:state+ - (String)
|
1305
|
+
# * +:placement_group_set+ - (Array<>)
|
1735
1306
|
define_client_method :describe_placement_groups, 'DescribePlacementGroups'
|
1736
1307
|
|
1737
1308
|
# Calls the DescribeRegions API operation.
|
@@ -1748,9 +1319,7 @@ module AWS
|
|
1748
1319
|
# @return [Core::Response]
|
1749
1320
|
# The #data method of the response object returns
|
1750
1321
|
# a hash with the following structure:
|
1751
|
-
# * +:region_info+ - (Array
|
1752
|
-
# * +:region_name+ - (String)
|
1753
|
-
# * +:region_endpoint+ - (String)
|
1322
|
+
# * +:region_info+ - (Array<>)
|
1754
1323
|
define_client_method :describe_regions, 'DescribeRegions'
|
1755
1324
|
|
1756
1325
|
# Calls the DescribeReservedInstances API operation.
|
@@ -1770,24 +1339,13 @@ module AWS
|
|
1770
1339
|
# The #data method of the response object returns
|
1771
1340
|
# a hash with the following structure:
|
1772
1341
|
# * +:reserved_instances_set+ - (Array<Hash>)
|
1773
|
-
# * +:reserved_instances_id+ - (String)
|
1774
|
-
# * +:instance_type+ - (String)
|
1775
|
-
# * +:availability_zone+ - (String)
|
1776
1342
|
# * +:start+ - (Time)
|
1777
1343
|
# * +:duration+ - (Integer)
|
1778
1344
|
# * +:usage_price+ - (Numeric)
|
1779
1345
|
# * +:fixed_price+ - (Numeric)
|
1780
1346
|
# * +:instance_count+ - (Integer)
|
1781
|
-
# * +:
|
1782
|
-
# * +:state+ - (String)
|
1783
|
-
# * +:tag_set+ - (Array<Hash>)
|
1784
|
-
# * +:key+ - (String)
|
1785
|
-
# * +:value+ - (String)
|
1786
|
-
# * +:instance_tenancy+ - (String)
|
1787
|
-
# * +:currency_code+ - (String)
|
1788
|
-
# * +:offering_type+ - (String)
|
1347
|
+
# * +:tag_set+ - (Array<>)
|
1789
1348
|
# * +:recurring_charges+ - (Array<Hash>)
|
1790
|
-
# * +:frequency+ - (String)
|
1791
1349
|
# * +:amount+ - (Numeric)
|
1792
1350
|
define_client_method :describe_reserved_instances, 'DescribeReservedInstances'
|
1793
1351
|
|
@@ -1818,18 +1376,10 @@ module AWS
|
|
1818
1376
|
# The #data method of the response object returns
|
1819
1377
|
# a hash with the following structure:
|
1820
1378
|
# * +:reserved_instances_offerings_set+ - (Array<Hash>)
|
1821
|
-
# * +:reserved_instances_offering_id+ - (String)
|
1822
|
-
# * +:instance_type+ - (String)
|
1823
|
-
# * +:availability_zone+ - (String)
|
1824
1379
|
# * +:duration+ - (Integer)
|
1825
1380
|
# * +:usage_price+ - (Numeric)
|
1826
1381
|
# * +:fixed_price+ - (Numeric)
|
1827
|
-
# * +:product_description+ - (String)
|
1828
|
-
# * +:instance_tenancy+ - (String)
|
1829
|
-
# * +:currency_code+ - (String)
|
1830
|
-
# * +:offering_type+ - (String)
|
1831
1382
|
# * +:recurring_charges+ - (Array<Hash>)
|
1832
|
-
# * +:frequency+ - (String)
|
1833
1383
|
# * +:amount+ - (Numeric)
|
1834
1384
|
define_client_method :describe_reserved_instances_offerings, 'DescribeReservedInstancesOfferings'
|
1835
1385
|
|
@@ -1848,23 +1398,10 @@ module AWS
|
|
1848
1398
|
# The #data method of the response object returns
|
1849
1399
|
# a hash with the following structure:
|
1850
1400
|
# * +:route_table_set+ - (Array<Hash>)
|
1851
|
-
# * +:
|
1852
|
-
# * +:vpc_id+ - (String)
|
1853
|
-
# * +:route_set+ - (Array<Hash>)
|
1854
|
-
# * +:destination_cidr_block+ - (String)
|
1855
|
-
# * +:gateway_id+ - (String)
|
1856
|
-
# * +:instance_id+ - (String)
|
1857
|
-
# * +:instance_owner_id+ - (String)
|
1858
|
-
# * +:network_interface_id+ - (String)
|
1859
|
-
# * +:state+ - (String)
|
1401
|
+
# * +:route_set+ - (Array<>)
|
1860
1402
|
# * +:association_set+ - (Array<Hash>)
|
1861
|
-
# * +:route_table_association_id+ - (String)
|
1862
|
-
# * +:route_table_id+ - (String)
|
1863
|
-
# * +:subnet_id+ - (String)
|
1864
1403
|
# * +:main+ - (Boolean)
|
1865
|
-
# * +:tag_set+ - (Array
|
1866
|
-
# * +:key+ - (String)
|
1867
|
-
# * +:value+ - (String)
|
1404
|
+
# * +:tag_set+ - (Array<>)
|
1868
1405
|
define_client_method :describe_route_tables, 'DescribeRouteTables'
|
1869
1406
|
|
1870
1407
|
# Calls the DescribeSecurityGroups API operation.
|
@@ -1884,34 +1421,18 @@ module AWS
|
|
1884
1421
|
# The #data method of the response object returns
|
1885
1422
|
# a hash with the following structure:
|
1886
1423
|
# * +:security_group_info+ - (Array<Hash>)
|
1887
|
-
# * +:owner_id+ - (String)
|
1888
|
-
# * +:group_name+ - (String)
|
1889
|
-
# * +:group_id+ - (String)
|
1890
|
-
# * +:group_description+ - (String)
|
1891
1424
|
# * +:ip_permissions+ - (Array<Hash>)
|
1892
|
-
# * +:ip_protocol+ - (String)
|
1893
1425
|
# * +:from_port+ - (Integer)
|
1894
1426
|
# * +:to_port+ - (Integer)
|
1895
|
-
# * +:groups+ - (Array
|
1896
|
-
#
|
1897
|
-
# * +:group_name+ - (String)
|
1898
|
-
# * +:group_id+ - (String)
|
1899
|
-
# * +:ip_ranges+ - (Array<Hash>)
|
1900
|
-
# * +:cidr_ip+ - (String)
|
1901
|
-
# * +:ip_permissions_egress+ - (Array<Hash>)
|
1427
|
+
# * +:groups+ - (Array<>)
|
1428
|
+
# * +:ip_ranges+ - (Array<>)
|
1902
1429
|
# * +:ip_protocol+ - (String)
|
1430
|
+
# * +:ip_permissions_egress+ - (Array<Hash>)
|
1903
1431
|
# * +:from_port+ - (Integer)
|
1904
1432
|
# * +:to_port+ - (Integer)
|
1905
|
-
# * +:groups+ - (Array
|
1906
|
-
#
|
1907
|
-
#
|
1908
|
-
# * +:group_id+ - (String)
|
1909
|
-
# * +:ip_ranges+ - (Array<Hash>)
|
1910
|
-
# * +:cidr_ip+ - (String)
|
1911
|
-
# * +:vpc_id+ - (String)
|
1912
|
-
# * +:tag_set+ - (Array<Hash>)
|
1913
|
-
# * +:key+ - (String)
|
1914
|
-
# * +:value+ - (String)
|
1433
|
+
# * +:groups+ - (Array<>)
|
1434
|
+
# * +:ip_ranges+ - (Array<>)
|
1435
|
+
# * +:tag_set+ - (Array<>)
|
1915
1436
|
define_client_method :describe_security_groups, 'DescribeSecurityGroups'
|
1916
1437
|
|
1917
1438
|
# Calls the DescribeSnapshotAttribute API operation.
|
@@ -1924,13 +1445,8 @@ module AWS
|
|
1924
1445
|
# @return [Core::Response]
|
1925
1446
|
# The #data method of the response object returns
|
1926
1447
|
# a hash with the following structure:
|
1927
|
-
# * +:
|
1928
|
-
# * +:
|
1929
|
-
# * +:user_id+ - (String)
|
1930
|
-
# * +:group+ - (String)
|
1931
|
-
# * +:product_codes+ - (Array<Hash>)
|
1932
|
-
# * +:product_code+ - (String)
|
1933
|
-
# * +:type+ - (String)
|
1448
|
+
# * +:create_volume_permission+ - (Array<>)
|
1449
|
+
# * +:product_codes+ - (Array<>)
|
1934
1450
|
define_client_method :describe_snapshot_attribute, 'DescribeSnapshotAttribute'
|
1935
1451
|
|
1936
1452
|
# Calls the DescribeSnapshots API operation.
|
@@ -1953,34 +1469,15 @@ module AWS
|
|
1953
1469
|
# The #data method of the response object returns
|
1954
1470
|
# a hash with the following structure:
|
1955
1471
|
# * +:snapshot_set+ - (Array<Hash>)
|
1956
|
-
# * +:snapshot_id+ - (String)
|
1957
|
-
# * +:volume_id+ - (String)
|
1958
|
-
# * +:status+ - (String)
|
1959
1472
|
# * +:start_time+ - (Time)
|
1960
|
-
# * +:progress+ - (String)
|
1961
|
-
# * +:owner_id+ - (String)
|
1962
|
-
# * +:description+ - (String)
|
1963
1473
|
# * +:volume_size+ - (Integer)
|
1964
|
-
# * +:
|
1965
|
-
# * +:tag_set+ - (Array<Hash>)
|
1966
|
-
# * +:key+ - (String)
|
1967
|
-
# * +:value+ - (String)
|
1474
|
+
# * +:tag_set+ - (Array<>)
|
1968
1475
|
define_client_method :describe_snapshots, 'DescribeSnapshots'
|
1969
1476
|
|
1970
1477
|
# Calls the DescribeSpotDatafeedSubscription API operation.
|
1971
1478
|
# @method describe_spot_datafeed_subscription(options = {})
|
1972
1479
|
# @param [Hash] options
|
1973
1480
|
# @return [Core::Response]
|
1974
|
-
# The #data method of the response object returns
|
1975
|
-
# a hash with the following structure:
|
1976
|
-
# * +:spot_datafeed_subscription+ - (Hash)
|
1977
|
-
# * +:owner_id+ - (String)
|
1978
|
-
# * +:bucket+ - (String)
|
1979
|
-
# * +:prefix+ - (String)
|
1980
|
-
# * +:state+ - (String)
|
1981
|
-
# * +:fault+ - (Hash)
|
1982
|
-
# * +:code+ - (String)
|
1983
|
-
# * +:message+ - (String)
|
1984
1481
|
define_client_method :describe_spot_datafeed_subscription, 'DescribeSpotDatafeedSubscription'
|
1985
1482
|
|
1986
1483
|
# Calls the DescribeSpotInstanceRequests API operation.
|
@@ -1999,59 +1496,26 @@ module AWS
|
|
1999
1496
|
# The #data method of the response object returns
|
2000
1497
|
# a hash with the following structure:
|
2001
1498
|
# * +:spot_instance_request_set+ - (Array<Hash>)
|
2002
|
-
# * +:spot_instance_request_id+ - (String)
|
2003
|
-
# * +:spot_price+ - (String)
|
2004
|
-
# * +:type+ - (String)
|
2005
|
-
# * +:state+ - (String)
|
2006
|
-
# * +:fault+ - (Hash)
|
2007
|
-
# * +:code+ - (String)
|
2008
|
-
# * +:message+ - (String)
|
2009
1499
|
# * +:valid_from+ - (Time)
|
2010
1500
|
# * +:valid_until+ - (Time)
|
2011
|
-
# * +:launch_group+ - (String)
|
2012
|
-
# * +:availability_zone_group+ - (String)
|
2013
1501
|
# * +:launch_specification+ - (Hash)
|
2014
|
-
# * +:
|
2015
|
-
# * +:key_name+ - (String)
|
2016
|
-
# * +:group_set+ - (Array<Hash>)
|
2017
|
-
# * +:group_name+ - (String)
|
2018
|
-
# * +:group_id+ - (String)
|
2019
|
-
# * +:user_data+ - (String)
|
2020
|
-
# * +:addressing_type+ - (String)
|
2021
|
-
# * +:instance_type+ - (String)
|
2022
|
-
# * +:placement+ - (Hash)
|
2023
|
-
# * +:availability_zone+ - (String)
|
2024
|
-
# * +:group_name+ - (String)
|
2025
|
-
# * +:kernel_id+ - (String)
|
2026
|
-
# * +:ramdisk_id+ - (String)
|
1502
|
+
# * +:group_set+ - (Array<>)
|
2027
1503
|
# * +:block_device_mapping+ - (Array<Hash>)
|
2028
|
-
# * +:virtual_name+ - (String)
|
2029
|
-
# * +:device_name+ - (String)
|
2030
1504
|
# * +:ebs+ - (Hash)
|
2031
|
-
# * +:snapshot_id+ - (String)
|
2032
1505
|
# * +:volume_size+ - (Integer)
|
2033
1506
|
# * +:delete_on_termination+ - (Boolean)
|
2034
|
-
#
|
1507
|
+
# * +:iops+ - (Integer)
|
2035
1508
|
# * +:monitoring_enabled+ - (Boolean)
|
2036
|
-
# * +:subnet_id+ - (String)
|
2037
1509
|
# * +:network_interface_set+ - (Array<Hash>)
|
2038
|
-
# * +:network_interface_id+ - (String)
|
2039
1510
|
# * +:device_index+ - (Integer)
|
2040
|
-
# * +:
|
2041
|
-
# * +:description+ - (String)
|
2042
|
-
# * +:private_ip_address+ - (String)
|
2043
|
-
# * +:security_group_id+ - (Array<String>)
|
1511
|
+
# * +:security_group_id+ - (Array<>)
|
2044
1512
|
# * +:delete_on_termination+ - (Boolean)
|
2045
|
-
#
|
2046
|
-
#
|
2047
|
-
# * +:
|
2048
|
-
#
|
1513
|
+
# * +:private_ip_addresses_set+ - (Array<Hash>)
|
1514
|
+
# * +:primary+ - (Boolean)
|
1515
|
+
# * +:secondary_private_ip_address_count+ - (Integer)
|
1516
|
+
# * +:ebs_optimized+ - (Boolean)
|
2049
1517
|
# * +:create_time+ - (Time)
|
2050
|
-
# * +:
|
2051
|
-
# * +:tag_set+ - (Array<Hash>)
|
2052
|
-
# * +:key+ - (String)
|
2053
|
-
# * +:value+ - (String)
|
2054
|
-
# * +:launched_availability_zone+ - (String)
|
1518
|
+
# * +:tag_set+ - (Array<>)
|
2055
1519
|
define_client_method :describe_spot_instance_requests, 'DescribeSpotInstanceRequests'
|
2056
1520
|
|
2057
1521
|
# Calls the DescribeSpotPriceHistory API operation.
|
@@ -2080,12 +1544,7 @@ module AWS
|
|
2080
1544
|
# The #data method of the response object returns
|
2081
1545
|
# a hash with the following structure:
|
2082
1546
|
# * +:spot_price_history_set+ - (Array<Hash>)
|
2083
|
-
# * +:instance_type+ - (String)
|
2084
|
-
# * +:product_description+ - (String)
|
2085
|
-
# * +:spot_price+ - (String)
|
2086
1547
|
# * +:timestamp+ - (Time)
|
2087
|
-
# * +:availability_zone+ - (String)
|
2088
|
-
# * +:next_token+ - (String)
|
2089
1548
|
define_client_method :describe_spot_price_history, 'DescribeSpotPriceHistory'
|
2090
1549
|
|
2091
1550
|
# Calls the DescribeSubnets API operation.
|
@@ -2102,15 +1561,8 @@ module AWS
|
|
2102
1561
|
# The #data method of the response object returns
|
2103
1562
|
# a hash with the following structure:
|
2104
1563
|
# * +:subnet_set+ - (Array<Hash>)
|
2105
|
-
# * +:subnet_id+ - (String)
|
2106
|
-
# * +:state+ - (String)
|
2107
|
-
# * +:vpc_id+ - (String)
|
2108
|
-
# * +:cidr_block+ - (String)
|
2109
1564
|
# * +:available_ip_address_count+ - (Integer)
|
2110
|
-
# * +:
|
2111
|
-
# * +:tag_set+ - (Array<Hash>)
|
2112
|
-
# * +:key+ - (String)
|
2113
|
-
# * +:value+ - (String)
|
1565
|
+
# * +:tag_set+ - (Array<>)
|
2114
1566
|
define_client_method :describe_subnets, 'DescribeSubnets'
|
2115
1567
|
|
2116
1568
|
# Calls the DescribeTags API operation.
|
@@ -2124,11 +1576,7 @@ module AWS
|
|
2124
1576
|
# @return [Core::Response]
|
2125
1577
|
# The #data method of the response object returns
|
2126
1578
|
# a hash with the following structure:
|
2127
|
-
# * +:tag_set+ - (Array
|
2128
|
-
# * +:resource_id+ - (String)
|
2129
|
-
# * +:resource_type+ - (String)
|
2130
|
-
# * +:key+ - (String)
|
2131
|
-
# * +:value+ - (String)
|
1579
|
+
# * +:tag_set+ - (Array<>)
|
2132
1580
|
define_client_method :describe_tags, 'DescribeTags'
|
2133
1581
|
|
2134
1582
|
# Calls the DescribeVolumeAttribute API operation.
|
@@ -2139,12 +1587,9 @@ module AWS
|
|
2139
1587
|
# @return [Core::Response]
|
2140
1588
|
# The #data method of the response object returns
|
2141
1589
|
# a hash with the following structure:
|
2142
|
-
# * +:volume_id+ - (String)
|
2143
1590
|
# * +:auto_enable_io+ - (Hash)
|
2144
1591
|
# * +:value+ - (Boolean)
|
2145
|
-
# * +:product_codes+ - (Array
|
2146
|
-
# * +:product_code+ - (String)
|
2147
|
-
# * +:type+ - (String)
|
1592
|
+
# * +:product_codes+ - (Array<>)
|
2148
1593
|
define_client_method :describe_volume_attribute, 'DescribeVolumeAttribute'
|
2149
1594
|
|
2150
1595
|
# Calls the DescribeVolumeStatus API operation.
|
@@ -2161,25 +1606,12 @@ module AWS
|
|
2161
1606
|
# The #data method of the response object returns
|
2162
1607
|
# a hash with the following structure:
|
2163
1608
|
# * +:volume_status_set+ - (Array<Hash>)
|
2164
|
-
# * +:volume_id+ - (String)
|
2165
|
-
# * +:availability_zone+ - (String)
|
2166
1609
|
# * +:volume_status+ - (Hash)
|
2167
|
-
# * +:
|
2168
|
-
# * +:details+ - (Array<Hash>)
|
2169
|
-
# * +:name+ - (String)
|
2170
|
-
# * +:status+ - (String)
|
1610
|
+
# * +:details+ - (Array<>)
|
2171
1611
|
# * +:events_set+ - (Array<Hash>)
|
2172
|
-
# * +:event_type+ - (String)
|
2173
|
-
# * +:description+ - (String)
|
2174
1612
|
# * +:not_before+ - (Time)
|
2175
1613
|
# * +:not_after+ - (Time)
|
2176
|
-
#
|
2177
|
-
# * +:actions_set+ - (Array<Hash>)
|
2178
|
-
# * +:code+ - (String)
|
2179
|
-
# * +:description+ - (String)
|
2180
|
-
# * +:event_type+ - (String)
|
2181
|
-
# * +:event_id+ - (String)
|
2182
|
-
# * +:next_token+ - (String)
|
1614
|
+
# * +:actions_set+ - (Array<>)
|
2183
1615
|
define_client_method :describe_volume_status, 'DescribeVolumeStatus'
|
2184
1616
|
|
2185
1617
|
# Calls the DescribeVolumes API operation.
|
@@ -2197,22 +1629,13 @@ module AWS
|
|
2197
1629
|
# The #data method of the response object returns
|
2198
1630
|
# a hash with the following structure:
|
2199
1631
|
# * +:volume_set+ - (Array<Hash>)
|
2200
|
-
# * +:volume_id+ - (String)
|
2201
1632
|
# * +:size+ - (Integer)
|
2202
|
-
# * +:snapshot_id+ - (String)
|
2203
|
-
# * +:availability_zone+ - (String)
|
2204
|
-
# * +:status+ - (String)
|
2205
1633
|
# * +:create_time+ - (Time)
|
2206
1634
|
# * +:attachment_set+ - (Array<Hash>)
|
2207
|
-
# * +:volume_id+ - (String)
|
2208
|
-
# * +:instance_id+ - (String)
|
2209
|
-
# * +:device+ - (String)
|
2210
|
-
# * +:status+ - (String)
|
2211
1635
|
# * +:attach_time+ - (Time)
|
2212
1636
|
# * +:delete_on_termination+ - (Boolean)
|
2213
|
-
# * +:tag_set+ - (Array
|
2214
|
-
#
|
2215
|
-
# * +:value+ - (String)
|
1637
|
+
# * +:tag_set+ - (Array<>)
|
1638
|
+
# * +:iops+ - (Integer)
|
2216
1639
|
define_client_method :describe_volumes, 'DescribeVolumes'
|
2217
1640
|
|
2218
1641
|
# Calls the DescribeVpcs API operation.
|
@@ -2230,14 +1653,7 @@ module AWS
|
|
2230
1653
|
# The #data method of the response object returns
|
2231
1654
|
# a hash with the following structure:
|
2232
1655
|
# * +:vpc_set+ - (Array<Hash>)
|
2233
|
-
# * +:
|
2234
|
-
# * +:state+ - (String)
|
2235
|
-
# * +:cidr_block+ - (String)
|
2236
|
-
# * +:dhcp_options_id+ - (String)
|
2237
|
-
# * +:tag_set+ - (Array<Hash>)
|
2238
|
-
# * +:key+ - (String)
|
2239
|
-
# * +:value+ - (String)
|
2240
|
-
# * +:instance_tenancy+ - (String)
|
1656
|
+
# * +:tag_set+ - (Array<>)
|
2241
1657
|
define_client_method :describe_vpcs, 'DescribeVpcs'
|
2242
1658
|
|
2243
1659
|
# Calls the DescribeVpnConnections API operation.
|
@@ -2256,21 +1672,11 @@ module AWS
|
|
2256
1672
|
# The #data method of the response object returns
|
2257
1673
|
# a hash with the following structure:
|
2258
1674
|
# * +:vpn_connection_set+ - (Array<Hash>)
|
2259
|
-
# * +:
|
2260
|
-
# * +:state+ - (String)
|
2261
|
-
# * +:customer_gateway_configuration+ - (String)
|
2262
|
-
# * +:vpn_type+ - (String)
|
2263
|
-
# * +:customer_gateway_id+ - (String)
|
2264
|
-
# * +:vpn_gateway_id+ - (String)
|
2265
|
-
# * +:tag_set+ - (Array<Hash>)
|
2266
|
-
# * +:key+ - (String)
|
2267
|
-
# * +:value+ - (String)
|
1675
|
+
# * +:tag_set+ - (Array<>)
|
2268
1676
|
# * +:vgw_telemetry+ - (Array<Hash>)
|
2269
|
-
# * +:outside_ip_address+ - (String)
|
2270
|
-
# * +:status+ - (String)
|
2271
1677
|
# * +:last_status_change+ - (Time)
|
2272
|
-
# * +:status_message+ - (String)
|
2273
1678
|
# * +:accepted_route_count+ - (Integer)
|
1679
|
+
# * +:vpn_type+ - (String)
|
2274
1680
|
define_client_method :describe_vpn_connections, 'DescribeVpnConnections'
|
2275
1681
|
|
2276
1682
|
# Calls the DescribeVpnGateways API operation.
|
@@ -2291,16 +1697,9 @@ module AWS
|
|
2291
1697
|
# The #data method of the response object returns
|
2292
1698
|
# a hash with the following structure:
|
2293
1699
|
# * +:vpn_gateway_set+ - (Array<Hash>)
|
2294
|
-
# * +:
|
2295
|
-
# * +:
|
1700
|
+
# * +:attachments+ - (Array<>)
|
1701
|
+
# * +:tag_set+ - (Array<>)
|
2296
1702
|
# * +:vpn_type+ - (String)
|
2297
|
-
# * +:availability_zone+ - (String)
|
2298
|
-
# * +:attachments+ - (Array<Hash>)
|
2299
|
-
# * +:vpc_id+ - (String)
|
2300
|
-
# * +:state+ - (String)
|
2301
|
-
# * +:tag_set+ - (Array<Hash>)
|
2302
|
-
# * +:key+ - (String)
|
2303
|
-
# * +:value+ - (String)
|
2304
1703
|
define_client_method :describe_vpn_gateways, 'DescribeVpnGateways'
|
2305
1704
|
|
2306
1705
|
# Calls the DetachInternetGateway API operation.
|
@@ -2340,10 +1739,6 @@ module AWS
|
|
2340
1739
|
# @return [Core::Response]
|
2341
1740
|
# The #data method of the response object returns
|
2342
1741
|
# a hash with the following structure:
|
2343
|
-
# * +:volume_id+ - (String)
|
2344
|
-
# * +:instance_id+ - (String)
|
2345
|
-
# * +:device+ - (String)
|
2346
|
-
# * +:status+ - (String)
|
2347
1742
|
# * +:attach_time+ - (Time)
|
2348
1743
|
# * +:delete_on_termination+ - (Boolean)
|
2349
1744
|
define_client_method :detach_volume, 'DetachVolume'
|
@@ -2392,9 +1787,7 @@ module AWS
|
|
2392
1787
|
# @return [Core::Response]
|
2393
1788
|
# The #data method of the response object returns
|
2394
1789
|
# a hash with the following structure:
|
2395
|
-
# * +:instance_id+ - (String)
|
2396
1790
|
# * +:timestamp+ - (Time)
|
2397
|
-
# * +:output+ - (String)
|
2398
1791
|
define_client_method :get_console_output, 'GetConsoleOutput'
|
2399
1792
|
|
2400
1793
|
# Calls the GetPasswordData API operation.
|
@@ -2405,9 +1798,7 @@ module AWS
|
|
2405
1798
|
# @return [Core::Response]
|
2406
1799
|
# The #data method of the response object returns
|
2407
1800
|
# a hash with the following structure:
|
2408
|
-
# * +:instance_id+ - (String)
|
2409
1801
|
# * +:timestamp+ - (Time)
|
2410
|
-
# * +:password_data+ - (String)
|
2411
1802
|
define_client_method :get_password_data, 'GetPasswordData'
|
2412
1803
|
|
2413
1804
|
# Calls the ImportInstance API operation.
|
@@ -2445,10 +1836,11 @@ module AWS
|
|
2445
1836
|
# gigabytes.
|
2446
1837
|
# * +:delete_on_termination+ - (Boolean) Specifies whether the
|
2447
1838
|
# Amazon EBS volume is deleted on instance termination.
|
1839
|
+
# * +:volume_type+ - (String)
|
1840
|
+
# * +:iops+ - (Integer)
|
2448
1841
|
# * +:no_device+ - (String) Specifies the device name to suppress
|
2449
1842
|
# during instance launch.
|
2450
|
-
# * +:monitoring+ - (
|
2451
|
-
# * +:enabled+ - (Boolean)
|
1843
|
+
# * +:monitoring+ - (Boolean)
|
2452
1844
|
# * +:subnet_id+ - (String)
|
2453
1845
|
# * +:disable_api_termination+ - (Boolean)
|
2454
1846
|
# * +:instance_initiated_shutdown_behavior+ - (String)
|
@@ -2466,43 +1858,20 @@ module AWS
|
|
2466
1858
|
# The #data method of the response object returns
|
2467
1859
|
# a hash with the following structure:
|
2468
1860
|
# * +:conversion_task+ - (Hash)
|
2469
|
-
# * +:conversion_task_id+ - (String)
|
2470
|
-
# * +:expiration_time+ - (String)
|
2471
1861
|
# * +:import_instance+ - (Hash)
|
2472
1862
|
# * +:volumes+ - (Array<Hash>)
|
2473
1863
|
# * +:bytes_converted+ - (Integer)
|
2474
|
-
# * +:availability_zone+ - (String)
|
2475
1864
|
# * +:image+ - (Hash)
|
2476
|
-
# * +:format+ - (String)
|
2477
1865
|
# * +:size+ - (Integer)
|
2478
|
-
# * +:import_manifest_url+ - (String)
|
2479
|
-
# * +:checksum+ - (String)
|
2480
1866
|
# * +:volume+ - (Hash)
|
2481
1867
|
# * +:size+ - (Integer)
|
2482
|
-
# * +:id+ - (String)
|
2483
|
-
# * +:status+ - (String)
|
2484
|
-
# * +:status_message+ - (String)
|
2485
|
-
# * +:description+ - (String)
|
2486
|
-
# * +:instance_id+ - (String)
|
2487
|
-
# * +:platform+ - (String)
|
2488
|
-
# * +:description+ - (String)
|
2489
1868
|
# * +:import_volume+ - (Hash)
|
2490
1869
|
# * +:bytes_converted+ - (Integer)
|
2491
|
-
# * +:availability_zone+ - (String)
|
2492
|
-
# * +:description+ - (String)
|
2493
1870
|
# * +:image+ - (Hash)
|
2494
|
-
# * +:format+ - (String)
|
2495
1871
|
# * +:size+ - (Integer)
|
2496
|
-
# * +:import_manifest_url+ - (String)
|
2497
|
-
# * +:checksum+ - (String)
|
2498
1872
|
# * +:volume+ - (Hash)
|
2499
1873
|
# * +:size+ - (Integer)
|
2500
|
-
#
|
2501
|
-
# * +:state+ - (String)
|
2502
|
-
# * +:status_message+ - (String)
|
2503
|
-
# * +:tag_set+ - (Array<Hash>)
|
2504
|
-
# * +:key+ - (String)
|
2505
|
-
# * +:value+ - (String)
|
1874
|
+
# * +:tag_set+ - (Array<>)
|
2506
1875
|
define_client_method :import_instance, 'ImportInstance'
|
2507
1876
|
|
2508
1877
|
# Calls the ImportKeyPair API operation.
|
@@ -2513,10 +1882,6 @@ module AWS
|
|
2513
1882
|
# * +:public_key_material+ - *required* - (String) The public key
|
2514
1883
|
# portion of the key pair being imported.
|
2515
1884
|
# @return [Core::Response]
|
2516
|
-
# The #data method of the response object returns
|
2517
|
-
# a hash with the following structure:
|
2518
|
-
# * +:key_name+ - (String)
|
2519
|
-
# * +:key_fingerprint+ - (String)
|
2520
1885
|
define_client_method :import_key_pair, 'ImportKeyPair'
|
2521
1886
|
|
2522
1887
|
# Calls the ImportVolume API operation.
|
@@ -2534,43 +1899,20 @@ module AWS
|
|
2534
1899
|
# The #data method of the response object returns
|
2535
1900
|
# a hash with the following structure:
|
2536
1901
|
# * +:conversion_task+ - (Hash)
|
2537
|
-
# * +:conversion_task_id+ - (String)
|
2538
|
-
# * +:expiration_time+ - (String)
|
2539
1902
|
# * +:import_instance+ - (Hash)
|
2540
1903
|
# * +:volumes+ - (Array<Hash>)
|
2541
1904
|
# * +:bytes_converted+ - (Integer)
|
2542
|
-
# * +:availability_zone+ - (String)
|
2543
1905
|
# * +:image+ - (Hash)
|
2544
|
-
# * +:format+ - (String)
|
2545
1906
|
# * +:size+ - (Integer)
|
2546
|
-
# * +:import_manifest_url+ - (String)
|
2547
|
-
# * +:checksum+ - (String)
|
2548
1907
|
# * +:volume+ - (Hash)
|
2549
1908
|
# * +:size+ - (Integer)
|
2550
|
-
# * +:id+ - (String)
|
2551
|
-
# * +:status+ - (String)
|
2552
|
-
# * +:status_message+ - (String)
|
2553
|
-
# * +:description+ - (String)
|
2554
|
-
# * +:instance_id+ - (String)
|
2555
|
-
# * +:platform+ - (String)
|
2556
|
-
# * +:description+ - (String)
|
2557
1909
|
# * +:import_volume+ - (Hash)
|
2558
1910
|
# * +:bytes_converted+ - (Integer)
|
2559
|
-
# * +:availability_zone+ - (String)
|
2560
|
-
# * +:description+ - (String)
|
2561
1911
|
# * +:image+ - (Hash)
|
2562
|
-
# * +:format+ - (String)
|
2563
1912
|
# * +:size+ - (Integer)
|
2564
|
-
# * +:import_manifest_url+ - (String)
|
2565
|
-
# * +:checksum+ - (String)
|
2566
1913
|
# * +:volume+ - (Hash)
|
2567
1914
|
# * +:size+ - (Integer)
|
2568
|
-
#
|
2569
|
-
# * +:state+ - (String)
|
2570
|
-
# * +:status_message+ - (String)
|
2571
|
-
# * +:tag_set+ - (Array<Hash>)
|
2572
|
-
# * +:key+ - (String)
|
2573
|
-
# * +:value+ - (String)
|
1915
|
+
# * +:tag_set+ - (Array<>)
|
2574
1916
|
define_client_method :import_volume, 'ImportVolume'
|
2575
1917
|
|
2576
1918
|
# Calls the ModifyImageAttribute API operation.
|
@@ -2656,6 +1998,8 @@ module AWS
|
|
2656
1998
|
# * +:instance_initiated_shutdown_behavior+ - (Hash)
|
2657
1999
|
# * +:value+ - (String) String value
|
2658
2000
|
# * +:groups+ - (Array<String>)
|
2001
|
+
# * +:ebs_optimized+ - (Hash)
|
2002
|
+
# * +:value+ - (Boolean) Boolean value
|
2659
2003
|
# @return [Core::Response]
|
2660
2004
|
define_client_method :modify_instance_attribute, 'ModifyInstanceAttribute'
|
2661
2005
|
|
@@ -2721,10 +2065,7 @@ module AWS
|
|
2721
2065
|
# @return [Core::Response]
|
2722
2066
|
# The #data method of the response object returns
|
2723
2067
|
# a hash with the following structure:
|
2724
|
-
# * +:instances_set+ - (Array
|
2725
|
-
# * +:instance_id+ - (String)
|
2726
|
-
# * +:monitoring+ - (Hash)
|
2727
|
-
# * +:state+ - (String)
|
2068
|
+
# * +:instances_set+ - (Array<>)
|
2728
2069
|
define_client_method :monitor_instances, 'MonitorInstances'
|
2729
2070
|
|
2730
2071
|
# Calls the PurchaseReservedInstancesOffering API operation.
|
@@ -2735,9 +2076,6 @@ module AWS
|
|
2735
2076
|
# * +:instance_count+ - *required* - (Integer) The number of Reserved
|
2736
2077
|
# Instances to purchase.
|
2737
2078
|
# @return [Core::Response]
|
2738
|
-
# The #data method of the response object returns
|
2739
|
-
# a hash with the following structure:
|
2740
|
-
# * +:reserved_instances_id+ - (String)
|
2741
2079
|
define_client_method :purchase_reserved_instances_offering, 'PurchaseReservedInstancesOffering'
|
2742
2080
|
|
2743
2081
|
# Calls the RebootInstances API operation.
|
@@ -2782,12 +2120,11 @@ module AWS
|
|
2782
2120
|
# gigabytes.
|
2783
2121
|
# * +:delete_on_termination+ - (Boolean) Specifies whether the
|
2784
2122
|
# Amazon EBS volume is deleted on instance termination.
|
2123
|
+
# * +:volume_type+ - (String)
|
2124
|
+
# * +:iops+ - (Integer)
|
2785
2125
|
# * +:no_device+ - (String) Specifies the device name to suppress
|
2786
2126
|
# during instance launch.
|
2787
2127
|
# @return [Core::Response]
|
2788
|
-
# The #data method of the response object returns
|
2789
|
-
# a hash with the following structure:
|
2790
|
-
# * +:image_id+ - (String)
|
2791
2128
|
define_client_method :register_image, 'RegisterImage'
|
2792
2129
|
|
2793
2130
|
# Calls the ReleaseAddress API operation.
|
@@ -2809,9 +2146,6 @@ module AWS
|
|
2809
2146
|
# * +:network_acl_id+ - *required* - (String) The ID of the new ACL to
|
2810
2147
|
# associate with the subnet.
|
2811
2148
|
# @return [Core::Response]
|
2812
|
-
# The #data method of the response object returns
|
2813
|
-
# a hash with the following structure:
|
2814
|
-
# * +:new_association_id+ - (String)
|
2815
2149
|
define_client_method :replace_network_acl_association, 'ReplaceNetworkAclAssociation'
|
2816
2150
|
|
2817
2151
|
# Calls the ReplaceNetworkAclEntry API operation.
|
@@ -2870,9 +2204,6 @@ module AWS
|
|
2870
2204
|
# * +:route_table_id+ - *required* - (String) The ID of the new route
|
2871
2205
|
# table to associate with the subnet.
|
2872
2206
|
# @return [Core::Response]
|
2873
|
-
# The #data method of the response object returns
|
2874
|
-
# a hash with the following structure:
|
2875
|
-
# * +:new_association_id+ - (String)
|
2876
2207
|
define_client_method :replace_route_table_association, 'ReplaceRouteTableAssociation'
|
2877
2208
|
|
2878
2209
|
# Calls the ReportInstanceStatus API operation.
|
@@ -2952,6 +2283,8 @@ module AWS
|
|
2952
2283
|
# gigabytes.
|
2953
2284
|
# * +:delete_on_termination+ - (Boolean) Specifies whether the
|
2954
2285
|
# Amazon EBS volume is deleted on instance termination.
|
2286
|
+
# * +:volume_type+ - (String)
|
2287
|
+
# * +:iops+ - (Integer)
|
2955
2288
|
# * +:no_device+ - (String) Specifies the device name to suppress
|
2956
2289
|
# during instance launch.
|
2957
2290
|
# * +:monitoring_enabled+ - (Boolean) Enables monitoring for the
|
@@ -2966,66 +2299,38 @@ module AWS
|
|
2966
2299
|
# * +:private_ip_address+ - (String)
|
2967
2300
|
# * +:groups+ - (Array<String>)
|
2968
2301
|
# * +:delete_on_termination+ - (Boolean)
|
2302
|
+
# * +:private_ip_addresses+ - (Array<Hash>)
|
2303
|
+
# * +:private_ip_address+ - *required* - (String)
|
2304
|
+
# * +:primary+ - (Boolean)
|
2305
|
+
# * +:secondary_private_ip_address_count+ - (Integer)
|
2969
2306
|
# * +:iam_instance_profile+ - (Hash)
|
2970
2307
|
# * +:arn+ - (String)
|
2971
2308
|
# * +:name+ - (String)
|
2309
|
+
# * +:ebs_optimized+ - (Boolean)
|
2972
2310
|
# @return [Core::Response]
|
2973
2311
|
# The #data method of the response object returns
|
2974
2312
|
# a hash with the following structure:
|
2975
2313
|
# * +:spot_instance_request_set+ - (Array<Hash>)
|
2976
|
-
# * +:spot_instance_request_id+ - (String)
|
2977
|
-
# * +:spot_price+ - (String)
|
2978
|
-
# * +:type+ - (String)
|
2979
|
-
# * +:state+ - (String)
|
2980
|
-
# * +:fault+ - (Hash)
|
2981
|
-
# * +:code+ - (String)
|
2982
|
-
# * +:message+ - (String)
|
2983
2314
|
# * +:valid_from+ - (Time)
|
2984
2315
|
# * +:valid_until+ - (Time)
|
2985
|
-
# * +:launch_group+ - (String)
|
2986
|
-
# * +:availability_zone_group+ - (String)
|
2987
2316
|
# * +:launch_specification+ - (Hash)
|
2988
|
-
# * +:
|
2989
|
-
# * +:key_name+ - (String)
|
2990
|
-
# * +:group_set+ - (Array<Hash>)
|
2991
|
-
# * +:group_name+ - (String)
|
2992
|
-
# * +:group_id+ - (String)
|
2993
|
-
# * +:user_data+ - (String)
|
2994
|
-
# * +:addressing_type+ - (String)
|
2995
|
-
# * +:instance_type+ - (String)
|
2996
|
-
# * +:placement+ - (Hash)
|
2997
|
-
# * +:availability_zone+ - (String)
|
2998
|
-
# * +:group_name+ - (String)
|
2999
|
-
# * +:kernel_id+ - (String)
|
3000
|
-
# * +:ramdisk_id+ - (String)
|
2317
|
+
# * +:group_set+ - (Array<>)
|
3001
2318
|
# * +:block_device_mapping+ - (Array<Hash>)
|
3002
|
-
# * +:virtual_name+ - (String)
|
3003
|
-
# * +:device_name+ - (String)
|
3004
2319
|
# * +:ebs+ - (Hash)
|
3005
|
-
# * +:snapshot_id+ - (String)
|
3006
2320
|
# * +:volume_size+ - (Integer)
|
3007
2321
|
# * +:delete_on_termination+ - (Boolean)
|
3008
|
-
#
|
2322
|
+
# * +:iops+ - (Integer)
|
3009
2323
|
# * +:monitoring_enabled+ - (Boolean)
|
3010
|
-
# * +:subnet_id+ - (String)
|
3011
2324
|
# * +:network_interface_set+ - (Array<Hash>)
|
3012
|
-
# * +:network_interface_id+ - (String)
|
3013
2325
|
# * +:device_index+ - (Integer)
|
3014
|
-
# * +:
|
3015
|
-
# * +:description+ - (String)
|
3016
|
-
# * +:private_ip_address+ - (String)
|
3017
|
-
# * +:security_group_id+ - (Array<String>)
|
2326
|
+
# * +:security_group_id+ - (Array<>)
|
3018
2327
|
# * +:delete_on_termination+ - (Boolean)
|
3019
|
-
#
|
3020
|
-
#
|
3021
|
-
# * +:
|
3022
|
-
#
|
2328
|
+
# * +:private_ip_addresses_set+ - (Array<Hash>)
|
2329
|
+
# * +:primary+ - (Boolean)
|
2330
|
+
# * +:secondary_private_ip_address_count+ - (Integer)
|
2331
|
+
# * +:ebs_optimized+ - (Boolean)
|
3023
2332
|
# * +:create_time+ - (Time)
|
3024
|
-
# * +:
|
3025
|
-
# * +:tag_set+ - (Array<Hash>)
|
3026
|
-
# * +:key+ - (String)
|
3027
|
-
# * +:value+ - (String)
|
3028
|
-
# * +:launched_availability_zone+ - (String)
|
2333
|
+
# * +:tag_set+ - (Array<>)
|
3029
2334
|
define_client_method :request_spot_instances, 'RequestSpotInstances'
|
3030
2335
|
|
3031
2336
|
# Calls the ResetImageAttribute API operation.
|
@@ -3205,6 +2510,8 @@ module AWS
|
|
3205
2510
|
# gigabytes.
|
3206
2511
|
# * +:delete_on_termination+ - (Boolean) Specifies whether the
|
3207
2512
|
# Amazon EBS volume is deleted on instance termination.
|
2513
|
+
# * +:volume_type+ - (String)
|
2514
|
+
# * +:iops+ - (Integer)
|
3208
2515
|
# * +:no_device+ - (String) Specifies the device name to suppress
|
3209
2516
|
# during instance launch.
|
3210
2517
|
# * +:monitoring+ - (Hash) Enables monitoring for the instance.
|
@@ -3239,99 +2546,39 @@ module AWS
|
|
3239
2546
|
# * +:private_ip_address+ - (String)
|
3240
2547
|
# * +:groups+ - (Array<String>)
|
3241
2548
|
# * +:delete_on_termination+ - (Boolean)
|
2549
|
+
# * +:private_ip_addresses+ - (Array<Hash>)
|
2550
|
+
# * +:private_ip_address+ - *required* - (String)
|
2551
|
+
# * +:primary+ - (Boolean)
|
2552
|
+
# * +:secondary_private_ip_address_count+ - (Integer)
|
3242
2553
|
# * +:iam_instance_profile+ - (Hash)
|
3243
2554
|
# * +:arn+ - (String)
|
3244
2555
|
# * +:name+ - (String)
|
2556
|
+
# * +:ebs_optimized+ - (Boolean)
|
3245
2557
|
# @return [Core::Response]
|
3246
2558
|
# The #data method of the response object returns
|
3247
2559
|
# a hash with the following structure:
|
3248
|
-
# * +:
|
3249
|
-
# * +:owner_id+ - (String)
|
3250
|
-
# * +:requester_id+ - (String)
|
3251
|
-
# * +:group_set+ - (Array<Hash>)
|
3252
|
-
# * +:group_name+ - (String)
|
3253
|
-
# * +:group_id+ - (String)
|
2560
|
+
# * +:group_set+ - (Array<>)
|
3254
2561
|
# * +:instances_set+ - (Array<Hash>)
|
3255
|
-
# * +:instance_id+ - (String)
|
3256
|
-
# * +:image_id+ - (String)
|
3257
2562
|
# * +:instance_state+ - (Hash)
|
3258
2563
|
# * +:code+ - (Integer)
|
3259
|
-
# * +:name+ - (String)
|
3260
|
-
# * +:private_dns_name+ - (String)
|
3261
|
-
# * +:dns_name+ - (String)
|
3262
|
-
# * +:reason+ - (String)
|
3263
|
-
# * +:key_name+ - (String)
|
3264
2564
|
# * +:ami_launch_index+ - (Integer)
|
3265
|
-
# * +:product_codes+ - (Array
|
3266
|
-
# * +:product_code+ - (String)
|
3267
|
-
# * +:type+ - (String)
|
3268
|
-
# * +:instance_type+ - (String)
|
2565
|
+
# * +:product_codes+ - (Array<>)
|
3269
2566
|
# * +:launch_time+ - (Time)
|
3270
|
-
# * +:placement+ - (Hash)
|
3271
|
-
# * +:availability_zone+ - (String)
|
3272
|
-
# * +:group_name+ - (String)
|
3273
|
-
# * +:tenancy+ - (String)
|
3274
|
-
# * +:kernel_id+ - (String)
|
3275
|
-
# * +:ramdisk_id+ - (String)
|
3276
|
-
# * +:platform+ - (String)
|
3277
|
-
# * +:monitoring+ - (Hash)
|
3278
|
-
# * +:state+ - (String)
|
3279
|
-
# * +:subnet_id+ - (String)
|
3280
|
-
# * +:vpc_id+ - (String)
|
3281
|
-
# * +:private_ip_address+ - (String)
|
3282
|
-
# * +:ip_address+ - (String)
|
3283
|
-
# * +:state_reason+ - (Hash)
|
3284
|
-
# * +:code+ - (String)
|
3285
|
-
# * +:message+ - (String)
|
3286
|
-
# * +:architecture+ - (String)
|
3287
|
-
# * +:root_device_type+ - (String)
|
3288
|
-
# * +:root_device_name+ - (String)
|
3289
2567
|
# * +:block_device_mapping+ - (Array<Hash>)
|
3290
|
-
# * +:device_name+ - (String)
|
3291
2568
|
# * +:ebs+ - (Hash)
|
3292
|
-
# * +:volume_id+ - (String)
|
3293
|
-
# * +:status+ - (String)
|
3294
2569
|
# * +:attach_time+ - (Time)
|
3295
2570
|
# * +:delete_on_termination+ - (Boolean)
|
3296
|
-
# * +:
|
3297
|
-
# * +:
|
3298
|
-
# * +:spot_instance_request_id+ - (String)
|
3299
|
-
# * +:license+ - (Hash)
|
3300
|
-
# * +:pool+ - (String)
|
3301
|
-
# * +:client_token+ - (String)
|
3302
|
-
# * +:tag_set+ - (Array<Hash>)
|
3303
|
-
# * +:key+ - (String)
|
3304
|
-
# * +:value+ - (String)
|
3305
|
-
# * +:group_set+ - (Array<Hash>)
|
3306
|
-
# * +:group_name+ - (String)
|
3307
|
-
# * +:group_id+ - (String)
|
2571
|
+
# * +:tag_set+ - (Array<>)
|
2572
|
+
# * +:group_set+ - (Array<>)
|
3308
2573
|
# * +:source_dest_check+ - (Boolean)
|
3309
|
-
# * +:hypervisor+ - (String)
|
3310
2574
|
# * +:network_interface_set+ - (Array<Hash>)
|
3311
|
-
# * +:network_interface_id+ - (String)
|
3312
|
-
# * +:subnet_id+ - (String)
|
3313
|
-
# * +:vpc_id+ - (String)
|
3314
|
-
# * +:description+ - (String)
|
3315
|
-
# * +:owner_id+ - (String)
|
3316
|
-
# * +:status+ - (String)
|
3317
|
-
# * +:private_ip_address+ - (String)
|
3318
|
-
# * +:private_dns_name+ - (String)
|
3319
2575
|
# * +:source_dest_check+ - (Boolean)
|
3320
|
-
# * +:group_set+ - (Array
|
3321
|
-
# * +:group_name+ - (String)
|
3322
|
-
# * +:group_id+ - (String)
|
2576
|
+
# * +:group_set+ - (Array<>)
|
3323
2577
|
# * +:attachment+ - (Hash)
|
3324
|
-
# * +:attachment_id+ - (String)
|
3325
2578
|
# * +:device_index+ - (Integer)
|
3326
|
-
# * +:status+ - (String)
|
3327
2579
|
# * +:attach_time+ - (Time)
|
3328
2580
|
# * +:delete_on_termination+ - (Boolean)
|
3329
|
-
#
|
3330
|
-
# * +:public_ip+ - (String)
|
3331
|
-
# * +:ip_owner_id+ - (String)
|
3332
|
-
# * +:iam_instance_profile+ - (Hash)
|
3333
|
-
# * +:arn+ - (String)
|
3334
|
-
# * +:id+ - (String)
|
2581
|
+
# * +:ebs_optimized+ - (Boolean)
|
3335
2582
|
define_client_method :run_instances, 'RunInstances'
|
3336
2583
|
|
3337
2584
|
# Calls the StartInstances API operation.
|
@@ -3339,17 +2586,15 @@ module AWS
|
|
3339
2586
|
# @param [Hash] options
|
3340
2587
|
# * +:instance_ids+ - *required* - (Array<String>) The list of Amazon
|
3341
2588
|
# EC2 instances to start.
|
2589
|
+
# * +:additional_info+ - (String)
|
3342
2590
|
# @return [Core::Response]
|
3343
2591
|
# The #data method of the response object returns
|
3344
2592
|
# a hash with the following structure:
|
3345
2593
|
# * +:instances_set+ - (Array<Hash>)
|
3346
|
-
# * +:instance_id+ - (String)
|
3347
2594
|
# * +:current_state+ - (Hash)
|
3348
2595
|
# * +:code+ - (Integer)
|
3349
|
-
# * +:name+ - (String)
|
3350
2596
|
# * +:previous_state+ - (Hash)
|
3351
2597
|
# * +:code+ - (Integer)
|
3352
|
-
# * +:name+ - (String)
|
3353
2598
|
define_client_method :start_instances, 'StartInstances'
|
3354
2599
|
|
3355
2600
|
# Calls the StopInstances API operation.
|
@@ -3366,13 +2611,10 @@ module AWS
|
|
3366
2611
|
# The #data method of the response object returns
|
3367
2612
|
# a hash with the following structure:
|
3368
2613
|
# * +:instances_set+ - (Array<Hash>)
|
3369
|
-
# * +:instance_id+ - (String)
|
3370
2614
|
# * +:current_state+ - (Hash)
|
3371
2615
|
# * +:code+ - (Integer)
|
3372
|
-
# * +:name+ - (String)
|
3373
2616
|
# * +:previous_state+ - (Hash)
|
3374
2617
|
# * +:code+ - (Integer)
|
3375
|
-
# * +:name+ - (String)
|
3376
2618
|
define_client_method :stop_instances, 'StopInstances'
|
3377
2619
|
|
3378
2620
|
# Calls the TerminateInstances API operation.
|
@@ -3384,15 +2626,20 @@ module AWS
|
|
3384
2626
|
# The #data method of the response object returns
|
3385
2627
|
# a hash with the following structure:
|
3386
2628
|
# * +:instances_set+ - (Array<Hash>)
|
3387
|
-
# * +:instance_id+ - (String)
|
3388
2629
|
# * +:current_state+ - (Hash)
|
3389
2630
|
# * +:code+ - (Integer)
|
3390
|
-
# * +:name+ - (String)
|
3391
2631
|
# * +:previous_state+ - (Hash)
|
3392
2632
|
# * +:code+ - (Integer)
|
3393
|
-
# * +:name+ - (String)
|
3394
2633
|
define_client_method :terminate_instances, 'TerminateInstances'
|
3395
2634
|
|
2635
|
+
# Calls the UnassignPrivateIpAddresses API operation.
|
2636
|
+
# @method unassign_private_ip_addresses(options = {})
|
2637
|
+
# @param [Hash] options
|
2638
|
+
# * +:network_interface_id+ - *required* - (String)
|
2639
|
+
# * +:private_ip_addresses+ - *required* - (Array<String>)
|
2640
|
+
# @return [Core::Response]
|
2641
|
+
define_client_method :unassign_private_ip_addresses, 'UnassignPrivateIpAddresses'
|
2642
|
+
|
3396
2643
|
# Calls the UnmonitorInstances API operation.
|
3397
2644
|
# @method unmonitor_instances(options = {})
|
3398
2645
|
# @param [Hash] options
|
@@ -3401,10 +2648,7 @@ module AWS
|
|
3401
2648
|
# @return [Core::Response]
|
3402
2649
|
# The #data method of the response object returns
|
3403
2650
|
# a hash with the following structure:
|
3404
|
-
# * +:instances_set+ - (Array
|
3405
|
-
# * +:instance_id+ - (String)
|
3406
|
-
# * +:monitoring+ - (Hash)
|
3407
|
-
# * +:state+ - (String)
|
2651
|
+
# * +:instances_set+ - (Array<>)
|
3408
2652
|
define_client_method :unmonitor_instances, 'UnmonitorInstances'
|
3409
2653
|
|
3410
2654
|
## end client methods ##
|