RevisionSpecArgs

data class RevisionSpecArgs(val containerConcurrency: Output<Int>? = null, val containers: Output<List<ContainerArgs>>? = null, val enableServiceLinks: Output<Boolean>? = null, val imagePullSecrets: Output<List<LocalObjectReferenceArgs>>? = null, val serviceAccountName: Output<String>? = null, val timeoutSeconds: Output<Int>? = null, val volumes: Output<List<VolumeArgs>>? = null) : ConvertibleToJava<RevisionSpecArgs>

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

Constructors

Link copied to clipboard
fun RevisionSpecArgs(containerConcurrency: Output<Int>? = null, containers: Output<List<ContainerArgs>>? = null, enableServiceLinks: Output<Boolean>? = null, imagePullSecrets: Output<List<LocalObjectReferenceArgs>>? = null, serviceAccountName: Output<String>? = null, timeoutSeconds: Output<Int>? = null, volumes: Output<List<VolumeArgs>>? = null)

Functions

Link copied to clipboard
open override fun toJava(): RevisionSpecArgs

Properties

Link copied to clipboard
val containerConcurrency: Output<Int>? = null

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
val containers: Output<List<ContainerArgs>>? = null

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
val enableServiceLinks: Output<Boolean>? = null

Not supported by Cloud Run.

Link copied to clipboard

Not supported by Cloud Run.

Link copied to clipboard
val serviceAccountName: Output<String>? = null

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
val timeoutSeconds: Output<Int>? = null

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
val volumes: Output<List<VolumeArgs>>? = null