Class: Fog::Compute::AWS::Subnet

Inherits:
Model
  • Object
show all
Defined in:
lib/rackspace-fog/aws/models/compute/subnet.rb

Instance Attribute Summary

Attributes inherited from Model

#collection, #connection

Instance Method Summary collapse

Methods inherited from Model

#initialize, #inspect, #reload, #symbolize_keys, #to_json, #wait_for

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Model

Instance Method Details

#destroyObject

Removes an existing subnet

subnet.destroy

Returns

True or false depending on the result



27
28
29
30
31
32
# File 'lib/rackspace-fog/aws/models/compute/subnet.rb', line 27

def destroy
  requires :subnet_id

  connection.delete_subnet(subnet_id)
  true
end

#saveObject

Create a subnet

>> g = AWS.subnets.new(:vpc_id => "vpc-someId", :cidr_block => "10.0.0.0/24")
>> g.save

Returns:

requestId and a subnetSet object



44
45
46
47
48
49
50
51
52
# File 'lib/rackspace-fog/aws/models/compute/subnet.rb', line 44

def save
  requires :vpc_id, :cidr_block
  data = connection.create_subnet(vpc_id, cidr_block).body['subnetSet'].first
  new_attributes = data.reject {|key,value| key == 'requestId'}
  merge_attributes(new_attributes)
  true

  true
end