Show / Hide Table of Contents

Class ExadataDetails

Partial information about the exadata which includes id, name and vmclusterNames.

Inheritance
object
ExadataDetails
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
public class ExadataDetails

Properties

Id

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

The OCID of exadata insight resource.

Remarks

Required

Name

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

Name of exadata insight resource.

Remarks

Required

VmclusterNames

Declaration
[JsonProperty(PropertyName = "vmclusterNames")]
public List<string> VmclusterNames { get; set; }
Property Value
Type Description
List<string>

Array of vm cluster names. Applicable for ExaCC and ExaCS.

In this article
Back to top