Class: SDM::SnapshotRemoteIdentities
- Inherits:
-
Object
- Object
- SDM::SnapshotRemoteIdentities
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotRemoteIdentities exposes the read only methods of the RemoteIdentities service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentity by ID.
-
#initialize(remote_identities) ⇒ SnapshotRemoteIdentities
constructor
A new instance of SnapshotRemoteIdentities.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of RemoteIdentities matching a given set of criteria.
Constructor Details
#initialize(remote_identities) ⇒ SnapshotRemoteIdentities
Returns a new instance of SnapshotRemoteIdentities.
2663 2664 2665 |
# File 'lib/svc.rb', line 2663 def initialize(remote_identities) @remote_identities = remote_identities end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentity by ID.
2668 2669 2670 2671 2672 2673 2674 2675 2676 |
# File 'lib/svc.rb', line 2668 def get( id, deadline: nil ) return @remote_identities.get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of RemoteIdentities matching a given set of criteria.
2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 |
# File 'lib/svc.rb', line 2679 def list( filter, *args, deadline: nil ) return @remote_identities.list( filter, *args, deadline: deadline, ) end |