Class: AWS::EC2::Base
- Defined in:
- lib/AWS/EC2.rb,
lib/AWS/EC2/images.rb,
lib/AWS/EC2/console.rb,
lib/AWS/EC2/volumes.rb,
lib/AWS/EC2/keypairs.rb,
lib/AWS/EC2/products.rb,
lib/AWS/EC2/instances.rb,
lib/AWS/EC2/snapshots.rb,
lib/AWS/EC2/elastic_ips.rb,
lib/AWS/EC2/security_groups.rb,
lib/AWS/EC2/image_attributes.rb,
lib/AWS/EC2/availability_zones.rb
Instance Attribute Summary
Attributes inherited from Base
#port, #proxy_server, #server, #use_ssl
Instance Method Summary collapse
-
#allocate_address ⇒ Object
The AllocateAddress operation acquires an elastic IP address for use with your account.
- #api_version ⇒ Object
-
#associate_address(options = {}) ⇒ Object
The AssociateAddress operation associates an elastic IP address with an instance.
-
#attach_volume(options = {}) ⇒ Object
The AttachVolume operation attaches an Amazon EBS volume to an instance.
-
#authorize_security_group_ingress(options = {}) ⇒ Object
The AuthorizeSecurityGroupIngress operation adds permissions to a security group.
-
#confirm_product_instance(options = {}) ⇒ Object
The ConfirmProductInstance operation returns true if the given product code is attached to the instance with the given instance id.
-
#create_keypair(options = {}) ⇒ Object
The CreateKeyPair operation creates a new 2048 bit RSA keypair and returns a unique ID that can be used to reference this keypair when launching new instances.
-
#create_security_group(options = {}) ⇒ Object
The CreateSecurityGroup operation creates a new security group.
-
#create_snapshot(options = {}) ⇒ Object
The CreateSnapshot operation creates a snapshot of an Amazon EBS volume and stores it in Amazon S3.
-
#create_volume(options = {}) ⇒ Object
The CreateVolume operation creates a new Amazon EBS volume that you can mount from any Amazon EC2 instance.
- #default_host ⇒ Object
-
#delete_keypair(options = {}) ⇒ Object
The DeleteKeyPair operation deletes a keypair.
-
#delete_security_group(options = {}) ⇒ Object
The DeleteSecurityGroup operation deletes a security group.
-
#delete_snapshot(options = {}) ⇒ Object
The DeleteSnapshot operation deletes a snapshot of an Amazon EBS volume that is stored in Amazon S3.
-
#delete_volume(options = {}) ⇒ Object
The DeleteVolume operation deletes an Amazon EBS volume.
-
#deregister_image(options = {}) ⇒ Object
The DeregisterImage operation deregisters an AMI.
-
#describe_addresses(options = {}) ⇒ Object
The DescribeAddresses operation lists elastic IP addresses assigned to your account.
-
#describe_availability_zones(options = {}) ⇒ Object
The DescribeAvailabilityZones operation describes availability zones that are currently available to the account and their states.
-
#describe_image_attribute(options = {}) ⇒ Object
The DescribeImageAttribute operation returns information about an attribute of an AMI.
-
#describe_images(options = {}) ⇒ Object
The DescribeImages operation returns information about AMIs available for use by the user.
-
#describe_instances(options = {}) ⇒ Object
The DescribeInstances operation returns information about instances owned by the user making the request.
-
#describe_keypairs(options = {}) ⇒ Object
The DescribeKeyPairs operation returns information about keypairs available for use by the user making the request.
-
#describe_security_groups(options = {}) ⇒ Object
The DescribeSecurityGroups operation returns information about security groups owned by the user making the request.
-
#describe_snapshots(options = {}) ⇒ Object
The DescribeSnapshots operation describes the status of Amazon EBS snapshots.
-
#describe_volumes(options = {}) ⇒ Object
The DescribeVolumes operation lists one or more Amazon EBS volumes that you own, If you do not specify any volumes, Amazon EBS returns all volumes that you own.
-
#detach_volume(options = {}) ⇒ Object
The DetachVolume operation detaches an Amazon EBS volume from an instance.
-
#disassociate_address(options = {}) ⇒ Object
The DisassociateAddress operation disassociates the specified elastic IP address from the instance to which it is assigned.
-
#extract_user_data(options = {}) ⇒ Object
If :user_data is passed in then URL escape and Base64 encode it as needed.
-
#get_console_output(options = {}) ⇒ Object
The GetConsoleOutput operation retrieves console output that has been posted for the specified instance.
-
#modify_image_attribute(options = {}) ⇒ Object
The ModifyImageAttribute operation modifies an attribute of an AMI.
-
#monitor_instances(options = {}) ⇒ Object
The MonitorInstances operation tells Cloudwatch to begin logging metrics from one or more EC2 instances.
-
#reboot_instances(options = {}) ⇒ Object
The RebootInstances operation requests a reboot of one or more instances.
-
#register_image(options = {}) ⇒ Object
The RegisterImage operation registers an AMI with Amazon EC2.
-
#release_address(options = {}) ⇒ Object
The ReleaseAddress operation releases an elastic IP address associated with your account.
-
#reset_image_attribute(options = {}) ⇒ Object
The ResetImageAttribute operation resets an attribute of an AMI to its default value.
-
#revoke_security_group_ingress(options = {}) ⇒ Object
The RevokeSecurityGroupIngress operation revokes existing permissions that were previously granted to a security group.
-
#run_instances(options = {}) ⇒ Object
The RunInstances operation launches a specified number of instances.
-
#terminate_instances(options = {}) ⇒ Object
The TerminateInstances operation shuts down one or more instances.
-
#unmonitor_instances(options = {}) ⇒ Object
The UnmonitorInstances operation tells Cloudwatch to stop logging metrics from one or more EC2 instances.
Methods inherited from Base
Constructor Details
This class inherits a constructor from AWS::Base
Instance Method Details
#allocate_address ⇒ Object
The AllocateAddress operation acquires an elastic IP address for use with your account.
7 8 9 |
# File 'lib/AWS/EC2/elastic_ips.rb', line 7 def allocate_address return response_generator(:action => "AllocateAddress") end |
#api_version ⇒ Object
22 23 24 |
# File 'lib/AWS/EC2.rb', line 22 def api_version API_VERSION end |
#associate_address(options = {}) ⇒ Object
The AssociateAddress operation associates an elastic IP address with an instance.
If the IP address is currently assigned to another instance, the IP address is assigned to the new instance. This is an idempotent operation. If you enter it more than once, Amazon EC2 does not return an error.
52 53 54 55 56 57 58 59 60 61 |
# File 'lib/AWS/EC2/elastic_ips.rb', line 52 def associate_address( = {} ) = { :instance_id => '', :public_ip => '' }.merge() raise ArgumentError, "No ':instance_id' provided" if [:instance_id].nil? || [:instance_id].empty? raise ArgumentError, "No ':public_ip' provided" if [:public_ip].nil? || [:public_ip].empty? params = { "InstanceId" => [:instance_id], "PublicIp" => [:public_ip] } return response_generator(:action => "AssociateAddress", :params => params) end |
#attach_volume(options = {}) ⇒ Object
The AttachVolume operation attaches an Amazon EBS volume to an instance.
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/AWS/EC2/volumes.rb', line 65 def attach_volume( = {} ) = { :volume_id => '' }.merge() = { :instance_id => '' }.merge() = { :device => '' }.merge() raise ArgumentError, "No :volume_id provided" if [:volume_id].nil? || [:volume_id].empty? raise ArgumentError, "No :instance_id provided" if [:instance_id].nil? || [:instance_id].empty? raise ArgumentError, "No :device provided" if [:device].nil? || [:device].empty? params = { "VolumeId" => [:volume_id], "InstanceId" => [:instance_id], "Device" => [:device] } return response_generator(:action => "AttachVolume", :params => params) end |
#authorize_security_group_ingress(options = {}) ⇒ Object
The AuthorizeSecurityGroupIngress operation adds permissions to a security group.
Permissions are specified in terms of the IP protocol (TCP, UDP or ICMP), the source of the request (by IP range or an Amazon EC2 user-group pair), source and destination port ranges (for TCP and UDP), and ICMP codes and types (for ICMP). When authorizing ICMP, -1 may be used as a wildcard in the type and code fields.
Permission changes are propagated to instances within the security group being modified as quickly as possible. However, a small delay is likely, depending on the number of instances that are members of the indicated group.
When authorizing a user/group pair permission, GroupName, SourceSecurityGroupName and SourceSecurityGroupOwnerId must be specified. When authorizing a CIDR IP permission, GroupName, IpProtocol, FromPort, ToPort and CidrIp must be specified. Mixing these two types of parameters is not allowed.
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/AWS/EC2/security_groups.rb', line 98 def ( = {} ) # defaults = { :group_name => nil, :ip_protocol => nil, :from_port => nil, :to_port => nil, :cidr_ip => nil, :source_security_group_name => nil, :source_security_group_owner_id => nil }.merge() # lets not validate the rest of the possible permutations of required params and instead let # EC2 sort it out on the server side. We'll only require :group_name as that is always needed. raise ArgumentError, "No :group_name provided" if [:group_name].nil? || [:group_name].empty? params = { "GroupName" => [:group_name], "IpProtocol" => [:ip_protocol], "FromPort" => [:from_port].to_s, "ToPort" => [:to_port].to_s, "CidrIp" => [:cidr_ip], "SourceSecurityGroupName" => [:source_security_group_name], "SourceSecurityGroupOwnerId" => [:source_security_group_owner_id] } return response_generator(:action => "AuthorizeSecurityGroupIngress", :params => params) end |
#confirm_product_instance(options = {}) ⇒ Object
The ConfirmProductInstance operation returns true if the given product code is attached to the instance with the given instance id. False is returned if the product code is not attached to the instance.
11 12 13 14 15 16 17 |
# File 'lib/AWS/EC2/products.rb', line 11 def confirm_product_instance( ={} ) = {:product_code => "", :instance_id => ""}.merge() raise ArgumentError, "No product code provided" if [:product_code].nil? || [:product_code].empty? raise ArgumentError, "No instance ID provided" if [:instance_id].nil? || [:instance_id].empty? params = { "ProductCode" => [:product_code], "InstanceId" => [:instance_id] } return response_generator(:action => "ConfirmProductInstance", :params => params) end |
#create_keypair(options = {}) ⇒ Object
The CreateKeyPair operation creates a new 2048 bit RSA keypair and returns a unique ID that can be used to reference this keypair when launching new instances.
12 13 14 15 16 17 18 19 20 21 22 |
# File 'lib/AWS/EC2/keypairs.rb', line 12 def create_keypair( = {} ) = { :key_name => "" }.merge() raise ArgumentError, "No :key_name provided" if [:key_name].nil? || [:key_name].empty? params = { "KeyName" => [:key_name] } return response_generator(:action => "CreateKeyPair", :params => params) end |
#create_security_group(options = {}) ⇒ Object
The CreateSecurityGroup operation creates a new security group. Every instance is launched in a security group. If none is specified as part of the launch request then instances are launched in the default security group. Instances within the same security group have unrestricted network access to one another. Instances will reject network access attempts from other instances in a different security group. As the owner of instances you may grant or revoke specific permissions using the AuthorizeSecurityGroupIngress and RevokeSecurityGroupIngress operations.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/AWS/EC2/security_groups.rb', line 15 def create_security_group( = {} ) = {:group_name => "", :group_description => "" }.merge() raise ArgumentError, "No :group_name provided" if [:group_name].nil? || [:group_name].empty? raise ArgumentError, "No :group_description provided" if [:group_description].nil? || [:group_description].empty? params = { "GroupName" => [:group_name], "GroupDescription" => [:group_description] } return response_generator(:action => "CreateSecurityGroup", :params => params) end |
#create_snapshot(options = {}) ⇒ Object
The CreateSnapshot operation creates a snapshot of an Amazon EBS volume and stores it in Amazon S3. You can use snapshots for backups, to launch instances from identical snapshots, and to save data before shutting down an instance.
24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/AWS/EC2/snapshots.rb', line 24 def create_snapshot( = {} ) = { :volume_id => '' }.merge() raise ArgumentError, "No :volume_id provided" if [:volume_id].nil? || [:volume_id].empty? params = { "VolumeId" => [:volume_id] } return response_generator(:action => "CreateSnapshot", :params => params) end |
#create_volume(options = {}) ⇒ Object
The CreateVolume operation creates a new Amazon EBS volume that you can mount from any Amazon EC2 instance.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/AWS/EC2/volumes.rb', line 21 def create_volume( = {} ) # defaults = { :availability_zone => '' }.merge() raise ArgumentError, "No :availability_zone provided" if [:availability_zone].nil? || [:availability_zone].empty? = { :size => '' }.merge() = { :snapshot_id => '' }.merge() params = { "AvailabilityZone" => [:availability_zone], "Size" => [:size], "SnapshotId" => [:snapshot_id] } return response_generator(:action => "CreateVolume", :params => params) end |
#default_host ⇒ Object
26 27 28 |
# File 'lib/AWS/EC2.rb', line 26 def default_host DEFAULT_HOST end |
#delete_keypair(options = {}) ⇒ Object
The DeleteKeyPair operation deletes a keypair.
46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/AWS/EC2/keypairs.rb', line 46 def delete_keypair( = {} ) = { :key_name => "" }.merge() raise ArgumentError, "No :key_name provided" if [:key_name].nil? || [:key_name].empty? params = { "KeyName" => [:key_name] } return response_generator(:action => "DeleteKeyPair", :params => params) end |
#delete_security_group(options = {}) ⇒ Object
The DeleteSecurityGroup operation deletes a security group.
If an attempt is made to delete a security group and any instances exist that are members of that group a fault is returned.
61 62 63 64 65 66 67 68 69 70 71 |
# File 'lib/AWS/EC2/security_groups.rb', line 61 def delete_security_group( = {} ) = { :group_name => "" }.merge() raise ArgumentError, "No :group_name provided" if [:group_name].nil? || [:group_name].empty? params = { "GroupName" => [:group_name] } return response_generator(:action => "DeleteSecurityGroup", :params => params) end |
#delete_snapshot(options = {}) ⇒ Object
The DeleteSnapshot operation deletes a snapshot of an Amazon EBS volume that is stored in Amazon S3.
43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/AWS/EC2/snapshots.rb', line 43 def delete_snapshot( = {} ) = { :snapshot_id => '' }.merge() raise ArgumentError, "No :snapshot_id provided" if [:snapshot_id].nil? || [:snapshot_id].empty? params = { "SnapshotId" => [:snapshot_id] } return response_generator(:action => "DeleteSnapshot", :params => params) end |
#delete_volume(options = {}) ⇒ Object
The DeleteVolume operation deletes an Amazon EBS volume.
45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/AWS/EC2/volumes.rb', line 45 def delete_volume( = {} ) = { :volume_id => '' }.merge() raise ArgumentError, "No :volume_id provided" if [:volume_id].nil? || [:volume_id].empty? params = { "VolumeId" => [:volume_id] } return response_generator(:action => "DeleteVolume", :params => params) end |
#deregister_image(options = {}) ⇒ Object
The DeregisterImage operation deregisters an AMI. Once deregistered, instances of the AMI may no longer be launched.
86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/AWS/EC2/images.rb', line 86 def deregister_image( = {} ) = { :image_id => "" }.merge() raise ArgumentError, "No :image_id provided" if [:image_id].nil? || [:image_id].empty? params = { "ImageId" => [:image_id] } return response_generator(:action => "DeregisterImage", :params => params) end |
#describe_addresses(options = {}) ⇒ Object
The DescribeAddresses operation lists elastic IP addresses assigned to your account.
15 16 17 18 19 |
# File 'lib/AWS/EC2/elastic_ips.rb', line 15 def describe_addresses( = {} ) = { :public_ip => [] }.merge() params = pathlist("PublicIp", [:public_ip]) return response_generator(:action => "DescribeAddresses", :params => params) end |
#describe_availability_zones(options = {}) ⇒ Object
The DescribeAvailabilityZones operation describes availability zones that are currently available to the account and their states.
An optional list of zone names can be passed.
12 13 14 15 16 |
# File 'lib/AWS/EC2/availability_zones.rb', line 12 def describe_availability_zones( = {} ) = { :zone_name => [] }.merge() params = pathlist("ZoneName", [:zone_name] ) return response_generator(:action => "DescribeAvailabilityZones", :params => params) end |
#describe_image_attribute(options = {}) ⇒ Object
The DescribeImageAttribute operation returns information about an attribute of an AMI.
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/AWS/EC2/image_attributes.rb', line 77 def describe_image_attribute( = {} ) # defaults = {:image_id => "", :attribute => "launchPermission" }.merge() raise ArgumentError, "No ':image_id' provided" if [:image_id].nil? || [:image_id].empty? raise ArgumentError, "No ':attribute' provided" if [:attribute].nil? || [:attribute].empty? params = { "ImageId" => [:image_id], "Attribute" => [:attribute] } # test options provided and make sure they are valid case [:attribute] when "launchPermission", "productCodes" # these args are ok else raise ArgumentError, "attribute : #{[:attribute].to_s} is not an known attribute." end return response_generator(:action => "DescribeImageAttribute", :params => params) end |
#describe_images(options = {}) ⇒ Object
The DescribeImages operation returns information about AMIs available for use by the user. This includes both public AMIs (those available for any user to launch) and private AMIs (those owned by the user making the request and those owned by other users that the user making the request has explicit launch permissions for).
The list of AMIs returned can be modified via optional lists of AMI IDs, owners or users with launch permissions. If all three optional lists are empty all AMIs the user has launch permissions for are returned. Launch permissions fall into three categories:
Launch Permission Description
public - The all group has launch permissions for the AMI. All users have launch permissions for these AMIs. explicit - The owner of the AMIs has granted a specific user launch permissions for the AMI. implicit - A user has implicit launch permissions for all AMIs he or she owns.
If one or more of the lists are specified the result set is the intersection of AMIs matching the criteria of the individual lists.
Providing the list of AMI IDs requests information for those AMIs only. If no AMI IDs are provided, information of all relevant AMIs will be returned. If an AMI is specified that does not exist a fault is returned. If an AMI is specified that exists but the user making the request does not have launch permissions for, then that AMI will not be included in the returned results.
Providing the list of owners requests information for AMIs owned by the specified owners only. Only AMIs the user has launch permissions for are returned. The items of the list may be account ids for AMIs owned by users with those account ids, amazon for AMIs owned by Amazon or self for AMIs owned by the user making the request.
The executable list may be provided to request information for AMIs that only the specified users have launch permissions for. The items of the list may be account ids for AMIs owned by the user making the request that the users with the specified account ids have explicit launch permissions for, self for AMIs the user making the request has explicit launch permissions for or all for public AMIs.
Deregistered images will be included in the returned results for an unspecified interval subsequent to deregistration.
69 70 71 72 73 74 75 76 77 78 79 |
# File 'lib/AWS/EC2/images.rb', line 69 def describe_images( = {} ) = { :image_id => [], :owner_id => [], :executable_by => [] }.merge() params = pathlist( "ImageId", [:image_id] ) params.merge!(pathlist( "Owner", [:owner_id] )) params.merge!(pathlist( "ExecutableBy", [:executable_by] )) return response_generator(:action => "DescribeImages", :params => params) end |
#describe_instances(options = {}) ⇒ Object
The DescribeInstances operation returns information about instances owned by the user making the request.
An optional list of instance IDs may be provided to request information for those instances only. If no instance IDs are provided, information of all relevant instances information will be returned. If an instance is specified that does not exist a fault is returned. If an instance is specified that exists but is not owned by the user making the request, then that instance will not be included in the returned results.
Recently terminated instances will be included in the returned results for a small interval subsequent to their termination. This interval is typically of the order of one hour
124 125 126 127 128 129 130 131 132 |
# File 'lib/AWS/EC2/instances.rb', line 124 def describe_instances( = {} ) = { :instance_id => [] }.merge() params = pathlist("InstanceId", [:instance_id]) return response_generator(:action => "DescribeInstances", :params => params) end |
#describe_keypairs(options = {}) ⇒ Object
The DescribeKeyPairs operation returns information about keypairs available for use by the user making the request. Selected keypairs may be specified or the list may be left empty if information for all registered keypairs is required.
31 32 33 34 35 36 37 38 39 |
# File 'lib/AWS/EC2/keypairs.rb', line 31 def describe_keypairs( = {} ) = { :key_name => [] }.merge() params = pathlist("KeyName", [:key_name] ) return response_generator(:action => "DescribeKeyPairs", :params => params) end |
#describe_security_groups(options = {}) ⇒ Object
The DescribeSecurityGroups operation returns information about security groups owned by the user making the request.
An optional list of security group names may be provided to request information for those security groups only. If no security group names are provided, information of all security groups will be returned. If a group is specified that does not exist an exception is returned.
43 44 45 46 47 48 49 50 51 |
# File 'lib/AWS/EC2/security_groups.rb', line 43 def describe_security_groups( = {} ) = { :group_name => [] }.merge() params = pathlist("GroupName", [:group_name] ) return response_generator(:action => "DescribeSecurityGroups", :params => params) end |
#describe_snapshots(options = {}) ⇒ Object
The DescribeSnapshots operation describes the status of Amazon EBS snapshots.
10 11 12 13 14 15 16 17 18 |
# File 'lib/AWS/EC2/snapshots.rb', line 10 def describe_snapshots( = {} ) = { :snapshot_id => [] }.merge() params = pathlist("SnapshotId", [:snapshot_id] ) return response_generator(:action => "DescribeSnapshots", :params => params) end |
#describe_volumes(options = {}) ⇒ Object
The DescribeVolumes operation lists one or more Amazon EBS volumes that you own, If you do not specify any volumes, Amazon EBS returns all volumes that you own.
9 10 11 12 13 |
# File 'lib/AWS/EC2/volumes.rb', line 9 def describe_volumes( = {} ) = { :volume_id => [] }.merge() params = pathlist("VolumeId", [:volume_id] ) return response_generator(:action => "DescribeVolumes", :params => params) end |
#detach_volume(options = {}) ⇒ Object
The DetachVolume operation detaches an Amazon EBS volume from an instance.
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
# File 'lib/AWS/EC2/volumes.rb', line 92 def detach_volume( = {} ) = { :volume_id => '' }.merge() raise ArgumentError, "No :volume_id provided" if [:volume_id].nil? || [:volume_id].empty? = { :instance_id => '' }.merge() = { :device => '' }.merge() = { :force => '' }.merge() params = { "VolumeId" => [:volume_id], "InstanceId" => [:instance_id], "Device" => [:device], "Force" => [:force] } return response_generator(:action => "DetachVolume", :params => params) end |
#disassociate_address(options = {}) ⇒ Object
The DisassociateAddress operation disassociates the specified elastic IP address from the instance to which it is assigned. This is an idempotent operation. If you enter it more than once, Amazon EC2 does not return an error.
70 71 72 73 74 75 |
# File 'lib/AWS/EC2/elastic_ips.rb', line 70 def disassociate_address( = {} ) = { :public_ip => '' }.merge() raise ArgumentError, "No ':public_ip' provided" if [:public_ip].nil? || [:public_ip].empty? params = { "PublicIp" => [:public_ip] } return response_generator(:action => "DisassociateAddress", :params => params) end |
#extract_user_data(options = {}) ⇒ Object
If :user_data is passed in then URL escape and Base64 encode it as needed. Need for URL Escape + Base64 encoding is determined by :base64_encoded param.
99 100 101 102 103 104 105 106 107 108 |
# File 'lib/AWS/EC2/instances.rb', line 99 def extract_user_data( = {} ) return unless [:user_data] if [:user_data] if [:base64_encoded] Base64.encode64([:user_data]).gsub(/\n/,"").strip() else [:user_data] end end end |
#get_console_output(options = {}) ⇒ Object
The GetConsoleOutput operation retrieves console output that has been posted for the specified instance.
Instance console output is buffered and posted shortly after instance boot, reboot and once the instance is terminated. Only the most recent 64 KB of posted output is available. Console output is available for at least 1 hour after the most recent post.
13 14 15 16 17 18 |
# File 'lib/AWS/EC2/console.rb', line 13 def get_console_output( = {} ) = {:instance_id => ""}.merge() raise ArgumentError, "No instance ID provided" if [:instance_id].nil? || [:instance_id].empty? params = { "InstanceId" => [:instance_id] } return response_generator(:action => "GetConsoleOutput", :params => params) end |
#modify_image_attribute(options = {}) ⇒ Object
The ModifyImageAttribute operation modifies an attribute of an AMI. The following attributes may currently be modified:
‘launchPermission’ : Controls who has permission to launch the AMI. Launch permissions can be granted to specific users by adding userIds. The AMI can be made public by adding the ‘all’ group.
‘productCodes’ : Associates product codes with AMIs. This allows a developer to charge a user extra for using the AMIs. productCodes is a write once attribute - once it has been set it can not be changed or removed. Currently only one product code is supported per AMI.
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 |
# File 'lib/AWS/EC2/image_attributes.rb', line 22 def modify_image_attribute( = {} ) # defaults = { :image_id => "", :attribute => "launchPermission", :operation_type => "", :user_id => [], :group => [], :product_code => [] }.merge() raise ArgumentError, "No ':image_id' provided" if [:image_id].nil? || [:image_id].empty? raise ArgumentError, "No ':attribute' provided" if [:attribute].nil? || [:attribute].empty? # OperationType is not required if modifying a product code. unless [:attribute] == 'productCodes' raise ArgumentError, "No ':operation_type' provided" if [:operation_type].nil? || [:operation_type].empty? end params = { "ImageId" => [:image_id], "Attribute" => [:attribute], "OperationType" => [:operation_type] } # test options provided and make sure they are valid case [:attribute] when "launchPermission" unless [:operation_type] == "add" || [:operation_type] == "remove" raise ArgumentError, ":operation_type was #{[:operation_type].to_s} but must be either 'add' or 'remove'" end if ([:user_id].nil? || [:user_id].empty?) && ([:group].nil? || [:group].empty?) raise ArgumentError, "Option :attribute=>'launchPermission' requires ':user_id' or ':group' options to also be specified" end params.merge!(pathlist("UserId", [:user_id])) unless [:user_id].nil? params.merge!(pathlist("Group", [:group])) unless [:group].nil? when "productCodes" if ([:product_code].nil? || [:product_code].empty?) raise ArgumentError, "Option :attribute=>'productCodes' requires ':product_code' to be specified" end params.merge!(pathlist("ProductCode", [:product_code])) unless [:product_code].nil? else raise ArgumentError, "attribute : #{[:attribute].to_s} is not an known attribute." end return response_generator(:action => "ModifyImageAttribute", :params => params) end |
#monitor_instances(options = {}) ⇒ Object
The MonitorInstances operation tells Cloudwatch to begin logging metrics from one or more EC2 instances
179 180 181 182 183 184 185 186 187 188 189 |
# File 'lib/AWS/EC2/instances.rb', line 179 def monitor_instances( = {} ) = { :instance_id => [] }.merge() raise ArgumentError, "No :instance_id provided" if [:instance_id].nil? || [:instance_id].empty? params = pathlist("InstanceId", [:instance_id]) return response_generator(:action => "MonitorInstances", :params => params) end |
#reboot_instances(options = {}) ⇒ Object
The RebootInstances operation requests a reboot of one or more instances. This operation is asynchronous; it only queues a request to reboot the specified instance(s). The operation will succeed provided the instances are valid and belong to the user. Terminated instances will be ignored.
141 142 143 144 145 146 147 148 149 150 151 152 |
# File 'lib/AWS/EC2/instances.rb', line 141 def reboot_instances( = {} ) # defaults = { :instance_id => [] }.merge() raise ArgumentError, "No instance IDs provided" if [:instance_id].nil? || [:instance_id].empty? params = pathlist("InstanceId", [:instance_id]) return response_generator(:action => "RebootInstances", :params => params) end |
#register_image(options = {}) ⇒ Object
The RegisterImage operation registers an AMI with Amazon EC2. Images must be registered before they can be launched. Each AMI is associated with an unique ID which is provided by the EC2 service via the Registerimage operation. As part of the registration process, Amazon EC2 will retrieve the specified image manifest from Amazon S3 and verify that the image is owned by the user requesting image registration. The image manifest is retrieved once and stored within the Amazon EC2 network. Any modifications to an image in Amazon S3 invalidate this registration. If you do have to make changes and upload a new image deregister the previous image and register the new image.
17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/AWS/EC2/images.rb', line 17 def register_image( = {} ) = {:image_location => ""}.merge() raise ArgumentError, "No :image_location provided" if [:image_location].nil? || [:image_location].empty? params = { "ImageLocation" => [:image_location] } return response_generator(:action => "RegisterImage", :params => params) end |
#release_address(options = {}) ⇒ Object
The ReleaseAddress operation releases an elastic IP address associated with your account.
If you run this operation on an elastic IP address that is already released, the address might be assigned to another account which will cause Amazon EC2 to return an error.
Note : Releasing an IP address automatically disassociates it from any instance with which it is associated. For more information, see DisassociateAddress.
Important! After releasing an elastic IP address, it is released to the IP address pool and might no longer be available to your account. Make sure to update your DNS records and any servers or devices that communicate with the address.
36 37 38 39 40 41 |
# File 'lib/AWS/EC2/elastic_ips.rb', line 36 def release_address( = {} ) = { :public_ip => '' }.merge() raise ArgumentError, "No ':public_ip' provided" if [:public_ip].nil? || [:public_ip].empty? params = { "PublicIp" => [:public_ip] } return response_generator(:action => "ReleaseAddress", :params => params) end |
#reset_image_attribute(options = {}) ⇒ Object
The ResetImageAttribute operation resets an attribute of an AMI to its default value.
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
# File 'lib/AWS/EC2/image_attributes.rb', line 107 def reset_image_attribute( = {} ) # defaults = {:image_id => "", :attribute => "launchPermission"}.merge() raise ArgumentError, "No ':image_id' provided" if [:image_id].nil? || [:image_id].empty? raise ArgumentError, "No ':attribute' provided" if [:attribute].nil? || [:attribute].empty? params = {"ImageId" => [:image_id], "Attribute" => [:attribute] } # test options provided and make sure they are valid case [:attribute] when "launchPermission" # these args are ok else raise ArgumentError, "attribute : #{[:attribute].to_s} is not an known attribute." end return response_generator(:action => "ResetImageAttribute", :params => params) end |
#revoke_security_group_ingress(options = {}) ⇒ Object
The RevokeSecurityGroupIngress operation revokes existing permissions that were previously granted to a security group. The permissions to revoke must be specified using the same values originally used to grant the permission.
Permissions are specified in terms of the IP protocol (TCP, UDP or ICMP), the source of the request (by IP range or an Amazon EC2 user-group pair), source and destination port ranges (for TCP and UDP), and ICMP codes and types (for ICMP). When authorizing ICMP, -1 may be used as a wildcard in the type and code fields.
Permission changes are propagated to instances within the security group being modified as quickly as possible. However, a small delay is likely, depending on the number of instances that are members of the indicated group.
When revoking a user/group pair permission, GroupName, SourceSecurityGroupName and SourceSecurityGroupOwnerId must be specified. When authorizing a CIDR IP permission, GroupName, IpProtocol, FromPort, ToPort and CidrIp must be specified. Mixing these two types of parameters is not allowed.
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
# File 'lib/AWS/EC2/security_groups.rb', line 153 def revoke_security_group_ingress( = {} ) # defaults = { :group_name => nil, :ip_protocol => nil, :from_port => nil, :to_port => nil, :cidr_ip => nil, :source_security_group_name => nil, :source_security_group_owner_id => nil }.merge() # lets not validate the rest of the possible permutations of required params and instead let # EC2 sort it out on the server side. We'll only require :group_name as that is always needed. raise ArgumentError, "No :group_name provided" if [:group_name].nil? || [:group_name].empty? params = { "GroupName" => [:group_name], "IpProtocol" => [:ip_protocol], "FromPort" => [:from_port].to_s, "ToPort" => [:to_port].to_s, "CidrIp" => [:cidr_ip], "SourceSecurityGroupName" => [:source_security_group_name], "SourceSecurityGroupOwnerId" => [:source_security_group_owner_id] } return response_generator(:action => "RevokeSecurityGroupIngress", :params => params) end |
#run_instances(options = {}) ⇒ Object
The RunInstances operation launches a specified number of instances.
Note : The Query version of RunInstances only allows instances of a single AMI to be launched in one call. This is different from the SOAP API call of the same name but similar to the ec2-run-instances command line tool.
If Amazon EC2 cannot launch the minimum number AMIs you request, no instances launch. If there is insufficient capacity to launch the maximum number of AMIs you request, Amazon EC2 launches as many as possible to satisfy the requested maximum values.
Every instance is launched in a security group. If you do not specify a security group at launch, the instances start in the default security group.
An optional instance type can be specified. Currently supported types are ‘m1.small’, ‘m1.large’, ‘m1.xlarge’ and the high CPU types ‘c1.medium’ and ‘c1.xlarge’. ‘m1.small’ is the default if no instance_type is specified.
You can provide an optional key pair ID for each image in the launch request. All instances that are created from images that use this key pair will have access to the associated public key at boot. You can use this key to provide secure access to an instance of an image on a per-instance basis. Amazon EC2 public images use this feature to provide secure access without passwords.
Important! Launching public images without a key pair ID will leave them inaccessible.
The public key material is made available to the instance at boot time by placing it in a file named openssh_id.pub on a logical device that is exposed to the instance as /dev/sda2 (the ephemeral store). The format of this file is suitable for use as an entry within ~/.ssh/authorized_keys (the OpenSSH format). This can be done at boot time (as part of rclocal, for example) allowing for secure password-less access.
Optional user data can be provided in the launch request. All instances comprising the launch request have access to this data (see Instance Metadata for details).
If any of the AMIs have product codes attached for which the user has not subscribed, the RunInstances call will fail.
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/AWS/EC2/instances.rb', line 55 def run_instances( = {} ) = { :image_id => "", :min_count => 1, :max_count => 1, :key_name => nil, :group_id => [], :user_data => nil, :addressing_type => "public", :instance_type => "m1.small", :kernel_id => nil, :availability_zone => nil, :base64_encoded => false }.merge() # Do some validation on the arguments provided raise ArgumentError, ":image_id must be provided" if [:image_id].nil? || [:image_id].empty? raise ArgumentError, ":min_count is not valid" unless [:min_count].to_i > 0 raise ArgumentError, ":max_count is not valid" unless [:max_count].to_i > 0 raise ArgumentError, ":addressing_type must be 'direct' or 'public'" unless [:addressing_type] == "public" || [:addressing_type] == "direct" raise ArgumentError, ":instance_type must be 'm1.small', 'm1.large', 'm1.xlarge', 'c1.medium', or 'c1.xlarge'" unless [:instance_type] == "m1.small" || [:instance_type] == "m1.large" || [:instance_type] == "m1.xlarge" || [:instance_type] == "c1.medium" || [:instance_type] == "c1.xlarge" raise ArgumentError, ":base64_encoded must be 'true' or 'false'" unless [:base64_encoded] == true || [:base64_encoded] == false user_data = extract_user_data() params = { "ImageId" => [:image_id], "MinCount" => [:min_count].to_s, "MaxCount" => [:max_count].to_s, }.merge(pathlist("SecurityGroup", [:group_id])) params["KeyName"] = [:key_name] unless [:key_name].nil? params["UserData"] = user_data unless user_data.nil? params["AddressingType"] = [:addressing_type] params["InstanceType"] = [:instance_type] params["KernelId"] = [:kernel_id] unless [:kernel_id].nil? params["Placement.AvailabilityZone"] = [:availability_zone] unless [:availability_zone].nil? return response_generator(:action => "RunInstances", :params => params) end |
#terminate_instances(options = {}) ⇒ Object
The TerminateInstances operation shuts down one or more instances. This operation is idempotent and terminating an instance that is in the process of shutting down (or already terminated) will succeed. Terminated instances remain visible for a short period of time (approximately one hour) after termination, after which their instance ID is invalidated.
162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/AWS/EC2/instances.rb', line 162 def terminate_instances( = {} ) = { :instance_id => [] }.merge() raise ArgumentError, "No :instance_id provided" if [:instance_id].nil? || [:instance_id].empty? params = pathlist("InstanceId", [:instance_id]) return response_generator(:action => "TerminateInstances", :params => params) end |
#unmonitor_instances(options = {}) ⇒ Object
The UnmonitorInstances operation tells Cloudwatch to stop logging metrics from one or more EC2 instances
197 198 199 200 201 202 203 204 205 206 207 |
# File 'lib/AWS/EC2/instances.rb', line 197 def unmonitor_instances( = {} ) = { :instance_id => [] }.merge() raise ArgumentError, "No :instance_id provided" if [:instance_id].nil? || [:instance_id].empty? params = pathlist("InstanceId", [:instance_id]) return response_generator(:action => "UnmonitorInstances", :params => params) end |