Show / Hide Table of Contents

Class ExternalExadataInfrastructureDiscovery

The result of the Exadata infrastructure discovery.

Inheritance
object
EntityDiscovered
ExternalExadataInfrastructureDiscovery
Inherited Members
EntityDiscovered.Id
EntityDiscovered.AgentId
EntityDiscovered.ConnectorId
EntityDiscovered.DisplayName
EntityDiscovered.Version
EntityDiscovered.InternalId
EntityDiscovered.Status
EntityDiscovered.DiscoverStatus
EntityDiscovered.DiscoverErrorCode
EntityDiscovered.DiscoverErrorMsg
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 ExternalExadataInfrastructureDiscovery : EntityDiscovered

Properties

CompartmentId

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

The OCID of the compartment.

DbSystems

Declaration
[JsonProperty(PropertyName = "dbSystems")]
public List<ExternalDatabaseSystemDiscoverySummary> DbSystems { get; set; }
Property Value
Type Description
List<ExternalDatabaseSystemDiscoverySummary>

The list of DB systems in the Exadata infrastructure.

DiscoveryKey

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

The unique key of the discovery request.

Remarks

Required

GridHomePath

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

The Oracle home path of the Exadata infrastructure.

LicenseModel

Declaration
[JsonProperty(PropertyName = "licenseModel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExternalExadataInfrastructureDiscovery.LicenseModelEnum? LicenseModel { get; set; }
Property Value
Type Description
ExternalExadataInfrastructureDiscovery.LicenseModelEnum?

The Oracle license model that applies to the database management resources.

RackSize

Declaration
[JsonProperty(PropertyName = "rackSize")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExternalExadataInfrastructureDiscovery.RackSizeEnum? RackSize { get; set; }
Property Value
Type Description
ExternalExadataInfrastructureDiscovery.RackSizeEnum?

The size of the Exadata infrastructure.

StorageGrid

Declaration
[JsonProperty(PropertyName = "storageGrid")]
public ExternalStorageGridDiscoverySummary StorageGrid { get; set; }
Property Value
Type Description
ExternalStorageGridDiscoverySummary

StorageServers

Declaration
[JsonProperty(PropertyName = "storageServers")]
public List<ExternalStorageServerDiscoverySummary> StorageServers { get; set; }
Property Value
Type Description
List<ExternalStorageServerDiscoverySummary>

The list of storage servers in the Exadata infrastructure.

In this article
Back to top