# 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
update_monitor_response = apm_synthetics_client.update_monitor(
    apm_domain_id="ocid1.test.oc1..<unique_ID>EXAMPLE-apmDomainId-Value",
    monitor_id="ocid1.test.oc1..<unique_ID>EXAMPLE-monitorId-Value",
    update_monitor_details=oci.apm_synthetics.models.UpdateMonitorDetails(
        display_name="EXAMPLE-displayName-Value",
        vantage_points=["EXAMPLE--Value"],
        script_id="ocid1.test.oc1..<unique_ID>EXAMPLE-scriptId-Value",
        status="DISABLED",
        repeat_interval_in_seconds=707,
        is_run_once=True,
        timeout_in_seconds=638,
        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.SqlMonitorConfiguration(
            config_type="SQL_CONFIG",
            is_failure_retried=True,
            dns_configuration=oci.apm_synthetics.models.DnsConfiguration(
                        is_override_dns=False,
                        override_dns_ip="EXAMPLE-overrideDnsIp-Value"),
            database_type="MYSQL",
            query="EXAMPLE-query-Value",
            database_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")),
            database_role="EXAMPLE-databaseRole-Value",
            database_connection_type="CUSTOM_JDBC",
            connection_string="EXAMPLE-connectionString-Value",
            database_wallet_details=oci.apm_synthetics.models.DatabaseWalletDetails(
                database_wallet="EXAMPLE-databaseWallet-Value",
                service_name="EXAMPLE-serviceName-Value")),
        availability_configuration=oci.apm_synthetics.models.AvailabilityConfiguration(
            max_allowed_failures_per_interval=121,
            min_allowed_runs_per_interval=471),
        maintenance_window_schedule=oci.apm_synthetics.models.MaintenanceWindowSchedule(
            time_started=datetime.strptime(
                "2032-04-05T10:27:25.964Z",
                "%Y-%m-%dT%H:%M:%S.%fZ"),
            time_ended=datetime.strptime(
                "2030-01-07T00:58:40.674Z",
                "%Y-%m-%dT%H:%M:%S.%fZ")),
        freeform_tags={
            'EXAMPLE_KEY_cSTDC': 'EXAMPLE_VALUE_jJl10VFU1GzbQI2DuXcn'},
        defined_tags={
            'EXAMPLE_KEY_ccVHD': {
                'EXAMPLE_KEY_Lx0a0': 'EXAMPLE--Value'}},
        is_run_now=True,
        scheduling_policy="ALL",
        batch_interval_in_seconds=1,
        is_i_pv6=True),
    if_match="EXAMPLE-ifMatch-Value",
    opc_request_id="MAHL1GT4TBIJROF2EURK<unique_ID>")

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

Was this article helpful?