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.
6396 6397 6398 |
# File 'lib/svc.rb', line 6396 def initialize(remote_identities) @remote_identities = remote_identities end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentity by ID.
6401 6402 6403 6404 6405 6406 6407 6408 6409 |
# File 'lib/svc.rb', line 6401 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.
6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 |
# File 'lib/svc.rb', line 6412 def list( filter, *args, deadline: nil ) return @remote_identities.list( filter, *args, deadline: deadline, ) end |