# 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_management_client = oci.database_management.DbManagementClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
update_job_response = database_management_client.update_job(
    job_id="ocid1.test.oc1..<unique_ID>EXAMPLE-jobId-Value",
    update_job_details=oci.database_management.models.UpdateSqlJobDetails(
        job_type="SQL",
        description="EXAMPLE-description-Value",
        timeout="EXAMPLE-timeout-Value",
        result_location=oci.database_management.models.ObjectStorageJobExecutionResultLocation(
            type="OBJECT_STORAGE",
            namespace_name="EXAMPLE-namespaceName-Value",
            bucket_name="EXAMPLE-bucketName-Value"),
        schedule_details=oci.database_management.models.JobScheduleDetails(
            start_time="EXAMPLE-startTime-Value",
            end_time="EXAMPLE-endTime-Value",
            interval_type="MONTHLY",
            interval_value="EXAMPLE-intervalValue-Value"),
        sql_text="EXAMPLE-sqlText-Value",
        in_binds=oci.database_management.models.JobInBindsDetails(
            items=[
                oci.database_management.models.JobInBind(
                    position=59,
                    data_type="NUMBER",
                    values=["EXAMPLE--Value"],
                    array_type_name="EXAMPLE-arrayTypeName-Value")]),
        out_binds=oci.database_management.models.JobOutBindsDetails(
            items=[
                oci.database_management.models.JobOutBind(
                    position=123,
                    data_type="CLOB")]),
        sql_type="DDL",
        user_name="EXAMPLE-userName-Value",
        password="EXAMPLE-password-Value",
        secret_id="ocid1.test.oc1..<unique_ID>EXAMPLE-secretId-Value",
        named_credential_id="ocid1.test.oc1..<unique_ID>EXAMPLE-namedCredentialId-Value",
        role="SYSDBA",
        freeform_tags={
            'EXAMPLE_KEY_trexC': 'EXAMPLE_VALUE_ncPfRyKR4D3Mum1jBOXh'},
        defined_tags={
            'EXAMPLE_KEY_WNsmM': {
                'EXAMPLE_KEY_ToBNo': 'EXAMPLE--Value'}}),
    opc_request_id="RHSNE1ANSYVJDGJEULCM<unique_ID>",
    if_match="EXAMPLE-ifMatch-Value")

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