Class: Fog::Identity::OpenStack::V3::OsCredentials

Inherits:
Collection
  • Object
show all
Defined in:
lib/fog/openstack/models/identity_v3/os_credentials.rb

Instance Method Summary collapse

Instance Method Details

#all(options = {}) ⇒ Object Also known as: summary



11
12
13
# File 'lib/fog/openstack/models/identity_v3/os_credentials.rb', line 11

def all(options = {})
  load(service.list_os_credentials(options).body['credentials'])
end

#destroy(id) ⇒ Object



25
26
27
28
# File 'lib/fog/openstack/models/identity_v3/os_credentials.rb', line 25

def destroy(id)
  credential = self.find_by_id(id)
  credential.destroy
end

#find_by_id(id) ⇒ Object



17
18
19
20
21
22
23
# File 'lib/fog/openstack/models/identity_v3/os_credentials.rb', line 17

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