Class: SDM::SnapshotWorkflowAssignments

Inherits:
Object
  • Object
show all
Extended by:
Gem::Deprecate
Defined in:
lib/svc.rb

Overview

SnapshotWorkflowAssignments exposes the read only methods of the WorkflowAssignments service for historical queries.

Instance Method Summary collapse

Constructor Details

#initialize(workflow_assignments) ⇒ SnapshotWorkflowAssignments

Returns a new instance of SnapshotWorkflowAssignments.



4319
4320
4321
# File 'lib/svc.rb', line 4319

def initialize(workflow_assignments)
  @workflow_assignments = workflow_assignments
end

Instance Method Details

#list(filter, *args, deadline: nil) ⇒ Object

Lists existing workflow assignments.



4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
# File 'lib/svc.rb', line 4324

def list(
  filter,
  *args,
  deadline: nil
)
  return @workflow_assignments.list(
           filter,
                        *args,
                        deadline: deadline,
         )
end