Show / Hide Table of Contents

Class DatabaseDetails

Partial information about the database which includes id, name, type.

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

Properties

CdbName

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

Name of the CDB.Only applies to PDB.

CompartmentId

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

The OCID of the compartment.

Remarks

Required

DatabaseDisplayName

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

The user-friendly name for the database. The name does not have to be unique.

DatabaseId

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

The OCID of the database.

Remarks

Required

DatabaseName

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

The database name. The database name is unique within the tenancy.

Remarks

Required

DatabaseType

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

Ops Insights internal representation of the database type.

Remarks

Required

DatabaseVersion

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

The version of the database.

Id

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

The OCID of the database insight resource.

Remarks

Required

Instances

Declaration
[JsonProperty(PropertyName = "instances")]
public List<HostInstanceMap> Instances { get; set; }
Property Value
Type Description
List<HostInstanceMap>

Array of hostname and instance name.

In this article
Back to top