Show / Hide Table of Contents

Class Operation.ErrorData.ErrorsData

[Output Only] The array of errors encountered while processing this operation.

Inheritance
System.Object
Operation.ErrorData.ErrorsData
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 ErrorsData

Properties

Code

[Output Only] The error type identifier for this error.

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

Location

[Output Only] Indicates the field in the request that caused the error. This property is optional.

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

Message

[Output Only] An optional, human-readable error message.

Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top