Show / Hide Table of Contents

Class Resources

Machine resources for a version.

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

Properties

Cpu

Number of CPU cores needed.

Declaration
[JsonProperty("cpu")]
public virtual double? Cpu { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

DiskGb

Disk size (GB) needed.

Declaration
[JsonProperty("diskGb")]
public virtual double? DiskGb { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

ETag

The ETag of the item.

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

KmsKeyReference

The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk

Declaration
[JsonProperty("kmsKeyReference")]
public virtual string KmsKeyReference { get; set; }
Property Value
Type Description
System.String

MemoryGb

Memory (GB) needed.

Declaration
[JsonProperty("memoryGb")]
public virtual double? MemoryGb { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Volumes

User specified volumes.

Declaration
[JsonProperty("volumes")]
public virtual IList<Volume> Volumes { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Volume>

Implements

IDirectResponseSchema
In This Article
Back to top