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.



5080
5081
5082
# File 'lib/svc.rb', line 5080

def initialize(workflow_assignments)
  @workflow_assignments = workflow_assignments
end

Instance Method Details

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

Lists existing workflow assignments.



5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
# File 'lib/svc.rb', line 5085

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