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
Returns a new instance of SnapshotRemoteIdentityGroups.
6949 6950 6951 |
# File 'lib/svc.rb', line 6949 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.
6954 6955 6956 6957 6958 6959 6960 6961 6962 |
# File 'lib/svc.rb', line 6954 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.
6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 |
# File 'lib/svc.rb', line 6965 def list( filter, *args, deadline: nil ) return @remote_identity_groups.list( filter, *args, deadline: deadline, ) end |