Show / Hide Table of Contents

Class Operation.WarningsData

[Output Only] If warning messages are generated during processing of the operation, this field will be populated.

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

Properties

Code

[Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.

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

Data

[Output Only] Metadata about this warning in key: value format. For example: "data": [ { "key": "scope", "value": "zones/us-east1-d" }

Declaration
[JsonProperty("data")]
public virtual IList<Operation.WarningsData.DataData> Data { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Operation.WarningsData.DataData>

Message

[Output Only] A human-readable description of the warning code.

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