Sha256: 8ff23feb5c6c11e1df411e4266ee18a4e1bd33e6caee38116209026411c03176
Contents?: true
Size: 1.53 KB
Versions: 14
Compression:
Stored size: 1.53 KB
Contents
module Fog module Compute class Google class Mock def get_global_operation(operation) operation = data[:operations][operation] if operation case operation["status"] when Fog::Compute::Google::Operation::PENDING_STATE operation["status"] = Fog::Compute::Google::Operation::RUNNING_STATE operation["progress"] = 50 else operation["status"] = Fog::Compute::Google::Operation::DONE_STATE operation["progress"] = 100 end else operation = { "error" => { "errors" => [ { "domain" => "global", "reason" => "notFound", "message" => "The resource 'projects/#{project}/global/operations/#{operation}' was not found" } ], "code" => 404, "message" => "The resource 'projects/#{project}/global/operations/#{operation}' was not found" } } end build_excon_response(operation) end end class Real # https://developers.google.com/compute/docs/reference/latest/globalOperations def get_global_operation(operation) api_method = @compute.global_operations.get parameters = { "project" => @project, "operation" => operation } request(api_method, parameters) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems