Show / Hide Table of Contents

Class DiscoverCloudExadataInfrastructureDetails

The connection details and the discovery options for the Exadata discovery.

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

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

DiscoveryType

Declaration
[Required(ErrorMessage = "DiscoveryType is required.")]
[JsonProperty(PropertyName = "discoveryType")]
[JsonConverter(typeof(StringEnumConverter))]
public DiscoverCloudExadataInfrastructureDetails.DiscoveryTypeEnum? DiscoveryType { get; set; }
Property Value
Type Description
DiscoverCloudExadataInfrastructureDetails.DiscoveryTypeEnum?

The type of discovery.

Remarks

Required

ExadataInfrastructureId

Declaration
[JsonProperty(PropertyName = "exadataInfrastructureId")]
public string ExadataInfrastructureId { get; set; }
Property Value
Type Description
string

The OCID of the Exadata infrastructure. This is applicable for rediscovery only.

VmClusterIds

Declaration
[Required(ErrorMessage = "VmClusterIds is required.")]
[JsonProperty(PropertyName = "vmClusterIds")]
public List<string> VmClusterIds { get; set; }
Property Value
Type Description
List<string>

The list of VM Clusters in the Exadata infrastructure.

Remarks

Required

In this article
Back to top