# 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).
require 'oci'
require 'date'
# 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::ConfigFileLoader.load_config
# Initialize service client with default config file
os_management_hub_client =
OCI::OsManagementHub::ScheduledJobClient.new(config: 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(
'ocid1.test.oc1..<unique_ID>EXAMPLE-scheduledJobId-Value',
OCI::OsManagementHub::Models::UpdateScheduledJobDetails.new(
display_name: 'EXAMPLE-displayName-Value',
description: 'EXAMPLE-description-Value',
schedule_type: 'RECURRING',
time_next_execution: DateTime.parse('2040-04-24T01:50:34.436Z'),
recurring_rule: 'EXAMPLE-recurringRule-Value',
operations: [
OCI::OsManagementHub::Models::ScheduledJobOperation.new(
operation_type: 'UPDATE_BUGFIX',
package_names: %w[EXAMPLE--Value],
windows_update_names: %w[EXAMPLE--Value],
manage_module_streams_details:
OCI::OsManagementHub::Models::ManageModuleStreamsInScheduledJobDetails
.new(
enable: [
OCI::OsManagementHub::Models::ModuleStreamDetails.new(
module_name: 'EXAMPLE-moduleName-Value',
stream_name: 'EXAMPLE-streamName-Value',
software_source_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value'
)
],
disable: [
OCI::OsManagementHub::Models::ModuleStreamDetails.new(
module_name: 'EXAMPLE-moduleName-Value',
stream_name: 'EXAMPLE-streamName-Value',
software_source_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value'
)
],
install: [
OCI::OsManagementHub::Models::ModuleStreamProfileDetails.new(
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::OsManagementHub::Models::ModuleStreamProfileDetails.new(
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::OsManagementHub::Models::ModuleStreamDetails.new(
module_name: 'EXAMPLE-moduleName-Value',
stream_name: 'EXAMPLE-streamName-Value',
software_source_id:
'ocid1.test.oc1..<unique_ID>EXAMPLE-softwareSourceId-Value'
),
software_source_ids: %w[EXAMPLE--Value]
)
],
freeform_tags: {
'EXAMPLE_KEY_9AfFW' => 'EXAMPLE_VALUE_vWYRBm4lSkalKQf7xFwO'
},
defined_tags: {
'EXAMPLE_KEY_WRAe6' => { 'EXAMPLE_KEY_SSztF' => 'EXAMPLE--Value' }
},
retry_intervals: [397]
)
)
# Get the data from response
puts "#{update_scheduled_job_response.data}"