Class ServiceTemplateSpecArgs
Inherited Members
Namespace: Pulumi.Gcp.CloudRun.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class ServiceTemplateSpecArgs : ResourceArgs
Constructors
View SourceServiceTemplateSpecArgs()
Declaration
public ServiceTemplateSpecArgs()
Properties
View SourceContainerConcurrency
ContainerConcurrency specifies the maximum allowed in-flight (concurrent) requests per container of the Revision. Values are:
0thread-safe, the system should manage the max concurrency. This is the default value.1not-thread-safe. Single concurrency2-Nthread-safe, max concurrency of N
Declaration
public Input<int> ContainerConcurrency { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
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> |
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> |
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> |