Show / Hide Table of Contents

Class ExadataConfigurationSummary

Summary of a exadata configuration for a resource.

Inheritance
object
ExadataConfigurationSummary
ExadataDatabaseMachineConfigurationSummary
ExadataExaccConfigurationSummary
ExadataExacsConfigurationSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
[JsonConverter(typeof(ExadataConfigurationSummaryModelConverter))]
public class ExadataConfigurationSummary

Properties

CompartmentId

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

The OCID of the compartment.

Remarks

Required

DefinedTags

Declaration
[Required(ErrorMessage = "DefinedTags is required.")]
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Remarks

Required

ExadataDisplayName

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

The user-friendly name for the Exadata system. The name does not have to be unique.

Remarks

Required

ExadataInsightId

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

The OCID of the Exadata insight.

Remarks

Required

ExadataName

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

The Exadata system name. If the Exadata systems managed by Enterprise Manager, the name is unique amongst the Exadata systems managed by the same Enterprise Manager.

Remarks

Required

ExadataRackType

Declaration
[Required(ErrorMessage = "ExadataRackType is required.")]
[JsonProperty(PropertyName = "exadataRackType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExadataRackType? ExadataRackType { get; set; }
Property Value
Type Description
ExadataRackType?

Exadata rack type.

Remarks

Required

ExadataType

Declaration
[Required(ErrorMessage = "ExadataType is required.")]
[JsonProperty(PropertyName = "exadataType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExadataType? ExadataType { get; set; }
Property Value
Type Description
ExadataType?

Operations Insights internal representation of the the Exadata system type.

Remarks

Required

FreeformTags

Declaration
[Required(ErrorMessage = "FreeformTags is required.")]
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Remarks

Required

VmclusterDetails

Declaration
[JsonProperty(PropertyName = "vmclusterDetails")]
public List<VmClusterSummary> VmclusterDetails { get; set; }
Property Value
Type Description
List<VmClusterSummary>

Array of objects containing VM cluster information.

In this article
Back to top