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.
2565 2566 2567 |
# File 'lib/svc.rb', line 2565 def initialize(identity_aliases) @identity_aliases = identity_aliases end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one IdentityAlias by ID.
2570 2571 2572 2573 2574 2575 2576 2577 2578 |
# File 'lib/svc.rb', line 2570 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.
2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 |
# File 'lib/svc.rb', line 2581 def list( filter, *args, deadline: nil ) return @identity_aliases.list( filter, *args, deadline: deadline, ) end |