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.
3805 3806 3807 |
# File 'lib/svc.rb', line 3805 def initialize(remote_identities) @remote_identities = remote_identities end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentity by ID.
3810 3811 3812 3813 3814 3815 3816 3817 3818 |
# File 'lib/svc.rb', line 3810 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.
3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 |
# File 'lib/svc.rb', line 3821 def list( filter, *args, deadline: nil ) return @remote_identities.list( filter, *args, deadline: deadline, ) end |