Show / Hide Table of Contents

Class ServiceTemplateSpec

Inheritance
System.Object
ServiceTemplateSpec
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: Pulumi.Gcp.CloudRun.Outputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class ServiceTemplateSpec

Fields

View Source

ContainerConcurrency

ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Values are:

  • 0 thread-safe, the system should manage the max concurrency. This is the default value.
  • 1 not-thread-safe. Single concurrency
  • 2-N thread-safe, max concurrency of N
Declaration
public readonly int? ContainerConcurrency
Field Value
Type Description
System.Nullable<System.Int32>
View Source

Containers

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 Structure is documented below.

Declaration
public readonly ImmutableArray<ServiceTemplateSpecContainer> Containers
Field Value
Type Description
System.Collections.Immutable.ImmutableArray<ServiceTemplateSpecContainer>
View Source

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 readonly string ServiceAccountName
Field Value
Type Description
System.String
View Source

ServingState

ServingState holds a value describing the state the resources are in for this Revision. It is expected that the system will manipulate this based on routability and load.

Declaration
public readonly string ServingState
Field Value
Type Description
System.String
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.