Class UpdateTablespaceDetails
The details required to update a tablespace.
It takes either credentialDetails or databaseCredential. It's recommended to provide databaseCredential
Inheritance
UpdateTablespaceDetails
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class UpdateTablespaceDetails
Properties
AutoExtendMaxSize
Declaration
[JsonProperty(PropertyName = "autoExtendMaxSize")]
public TablespaceStorageSize AutoExtendMaxSize { get; set; }
Property Value
Type |
Description |
TablespaceStorageSize |
The maximum disk space allowed for automatic extension of the data files or temp files.
|
AutoExtendNextSize
Declaration
[JsonProperty(PropertyName = "autoExtendNextSize")]
public TablespaceStorageSize AutoExtendNextSize { get; set; }
Property Value
Type |
Description |
TablespaceStorageSize |
The size of the next increment of disk space to be allocated automatically when more extents are required.
|
CredentialDetails
Declaration
[JsonProperty(PropertyName = "credentialDetails")]
public TablespaceAdminCredentialDetails CredentialDetails { get; set; }
Property Value
DatabaseCredential
Declaration
[JsonProperty(PropertyName = "databaseCredential")]
public DatabaseCredentialDetails DatabaseCredential { get; set; }
Property Value
FileSize
Declaration
[JsonProperty(PropertyName = "fileSize")]
public TablespaceStorageSize FileSize { get; set; }
Property Value
IsAutoExtensible
Declaration
[JsonProperty(PropertyName = "isAutoExtensible")]
public bool? IsAutoExtensible { get; set; }
Property Value
Type |
Description |
bool? |
Specifies whether the data file or temp file can be extended automatically.
|
IsDefault
Declaration
[JsonProperty(PropertyName = "isDefault")]
public bool? IsDefault { get; set; }
Property Value
Type |
Description |
bool? |
Specifies whether the tablespace is the default tablespace.
|
IsMaxSizeUnlimited
Declaration
[JsonProperty(PropertyName = "isMaxSizeUnlimited")]
public bool? IsMaxSizeUnlimited { get; set; }
Property Value
Type |
Description |
bool? |
Specifies whether the disk space of the data file or temp file can be limited.
|
Name
Declaration
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type |
Description |
string |
The name of the tablespace. It must be unique within a database.
|
Status
Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateTablespaceDetails.StatusEnum? Status { get; set; }
Property Value
Type
Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateTablespaceDetails.TypeEnum? Type { get; set; }
Property Value