# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

import oci

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
database_client = oci.database.DatabaseClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_pluggable_database_response = database_client.create_pluggable_database(
    create_pluggable_database_details=oci.database.models.CreatePluggableDatabaseDetails(
        pdb_name="EXAMPLE-pdbName-Value",
        container_database_id="ocid1.test.oc1..<unique_ID>EXAMPLE-containerDatabaseId-Value",
        pdb_admin_password="EXAMPLE-pdbAdminPassword-Value",
        tde_wallet_password="EXAMPLE-tdeWalletPassword-Value",
        should_pdb_admin_account_be_locked=False,
        container_database_admin_password="EXAMPLE-containerDatabaseAdminPassword-Value",
        should_create_pdb_backup=True,
        pdb_creation_type_details=oci.database.models.CreatePluggableDatabaseFromLocalCloneDetails(
            creation_type="LOCAL_CLONE_PDB",
            source_pluggable_database_id="ocid1.test.oc1..<unique_ID>EXAMPLE-sourcePluggableDatabaseId-Value"),
        freeform_tags={
            'EXAMPLE_KEY_yaMXK': 'EXAMPLE_VALUE_tVEjthpSn6h9Nj2L5BUe'},
        defined_tags={
            'EXAMPLE_KEY_zepFz': {
                'EXAMPLE_KEY_d3EkT': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="5NW2XTBLMBRO3URXDRCD<unique_ID>")

# Get the data from response
print(create_pluggable_database_response.data)