Class: SDM::SnapshotRequestableRoleEntitlements
- Inherits:
-
Object
- Object
- SDM::SnapshotRequestableRoleEntitlements
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotRequestableRoleEntitlements exposes the read only methods of the RequestableRoleEntitlements service for historical queries.
Instance Method Summary collapse
-
#initialize(requestable_role_entitlements) ⇒ SnapshotRequestableRoleEntitlements
constructor
A new instance of SnapshotRequestableRoleEntitlements.
-
#list(role_id, filter, *args, deadline: nil) ⇒ Object
List gets a list of RequestableRoleEntitlement records matching a given set of criteria.
Constructor Details
#initialize(requestable_role_entitlements) ⇒ SnapshotRequestableRoleEntitlements
Returns a new instance of SnapshotRequestableRoleEntitlements.
7318 7319 7320 |
# File 'lib/svc.rb', line 7318 def initialize(requestable_role_entitlements) @requestable_role_entitlements = requestable_role_entitlements end |
Instance Method Details
#list(role_id, filter, *args, deadline: nil) ⇒ Object
List gets a list of RequestableRoleEntitlement records matching a given set of criteria.
7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 |
# File 'lib/svc.rb', line 7323 def list( role_id, filter, *args, deadline: nil ) return @requestable_role_entitlements.list( role_id, filter, *args, deadline: deadline, ) end |