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.
3819 3820 3821 |
# File 'lib/svc.rb', line 3819 def initialize(identity_aliases) @identity_aliases = identity_aliases end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one IdentityAlias by ID.
3824 3825 3826 3827 3828 3829 3830 3831 3832 |
# File 'lib/svc.rb', line 3824 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.
3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 |
# File 'lib/svc.rb', line 3835 def list( filter, *args, deadline: nil ) return @identity_aliases.list( filter, *args, deadline: deadline, ) end |