Method: SDM::Resources#update
- Defined in:
- lib/svc.rb
#update(resource, deadline: nil) ⇒ Object
Update patches a Resource by ID.
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 |
# File 'lib/svc.rb', line 853 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 |