# 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="FTP",
        vantage_points=["EXAMPLE--Value"],
        repeat_interval_in_seconds=514,
        script_id="ocid1.test.oc1..<unique_ID>EXAMPLE-scriptId-Value",
        status="DISABLED",
        is_run_once=False,
        timeout_in_seconds=185,
        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.RestMonitorConfiguration(
            config_type="REST_CONFIG",
            is_failure_retried=True,
            dns_configuration=oci.apm_synthetics.models.DnsConfiguration(
                        is_override_dns=False,
                        override_dns_ip="EXAMPLE-overrideDnsIp-Value"),
            is_redirection_enabled=False,
            is_certificate_validation_enabled=False,
            request_method="GET",
            req_authentication_scheme="NONE",
            req_authentication_details=oci.apm_synthetics.models.RequestAuthenticationDetails(
                oauth_scheme="BASIC",
                auth_user_name="EXAMPLE-authUserName-Value",
                auth_user_password="EXAMPLE-authUserPassword-Value",
                auth_token="EXAMPLE-authToken-Value",
                auth_url="EXAMPLE-authUrl-Value",
                auth_headers=[
                    oci.apm_synthetics.models.Header(
                        header_name="EXAMPLE-headerName-Value",
                        header_value="EXAMPLE-headerValue-Value")],
                auth_request_method="POST",
                auth_request_post_body="EXAMPLE-authRequestPostBody-Value"),
            client_certificate_details=oci.apm_synthetics.models.ClientCertificateDetails(
                client_certificate=oci.apm_synthetics.models.ClientCertificate(
                    file_name="EXAMPLE-fileName-Value",
                    content="EXAMPLE-content-Value"),
                private_key=oci.apm_synthetics.models.PrivateKey(
                    file_name="EXAMPLE-fileName-Value",
                    content="EXAMPLE-content-Value")),
            request_headers=[
                oci.apm_synthetics.models.Header(
                    header_name="EXAMPLE-headerName-Value",
                    header_value="EXAMPLE-headerValue-Value")],
            request_query_params=[
                oci.apm_synthetics.models.RequestQueryParam(
                    param_name="EXAMPLE-paramName-Value",
                    param_value="EXAMPLE-paramValue-Value")],
            request_post_body="EXAMPLE-requestPostBody-Value",
            verify_response_content="EXAMPLE-verifyResponseContent-Value",
            verify_response_codes=["EXAMPLE--Value"],
            network_configuration=oci.apm_synthetics.models.NetworkConfiguration(
                number_of_hops=240,
                probe_per_hop=3,
                transmission_rate=87,
                protocol="ICMP",
                probe_mode="SACK")),
        availability_configuration=oci.apm_synthetics.models.AvailabilityConfiguration(
            max_allowed_failures_per_interval=956,
            min_allowed_runs_per_interval=227),
        maintenance_window_schedule=oci.apm_synthetics.models.MaintenanceWindowSchedule(
            time_started=datetime.strptime(
                "2010-08-09T18:51:14.593Z",
                "%Y-%m-%dT%H:%M:%S.%fZ"),
            time_ended=datetime.strptime(
                "2017-04-27T01:08:27.964Z",
                "%Y-%m-%dT%H:%M:%S.%fZ")),
        freeform_tags={
            'EXAMPLE_KEY_DHYQ8': 'EXAMPLE_VALUE_RdDudRiSz0EDC46UABu2'},
        defined_tags={
            'EXAMPLE_KEY_FIMhw': {
                'EXAMPLE_KEY_c069f': 'EXAMPLE--Value'}},
        is_run_now=True,
        scheduling_policy="BATCHED_ROUND_ROBIN",
        batch_interval_in_seconds=293,
        is_i_pv6=True),
    opc_retry_token="EXAMPLE-opcRetryToken-Value",
    opc_request_id="KDJAOCGL1JHZNTQEL9YH<unique_ID>")

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