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.
6361 6362 6363 |
# File 'lib/svc.rb', line 6361 def initialize(remote_identities) @remote_identities = remote_identities end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentity by ID.
6366 6367 6368 6369 6370 6371 6372 6373 6374 |
# File 'lib/svc.rb', line 6366 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.
6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 |
# File 'lib/svc.rb', line 6377 def list( filter, *args, deadline: nil ) return @remote_identities.list( filter, *args, deadline: deadline, ) end |