Show / Hide Table of Contents

Class UpdateTablespaceDetails

The details required to update a tablespace. It takes either credentialDetails or databaseCredential. It's recommended to provide databaseCredential

Inheritance
object
UpdateTablespaceDetails
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 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
Type Description
TablespaceAdminCredentialDetails

DatabaseCredential

Declaration
[JsonProperty(PropertyName = "databaseCredential")]
public DatabaseCredentialDetails DatabaseCredential { get; set; }
Property Value
Type Description
DatabaseCredentialDetails

FileSize

Declaration
[JsonProperty(PropertyName = "fileSize")]
public TablespaceStorageSize FileSize { get; set; }
Property Value
Type Description
TablespaceStorageSize

The size of each data file or temp file.

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 Description
UpdateTablespaceDetails.StatusEnum?

The status of the tablespace.

Type

Declaration
[JsonProperty(PropertyName = "type")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateTablespaceDetails.TypeEnum? Type { get; set; }
Property Value
Type Description
UpdateTablespaceDetails.TypeEnum?

The type of tablespace.

In this article
Back to top