# 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_migration_client = oci.database_migration.DatabaseMigrationClient(
config)
# Send the request to service, some parameters are not required, see API
# doc for more info
create_assessment_response = database_migration_client.create_assessment(
create_assessment_details=oci.database_migration.models.CreateMySqlAssessmentDetails(
database_combination="MYSQL",
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
network_speed_megabit_per_second="MBPS_10000",
acceptable_downtime="MORE_THAN_2_DAYS",
database_data_size="GREATER_THAN_50TB",
ddl_expectation="DDL_EXPECTED",
source_database_connection=oci.database_migration.models.SourceAssessmentConnection(
id="ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value"),
target_database_connection=oci.database_migration.models.TargetAssessmentConnection(
id="ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value",
connection_type="ORACLE",
technology_type="AMAZON_AURORA_MYSQL",
technology_sub_type="EXAMPLE-technologySubType-Value",
database_version="EXAMPLE-databaseVersion-Value"),
description="EXAMPLE-description-Value",
display_name="EXAMPLE-displayName-Value",
creation_type="CREATE_AND_RUN_ASSESSORS",
freeform_tags={
'EXAMPLE_KEY_Gurlr': 'EXAMPLE_VALUE_FdaF6qaIEgSfrVTFl5BX'},
defined_tags={
'EXAMPLE_KEY_xkj4Q': {
'EXAMPLE_KEY_EtsKU': 'EXAMPLE--Value'}},
exclude_objects=[
oci.database_migration.models.MySqlDatabaseObject(
schema="EXAMPLE-schema-Value",
object_name="EXAMPLE-objectName-Value",
type="EXAMPLE-type-Value")],
include_objects=[
oci.database_migration.models.MySqlDatabaseObject(
schema="EXAMPLE-schema-Value",
object_name="EXAMPLE-objectName-Value",
type="EXAMPLE-type-Value")],
bulk_include_exclude_data="EXAMPLE-bulkIncludeExcludeData-Value"),
opc_retry_token="EXAMPLE-opcRetryToken-Value",
opc_request_id="4ZXJZKKGWX6KIUPIS8QK<unique_ID>")
# Get the data from response
print(create_assessment_response.data)