# 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
create_monitor_response =
  apm_synthetics_client.create_monitor(
    'ocid1.test.oc1..<unique_ID>EXAMPLE-apmDomainId-Value',
    OCI::ApmSynthetics::Models::CreateMonitorDetails.new(
      display_name: 'EXAMPLE-displayName-Value',
      monitor_type: 'NETWORK',
      vantage_points: %w[EXAMPLE--Value],
      repeat_interval_in_seconds: 368,
      script_id: 'ocid1.test.oc1..<unique_ID>EXAMPLE-scriptId-Value',
      status: 'INVALID',
      is_run_once: false,
      timeout_in_seconds: 47,
      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: 195,
              probe_per_hop: 9,
              transmission_rate: 61,
              protocol: 'ICMP',
              probe_mode: 'SACK'
            ),
          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: 535,
          min_allowed_runs_per_interval: 565
        ),
      maintenance_window_schedule:
        OCI::ApmSynthetics::Models::MaintenanceWindowSchedule.new(
          time_started: DateTime.parse('2019-03-31T02:31:27.059Z'),
          time_ended: DateTime.parse('2004-01-07T08:54:10.041Z')
        ),
      freeform_tags: {
        'EXAMPLE_KEY_BqWfK' => 'EXAMPLE_VALUE_8bebwax6IQeX7rWXySmu'
      },
      defined_tags: {
        'EXAMPLE_KEY_sRY3z' => { 'EXAMPLE_KEY_71tKM' => 'EXAMPLE--Value' }
      },
      is_run_now: true,
      scheduling_policy: 'ALL',
      batch_interval_in_seconds: 438
    )
  )

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