Sha256: 82eda3206c0ee65da661344a252935d019c1277f40113ef8416011cf9277d74d
Contents?: true
Size: 1.25 KB
Versions: 22
Compression:
Stored size: 1.25 KB
Contents
require 'fog/openstack/models/model' module Fog module OpenStack class Identity class V2 class Role < Fog::OpenStack::Model identity :id attribute :name def save requires :name data = service.create_role(name) merge_attributes(data.body['role']) true end def destroy requires :id service.delete_role(id) true end def add_to_user(user, tenant) add_remove_to_user(user, tenant, :add) end def remove_to_user(user, tenant) add_remove_to_user(user, tenant, :remove) end private def add_remove_to_user(user, tenant, ops) requires :id user_id = get_id(user) tenant_id = get_id(tenant) case ops when :add service.create_user_role(tenant_id, user_id, id).status == 200 when :remove service.delete_user_role(tenant_id, user_id, id).status == 204 end end def get_id(model_or_string) model_or_string.kind_of?(String) ? id : model_or_string.id end end end end end end
Version data entries
22 entries across 22 versions & 3 rubygems