Show / Hide Table of Contents

Class StandardAppVersionAutomaticScalingGetArgs

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

Constructors

View Source

StandardAppVersionAutomaticScalingGetArgs()

Declaration
public StandardAppVersionAutomaticScalingGetArgs()

Properties

View Source

MaxConcurrentRequests

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

StandardSchedulerSettings

Scheduler settings for standard environment. Structure is documented below.

Declaration
public Input<StandardAppVersionAutomaticScalingStandardSchedulerSettingsGetArgs> StandardSchedulerSettings { get; set; }
Property Value
Type Description
Input<StandardAppVersionAutomaticScalingStandardSchedulerSettingsGetArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.