Show / Hide Table of Contents

Class RevisionSpec

RevisionSpec holds the desired state of the Revision (from the client).

Inheritance
System.Object
RevisionSpec
Implements
IDirectResponseSchema
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.CloudRun.v1alpha1.Data
Assembly: Google.Apis.CloudRun.v1alpha1.dll
Syntax
public class RevisionSpec : IDirectResponseSchema

Properties

ConcurrencyModel

ConcurrencyModel specifies the desired concurrency model (Single or Multi) for the Revision. Defaults to Multi. Deprecated in favor of ContainerConcurrency. +optional

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

Container

Container defines the unit of execution for this Revision. In the context of a Revision, we disallow a number of the fields of this Container, including: name, ports, and volumeMounts. The runtime contract is documented here: https://github.com/knative/serving/blob/master/docs/runtime- contract.md

Declaration
[JsonProperty("container")]
public virtual Container Container { get; set; }
Property Value
Type Description
Container

ContainerConcurrency

(Optional) ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container instance of the Revision. Cloud Run fully managed: supported, defaults to 80 Cloud Run on GKE: supported, defaults to 0, which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler.

Declaration
[JsonProperty("containerConcurrency")]
public virtual int? ContainerConcurrency { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Containers

Containers holds the single container that defines the unit of execution for this Revision. In the context of a Revision, we disallow a number of fields on this Container, including: name and lifecycle. In Cloud Run, only a single container may be provided.

Declaration
[JsonProperty("containers")]
public virtual IList<Container> Containers { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Container>

ETag

The ETag of the item.

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

Generation

Deprecated and not currently populated by Cloud Run. See metadata.generation instead, which is the sequence number containing the latest generation of the desired state. Read-only.

Declaration
[JsonProperty("generation")]
public virtual int? Generation { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ServiceAccountName

Email address of the IAM service account associated with the revision of the service. The service account represents the identity of the running revision, and determines what permissions the revision has. If not provided, the revision will use the project's default service account.

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

ServingState

ServingState holds a value describing the state the resources are in for this Revision. Users must not specify this when creating a revision. It is expected that the system will manipulate this based on routability and load. Populated by the system. Read-only.

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

TimeoutSeconds

TimeoutSeconds holds the max duration the instance is allowed for responding to a request. Not currently used by Cloud Run.

Declaration
[JsonProperty("timeoutSeconds")]
public virtual int? TimeoutSeconds { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Volumes

Declaration
[JsonProperty("volumes")]
public virtual IList<Volume> Volumes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Volume>

Implements

IDirectResponseSchema
Back to top