Sha256: 48c0891af320c918120a5d732001dc06564034d2e20291814b1575aaf66f0096

Contents?: true

Size: 1.46 KB

Versions: 23

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

23 entries across 23 versions & 4 rubygems

Version Path
vagrant-cloudstack-1.2.0 vendor/bundle/gems/fog-1.32.0/lib/fog/openstack/models/network/subnet.rb
fog-1.32.0 lib/fog/openstack/models/network/subnet.rb
fog-1.31.0 lib/fog/openstack/models/network/subnet.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/openstack/models/network/subnet.rb
fog-1.30.0 lib/fog/openstack/models/network/subnet.rb
fog-1.29.0 lib/fog/openstack/models/network/subnet.rb
fog-1.28.0 lib/fog/openstack/models/network/subnet.rb
fog-1.27.0 lib/fog/openstack/models/network/subnet.rb
fog-1.26.0 lib/fog/openstack/models/network/subnet.rb
fog-1.25.0 lib/fog/openstack/models/network/subnet.rb
nsidc-fog-1.24.1 lib/fog/openstack/models/network/subnet.rb
fog-1.24.0 lib/fog/openstack/models/network/subnet.rb
ns-fog-1.22.11 lib/fog/openstack/models/network/subnet.rb
ns-fog-1.22.10 lib/fog/openstack/models/network/subnet.rb
ns-fog-1.22.9 lib/fog/openstack/models/network/subnet.rb
ns-fog-1.22.8 lib/fog/openstack/models/network/subnet.rb
ns-fog-1.22.7 lib/fog/openstack/models/network/subnet.rb
ns-fog-1.22.6 lib/fog/openstack/models/network/subnet.rb
fog-1.23.0 lib/fog/openstack/models/network/subnet.rb
ns-fog-1.22.4 lib/fog/openstack/models/network/subnet.rb