Method: SDM::Resources#update
- Defined in:
- lib/svc.rb
#update(resource, deadline: nil) ⇒ Object
Update patches a Resource by ID.
745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 |
# File 'lib/svc.rb', line 745 def update( resource, deadline: nil ) req = V1::ResourceUpdateRequest.new() req.resource = Plumbing::convert_resource_to_plumbing(resource) tries = 0 plumbing_response = nil loop do begin plumbing_response = @stub.update(req, metadata: @parent.("Resources.Update", req), deadline: deadline) rescue => exception if (@parent.shouldRetry(tries, exception)) tries + +@parent.jitterSleep(tries) next end raise Plumbing::convert_error_to_porcelain(exception) end break end resp = ResourceUpdateResponse.new() resp. = Plumbing::(plumbing_response.) resp.resource = Plumbing::convert_resource_to_porcelain(plumbing_response.resource) resp.rate_limit = Plumbing::(plumbing_response.rate_limit) resp end |