Sha256: 419530b94c47a89bc8eb364caec85bb85d79c7402c732431d14c08ce1edd3b51
Contents?: true
Size: 475 Bytes
Versions: 4
Compression:
Stored size: 475 Bytes
Contents
require 'fog/huaweicloud/models/model' module Fog module HuaweiCloud class Planning class Role < Fog::HuaweiCloud::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
4 entries across 4 versions & 1 rubygems