Show / Hide Table of Contents

Class NetworkUtilization

Target scaling by network usage. Only applicable in the App Engine flexible environment.

Inheritance
System.Object
NetworkUtilization
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 NetworkUtilization : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

TargetReceivedBytesPerSecond

Target bytes received per second.

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

TargetReceivedPacketsPerSecond

Target packets received per second.

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

TargetSentBytesPerSecond

Target bytes sent per second.

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

TargetSentPacketsPerSecond

Target packets sent per second.

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

Implements

IDirectResponseSchema
In This Article
Back to top