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.
7152 7153 7154 |
# File 'lib/svc.rb', line 7152 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.
7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 |
# File 'lib/svc.rb', line 7157 def list( account_id, filter, *args, deadline: nil ) return @requestable_account_entitlements.list( account_id, filter, *args, deadline: deadline, ) end |