class Fog::Identity::OpenStack::V3::OsCredentials

Public Instance Methods

all(options = {}) click to toggle source
# File lib/fog/openstack/models/identity_v3/os_credentials.rb, line 11
def all(options = {})
  load_response(service.list_os_credentials(options), 'credentials')
end
destroy(id) click to toggle source
# File lib/fog/openstack/models/identity_v3/os_credentials.rb, line 23
def destroy(id)
  credential = self.find_by_id(id)
  credential.destroy
end
find_by_id(id) click to toggle source
# File lib/fog/openstack/models/identity_v3/os_credentials.rb, line 15
def find_by_id(id)
  cached_credential = self.find { |credential| credential.id == id }
  return cached_credential if cached_credential
  credential_hash = service.get_os_credential(id).body['credential']
  Fog::Identity::OpenStack::V3::Credential.new(
      credential_hash.merge(:service => service))
end