Class UrlMapValidationResult
Message representing the validation result for a UrlMap.
Inheritance
UrlMapValidationResult
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class UrlMapValidationResult : IDirectResponseSchema
Properties
ETag
Declaration
public virtual string ETag { get; set; }
Property Value
LoadErrors
Declaration
[JsonProperty("loadErrors")]
public virtual IList<string> LoadErrors { get; set; }
Property Value
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
TestFailures
Declaration
[JsonProperty("testFailures")]
public virtual IList<TestFailure> TestFailures { get; set; }
Property Value
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
Implements