Show / Hide Table of Contents

Class UrlMapValidationResult

Message representing the validation result for a UrlMap.

Inheritance
System.Object
UrlMapValidationResult
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 UrlMapValidationResult : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

LoadErrors

Declaration
[JsonProperty("loadErrors")]
public virtual IList<string> LoadErrors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

LoadSucceeded

Whether the given UrlMap can be successfully loaded. If false, 'loadErrors' indicates the reasons.

Declaration
[JsonProperty("loadSucceeded")]
public virtual bool? LoadSucceeded { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

TestFailures

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

TestPassed

If successfully loaded, this field indicates whether the test passed. If false, 'testFailures's indicate the reason of failure.

Declaration
[JsonProperty("testPassed")]
public virtual bool? TestPassed { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top