Show / Hide Table of Contents

Class AutonomousExadataInfrastructureShapeSummary

The shape of the Autonomous Exadata Infrastructure. The shape determines resources to allocate to the Autonomous Exadata Infrastructure (CPU cores, memory and storage).
To use any of the API operations, you must be authorized in an IAM policy. If you're not authorized, talk to an administrator. If you're an administrator who needs to write policies to give users access, see Getting Started with Policies.

Inheritance
object
AutonomousExadataInfrastructureShapeSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class AutonomousExadataInfrastructureShapeSummary

Properties

AvailableCoreCount

Declaration
[Required(ErrorMessage = "AvailableCoreCount is required.")]
[JsonProperty(PropertyName = "availableCoreCount")]
public int? AvailableCoreCount { get; set; }
Property Value
Type Description
int?

The maximum number of CPU cores that can be enabled on the Autonomous Exadata Infrastructure.

Remarks

Required

CoreCountIncrement

Declaration
[JsonProperty(PropertyName = "coreCountIncrement")]
public int? CoreCountIncrement { get; set; }
Property Value
Type Description
int?

The increment in which core count can be increased or decreased.

MaximumNodeCount

Declaration
[JsonProperty(PropertyName = "maximumNodeCount")]
public int? MaximumNodeCount { get; set; }
Property Value
Type Description
int?

The maximum number of nodes available for the shape.

MinimumCoreCount

Declaration
[JsonProperty(PropertyName = "minimumCoreCount")]
public int? MinimumCoreCount { get; set; }
Property Value
Type Description
int?

The minimum number of CPU cores that can be enabled on the Autonomous Exadata Infrastructure.

MinimumNodeCount

Declaration
[JsonProperty(PropertyName = "minimumNodeCount")]
public int? MinimumNodeCount { get; set; }
Property Value
Type Description
int?

The minimum number of nodes available for the shape.

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the shape used for the Autonomous Exadata Infrastructure.

Remarks

Required

In this article
Back to top