Show / Hide Table of Contents

Class ServiceTemplateSpecArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServiceTemplateSpecArgs
Inherited Members
ResourceArgs.Empty
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.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class ServiceTemplateSpecArgs : ResourceArgs

Constructors

View Source

ServiceTemplateSpecArgs()

Declaration
public ServiceTemplateSpecArgs()

Properties

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 Input<int> ContainerConcurrency { get; set; }
Property Value
Type Description
Input<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 InputList<ServiceTemplateSpecContainerArgs> Containers { get; set; }
Property Value
Type Description
InputList<ServiceTemplateSpecContainerArgs>
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 Input<string> ServiceAccountName { get; set; }
Property Value
Type Description
Input<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 Input<string> ServingState { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.