Show / Hide Table of Contents

Class Capacity

Service instance capacity metadata (e.g.: OLPU count, number of users, ...etc...).

Inheritance
object
Capacity
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top