Show / Hide Table of Contents

Class DiscoveredCloudCluster

The details of a cloud cluster discovered in a cloud DB system discovery run.

Inheritance
object
DiscoveredCloudDbSystemComponent
DiscoveredCloudCluster
Inherited Members
DiscoveredCloudDbSystemComponent.ComponentId
DiscoveredCloudDbSystemComponent.DisplayName
DiscoveredCloudDbSystemComponent.ComponentName
DiscoveredCloudDbSystemComponent.ResourceId
DiscoveredCloudDbSystemComponent.DbaasId
DiscoveredCloudDbSystemComponent.IsSelectedForMonitoring
DiscoveredCloudDbSystemComponent.Status
DiscoveredCloudDbSystemComponent.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 DiscoveredCloudCluster : DiscoveredCloudDbSystemComponent

Properties

ClusterInstances

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

The list of cluster instances for the cloud cluster.

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<CloudClusterNetworkConfiguration> NetworkConfigurations { get; set; }
Property Value
Type Description
List<CloudClusterNetworkConfiguration>

The list of network address configurations of the cloud 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<CloudClusterScanListenerConfiguration> ScanConfigurations { get; set; }
Property Value
Type Description
List<CloudClusterScanListenerConfiguration>

The list of Single Client Access Name (SCAN) configurations of the cloud 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<CloudClusterVipConfiguration> VipConfigurations { get; set; }
Property Value
Type Description
List<CloudClusterVipConfiguration>

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

In this article
Back to top