# 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.CreateOracleAssessmentDetails(
database_combination="ORACLE",
compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
network_speed_megabit_per_second="MBPS_1000",
acceptable_downtime="LESS_THAN_2_DAYS",
database_data_size="GB_50_100",
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="GOOGLE_CLOUD_SQL_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_bwiiK': 'EXAMPLE_VALUE_onIe758oZ2plOuDbp92H'},
defined_tags={
'EXAMPLE_KEY_avciW': {
'EXAMPLE_KEY_5XS44': 'EXAMPLE--Value'}},
exclude_objects=[
oci.database_migration.models.OracleDatabaseObject(
owner="EXAMPLE-owner-Value",
object_name="EXAMPLE-objectName-Value",
type="EXAMPLE-type-Value",
is_omit_excluded_table_from_replication=False)],
include_objects=[
oci.database_migration.models.OracleDatabaseObject(
owner="EXAMPLE-owner-Value",
object_name="EXAMPLE-objectName-Value",
type="EXAMPLE-type-Value",
is_omit_excluded_table_from_replication=False)],
bulk_include_exclude_data="EXAMPLE-bulkIncludeExcludeData-Value"),
opc_retry_token="EXAMPLE-opcRetryToken-Value",
opc_request_id="XEEIJTTAXLVT9DCHCIDV<unique_ID>")
# Get the data from response
print(create_assessment_response.data)