Class: SDM::SnapshotIdentityAliases
- Inherits:
-
Object
- Object
- SDM::SnapshotIdentityAliases
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotIdentityAliases exposes the read only methods of the IdentityAliases service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one IdentityAlias by ID.
-
#initialize(identity_aliases) ⇒ SnapshotIdentityAliases
constructor
A new instance of SnapshotIdentityAliases.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of IdentityAliases matching a given set of criteria.
Constructor Details
#initialize(identity_aliases) ⇒ SnapshotIdentityAliases
Returns a new instance of SnapshotIdentityAliases.
3782 3783 3784 |
# File 'lib/svc.rb', line 3782 def initialize(identity_aliases) @identity_aliases = identity_aliases end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one IdentityAlias by ID.
3787 3788 3789 3790 3791 3792 3793 3794 3795 |
# File 'lib/svc.rb', line 3787 def get( id, deadline: nil ) return @identity_aliases.get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of IdentityAliases matching a given set of criteria.
3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 |
# File 'lib/svc.rb', line 3798 def list( filter, *args, deadline: nil ) return @identity_aliases.list( filter, *args, deadline: deadline, ) end |