# 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).
from datetime import datetime
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
os_management_hub_client = oci.os_management_hub.ScheduledJobClient(config)
# Send the request to service, some parameters are not required, see API
# doc for more info
update_scheduled_job_response = os_management_hub_client.update_scheduled_job(
scheduled_job_id="ocid1.test.oc1..<unique_ID>EXAMPLE-scheduledJobId-Value",
update_scheduled_job_details=oci.os_management_hub.models.UpdateScheduledJobDetails(
display_name="EXAMPLE-displayName-Value",
description="EXAMPLE-description-Value",
schedule_type="RECURRING",
time_next_execution=datetime.strptime(
"2048-08-06T01:29:28.863Z",
"%Y-%m-%dT%H:%M:%S.%fZ"),
recurring_rule="EXAMPLE-recurringRule-Value",
operations=[
oci.os_management_hub.models.ScheduledJobOperation(
operation_type="UPDATE_KSPLICE_KERNEL",
package_names=["EXAMPLE--Value"],
windows_update_names=["EXAMPLE--Value"],
manage_module_streams_details=oci.os_management_hub.models.ManageModuleStreamsInScheduledJobDetails(
enable=[
oci.os_management_hub.models.ModuleStreamDetails(
module_name="EXAMPLE-moduleName-Value",
stream_name="EXAMPLE-streamName-Value",
software_source_id="ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value")],
disable=[
oci.os_management_hub.models.ModuleStreamDetails(
module_name="EXAMPLE-moduleName-Value",
stream_name="EXAMPLE-streamName-Value",
software_source_id="ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value")],
install=[
oci.os_management_hub.models.ModuleStreamProfileDetails(
module_name="EXAMPLE-moduleName-Value",
stream_name="EXAMPLE-streamName-Value",
profile_name="EXAMPLE-profileName-Value",
software_source_id="ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value")],
remove=[
oci.os_management_hub.models.ModuleStreamProfileDetails(
module_name="EXAMPLE-moduleName-Value",
stream_name="EXAMPLE-streamName-Value",
profile_name="EXAMPLE-profileName-Value",
software_source_id="ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value")]),
switch_module_streams_details=oci.os_management_hub.models.ModuleStreamDetails(
module_name="EXAMPLE-moduleName-Value",
stream_name="EXAMPLE-streamName-Value",
software_source_id="ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value"),
software_source_ids=["EXAMPLE--Value"])],
freeform_tags={
'EXAMPLE_KEY_qLgPu': 'EXAMPLE_VALUE_Zi5rv4OPrXbOj3gq4UYJ'},
defined_tags={
'EXAMPLE_KEY_ZtHZe': {
'EXAMPLE_KEY_nGMQE': 'EXAMPLE--Value'}},
retry_intervals=[908]),
if_match="EXAMPLE-ifMatch-Value",
opc_request_id="ZYSPQPMLHZFYIOPXDWOV<unique_ID>")
# Get the data from response
print(update_scheduled_job_response.data)