# 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
apm_synthetics_client =
OCI::ApmSynthetics::ApmSyntheticClient.new(config: config)
# Send the request to service, some parameters are not required, see API doc for more info
update_monitor_response =
apm_synthetics_client.update_monitor(
'ocid1.test.oc1..<unique_ID>EXAMPLE-apmDomainId-Value',
'ocid1.test.oc1..<unique_ID>EXAMPLE-monitorId-Value',
OCI::ApmSynthetics::Models::UpdateMonitorDetails.new(
display_name: 'EXAMPLE-displayName-Value',
vantage_points: %w[EXAMPLE--Value],
script_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-scriptId-Value',
status: 'INVALID',
repeat_interval_in_seconds: 682,
is_run_once: false,
timeout_in_seconds: 696,
target: 'EXAMPLE-target-Value',
script_parameters: [
OCI::ApmSynthetics::Models::MonitorScriptParameter.new(
param_name: 'EXAMPLE-paramName-Value',
param_value: 'EXAMPLE-paramValue-Value'
)
],
configuration:
OCI::ApmSynthetics::Models::DnsTraceMonitorConfiguration.new(
config_type: 'DNS_TRACE_CONFIG',
is_failure_retried: false,
dns_configuration:
OCI::ApmSynthetics::Models::DnsConfiguration.new(
is_override_dns: true,
override_dns_ip: 'EXAMPLE-overrideDnsIp-Value'
),
record_type: 'CNAME',
protocol: 'TCP',
verify_response_content: 'EXAMPLE-verifyResponseContent-Value'
),
availability_configuration:
OCI::ApmSynthetics::Models::AvailabilityConfiguration.new(
max_allowed_failures_per_interval: 166,
min_allowed_runs_per_interval: 904
),
maintenance_window_schedule:
OCI::ApmSynthetics::Models::MaintenanceWindowSchedule.new(
time_started: DateTime.parse('2015-02-11T22:14:21.395Z'),
time_ended: DateTime.parse('2032-09-16T18:25:59.013Z')
),
freeform_tags: {
'EXAMPLE_KEY_Qrjyw' => 'EXAMPLE_VALUE_tlN4UERr7OBMWb8SNEjR'
},
defined_tags: {
'EXAMPLE_KEY_jsEP8' => { 'EXAMPLE_KEY_ZyJkX' => 'EXAMPLE--Value' }
},
is_run_now: true,
scheduling_policy: 'BATCHED_ROUND_ROBIN',
batch_interval_in_seconds: 14
)
)
# Get the data from response
puts "#{update_monitor_response.data}"