RevisionSpecResponse

data class RevisionSpecResponse(val containerConcurrency: Int, val containers: List<ContainerResponse>, val enableServiceLinks: Boolean, val imagePullSecrets: List<LocalObjectReferenceResponse>, val serviceAccountName: String, val timeoutSeconds: Int, val volumes: List<VolumeResponse>)

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

Constructors

Link copied to clipboard
fun RevisionSpecResponse(containerConcurrency: Int, containers: List<ContainerResponse>, enableServiceLinks: Boolean, imagePullSecrets: List<LocalObjectReferenceResponse>, serviceAccountName: String, timeoutSeconds: Int, volumes: List<VolumeResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container instance of the Revision. If not specified, defaults to 80.

Link copied to clipboard

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.

Link copied to clipboard

Not supported by Cloud Run.

Link copied to clipboard

Not supported by Cloud Run.

Link copied to clipboard

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.

Link copied to clipboard

TimeoutSeconds holds the max duration the instance is allowed for responding to a request. Cloud Run: defaults to 300 seconds (5 minutes). Maximum allowed value is 3600 seconds (1 hour).

Link copied to clipboard