Show / Hide Table of Contents

Class DiscoverExternalExadataInfrastructureDetails

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

Inheritance
object
DiscoverExternalExadataInfrastructureDetails
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 DiscoverExternalExadataInfrastructureDetails

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

DbSystemIds

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

The list of the DB system identifiers.

Remarks

Required

DiscoveryType

Declaration
[Required(ErrorMessage = "DiscoveryType is required.")]
[JsonProperty(PropertyName = "discoveryType")]
[JsonConverter(typeof(StringEnumConverter))]
public DiscoverExternalExadataInfrastructureDetails.DiscoveryTypeEnum? DiscoveryType { get; set; }
Property Value
Type Description
DiscoverExternalExadataInfrastructureDetails.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.

In this article
Back to top