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

from datetime import datetime
import oci

# 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="BROWSER",
        vantage_points=["EXAMPLE--Value"],
        repeat_interval_in_seconds=563,
        script_id="ocid1.test.oc1..<unique_ID>EXAMPLE-scriptId-Value",
        status="DISABLED",
        is_run_once=True,
        timeout_in_seconds=17,
        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.FtpMonitorConfiguration(
            config_type="FTP_CONFIG",
            is_failure_retried=False,
            dns_configuration=oci.apm_synthetics.models.DnsConfiguration(
                        is_override_dns=False,
                        override_dns_ip="EXAMPLE-overrideDnsIp-Value"),
            ftp_protocol="FTP",
            ftp_request_type="LIST",
            is_active_mode=True,
            ftp_basic_authentication_details=oci.apm_synthetics.models.BasicAuthenticationDetails(
                username="EXAMPLE-username-Value",
                password=oci.apm_synthetics.models.PasswordInVault(
                    password_type="VAULT_SECRET_ID",
                    vault_secret_id="ocid1.test.oc1..<unique_ID>EXAMPLE-vaultSecretId-Value")),
            download_size_limit_in_bytes=4592523,
            upload_file_size_in_bytes=896769,
            network_configuration=oci.apm_synthetics.models.NetworkConfiguration(
                number_of_hops=232,
                probe_per_hop=7,
                transmission_rate=54,
                protocol="TCP",
                probe_mode="SACK"),
            verify_response_codes=["EXAMPLE--Value"],
            verify_response_content="EXAMPLE-verifyResponseContent-Value"),
        availability_configuration=oci.apm_synthetics.models.AvailabilityConfiguration(
            max_allowed_failures_per_interval=22,
            min_allowed_runs_per_interval=26),
        maintenance_window_schedule=oci.apm_synthetics.models.MaintenanceWindowSchedule(
            time_started=datetime.strptime(
                "2029-02-05T00:45:22.003Z",
                "%Y-%m-%dT%H:%M:%S.%fZ"),
            time_ended=datetime.strptime(
                "2003-03-27T22:42:39.044Z",
                "%Y-%m-%dT%H:%M:%S.%fZ")),
        freeform_tags={
            'EXAMPLE_KEY_WGBlk': 'EXAMPLE_VALUE_IF813OR33XBXLVl70Fdf'},
        defined_tags={
            'EXAMPLE_KEY_74W9J': {
                'EXAMPLE_KEY_56KB8': 'EXAMPLE--Value'}},
        is_run_now=False,
        scheduling_policy="BATCHED_ROUND_ROBIN",
        batch_interval_in_seconds=656,
        is_i_pv6=True),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="23Z0RJ7W45PU1RWEKL1H<unique_ID>")

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

Was this article helpful?