Class: Fog::OpenStack::Identity::V3::RoleAssignments
- Inherits:
-
Collection
- Object
- Collection
- Collection
- Fog::OpenStack::Identity::V3::RoleAssignments
show all
- Defined in:
- lib/fog/openstack/identity/v3/models/role_assignments.rb
Instance Attribute Summary
Attributes inherited from Collection
#response
Instance Method Summary
collapse
Methods inherited from Collection
#destroy, #find_by_id, #get, #load_response, #summary
Instance Method Details
#all(options = {}) ⇒ Object
11
12
13
|
# File 'lib/fog/openstack/identity/v3/models/role_assignments.rb', line 11
def all(options = {})
load_response(service.list_role_assignments(options), 'role_assignments')
end
|
#filter_by(options = {}) ⇒ Object
15
16
17
18
19
20
|
# File 'lib/fog/openstack/identity/v3/models/role_assignments.rb', line 15
def filter_by(options = {})
Fog::Logger.deprecation("Calling OpenStack[:keystone].role_assignments.filter_by(options) method which"\
" is not part of standard interface and is deprecated, call "\
" .role_assignments.all(options) or .role_assignments.summary(options) instead.")
all(options)
end
|