DropTablespaceDetails

class oci.database_management.models.DropTablespaceDetails(**kwargs)

Bases: object

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

Methods

__init__(**kwargs) Initializes a new DropTablespaceDetails object with values from keyword arguments.

Attributes

credential_details Gets the credential_details of this DropTablespaceDetails.
database_credential Gets the database_credential of this DropTablespaceDetails.
is_cascade_constraints Gets the is_cascade_constraints of this DropTablespaceDetails.
is_dropping_data_files Gets the is_dropping_data_files of this DropTablespaceDetails.
is_including_contents Gets the is_including_contents of this DropTablespaceDetails.
__init__(**kwargs)

Initializes a new DropTablespaceDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • credential_details (oci.database_management.models.TablespaceAdminCredentialDetails) – The value to assign to the credential_details property of this DropTablespaceDetails.
  • database_credential (oci.database_management.models.DatabaseCredentialDetails) – The value to assign to the database_credential property of this DropTablespaceDetails.
  • is_including_contents (bool) – The value to assign to the is_including_contents property of this DropTablespaceDetails.
  • is_dropping_data_files (bool) – The value to assign to the is_dropping_data_files property of this DropTablespaceDetails.
  • is_cascade_constraints (bool) – The value to assign to the is_cascade_constraints property of this DropTablespaceDetails.
credential_details

Gets the credential_details of this DropTablespaceDetails.

Returns:The credential_details of this DropTablespaceDetails.
Return type:oci.database_management.models.TablespaceAdminCredentialDetails
database_credential

Gets the database_credential of this DropTablespaceDetails.

Returns:The database_credential of this DropTablespaceDetails.
Return type:oci.database_management.models.DatabaseCredentialDetails
is_cascade_constraints

Gets the is_cascade_constraints of this DropTablespaceDetails. Specifies whether all the constraints on the tablespace being dropped should be dropped.

Returns:The is_cascade_constraints of this DropTablespaceDetails.
Return type:bool
is_dropping_data_files

Gets the is_dropping_data_files of this DropTablespaceDetails. Specifies whether all the associated data files of the tablespace being dropped should be dropped.

Returns:The is_dropping_data_files of this DropTablespaceDetails.
Return type:bool
is_including_contents

Gets the is_including_contents of this DropTablespaceDetails. Specifies whether all the contents of the tablespace being dropped should be dropped.

Returns:The is_including_contents of this DropTablespaceDetails.
Return type:bool