Sha256: 997dde6b133ade8a3131469cfadd0dcbf1c7aae9887c7406ce30c99ad3278d49

Contents?: true

Size: 710 Bytes

Versions: 16

Compression:

Stored size: 710 Bytes

Contents

require 'fog/core/collection'
require 'fog/openstack/models/network/subnet'

module Fog
  module Network
    class OpenStack
      class Subnets < Fog::Collection
        attribute :filters

        model Fog::Network::OpenStack::Subnet

        def initialize(attributes)
          self.filters ||= {}
          super
        end

        def all(filters = filters)
          self.filters = filters
          load(service.list_subnets(filters).body['subnets'])
        end

        def get(subnet_id)
          if subnet = service.get_subnet(subnet_id).body['subnet']
            new(subnet)
          end
        rescue Fog::Network::OpenStack::NotFound
          nil
        end
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 4 rubygems

Version Path
vagrant-cloudstack-1.1.0 vendor/bundle/gems/fog-1.22.1/lib/fog/openstack/models/network/subnets.rb
fog-1.26.0 lib/fog/openstack/models/network/subnets.rb
fog-1.25.0 lib/fog/openstack/models/network/subnets.rb
nsidc-fog-1.24.1 lib/fog/openstack/models/network/subnets.rb
fog-1.24.0 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.11 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.10 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.9 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.8 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.7 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.6 lib/fog/openstack/models/network/subnets.rb
fog-1.23.0 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.4 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.3 lib/fog/openstack/models/network/subnets.rb
ns-fog-1.22.2 lib/fog/openstack/models/network/subnets.rb
fog-1.22.1 lib/fog/openstack/models/network/subnets.rb