Show / Hide Table of Contents

Class Status

Status is a return value for calls that don't return other objects.

Inheritance
object
Status
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class Status : IDirectResponseSchema

Properties

Code

Suggested HTTP return code for this status, 0 if not set.

Declaration
[JsonProperty("code")]
public virtual int? Code { get; set; }
Property Value
Type Description
int?

Details

Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.

Declaration
[JsonProperty("details")]
public virtual StatusDetails Details { get; set; }
Property Value
Type Description
StatusDetails

ETag

The ETag of the item.

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

Message

A human-readable description of the status of this operation.

Declaration
[JsonProperty("message")]
public virtual string Message { get; set; }
Property Value
Type Description
string

Metadata

Standard list metadata.

Declaration
[JsonProperty("metadata")]
public virtual ListMeta Metadata { get; set; }
Property Value
Type Description
ListMeta

Reason

A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.

Declaration
[JsonProperty("reason")]
public virtual string Reason { get; set; }
Property Value
Type Description
string

StatusValue

Status of the operation. One of: "Success" or "Failure".

Declaration
[JsonProperty("status")]
public virtual string StatusValue { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX