Class: SDM::SnapshotRemoteIdentityGroups
- Inherits:
-
Object
- Object
- SDM::SnapshotRemoteIdentityGroups
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotRemoteIdentityGroups exposes the read only methods of the RemoteIdentityGroups service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentityGroup by ID.
-
#initialize(remote_identity_groups) ⇒ SnapshotRemoteIdentityGroups
constructor
A new instance of SnapshotRemoteIdentityGroups.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of RemoteIdentityGroups matching a given set of criteria.
Constructor Details
#initialize(remote_identity_groups) ⇒ SnapshotRemoteIdentityGroups
4435 4436 4437 |
# File 'lib/svc.rb', line 4435 def initialize(remote_identity_groups) @remote_identity_groups = remote_identity_groups end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one RemoteIdentityGroup by ID.
4440 4441 4442 4443 4444 4445 4446 4447 4448 |
# File 'lib/svc.rb', line 4440 def get( id, deadline: nil ) return @remote_identity_groups.get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of RemoteIdentityGroups matching a given set of criteria.
4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 |
# File 'lib/svc.rb', line 4451 def list( filter, *args, deadline: nil ) return @remote_identity_groups.list( filter, *args, deadline: deadline, ) end |