Sha256: 92195320e926a9f57e3b9a3c84292db4af9dadbad19c7428cb2afe709b43b545
Contents?: true
Size: 1.35 KB
Versions: 11
Compression:
Stored size: 1.35 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/identity/proxmox/models/permission' module Fog module Proxmox class Identity # class Permissions authentication class Permissions < Fog::Collection model Fog::Proxmox::Identity::Permission def all load service.list_permissions end def get(type, path, roleid, ugid) all.find { |permission| permission.type === type && permission.path === path && permission.roleid === roleid && permission.ugid === ugid } end def destroy(permission_hash) permission = new(permission_hash) permission.destroy end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems