Sha256: 698a674cd2f018b77976d161bc8ea32148074e1ceeda3c88314020d7391d3380
Contents?: true
Size: 1.33 KB
Versions: 14
Compression:
Stored size: 1.33 KB
Contents
module Fog module Google class SQL ## # Lists all of the current SSL certificates for the instance # # @see https://developers.google.com/cloud-sql/docs/admin-api/v1beta3/sslCerts/list class Real def list_ssl_certs(instance_id) api_method = @sql.ssl_certs.list parameters = { "project" => @project, "instance" => instance_id } request(api_method, parameters) end end class Mock def list_ssl_certs(instance_id) if data[:ssl_certs].key?(instance_id) body = { "kind" => 'sql#sslCertsList', "items" => data[:ssl_certs][instance_id].values } status = 200 else body = { "error" => { "errors" => [ { "domain" => "global", "reason" => "notAuthorized", "message" => "The client is not authorized to make this request." } ], "code" => 403, "message" => "The client is not authorized to make this request." } } status = 403 end build_excon_response(body, status) end end end end end
Version data entries
14 entries across 14 versions & 1 rubygems