# 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_mcp_server_response = database_tools_client.create_database_tools_mcp_server(
create_database_tools_mcp_server_details=oci.database_tools.models.CreateDatabaseToolsMcpServerDefaultDetails(
type="DEFAULT",
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
display_name="EXAMPLE-displayName-Value",
database_tools_connection_id="ocid1.test.oc1..<unique_ID>EXAMPLE-databaseToolsConnectionId-Value",
domain_id="ocid1.test.oc1..<unique_ID>EXAMPLE-domainId-Value",
storage=oci.database_tools.models.DatabaseToolsMcpServerStorageObjectStorage(
type="OBJECT_STORAGE",
bucket=oci.database_tools.models.DatabaseToolsMcpServerStorageObjectStorageBucket(
namespace="EXAMPLE-namespace-Value",
bucket_name="EXAMPLE-bucketName-Value")),
custom_roles=[
oci.database_tools.models.DatabaseToolsMcpServerCustomRole(
display_name="EXAMPLE-displayName-Value",
description="EXAMPLE-description-Value")],
description="EXAMPLE-description-Value",
access_token_expiry_in_seconds=26007703,
refresh_token_expiry_in_seconds=1619377,
defined_tags={
'EXAMPLE_KEY_7lHeu': {
'EXAMPLE_KEY_Chrdm': 'EXAMPLE--Value'}},
freeform_tags={
'EXAMPLE_KEY_oydrH': 'EXAMPLE_VALUE_CLHcaVjBbOyBj4nPVYsA'},
runtime_identity="RESOURCE_PRINCIPAL",
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(
"2020-06-22T23:19:25.611Z",
"%Y-%m-%dT%H:%M:%S.%fZ"))]),
opc_retry_token="EXAMPLE-opcRetryToken-Value",
opc_request_id="41YLK5INARTIYKCBOL0E<unique_ID>")
# Get the data from response
print(create_database_tools_mcp_server_response.data)