Class StandardAppVersionAutomaticScalingArgs
Inherited Members
Namespace: Pulumi.Gcp.AppEngine.Inputs
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class StandardAppVersionAutomaticScalingArgs : ResourceArgs
Constructors
View SourceStandardAppVersionAutomaticScalingArgs()
Declaration
public StandardAppVersionAutomaticScalingArgs()
Properties
View SourceMaxConcurrentRequests
Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance. Defaults to a runtime-specific value.
Declaration
public Input<int> MaxConcurrentRequests { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
MaxIdleInstances
Maximum number of idle instances that should be maintained for this version.
Declaration
public Input<int> MaxIdleInstances { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
MaxPendingLatency
Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
Declaration
public Input<string> MaxPendingLatency { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
MinIdleInstances
Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
Declaration
public Input<int> MinIdleInstances { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
MinPendingLatency
Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it. A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s".
Declaration
public Input<string> MinPendingLatency { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
StandardSchedulerSettings
Scheduler settings for standard environment. Structure is documented below.
Declaration
public Input<StandardAppVersionAutomaticScalingStandardSchedulerSettingsArgs> StandardSchedulerSettings { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<StandardAppVersionAutomaticScalingStandardSchedulerSettingsArgs> |