View Source GoogleApi.Run.V1.Model.RevisionSpec (google_api_run v0.29.0)

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

Attributes

  • containerConcurrency (type: integer(), default: nil) - ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container instance of the Revision. If not specified, defaults to 80.
  • containers (type: list(GoogleApi.Run.V1.Model.Container.t), default: nil) - Required. 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.
  • enableServiceLinks (type: boolean(), default: nil) - Not supported by Cloud Run.
  • imagePullSecrets (type: list(GoogleApi.Run.V1.Model.LocalObjectReference.t), default: nil) - Not supported by Cloud Run.
  • serviceAccountName (type: String.t, default: nil) - 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.
  • timeoutSeconds (type: integer(), default: nil) - 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).
  • volumes (type: list(GoogleApi.Run.V1.Model.Volume.t), default: nil) -

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

@type t() :: %GoogleApi.Run.V1.Model.RevisionSpec{
  containerConcurrency: integer() | nil,
  containers: [GoogleApi.Run.V1.Model.Container.t()] | nil,
  enableServiceLinks: boolean() | nil,
  imagePullSecrets: [GoogleApi.Run.V1.Model.LocalObjectReference.t()] | nil,
  serviceAccountName: String.t() | nil,
  timeoutSeconds: integer() | nil,
  volumes: [GoogleApi.Run.V1.Model.Volume.t()] | nil
}

Functions

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.