# 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: 'ENABLED',
      repeat_interval_in_seconds: 137,
      is_run_once: true,
      timeout_in_seconds: 585,
      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::NetworkMonitorConfiguration.new(
          config_type: 'NETWORK_CONFIG',
          network_configuration:
            OCI::ApmSynthetics::Models::NetworkConfiguration.new(
              number_of_hops: 27,
              probe_per_hop: 6,
              transmission_rate: 94,
              protocol: 'ICMP',
              probe_mode: 'SYN'
            ),
          is_failure_retried: true,
          dns_configuration:
            OCI::ApmSynthetics::Models::DnsConfiguration.new(
              is_override_dns: true,
              override_dns_ip: 'EXAMPLE-overrideDnsIp-Value'
            )
        ),
      availability_configuration:
        OCI::ApmSynthetics::Models::AvailabilityConfiguration.new(
          max_allowed_failures_per_interval: 556,
          min_allowed_runs_per_interval: 506
        ),
      maintenance_window_schedule:
        OCI::ApmSynthetics::Models::MaintenanceWindowSchedule.new(
          time_started: DateTime.parse('2029-12-16T15:47:30.701Z'),
          time_ended: DateTime.parse('2032-12-16T22:21:31.478Z')
        ),
      freeform_tags: {
        'EXAMPLE_KEY_BxR2a' => 'EXAMPLE_VALUE_WsaRognPEyuOY0rHJCrX'
      },
      defined_tags: {
        'EXAMPLE_KEY_slEcB' => { 'EXAMPLE_KEY_AvNtl' => 'EXAMPLE--Value' }
      },
      is_run_now: false,
      scheduling_policy: 'BATCHED_ROUND_ROBIN',
      batch_interval_in_seconds: 693
    )
  )

# Get the data from response
puts "#{update_monitor_response.data}"