Class: SDM::SnapshotWorkflowApprovers
- Inherits:
-
Object
- Object
- SDM::SnapshotWorkflowApprovers
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotWorkflowApprovers exposes the read only methods of the WorkflowApprovers service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one workflow approver by ID.
-
#initialize(workflow_approvers) ⇒ SnapshotWorkflowApprovers
constructor
A new instance of SnapshotWorkflowApprovers.
-
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing workflow approvers.
Constructor Details
#initialize(workflow_approvers) ⇒ SnapshotWorkflowApprovers
Returns a new instance of SnapshotWorkflowApprovers.
4174 4175 4176 |
# File 'lib/svc.rb', line 4174 def initialize(workflow_approvers) @workflow_approvers = workflow_approvers end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one workflow approver by ID.
4179 4180 4181 4182 4183 4184 4185 4186 4187 |
# File 'lib/svc.rb', line 4179 def get( id, deadline: nil ) return @workflow_approvers.get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing workflow approvers.
4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 |
# File 'lib/svc.rb', line 4190 def list( filter, *args, deadline: nil ) return @workflow_approvers.list( filter, *args, deadline: deadline, ) end |