# 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
cloud_migrations_client = oci.cloud_migrations.MigrationClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_migration_plan_response = cloud_migrations_client.create_migration_plan(
    create_migration_plan_details=oci.cloud_migrations.models.CreateMigrationPlanDetails(
        display_name="EXAMPLE-displayName-Value",
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        migration_id="ocid1.test.oc1..<unique_ID>EXAMPLE-migrationId-Value",
        source_migration_plan_id="ocid1.test.oc1..<unique_ID>EXAMPLE-sourceMigrationPlanId-Value",
        strategies=[
            oci.cloud_migrations.models.PercentileResourceAssessmentStrategy(
                strategy_type="PERCENTILE",
                resource_type="MEMORY",
                percentile="P90",
                adjustment_multiplier=7681.9067,
                metric_time_window="7d")],
        target_environments=[
            oci.cloud_migrations.models.OlvmTargetEnvironment(
                target_environment_type="OLVM_TARGET_ENV",
                cluster_asset_id="ocid1.test.oc1..<unique_ID>EXAMPLE-clusterAssetId-Value",
                vnic_profile_asset_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vnicProfileAssetId-Value",
                target_compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-targetCompartmentId-Value",
                olvm_templates={
                    'EXAMPLE_KEY_ujhQh': 'EXAMPLE_VALUE_14E8au2D7x1Wy9Yu5Qd3'},
                preferred_shape_type="VM_INTEL_GPU")],
        freeform_tags={
            'EXAMPLE_KEY_kVoas': 'EXAMPLE_VALUE_ZeHyEyQKIcnddvmb5A2w'},
        defined_tags={
            'EXAMPLE_KEY_Xr7jW': {
                'EXAMPLE_KEY_LJzYD': 'EXAMPLE--Value'}}),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="XDQVEC5ED9DFEAWAJFG8<unique_ID>")

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