Class PCUType
A PCU (Provisioned Capacity Unit) group type descriptor, describing a specific PCU configuration available in a region.
public class PCUType
- Inheritance
-
PCUType
- Inherited Members
Properties
CloudProvider
The cloud provider for this PCU type (e.g. 'AWS').
[JsonPropertyName("provider")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public CloudProviderType? CloudProvider { get; set; }
Property Value
Details
Hardware specifications for this PCU type.
[JsonPropertyName("details")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public PCUTypeDetails Details { get; set; }
Property Value
Region
The region where this PCU type is available.
[JsonPropertyName("region")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public string Region { get; set; }
Property Value
Type
The type of PCU group (e.g. 'standard').
[JsonPropertyName("type")]
public string Type { get; set; }