Show / Hide Table of Contents

Class TestFailure

Inheritance
System.Object
TestFailure
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class TestFailure : IDirectResponseSchema

Properties

ActualOutputUrl

The actual output URL evaluated by load balancer containing the scheme, host, path and query parameters.

Declaration
[JsonProperty("actualOutputUrl")]
public virtual string ActualOutputUrl { get; set; }
Property Value
Type Description
System.String

ActualRedirectResponseCode

Actual HTTP status code for rule with urlRedirect calculated by load balancer

Declaration
[JsonProperty("actualRedirectResponseCode")]
public virtual int? ActualRedirectResponseCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ActualService

BackendService or BackendBucket returned by load balancer.

Declaration
[JsonProperty("actualService")]
public virtual string ActualService { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ExpectedOutputUrl

The expected output URL evaluated by load balancer containing the scheme, host, path and query parameters.

Declaration
[JsonProperty("expectedOutputUrl")]
public virtual string ExpectedOutputUrl { get; set; }
Property Value
Type Description
System.String

ExpectedRedirectResponseCode

Expected HTTP status code for rule with urlRedirect calculated by load balancer

Declaration
[JsonProperty("expectedRedirectResponseCode")]
public virtual int? ExpectedRedirectResponseCode { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ExpectedService

Expected BackendService or BackendBucket resource the given URL should be mapped to.

Declaration
[JsonProperty("expectedService")]
public virtual string ExpectedService { get; set; }
Property Value
Type Description
System.String

Headers

HTTP headers of the request.

Declaration
[JsonProperty("headers")]
public virtual IList<UrlMapTestHeader> Headers { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<UrlMapTestHeader>

Host

Host portion of the URL.

Declaration
[JsonProperty("host")]
public virtual string Host { get; set; }
Property Value
Type Description
System.String

Path

Path portion including query parameters in the URL.

Declaration
[JsonProperty("path")]
public virtual string Path { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top