Class: Fog::Identity::OpenStack::V3::RoleAssignments
Instance Attribute Summary
#response
Instance Method Summary
collapse
#destroy, #get, #load_response, #summary
Instance Method Details
#all(options = {}) ⇒ Object
11
12
13
|
# File 'lib/fog/openstack/models/identity_v3/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/models/identity_v3/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
|