Class: SDM::SnapshotWorkflowRoles
- Inherits:
-
Object
- Object
- SDM::SnapshotWorkflowRoles
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
SnapshotWorkflowRoles exposes the read only methods of the WorkflowRoles service for historical queries.
Instance Method Summary collapse
-
#get(id, deadline: nil) ⇒ Object
Get reads one workflow role by ID.
-
#initialize(workflow_roles) ⇒ SnapshotWorkflowRoles
constructor
A new instance of SnapshotWorkflowRoles.
-
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing workflow roles.
Constructor Details
#initialize(workflow_roles) ⇒ SnapshotWorkflowRoles
Returns a new instance of SnapshotWorkflowRoles.
6110 6111 6112 |
# File 'lib/svc.rb', line 6110 def initialize(workflow_roles) @workflow_roles = workflow_roles end |
Instance Method Details
#get(id, deadline: nil) ⇒ Object
Get reads one workflow role by ID.
6115 6116 6117 6118 6119 6120 6121 6122 6123 |
# File 'lib/svc.rb', line 6115 def get( id, deadline: nil ) return @workflow_roles.get( id, deadline: deadline, ) end |
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing workflow roles.
6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 |
# File 'lib/svc.rb', line 6126 def list( filter, *args, deadline: nil ) return @workflow_roles.list( filter, *args, deadline: deadline, ) end |