Sha256: 61a91061f862d667e7e8a090b96b268c2541aa40991c487b5428d35eab61275d
Contents?: true
Size: 860 Bytes
Versions: 22
Compression:
Stored size: 860 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/openstack/identity/v3/models/role' module Fog module OpenStack class Identity class V3 class RoleAssignments < Fog::OpenStack::Collection model Fog::OpenStack::Identity::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
22 entries across 22 versions & 3 rubygems