Class Capacity
Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).
Inherited Members
Namespace: Oci.AnalyticsService.Models
Assembly: OCI.DotNetSDK.Analytics.dll
Syntax
public class Capacity
Properties
CapacityType
Declaration
[Required(ErrorMessage = "CapacityType is required.")]
[JsonProperty(PropertyName = "capacityType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CapacityType? CapacityType { get; set; }
Property Value
Type | Description |
---|---|
CapacityType? | The capacity model to use. Accepted values are: OLPU_COUNT, USER_COUNT |
Remarks
Required
CapacityValue
Declaration
[Required(ErrorMessage = "CapacityValue is required.")]
[JsonProperty(PropertyName = "capacityValue")]
public int? CapacityValue { get; set; }
Property Value
Type | Description |
---|---|
int? | The capacity value selected, either the number of OCPUs (OLPU_COUNT) or the number of users (USER_COUNT). This parameter affects the number of OCPUs, amount of memory, and other resources allocated to the instance. |
Remarks
Required