Sha256: 6cff5720164239500832304bd1b2870e1e802a674116635113aeaf9f02b290d9
Contents?: true
Size: 860 Bytes
Versions: 17
Compression:
Stored size: 860 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/models/identity_v3/role' module Fog module Identity class OpenStack class V3 class RoleAssignments < Fog::OpenStack::Collection model Fog::Identity::OpenStack::V3::RoleAssignment def all(options = {}) load_response(service.list_role_assignments(options), 'role_assignments') end 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 end end end end end
Version data entries
17 entries across 17 versions & 2 rubygems