Show / Hide Table of Contents

Class DatabaseConfigurationSummary

Summary of a database configuration for a resource.

Inheritance
object
DatabaseConfigurationSummary
AutonomousDatabaseConfigurationSummary
EmManagedExternalDatabaseConfigurationSummary
ExternalMysqlDatabaseConfigurationSummary
MacsManagedCloudDatabaseConfigurationSummary
MacsManagedExternalDatabaseConfigurationSummary
MdsMysqlDatabaseConfigurationSummary
PeComanagedManagedExternalDatabaseConfigurationSummary
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
[JsonConverter(typeof(DatabaseConfigurationSummaryModelConverter))]
public class DatabaseConfigurationSummary

Properties

CdbName

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

Name of the CDB.Only applies to PDB.

Remarks

Required

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
[Required(ErrorMessage = "DatabaseDisplayName is required.")]
[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.

Remarks

Required

DatabaseInsightId

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

The OCID of the database insight resource.

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
[Required(ErrorMessage = "DatabaseVersion is required.")]
[JsonProperty(PropertyName = "databaseVersion")]
public string DatabaseVersion { get; set; }
Property Value
Type Description
string

The version of the database.

Remarks

Required

DefinedTags

Declaration
[Required(ErrorMessage = "DefinedTags is required.")]
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

Remarks

Required

FreeformTags

Declaration
[Required(ErrorMessage = "FreeformTags is required.")]
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

Remarks

Required

ProcessorCount

Declaration
[JsonProperty(PropertyName = "processorCount")]
public int? ProcessorCount { get; set; }
Property Value
Type Description
int?

Processor count. This is the OCPU count for Autonomous Database and CPU core count for other database types.

In this article
Back to top