Class DataStorage
Data Storage information.
Inherited Members
Namespace: Oci.MysqlService.Models
Assembly: OCI.DotNetSDK.Mysql.dll
Syntax
public class DataStorage
Properties
AllocatedStorageSizeInGBs
Declaration
[JsonProperty(PropertyName = "allocatedStorageSizeInGBs")]
public int? AllocatedStorageSizeInGBs { get; set; }
Property Value
Type | Description |
---|---|
int? | The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred. |
DataStorageSizeInGBs
Declaration
[JsonProperty(PropertyName = "dataStorageSizeInGBs")]
public int? DataStorageSizeInGBs { get; set; }
Property Value
Type | Description |
---|---|
int? | User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. |
DataStorageSizeLimitInGBs
Declaration
[JsonProperty(PropertyName = "dataStorageSizeLimitInGBs")]
public int? DataStorageSizeLimitInGBs { get; set; }
Property Value
Type | Description |
---|---|
int? | The absolute limit the DB System's storage size may ever expand to, either manually or automatically.
This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created.
Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
|
IsAutoExpandStorageEnabled
Declaration
[JsonProperty(PropertyName = "isAutoExpandStorageEnabled")]
public bool? IsAutoExpandStorageEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? | Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs. |
MaxStorageSizeInGBs
Declaration
[JsonProperty(PropertyName = "maxStorageSizeInGBs")]
public int? MaxStorageSizeInGBs { get; set; }
Property Value
Type | Description |
---|---|
int? | Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled
is set to true, the DB System will add storage incrementally up to this value.
|