Sha256: c87ba58b2b16f0ad3f95804f7243a85c939d7fd69b1cd26857c3c387554b0ba8

Contents?: true

Size: 1.58 KB

Versions: 11

Compression:

Stored size: 1.58 KB

Contents

require 'fog/core/model'

module Fog
  module Compute
    class AWS
      class Subnet < Fog::Model
        identity  :subnet_id,                   :aliases => 'subnetId'
        attribute :state
        attribute :vpc_id,                      :aliases => 'vpcId'
        attribute :cidr_block,                  :aliases => 'cidrBlock'
        attribute :available_ip_address_count,  :aliases => 'availableIpAddressCount'
        attribute :availability_zone,           :aliases => 'availabilityZone'
        attribute :tag_set,                     :aliases => 'tagSet'

        def ready?
          requires :state
          state == 'available'
        end

        # Removes an existing subnet
        #
        # subnet.destroy
        #
        # ==== Returns
        #
        # True or false depending on the result
        #

        def destroy
          requires :subnet_id

          service.delete_subnet(subnet_id)
          true
        end

        # Create a subnet
        #
        #  >> g = AWS.subnets.new(:vpc_id => "vpc-someId", :cidr_block => "10.0.0.0/24")
        #  >> g.save
        #
        # == Returns:
        #
        # requestId and a subnet object
        #

        def save
          requires :vpc_id, :cidr_block
          options = {}
          options['AvailabilityZone'] = availability_zone if availability_zone
          data = service.create_subnet(vpc_id, cidr_block, options).body['subnet']
          new_attributes = data.reject {|key,value| key == 'requestId'}
          merge_attributes(new_attributes)
          true

          true
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 3 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.11 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.10 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.9 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.8 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.7 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.6 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.4 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.3 lib/fog/aws/models/compute/subnet.rb
ns-fog-1.22.2 lib/fog/aws/models/compute/subnet.rb
fog-1.22.1 lib/fog/aws/models/compute/subnet.rb