Sha256: 5ec05d5194aeb60a6138dcaa775b455a4a561634e034237ff025c12a6bac3888

Contents?: true

Size: 1.74 KB

Versions: 7

Compression:

Stored size: 1.74 KB

Contents

# frozen_string_literal: true

# Copyright 2018 Tristan Robert

# This file is part of Fog::Proxmox.

# Fog::Proxmox is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.

# Fog::Proxmox is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with Fog::Proxmox. If not, see <http://www.gnu.org/licenses/>.

require 'fog/proxmox/models/collection'
require 'fog/compute/proxmox/models/storage'

module Fog
  module Compute
    class Proxmox
      # class Storages Collection of storages
      class Storages < Fog::Proxmox::Collection
        model Fog::Compute::Proxmox::Storage
        attribute :node

        def new(attributes = {})
          requires :node
          super({ node: node }.merge(attributes))
        end

        def all
          search
        end

        def search(options = {})
          requires :node
          load_response(service.list_storages(node, options), 'storages')
        end

        def list_by_content_type(content)
          search(content: content)
        end

        def find_by_id(id)
          cached_storage = find { |storage| storage.storage == id }
          return cached_storage if cached_storage
          storage_hash = service.get_storage(node, id, {})
          Fog::Compute::Proxmox::Storage.new(
            storage_hash.merge(service: service)
          )
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fog-proxmox-0.5.5 lib/fog/compute/proxmox/models/storages.rb
fog-proxmox-0.5.4 lib/fog/compute/proxmox/models/storages.rb
fog-proxmox-0.5.3 lib/fog/compute/proxmox/models/storages.rb
fog-proxmox-0.5.2 lib/fog/compute/proxmox/models/storages.rb
fog-proxmox-0.5.1 lib/fog/compute/proxmox/models/storages.rb
fog-proxmox-0.5.0 lib/fog/compute/proxmox/models/storages.rb
fog-proxmox-0.4.0 lib/fog/compute/proxmox/models/storages.rb