Show / Hide Table of Contents

Class CloudExadataInfrastructureDiscovery

The result of the Exadata infrastructure discovery.

Inheritance
object
EntityDiscovered
CloudExadataInfrastructureDiscovery
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 CloudExadataInfrastructureDiscovery : EntityDiscovered

Properties

CompartmentId

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

The OCID of the compartment.

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 CloudExadataInfrastructureDiscovery.LicenseModelEnum? LicenseModel { get; set; }
Property Value
Type Description
CloudExadataInfrastructureDiscovery.LicenseModelEnum?

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

RackSize

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

The size of the Exadata infrastructure.

StorageGrid

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

StorageServers

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

The list of storage servers in the Exadata infrastructure.

VmClusters

Declaration
[JsonProperty(PropertyName = "vmClusters")]
public List<VMClusterDiscoverySummary> VmClusters { get; set; }
Property Value
Type Description
List<VMClusterDiscoverySummary>

The list of VM Clusters in the Exadata infrastructure.

In this article
Back to top