Class DropTablespaceDetails
The details required to drop a tablespace.
It takes either credentialDetails or databaseCredential. It's recommended to provide databaseCredential
Inheritance
DropTablespaceDetails
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class DropTablespaceDetails
Properties
CredentialDetails
Declaration
[JsonProperty(PropertyName = "credentialDetails")]
public TablespaceAdminCredentialDetails CredentialDetails { get; set; }
Property Value
DatabaseCredential
Declaration
[JsonProperty(PropertyName = "databaseCredential")]
public DatabaseCredentialDetails DatabaseCredential { get; set; }
Property Value
IsCascadeConstraints
Declaration
[JsonProperty(PropertyName = "isCascadeConstraints")]
public bool? IsCascadeConstraints { get; set; }
Property Value
Type |
Description |
bool? |
Specifies whether all the constraints on the tablespace being dropped should be dropped.
|
IsDroppingDataFiles
Declaration
[JsonProperty(PropertyName = "isDroppingDataFiles")]
public bool? IsDroppingDataFiles { get; set; }
Property Value
Type |
Description |
bool? |
Specifies whether all the associated data files of the tablespace being dropped should be dropped.
|
IsIncludingContents
Declaration
[JsonProperty(PropertyName = "isIncludingContents")]
public bool? IsIncludingContents { get; set; }
Property Value
Type |
Description |
bool? |
Specifies whether all the contents of the tablespace being dropped should be dropped.
|