# 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).

import oci
from datetime import datetime

# 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
apm_synthetics_client = oci.apm_synthetics.ApmSyntheticClient(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(
    apm_domain_id="ocid1.test.oc1..<unique_ID>EXAMPLE-apmDomainId-Value",
    create_monitor_details=oci.apm_synthetics.models.CreateMonitorDetails(
        display_name="EXAMPLE-displayName-Value",
        monitor_type="NETWORK",
        vantage_points=["EXAMPLE--Value"],
        repeat_interval_in_seconds=669,
        script_id="ocid1.test.oc1..<unique_ID>EXAMPLE-scriptId-Value",
        status="INVALID",
        is_run_once=False,
        timeout_in_seconds=695,
        target="EXAMPLE-target-Value",
        script_parameters=[
            oci.apm_synthetics.models.MonitorScriptParameter(
                param_name="EXAMPLE-paramName-Value",
                param_value="EXAMPLE-paramValue-Value")],
        configuration=oci.apm_synthetics.models.NetworkMonitorConfiguration(
            config_type="NETWORK_CONFIG",
            network_configuration=oci.apm_synthetics.models.NetworkConfiguration(
                        number_of_hops=188,
                        probe_per_hop=5,
                        transmission_rate=53,
                        protocol="TCP",
                        probe_mode="SYN"),
            is_failure_retried=False,
            dns_configuration=oci.apm_synthetics.models.DnsConfiguration(
                is_override_dns=True,
                override_dns_ip="EXAMPLE-overrideDnsIp-Value")),
        availability_configuration=oci.apm_synthetics.models.AvailabilityConfiguration(
            max_allowed_failures_per_interval=485,
            min_allowed_runs_per_interval=861),
        maintenance_window_schedule=oci.apm_synthetics.models.MaintenanceWindowSchedule(
            time_started=datetime.strptime(
                "2033-12-29T13:16:58.716Z",
                "%Y-%m-%dT%H:%M:%S.%fZ"),
            time_ended=datetime.strptime(
                "2017-01-13T06:33:03.878Z",
                "%Y-%m-%dT%H:%M:%S.%fZ")),
        freeform_tags={
            'EXAMPLE_KEY_sTLdI': 'EXAMPLE_VALUE_jKonB1VmDaXVUFWXeSOk'},
        defined_tags={
            'EXAMPLE_KEY_mV74G': {
                'EXAMPLE_KEY_XQEk1': 'EXAMPLE--Value'}},
        is_run_now=True,
        scheduling_policy="ALL",
        batch_interval_in_seconds=789,
        is_i_pv6=True),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="RHQW2YUJFDFZRXZ3D145<unique_ID>")

# Get the data from response
print(create_monitor_response.data)

Was this article helpful?