Show / Hide Table of Contents

Class ResizeDataFileDetails

The details required to resize a data file or temp file within the tablespace. It takes either credentialDetails or databaseCredential. It's recommended to provide databaseCredential

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

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

DataFile

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

Name of the data file or temp file to be resized.

Remarks

Required

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 new size of the data file or temp file.

FileType

Declaration
[Required(ErrorMessage = "FileType is required.")]
[JsonProperty(PropertyName = "fileType")]
[JsonConverter(typeof(StringEnumConverter))]
public ResizeDataFileDetails.FileTypeEnum? FileType { get; set; }
Property Value
Type Description
ResizeDataFileDetails.FileTypeEnum?

Specifies whether the file is a data file or temp file.

Remarks

Required

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.

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.

In this article
Back to top