Sha256: d95d84b3dd5be99455ca788ca731472b633b1e540acb3aed746ca8781a4228b5
Contents?: true
Size: 1.85 KB
Versions: 10
Compression:
Stored size: 1.85 KB
Contents
# 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/>. # frozen_string_literal: true require 'fog/proxmox/helpers/disk_helper' module Fog module Proxmox class Compute # class Disk model class Disk < Fog::Model identity :id attribute :volid attribute :size attribute :storage attribute :cache attribute :replicate attribute :media attribute :format attribute :model attribute :shared attribute :snapshot attribute :backup attribute :aio attribute :mp def controller Fog::Proxmox::DiskHelper.extract_controller(id) end def device Fog::Proxmox::DiskHelper.extract_device(id) end def cdrom? id == 'ide2' && media == 'cdrom' end def rootfs? id == 'rootfs' end def mount_point? id.match(/(mp)(\d+)/) end def controller? id.match(/(scsi|ide|sata|virtio)(\d+)/) end def flatten Fog::Proxmox::DiskHelper.flatten(attributes) end def to_s Fog::Proxmox::Hash.flatten(flatten) end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems