Class: SDM::SnapshotRequestableAccountEntitlements
- Inherits:
-
Object
- Object
- SDM::SnapshotRequestableAccountEntitlements
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotRequestableAccountEntitlements exposes the read only methods of the RequestableAccountEntitlements service for historical queries.
Instance Method Summary collapse
-
#initialize(requestable_account_entitlements) ⇒ SnapshotRequestableAccountEntitlements
constructor
A new instance of SnapshotRequestableAccountEntitlements.
-
#list(account_id, filter, *args, deadline: nil) ⇒ Object
List gets a list of RequestableAccountEntitlement records matching a given set of criteria.
Constructor Details
#initialize(requestable_account_entitlements) ⇒ SnapshotRequestableAccountEntitlements
Returns a new instance of SnapshotRequestableAccountEntitlements.
7032 7033 7034 |
# File 'lib/svc.rb', line 7032 def initialize(requestable_account_entitlements) @requestable_account_entitlements = requestable_account_entitlements end |
Instance Method Details
#list(account_id, filter, *args, deadline: nil) ⇒ Object
List gets a list of RequestableAccountEntitlement records matching a given set of criteria.
7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 |
# File 'lib/svc.rb', line 7037 def list( account_id, filter, *args, deadline: nil ) return @requestable_account_entitlements.list( account_id, filter, *args, deadline: deadline, ) end |