# 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="WEEKLY",
interval_value="EXAMPLE-intervalValue-Value"),
sql_text="EXAMPLE-sqlText-Value",
in_binds=oci.database_management.models.JobInBindsDetails(
items=[
oci.database_management.models.JobInBind(
position=44,
data_type="CLOB",
values=["EXAMPLE--Value"],
array_type_name="EXAMPLE-arrayTypeName-Value")]),
out_binds=oci.database_management.models.JobOutBindsDetails(
items=[
oci.database_management.models.JobOutBind(
position=50,
data_type="STRING")]),
sql_type="DML",
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_UkW5E': 'EXAMPLE_VALUE_gFjJA4vXRSdTsA7NxW6F'},
defined_tags={
'EXAMPLE_KEY_I5zOP': {
'EXAMPLE_KEY_dhCCU': 'EXAMPLE--Value'}}),
opc_request_id="YQOAZY5DLXLUMBKIDYE1<unique_ID>",
if_match="EXAMPLE-ifMatch-Value")
# Get the data from response
print(update_job_response.data)