Sha256: 48167ede4fc3895aae65dab12be27f34730e17bf667c1a9e04fc3d80d4a384fd
Contents?: true
Size: 1.96 KB
Versions: 14
Compression:
Stored size: 1.96 KB
Contents
module Fog module Compute class Google class Mock def insert_target_http_proxy(name, options = {}) id = Fog::Mock.random_numbers(19).to_s data[:target_http_proxies][name] = { "kind" => "compute#targetHttpProxy", "id" => id, "creationTimestamp" => Time.now.iso8601, "name" => name, "description" => "", "urlMap" => options["urlMap"], "selfLink" => "https://www.googleapis.com/compute/#{api_version}/projects/#{@project}/global/targetHttpProxies/#{name}" } operation = random_operation data[:operations][operation] = { "kind" => "compute#operation", "id" => Fog::Mock.random_numbers(19).to_s, "name" => operation, "zone" => "https://www.googleapis.com/compute/#{api_version}/projects/#{@project}/global", "operationType" => "insert", "targetLink" => "https://www.googleapis.com/compute/#{api_version}/projects/#{@project}/global/targetHttpProxies/#{name}", "targetId" => id, "status" => Fog::Compute::Google::Operation::PENDING_STATE, "user" => "123456789012-qwertyuiopasdfghjkl1234567890qwe@developer.gserviceaccount.com", "progress" => 0, "insertTime" => Time.now.iso8601, "startTime" => Time.now.iso8601, "selfLink" => "https://www.googleapis.com/compute/#{api_version}/projects/#{@project}/global/operations/#{operation}" } build_excon_response(data[:operations][operation]) end end class Real def insert_target_http_proxy(name, opts = {}) api_method = @compute.target_http_proxies.insert parameters = { "project" => @project } body_object = { "name" => name } body_object.merge!(opts) request(api_method, parameters, body_object) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems