class Google::Apis::ComputeV1::TestFailure
Attributes
The actual output URL evaluated by a load balancer containing the scheme, host, path and query parameters. Corresponds to the JSON property `actualOutputUrl` @return [String]
Actual HTTP status code for rule with `urlRedirect` calculated by load balancer Corresponds to the JSON property `actualRedirectResponseCode` @return [Fixnum]
BackendService
or BackendBucket
returned by load balancer. Corresponds to the JSON property `actualService` @return [String]
The expected output URL evaluated by a load balancer containing the scheme, host, path and query parameters. Corresponds to the JSON property `expectedOutputUrl` @return [String]
Expected HTTP status code for rule with `urlRedirect` calculated by load balancer Corresponds to the JSON property `expectedRedirectResponseCode` @return [Fixnum]
Expected BackendService
or BackendBucket
resource the given URL should be mapped to. Corresponds to the JSON property `expectedService` @return [String]
HTTP headers of the request. Corresponds to the JSON property `headers` @return [Array<Google::Apis::ComputeV1::UrlMapTestHeader>]
Host portion of the URL. Corresponds to the JSON property `host` @return [String]
Path portion including query parameters in the URL. Corresponds to the JSON property `path` @return [String]
Public Class Methods
# File lib/google/apis/compute_v1/classes.rb, line 38628 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 38633 def update!(**args) @actual_output_url = args[:actual_output_url] if args.key?(:actual_output_url) @actual_redirect_response_code = args[:actual_redirect_response_code] if args.key?(:actual_redirect_response_code) @actual_service = args[:actual_service] if args.key?(:actual_service) @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) @expected_service = args[:expected_service] if args.key?(:expected_service) @headers = args[:headers] if args.key?(:headers) @host = args[:host] if args.key?(:host) @path = args[:path] if args.key?(:path) end