Show / Hide Table of Contents

Class ClusterDetails

Specific info about a Hadoop cluster

Inheritance
object
ClusterDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class ClusterDetails

Properties

AmbariUrl

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

The URL of Ambari

BdCellVersion

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

Cloud SQL cell version.

BdaVersion

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

BDA version installed in the cluster

BdmVersion

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

Big Data Manager version installed in the cluster.

BdsVersion

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

Big Data Service version installed in the cluster.

BigDataManagerUrl

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

The URL of Big Data Manager.

ClouderaManagerUrl

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

The URL of Cloudera Manager

CsqlCellVersion

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

Big Data SQL version.

DbVersion

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

Cloud SQL query server database version.

HueServerUrl

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

The URL of the Hue server.

JupyterHubUrl

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

The URL of the Jupyterhub.

OdhVersion

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

Version of the ODH (Oracle Distribution including Apache Hadoop) installed on the cluster.

OsVersion

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

Oracle Linux version installed in the cluster.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The time the cluster was created, shown as an RFC 3339 formatted datetime string.

Remarks

Required

TimeRefreshed

Declaration
[JsonProperty(PropertyName = "timeRefreshed")]
public DateTime? TimeRefreshed { get; set; }
Property Value
Type Description
DateTime?

The time the cluster was automatically or manually refreshed, shown as an RFC 3339 formatted datetime string.

In this article
Back to top