# 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
from datetime import datetime

# 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
application_migration_client = oci.application_migration.ApplicationMigrationClient(
    config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_source_response = application_migration_client.update_source(
    source_id="ocid1.test.oc1..<unique_ID>EXAMPLE-sourceId-Value",
    update_source_details=oci.application_migration.models.UpdateSourceDetails(
        display_name="EXAMPLE-displayName-Value",
        description="EXAMPLE-description-Value",
        source_details=oci.application_migration.models.ImportSourceDetails(
            type="IMPORT",
            manifest=oci.application_migration.models.ImportManifest(
                version="EXAMPLE-version-Value",
                export_type="EXAMPLE-exportType-Value",
                export_details="EXAMPLE-exportDetails-Value",
                timestamp=datetime.strptime(
                    "2000-03-15T01:25:10.172Z",
                    "%Y-%m-%dT%H:%M:%S.%fZ"),
                md5="EXAMPLE-md5-Value",
                signature="EXAMPLE-signature-Value"),
            namespace="EXAMPLE-namespace-Value",
            bucket="EXAMPLE-bucket-Value",
            object_name="EXAMPLE-objectName-Value"),
        authorization_details=oci.application_migration.models.InternalAuthorizationDetails(
            type="INTERNAL_COMPUTE",
            username="EXAMPLE-username-Value",
            password="EXAMPLE-password-Value"),
        freeform_tags={
            'EXAMPLE_KEY_vLLV6': 'EXAMPLE_VALUE_qUfDOrxVTQA6ZwwkmMB6'},
        defined_tags={
            'EXAMPLE_KEY_ReGWC': {
                'EXAMPLE_KEY_yeAnh': 'EXAMPLE--Value'}}),
    opc_request_id="RHGFLIEMEQDQT0HC1QR4<unique_ID>",
    if_match="EXAMPLE-ifMatch-Value")

# Get the data from response
print(update_source_response.headers)