class Google::Apis::ComputeBeta::UrlMapTest

Message for the expected URL mappings.

Attributes

description[RW]

Description of this test case. Corresponds to the JSON property `description` @return [String]

expected_output_url[RW]

The expected output URL evaluated by load balancer containing the scheme, host, path and query parameters. For rules that forward requests to backends, the test passes only when expectedOutputUrl matches the request forwarded by load balancer to backends. For rules with urlRewrite, the test verifies that the forwarded request matches hostRewrite and pathPrefixRewrite in the urlRewrite action. When service is specified, expectedOutputUrl`s scheme is ignored. For rules with urlRedirect, the test passes only if expectedOutputUrl matches the URL in the load balancer's redirect response. If urlRedirect specifies https_redirect, the test passes only if the scheme in expectedOutputUrl is also set to https. If urlRedirect specifies strip_query, the test passes only if expectedOutputUrl does not contain any query parameters. expectedOutputUrl is optional when service is specified. Corresponds to the JSON property `expectedOutputUrl` @return [String]

expected_redirect_response_code[RW]

For rules with urlRedirect, the test passes only if expectedRedirectResponseCode matches the HTTP status code in load balancer's redirect response. expectedRedirectResponseCode cannot be set when service is set. Corresponds to the JSON property `expectedRedirectResponseCode` @return [Fixnum]

headers[RW]

HTTP headers for this request. If headers contains a host header, then host must also match the header value. Corresponds to the JSON property `headers` @return [Array<Google::Apis::ComputeBeta::UrlMapTestHeader>]

host[RW]

Host portion of the URL. If headers contains a host header, then host must also match the header value. Corresponds to the JSON property `host` @return [String]

path[RW]

Path portion of the URL. Corresponds to the JSON property `path` @return [String]

service[RW]

Expected BackendService or BackendBucket resource the given URL should be mapped to. service cannot be set if expectedRedirectResponseCode is set. Corresponds to the JSON property `service` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_beta/classes.rb, line 38581
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_beta/classes.rb, line 38586
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @expected_output_url = args[:expected_output_url] if args.key?(:expected_output_url)
  @expected_redirect_response_code = args[:expected_redirect_response_code] if args.key?(:expected_redirect_response_code)
  @headers = args[:headers] if args.key?(:headers)
  @host = args[:host] if args.key?(:host)
  @path = args[:path] if args.key?(:path)
  @service = args[:service] if args.key?(:service)
end