Class: SDM::SnapshotAccountPermissions

Inherits:
Object
  • Object
show all
Extended by:
Gem::Deprecate
Defined in:
lib/svc.rb

Overview

SnapshotAccountPermissions exposes the read only methods of the AccountPermissions service for historical queries.

Instance Method Summary collapse

Constructor Details

#initialize(account_permissions) ⇒ SnapshotAccountPermissions

Returns a new instance of SnapshotAccountPermissions.



750
751
752
# File 'lib/svc.rb', line 750

def initialize()
  @account_permissions = 
end

Instance Method Details

#list(filter, *args, deadline: nil) ⇒ Object

List gets a list of Permission records matching a given set of criteria.



755
756
757
758
759
760
761
762
763
764
765
# File 'lib/svc.rb', line 755

def list(
  filter,
  *args,
  deadline: nil
)
  return @account_permissions.list(
           filter,
                        *args,
                        deadline: deadline,
         )
end