Show / Hide Table of Contents

Class Status

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

Inheritance
System.Object
Status
Implements
IDirectResponseSchema
Namespace: Google.Apis.CloudRun.v1.Data
Assembly: Google.Apis.CloudRun.v1.dll
Syntax
public class Status : object, IDirectResponseSchema

Properties

Code

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

Declaration
public virtual Nullable<int> Code { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

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. +optional

Declaration
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
System.String

Message

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

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

Metadata

Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api- conventions.md#types-kinds +optional

Declaration
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. +optional

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

StatusValue

Status of the operation. One of: "Success" or "Failure". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status +optional

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

Implements

IDirectResponseSchema
Back to top