class Fog::OpenStack::Identity::V3::RoleAssignments
Public Instance Methods
all(options = {})
click to toggle source
# 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 = {})
click to toggle source
# 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