Class: SDM::ApprovalWorkflows
- Inherits:
-
Object
- Object
- SDM::ApprovalWorkflows
- Extended by:
- Gem::Deprecate
- Defined in:
- lib/svc.rb
Overview
ApprovalWorkflows are the mechanism by which requests for access can be viewed by authorized approvers and be approved or denied.
See ApprovalWorkflow.
Instance Method Summary collapse
-
#create(approval_workflow, deadline: nil) ⇒ Object
Create creates a new approval workflow and requires a name and approval mode for the approval workflow.
-
#delete(id, deadline: nil) ⇒ Object
Delete deletes an existing approval workflow.
-
#get(id, deadline: nil) ⇒ Object
Get reads one approval workflow by ID.
-
#initialize(channel, parent) ⇒ ApprovalWorkflows
constructor
A new instance of ApprovalWorkflows.
-
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing approval workflows.
-
#update(approval_workflow, deadline: nil) ⇒ Object
Update updates an existing approval workflow.
Constructor Details
#initialize(channel, parent) ⇒ ApprovalWorkflows
1988 1989 1990 1991 1992 1993 1994 1995 |
# File 'lib/svc.rb', line 1988 def initialize(channel, parent) begin @stub = V1::ApprovalWorkflows::Stub.new(nil, nil, channel_override: channel) rescue => exception raise Plumbing::convert_error_to_porcelain(exception) end @parent = parent end |
Instance Method Details
#create(approval_workflow, deadline: nil) ⇒ Object
Create creates a new approval workflow and requires a name and approval mode for the approval workflow.
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 |
# File 'lib/svc.rb', line 1998 def create( approval_workflow, deadline: nil ) req = V1::ApprovalWorkflowCreateRequest.new() req.approval_workflow = Plumbing::convert_approval_workflow_to_plumbing(approval_workflow) tries = 0 plumbing_response = nil loop do begin plumbing_response = @stub.create(req, metadata: @parent.("ApprovalWorkflows.Create", req), deadline: deadline) rescue => exception if (@parent.shouldRetry(tries, exception, deadline)) tries + +sleep(@parent.exponentialBackoff(tries, deadline)) next end raise Plumbing::convert_error_to_porcelain(exception) end break end resp = ApprovalWorkflowCreateResponse.new() resp.approval_workflow = Plumbing::convert_approval_workflow_to_porcelain(plumbing_response.approval_workflow) resp.rate_limit = Plumbing::(plumbing_response.rate_limit) resp end |
#delete(id, deadline: nil) ⇒ Object
Delete deletes an existing approval workflow.
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 |
# File 'lib/svc.rb', line 2061 def delete( id, deadline: nil ) req = V1::ApprovalWorkflowDeleteRequest.new() req.id = (id) tries = 0 plumbing_response = nil loop do begin plumbing_response = @stub.delete(req, metadata: @parent.("ApprovalWorkflows.Delete", req), deadline: deadline) rescue => exception if (@parent.shouldRetry(tries, exception, deadline)) tries + +sleep(@parent.exponentialBackoff(tries, deadline)) next end raise Plumbing::convert_error_to_porcelain(exception) end break end resp = ApprovalWorkflowDeleteResponse.new() resp.id = (plumbing_response.id) resp.rate_limit = Plumbing::(plumbing_response.rate_limit) resp end |
#get(id, deadline: nil) ⇒ Object
Get reads one approval workflow by ID.
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 |
# File 'lib/svc.rb', line 2027 def get( id, deadline: nil ) req = V1::ApprovalWorkflowGetRequest.new() if not @parent.snapshot_time.nil? req. = V1::GetRequestMetadata.new() req..snapshot_at = @parent.snapshot_time end req.id = (id) tries = 0 plumbing_response = nil loop do begin plumbing_response = @stub.get(req, metadata: @parent.("ApprovalWorkflows.Get", req), deadline: deadline) rescue => exception if (@parent.shouldRetry(tries, exception, deadline)) tries + +sleep(@parent.exponentialBackoff(tries, deadline)) next end raise Plumbing::convert_error_to_porcelain(exception) end break end resp = ApprovalWorkflowGetResponse.new() resp.approval_workflow = Plumbing::convert_approval_workflow_to_porcelain(plumbing_response.approval_workflow) resp. = Plumbing::(plumbing_response.) resp.rate_limit = Plumbing::(plumbing_response.rate_limit) resp end |
#list(filter, *args, deadline: nil) ⇒ Object
Lists existing approval workflows.
2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 |
# File 'lib/svc.rb', line 2119 def list( filter, *args, deadline: nil ) req = V1::ApprovalWorkflowListRequest.new() req. = V1::ListRequestMetadata.new() if not @parent.page_limit.nil? req..limit = @parent.page_limit end if not @parent.snapshot_time.nil? req..snapshot_at = @parent.snapshot_time end req.filter = Plumbing::quote_filter_args(filter, *args) resp = Enumerator::Generator.new { |g| tries = 0 loop do begin plumbing_response = @stub.list(req, metadata: @parent.("ApprovalWorkflows.List", req), deadline: deadline) rescue => exception if (@parent.shouldRetry(tries, exception, deadline)) tries + +sleep(@parent.exponentialBackoff(tries, deadline)) next end raise Plumbing::convert_error_to_porcelain(exception) end tries = 0 plumbing_response.approval_workflows.each do |plumbing_item| g.yield Plumbing::convert_approval_workflow_to_porcelain(plumbing_item) end break if plumbing_response..next_cursor == "" req..cursor = plumbing_response..next_cursor end } resp end |
#update(approval_workflow, deadline: nil) ⇒ Object
Update updates an existing approval workflow.
2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 |
# File 'lib/svc.rb', line 2090 def update( approval_workflow, deadline: nil ) req = V1::ApprovalWorkflowUpdateRequest.new() req.approval_workflow = Plumbing::convert_approval_workflow_to_plumbing(approval_workflow) tries = 0 plumbing_response = nil loop do begin plumbing_response = @stub.update(req, metadata: @parent.("ApprovalWorkflows.Update", req), deadline: deadline) rescue => exception if (@parent.shouldRetry(tries, exception, deadline)) tries + +sleep(@parent.exponentialBackoff(tries, deadline)) next end raise Plumbing::convert_error_to_porcelain(exception) end break end resp = ApprovalWorkflowUpdateResponse.new() resp.approval_workflow = Plumbing::convert_approval_workflow_to_porcelain(plumbing_response.approval_workflow) resp.rate_limit = Plumbing::(plumbing_response.rate_limit) resp end |