Show / Hide Table of Contents

Class DbIormConfig

The IORM configuration settings for the database.

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

Properties

DbName

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

The database name. For the default DbPlan, the dbName is default.

FlashCacheLimit

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

The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.

Share

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

The relative priority of this database.

In this article
Back to top