# 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).
from datetime import datetime
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_tools_client = oci.database_tools.DatabaseToolsClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
create_database_tools_sql_report_response = database_tools_client.create_database_tools_sql_report(
create_database_tools_sql_report_details=oci.database_tools.models.CreateDatabaseToolsSqlReportOracleDatabaseDetails(
type="ORACLE_DATABASE",
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
display_name="EXAMPLE-displayName-Value",
source="EXAMPLE-source-Value",
description="EXAMPLE-description-Value",
purpose="EXAMPLE-purpose-Value",
instructions="EXAMPLE-instructions-Value",
variables=[
oci.database_tools.models.DatabaseToolsSqlReportVariable(
name="EXAMPLE-name-Value",
description="EXAMPLE-description-Value",
type="EXAMPLE-type-Value")],
columns=[
oci.database_tools.models.DatabaseToolsSqlReportColumn(
name="EXAMPLE-name-Value",
description="EXAMPLE-description-Value",
type="EXAMPLE-type-Value")],
defined_tags={
'EXAMPLE_KEY_sHbuN': {
'EXAMPLE_KEY_xY5ra': 'EXAMPLE--Value'}},
freeform_tags={
'EXAMPLE_KEY_TsrSq': 'EXAMPLE_VALUE_twZRztEcNsOkhXvfSzVc'},
locks=[
oci.database_tools.models.ResourceLock(
type="DELETE",
related_resource_id="ocid1.test.oc1..<unique_ID>EXAMPLE-relatedResourceId-Value",
message="EXAMPLE-message-Value",
time_created=datetime.strptime(
"2041-02-04T14:56:51.005Z",
"%Y-%m-%dT%H:%M:%S.%fZ"))]),
opc_retry_token="EXAMPLE-opcRetryToken-Value",
opc_request_id="8EMXLQWDOVJ81DQ4SLXM<unique_ID>")
# Get the data from response
print(create_database_tools_sql_report_response.data)