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.
4256 4257 4258 |
# File 'lib/svc.rb', line 4256 def initialize(remote_identities) @remote_identities = remote_identities end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentity by ID.
4261 4262 4263 4264 4265 4266 4267 4268 4269 |
# File 'lib/svc.rb', line 4261 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.
4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 |
# File 'lib/svc.rb', line 4272 def list( filter, *args, deadline: nil ) return @remote_identities.list( filter, *args, deadline: deadline, ) end |