Show / Hide Table of Contents

Class RevisionSpec

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

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

Properties

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 for Anthos: supported, defaults to 0, which means concurrency to the application is not limited, and the system decides the target concurrency for the autoscaler.

Declaration
public virtual Nullable<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. The runtime contract is documented here: https://github.com/knative/serving/blob/master/docs/runtime-contract.md

Declaration
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

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
public virtual string ServiceAccountName { 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
public virtual Nullable<int> TimeoutSeconds { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Volumes

Declaration
public virtual IList<Volume> Volumes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Volume>

Implements

IDirectResponseSchema
Back to top