Show / Hide Table of Contents

Class DiskUtilization

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

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

Properties

ETag

The ETag of the item.

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

TargetReadBytesPerSecond

Target bytes read per second.

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

TargetReadOpsPerSecond

Target ops read per seconds.

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

TargetWriteBytesPerSecond

Target bytes written per second.

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

TargetWriteOpsPerSecond

Target ops written per second.

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

Implements

IDirectResponseSchema
In This Article
Back to top