Sha256: 1fa1f92282cdcf3865f727516de3b335aad2112c3c8d0fbda2198ede831f01d5
Contents?: true
Size: 860 Bytes
Versions: 39
Compression:
Stored size: 860 Bytes
Contents
require 'fog/openstack/models/collection' require 'fog/identity/openstack/v3/models/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
39 entries across 37 versions & 3 rubygems