Sha256: 1eee4e11c1cc301a80c75619d1f920be206571cd57060ff43d71f982e625a684

Contents?: true

Size: 1.46 KB

Versions: 71

Compression:

Stored size: 1.46 KB

Contents

require 'fog/core/model'

module Fog
  module Network
    class OpenStack
      class Subnet < Fog::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 initialize(attributes)
          # Old 'connection' is renamed as service and should be used instead
          prepare_service_value(attributes)
          super
        end

        def save
          requires :network_id, :cidr, :ip_version
          identity ? update : create
        end

        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, :network_id, :cidr, :ip_version
          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

71 entries across 71 versions & 7 rubygems

Version Path
fog-1.22.0 lib/fog/openstack/models/network/subnet.rb
fog-1.21.0 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/openstack/models/network/subnet.rb
cifrado-0.2.1 vendor/fog/lib/fog/openstack/models/network/subnet.rb
cifrado-0.2.0 vendor/fog/lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.19.0.20140212012611 lib/fog/openstack/models/network/subnet.rb
fog-1.20.0 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.19.0.20140110004459 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.19.0.20140110003812 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.19.0.20140109202555 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.19.0.20140107192102 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.19.0.20140107142106 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.19.0.20131219203941 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.18.0.20131219193542 lib/fog/openstack/models/network/subnet.rb
fog-1.19.0 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.18.0.20131219033443 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.18.0.20131219032002 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.18.0.20131219030716 lib/fog/openstack/models/network/subnet.rb
fog-maestrodev-1.18.0.20131219022322 lib/fog/openstack/models/network/subnet.rb