Show / Hide Table of Contents

Class ExternalDatabaseSummary

The summary of an external database.

Inheritance
object
ExternalDatabaseSummary
Inherited Members
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 ExternalDatabaseSummary

Properties

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

DatabasePlatformName

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

The operating system of database.

DatabaseSubType

Declaration
[JsonProperty(PropertyName = "databaseSubType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseSubType? DatabaseSubType { get; set; }
Property Value
Type Description
DatabaseSubType?

The subtype of Oracle Database. Indicates whether the database is a Container Database, Pluggable Database, or Non-container Database.

DatabaseType

Declaration
[JsonProperty(PropertyName = "databaseType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DatabaseType? DatabaseType { get; set; }
Property Value
Type Description
DatabaseType?

The type of Oracle Database installation.

DatabaseVersion

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

The Oracle database version.

DbManagementConfig

Declaration
[JsonProperty(PropertyName = "dbManagementConfig")]
public DatabaseManagementConfig DbManagementConfig { get; set; }
Property Value
Type Description
DatabaseManagementConfig

DbSystemInfo

Declaration
[JsonProperty(PropertyName = "dbSystemInfo")]
public ExternalDbSystemBasicInfo DbSystemInfo { get; set; }
Property Value
Type Description
ExternalDbSystemBasicInfo

DbUniqueName

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

The DB_UNIQUE_NAME of the external database.

DbmgmtFeatureConfigs

Declaration
[JsonProperty(PropertyName = "dbmgmtFeatureConfigs")]
public List<DatabaseFeatureConfiguration> DbmgmtFeatureConfigs { get; set; }
Property Value
Type Description
List<DatabaseFeatureConfiguration>

The list of feature configurations

DefinedTags

Declaration
[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. For more information, see Resource Tags. Example: {"Operations": {"CostCenter": "42"}}

DisplayName

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

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

Remarks

Required

ExternalContainerDatabaseId

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

The OCID of the parent Container Database (CDB) if this is a Pluggable Database (PDB).

ExternalDbHomeId

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

The OCID of the external DB home.

FreeformTags

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

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Id

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

The OCID of the external DB system.

Remarks

Required

InstanceDetails

Declaration
[JsonProperty(PropertyName = "instanceDetails")]
public List<ExternalDatabaseInstance> InstanceDetails { get; set; }
Property Value
Type Description
List<ExternalDatabaseInstance>

The list of database instances if the database is a RAC database.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ExternalDatabaseSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
ExternalDatabaseSummary.LifecycleStateEnum?

The current lifecycle state of the external database resource.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system.
Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

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

The date and time the external DB system was created.

Remarks

Required

In this article
Back to top