Show / Hide Table of Contents

Class DropTablespaceDetails

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

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

Properties

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

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.

In this article
Back to top