Show / Hide Table of Contents

Class DiscoveredExternalCluster

The details of an external cluster discovered in an external DB system discovery run.

Inheritance
object
DiscoveredExternalDbSystemComponent
DiscoveredExternalCluster
Inherited Members
DiscoveredExternalDbSystemComponent.ComponentId
DiscoveredExternalDbSystemComponent.DisplayName
DiscoveredExternalDbSystemComponent.ComponentName
DiscoveredExternalDbSystemComponent.ResourceId
DiscoveredExternalDbSystemComponent.IsSelectedForMonitoring
DiscoveredExternalDbSystemComponent.Status
DiscoveredExternalDbSystemComponent.AssociatedComponents
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 DiscoveredExternalCluster : DiscoveredExternalDbSystemComponent

Properties

ClusterInstances

Declaration
[JsonProperty(PropertyName = "clusterInstances")]
public List<DiscoveredExternalClusterInstance> ClusterInstances { get; set; }
Property Value
Type Description
List<DiscoveredExternalClusterInstance>

GridHome

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

The directory in which Oracle Grid Infrastructure is installed.

IsFlexCluster

Declaration
[JsonProperty(PropertyName = "isFlexCluster")]
public bool? IsFlexCluster { get; set; }
Property Value
Type Description
bool?

Indicates whether the cluster is an Oracle Flex Cluster or not.

NetworkConfigurations

Declaration
[JsonProperty(PropertyName = "networkConfigurations")]
public List<ExternalClusterNetworkConfiguration> NetworkConfigurations { get; set; }
Property Value
Type Description
List<ExternalClusterNetworkConfiguration>

The list of network address configurations of the external cluster.

OcrFileLocation

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

The location of the Oracle Cluster Registry (OCR) file.

ScanConfigurations

Declaration
[JsonProperty(PropertyName = "scanConfigurations")]
public List<ExternalClusterScanListenerConfiguration> ScanConfigurations { get; set; }
Property Value
Type Description
List<ExternalClusterScanListenerConfiguration>

The list of Single Client Access Name (SCAN) configurations of the external cluster.

Version

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

The version of Oracle Clusterware running in the cluster.

VipConfigurations

Declaration
[JsonProperty(PropertyName = "vipConfigurations")]
public List<ExternalClusterVipConfiguration> VipConfigurations { get; set; }
Property Value
Type Description
List<ExternalClusterVipConfiguration>

The list of Virtual IP (VIP) configurations of the external cluster.

In this article
Back to top