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.



567
568
569
# File 'lib/svc.rb', line 567

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.



572
573
574
575
576
577
578
579
580
581
582
# File 'lib/svc.rb', line 572

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