Class: SDM::SnapshotAccountAttachments
- Inherits:
-
Object
- Object
- SDM::SnapshotAccountAttachments
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotAccountAttachments exposes the read only methods of the AccountAttachments service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one AccountAttachment by ID.
-
#initialize(account_attachments) ⇒ SnapshotAccountAttachments
constructor
A new instance of SnapshotAccountAttachments.
-
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of AccountAttachments matching a given set of criteria.
Constructor Details
#initialize(account_attachments) ⇒ SnapshotAccountAttachments
Returns a new instance of SnapshotAccountAttachments.
384 385 386 |
# File 'lib/svc.rb', line 384 def initialize() = end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one AccountAttachment by ID.
389 390 391 392 393 394 395 396 397 |
# File 'lib/svc.rb', line 389 def get( id, deadline: nil ) return .get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
List gets a list of AccountAttachments matching a given set of criteria.
400 401 402 403 404 405 406 407 408 409 410 |
# File 'lib/svc.rb', line 400 def list( filter, *args, deadline: nil ) return .list( filter, *args, deadline: deadline, ) end |