Class: Awscli::EC2::Dhcp
- Inherits:
-
Object
- Object
- Awscli::EC2::Dhcp
- Defined in:
- lib/awscli/ec2.rb
Overview
> InternetGateways
Instance Method Summary collapse
- #associate(dhcp_id, vpc_id) ⇒ Object
- #create(options) ⇒ Object
- #delete(dhcp_id) ⇒ Object
-
#initialize(connection) ⇒ Dhcp
constructor
A new instance of Dhcp.
- #list ⇒ Object
Constructor Details
#initialize(connection) ⇒ Dhcp
Returns a new instance of Dhcp.
927 928 929 |
# File 'lib/awscli/ec2.rb', line 927 def initialize(connection) @conn = connection end |
Instance Method Details
#associate(dhcp_id, vpc_id) ⇒ Object
944 945 946 |
# File 'lib/awscli/ec2.rb', line 944 def associate(dhcp_id, vpc_id) @conn..attach(dhcp_id, vpc_id) end |
#create(options) ⇒ Object
935 936 937 |
# File 'lib/awscli/ec2.rb', line 935 def create() @conn..create() end |
#delete(dhcp_id) ⇒ Object
939 940 941 942 |
# File 'lib/awscli/ec2.rb', line 939 def delete(dhcp_id) dhcp = @conn.(dhcp_id) dhcp.destroy end |
#list ⇒ Object
931 932 933 |
# File 'lib/awscli/ec2.rb', line 931 def list @conn..table end |