Show / Hide Table of Contents

Class OptimizerDatabase

The subset information of the Managed Database resource, which is used by Optimizer Statistics.

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

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 in which the Managed Database resides.

Remarks

Required

DbDeploymentType

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

The infrastructure used to deploy the Oracle Database.

Remarks

Required

DbSubType

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

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

Remarks

Required

DbType

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

The type of Oracle Database installation.

Remarks

Required

DbVersion

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

The version of the Oracle Database.

Remarks

Required

Id

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

The OCID of the Managed Database.

Remarks

Required

Name

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

The name of the Managed Database.

Remarks

Required

In this article
Back to top