Class: Fog::OpenStack::Identity::V3::OsCredentials
- Inherits:
-
Collection
- Object
- Collection
- Collection
- Fog::OpenStack::Identity::V3::OsCredentials
show all
- Defined in:
- lib/fog/openstack/identity/v3/models/os_credentials.rb
Instance Attribute Summary
Attributes inherited from Collection
#response
Instance Method Summary
collapse
Methods inherited from Collection
#get, #load_response, #summary
Instance Method Details
#all(options = {}) ⇒ Object
11
12
13
|
# File 'lib/fog/openstack/identity/v3/models/os_credentials.rb', line 11
def all(options = {})
load_response(service.list_os_credentials(options), 'credentials')
end
|
#destroy(id) ⇒ Object
24
25
26
27
|
# File 'lib/fog/openstack/identity/v3/models/os_credentials.rb', line 24
def destroy(id)
credential = find_by_id(id)
credential.destroy
end
|
#find_by_id(id) ⇒ Object
15
16
17
18
19
20
21
22
|
# File 'lib/fog/openstack/identity/v3/models/os_credentials.rb', line 15
def find_by_id(id)
cached_credential = find { |credential| credential.id == id }
return cached_credential if cached_credential
credential_hash = service.get_os_credential(id).body['credential']
Fog::OpenStack::Identity::V3::Credential.new(
credential_hash.merge(:service => service)
)
end
|