Show / Hide Table of Contents

Class RequestUtilization

Target scaling by request utilization. Only applicable in the App Engine flexible environment.

Inheritance
System.Object
RequestUtilization
Implements
IDirectResponseSchema
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: Google.Apis.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class RequestUtilization : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

TargetConcurrentRequests

Target number of concurrent requests.

Declaration
[JsonProperty("targetConcurrentRequests")]
public virtual int? TargetConcurrentRequests { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TargetRequestCountPerSecond

Target requests per second.

Declaration
[JsonProperty("targetRequestCountPerSecond")]
public virtual int? TargetRequestCountPerSecond { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top