class Fog::Identity::OpenStack::V3::Policies

Public Instance Methods

all(options = {}) click to toggle source
# File lib/fog/openstack/models/identity_v3/policies.rb, line 11
def all(options = {})
  load_response(service.list_policies(options), 'policies')
end
destroy(id) click to toggle source
# File lib/fog/openstack/models/identity_v3/policies.rb, line 23
def destroy(id)
  policy = self.find_by_id(id)
  policy.destroy
end
find_by_id(id) click to toggle source
# File lib/fog/openstack/models/identity_v3/policies.rb, line 15
def find_by_id(id)
  cached_policy = self.find { |policy| policy.id == id }
  return cached_policy if cached_policy
  policy_hash = service.get_policy(id).body['policy']
  Fog::Identity::OpenStack::V3::Policy.new(
      policy_hash.merge(:service => service))
end