Show / Hide Table of Contents

Class CloudDatabaseSummary

The summary of a cloud database.

Inheritance
object
CloudDatabaseSummary
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 CloudDatabaseSummary

Properties

CloudDbHomeId

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

The OCID of the external DB home.

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 CloudDbSystemDatabaseManagementConfigDetails DbManagementConfig { get; set; }
Property Value
Type Description
CloudDbSystemDatabaseManagementConfigDetails

DbSystemInfo

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

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

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

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 CloudDatabaseSummary.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
CloudDatabaseSummary.LifecycleStateEnum?

The current lifecycle state of the external database resource.

Remarks

Required

ParentContainerDatabaseId

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

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

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