Show / Hide Table of Contents

Class LicenseResourceRequirements

Inheritance
System.Object
LicenseResourceRequirements
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.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class LicenseResourceRequirements : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MinGuestCpuCount

Minimum number of guest cpus required to use the Instance. Enforced at Instance creation and Instance start.

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

MinMemoryMb

Minimum memory required to use the Instance. Enforced at Instance creation and Instance start.

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

Implements

IDirectResponseSchema
In This Article
Back to top