Sha256: 1fece1594a2aaefb2cd63d8ebb1c63a1db1c720a2d514ce0ebfdb7cabf48f1a7

Contents?: true

Size: 1.16 KB

Versions: 17

Compression:

Stored size: 1.16 KB

Contents

require 'fog/openstack/models/model'

module Fog
  module Network
    class OpenStack
      class Subnet < Fog::OpenStack::Model
        identity :id

        attribute :name
        attribute :network_id
        attribute :cidr
        attribute :ip_version
        attribute :gateway_ip
        attribute :allocation_pools
        attribute :dns_nameservers
        attribute :host_routes
        attribute :enable_dhcp
        attribute :tenant_id

        def create
          requires :network_id, :cidr, :ip_version
          merge_attributes(service.create_subnet(self.network_id,
                                                    self.cidr,
                                                    self.ip_version,
                                                    self.attributes).body['subnet'])
          self
        end

        def update
          requires :id
          merge_attributes(service.update_subnet(self.id,
                                                    self.attributes).body['subnet'])
          self
        end

        def destroy
          requires :id
          service.delete_subnet(self.id)
          true
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
fog-openstack-0.1.10 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.9 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.8 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.7 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.6 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.5 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.4 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.3 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.2 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.1 lib/fog/openstack/models/network/subnet.rb
fog-openstack-0.1.0 lib/fog/openstack/models/network/subnet.rb
fog-1.37.0 lib/fog/openstack/models/network/subnet.rb
fog-1.36.0 lib/fog/openstack/models/network/subnet.rb
fog-1.35.0 lib/fog/openstack/models/network/subnet.rb
fog-2.0.0.pre.0 lib/fog/openstack/models/network/subnet.rb
fog-1.34.0 lib/fog/openstack/models/network/subnet.rb
fog-1.33.0 lib/fog/openstack/models/network/subnet.rb