Sha256: a74ef9f93289085d6e4ee246518f75bcf801d776a83f37f4eb258feb09e8a69a
Contents?: true
Size: 469 Bytes
Versions: 45
Compression:
Stored size: 469 Bytes
Contents
require 'fog/openstack/models/model' module Fog module OpenStack class Planning class Role < Fog::OpenStack::Model identity :uuid attribute :description attribute :name attribute :uuid def add_to_plan(plan_uuid) service.add_role_to_plan(plan_uuid, uuid) end def remove_from_plan(plan_uuid) service.remove_role_from_plan(plan_uuid, uuid) end end end end end
Version data entries
45 entries across 43 versions & 5 rubygems