oci logo
Oracle Cloud Infrastructure v0.20.0, May 31 23

oci.ApmSynthetics.Config

Explore with Pulumi AI

This resource provides the Monitor resource in Oracle Cloud Infrastructure Apm Synthetics service.

Creates a new monitor.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testMonitor = new Oci.ApmSynthetics.Config("testMonitor", new()
    {
        ApmDomainId = oci_apm_synthetics_apm_domain.Test_apm_domain.Id,
        DisplayName = @var.Monitor_display_name,
        MonitorType = @var.Monitor_monitor_type,
        RepeatIntervalInSeconds = @var.Monitor_repeat_interval_in_seconds,
        VantagePoints = @var.Vantage_points,
        AvailabilityConfiguration = new Oci.ApmSynthetics.Inputs.ConfigAvailabilityConfigurationArgs
        {
            MaxAllowedFailuresPerInterval = @var.Monitor_availability_configuration_max_allowed_failures_per_interval,
            MinAllowedRunsPerInterval = @var.Monitor_availability_configuration_min_allowed_runs_per_interval,
        },
        BatchIntervalInSeconds = @var.Monitor_batch_interval_in_seconds,
        Configuration = new Oci.ApmSynthetics.Inputs.ConfigConfigurationArgs
        {
            ConfigType = @var.Monitor_configuration_config_type,
            DnsConfiguration = new Oci.ApmSynthetics.Inputs.ConfigConfigurationDnsConfigurationArgs
            {
                IsOverrideDns = @var.Monitor_configuration_dns_configuration_is_override_dns,
                OverrideDnsIp = @var.Monitor_configuration_dns_configuration_override_dns_ip,
            },
            IsCertificateValidationEnabled = @var.Monitor_configuration_is_certificate_validation_enabled,
            IsFailureRetried = @var.Monitor_configuration_is_failure_retried,
            IsRedirectionEnabled = @var.Monitor_configuration_is_redirection_enabled,
            NetworkConfiguration = new Oci.ApmSynthetics.Inputs.ConfigConfigurationNetworkConfigurationArgs
            {
                NumberOfHops = @var.Monitor_configuration_network_configuration_number_of_hops,
                ProbeMode = @var.Monitor_configuration_network_configuration_probe_mode,
                ProbePerHop = @var.Monitor_configuration_network_configuration_probe_per_hop,
                Protocol = @var.Monitor_configuration_network_configuration_protocol,
                TransmissionRate = @var.Monitor_configuration_network_configuration_transmission_rate,
            },
            ReqAuthenticationDetails = new Oci.ApmSynthetics.Inputs.ConfigConfigurationReqAuthenticationDetailsArgs
            {
                AuthHeaders = new[]
                {
                    new Oci.ApmSynthetics.Inputs.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs
                    {
                        HeaderName = @var.Monitor_configuration_req_authentication_details_auth_headers_header_name,
                        HeaderValue = @var.Monitor_configuration_req_authentication_details_auth_headers_header_value,
                    },
                },
                AuthRequestMethod = @var.Monitor_configuration_req_authentication_details_auth_request_method,
                AuthRequestPostBody = @var.Monitor_configuration_req_authentication_details_auth_request_post_body,
                AuthToken = @var.Monitor_configuration_req_authentication_details_auth_token,
                AuthUrl = @var.Monitor_configuration_req_authentication_details_auth_url,
                AuthUserName = oci_identity_user.Test_user.Name,
                AuthUserPassword = @var.Monitor_configuration_req_authentication_details_auth_user_password,
                OauthScheme = @var.Monitor_configuration_req_authentication_details_oauth_scheme,
            },
            ReqAuthenticationScheme = @var.Monitor_configuration_req_authentication_scheme,
            RequestHeaders = new[]
            {
                new Oci.ApmSynthetics.Inputs.ConfigConfigurationRequestHeaderArgs
                {
                    HeaderName = @var.Monitor_configuration_request_headers_header_name,
                    HeaderValue = @var.Monitor_configuration_request_headers_header_value,
                },
            },
            RequestMethod = @var.Monitor_configuration_request_method,
            RequestPostBody = @var.Monitor_configuration_request_post_body,
            RequestQueryParams = new[]
            {
                new Oci.ApmSynthetics.Inputs.ConfigConfigurationRequestQueryParamArgs
                {
                    ParamName = @var.Monitor_configuration_request_query_params_param_name,
                    ParamValue = @var.Monitor_configuration_request_query_params_param_value,
                },
            },
            VerifyResponseCodes = @var.Monitor_configuration_verify_response_codes,
            VerifyResponseContent = @var.Monitor_configuration_verify_response_content,
            VerifyTexts = new[]
            {
                new Oci.ApmSynthetics.Inputs.ConfigConfigurationVerifyTextArgs
                {
                    Text = @var.Monitor_configuration_verify_texts_text,
                },
            },
        },
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        IsRunNow = @var.Monitor_is_run_now,
        IsRunOnce = @var.Monitor_is_run_once,
        MaintenanceWindowSchedule = new Oci.ApmSynthetics.Inputs.ConfigMaintenanceWindowScheduleArgs
        {
            TimeEnded = @var.Monitor_maintenance_window_schedule_time_ended,
            TimeStarted = @var.Monitor_maintenance_window_schedule_time_started,
        },
        SchedulingPolicy = @var.Monitor_scheduling_policy,
        ScriptId = oci_apm_synthetics_script.Test_script.Id,
        ScriptParameters = new[]
        {
            new Oci.ApmSynthetics.Inputs.ConfigScriptParameterArgs
            {
                ParamName = @var.Monitor_script_parameters_param_name,
                ParamValue = @var.Monitor_script_parameters_param_value,
            },
        },
        Status = @var.Monitor_status,
        Target = @var.Monitor_target,
        TimeoutInSeconds = @var.Monitor_timeout_in_seconds,
    });

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/ApmSynthetics"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ApmSynthetics.NewConfig(ctx, "testMonitor", &ApmSynthetics.ConfigArgs{
			ApmDomainId:             pulumi.Any(oci_apm_synthetics_apm_domain.Test_apm_domain.Id),
			DisplayName:             pulumi.Any(_var.Monitor_display_name),
			MonitorType:             pulumi.Any(_var.Monitor_monitor_type),
			RepeatIntervalInSeconds: pulumi.Any(_var.Monitor_repeat_interval_in_seconds),
			VantagePoints:           pulumi.Any(_var.Vantage_points),
			AvailabilityConfiguration: &apmsynthetics.ConfigAvailabilityConfigurationArgs{
				MaxAllowedFailuresPerInterval: pulumi.Any(_var.Monitor_availability_configuration_max_allowed_failures_per_interval),
				MinAllowedRunsPerInterval:     pulumi.Any(_var.Monitor_availability_configuration_min_allowed_runs_per_interval),
			},
			BatchIntervalInSeconds: pulumi.Any(_var.Monitor_batch_interval_in_seconds),
			Configuration: &apmsynthetics.ConfigConfigurationArgs{
				ConfigType: pulumi.Any(_var.Monitor_configuration_config_type),
				DnsConfiguration: &apmsynthetics.ConfigConfigurationDnsConfigurationArgs{
					IsOverrideDns: pulumi.Any(_var.Monitor_configuration_dns_configuration_is_override_dns),
					OverrideDnsIp: pulumi.Any(_var.Monitor_configuration_dns_configuration_override_dns_ip),
				},
				IsCertificateValidationEnabled: pulumi.Any(_var.Monitor_configuration_is_certificate_validation_enabled),
				IsFailureRetried:               pulumi.Any(_var.Monitor_configuration_is_failure_retried),
				IsRedirectionEnabled:           pulumi.Any(_var.Monitor_configuration_is_redirection_enabled),
				NetworkConfiguration: &apmsynthetics.ConfigConfigurationNetworkConfigurationArgs{
					NumberOfHops:     pulumi.Any(_var.Monitor_configuration_network_configuration_number_of_hops),
					ProbeMode:        pulumi.Any(_var.Monitor_configuration_network_configuration_probe_mode),
					ProbePerHop:      pulumi.Any(_var.Monitor_configuration_network_configuration_probe_per_hop),
					Protocol:         pulumi.Any(_var.Monitor_configuration_network_configuration_protocol),
					TransmissionRate: pulumi.Any(_var.Monitor_configuration_network_configuration_transmission_rate),
				},
				ReqAuthenticationDetails: &apmsynthetics.ConfigConfigurationReqAuthenticationDetailsArgs{
					AuthHeaders: apmsynthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArray{
						&apmsynthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs{
							HeaderName:  pulumi.Any(_var.Monitor_configuration_req_authentication_details_auth_headers_header_name),
							HeaderValue: pulumi.Any(_var.Monitor_configuration_req_authentication_details_auth_headers_header_value),
						},
					},
					AuthRequestMethod:   pulumi.Any(_var.Monitor_configuration_req_authentication_details_auth_request_method),
					AuthRequestPostBody: pulumi.Any(_var.Monitor_configuration_req_authentication_details_auth_request_post_body),
					AuthToken:           pulumi.Any(_var.Monitor_configuration_req_authentication_details_auth_token),
					AuthUrl:             pulumi.Any(_var.Monitor_configuration_req_authentication_details_auth_url),
					AuthUserName:        pulumi.Any(oci_identity_user.Test_user.Name),
					AuthUserPassword:    pulumi.Any(_var.Monitor_configuration_req_authentication_details_auth_user_password),
					OauthScheme:         pulumi.Any(_var.Monitor_configuration_req_authentication_details_oauth_scheme),
				},
				ReqAuthenticationScheme: pulumi.Any(_var.Monitor_configuration_req_authentication_scheme),
				RequestHeaders: apmsynthetics.ConfigConfigurationRequestHeaderArray{
					&apmsynthetics.ConfigConfigurationRequestHeaderArgs{
						HeaderName:  pulumi.Any(_var.Monitor_configuration_request_headers_header_name),
						HeaderValue: pulumi.Any(_var.Monitor_configuration_request_headers_header_value),
					},
				},
				RequestMethod:   pulumi.Any(_var.Monitor_configuration_request_method),
				RequestPostBody: pulumi.Any(_var.Monitor_configuration_request_post_body),
				RequestQueryParams: apmsynthetics.ConfigConfigurationRequestQueryParamArray{
					&apmsynthetics.ConfigConfigurationRequestQueryParamArgs{
						ParamName:  pulumi.Any(_var.Monitor_configuration_request_query_params_param_name),
						ParamValue: pulumi.Any(_var.Monitor_configuration_request_query_params_param_value),
					},
				},
				VerifyResponseCodes:   pulumi.Any(_var.Monitor_configuration_verify_response_codes),
				VerifyResponseContent: pulumi.Any(_var.Monitor_configuration_verify_response_content),
				VerifyTexts: apmsynthetics.ConfigConfigurationVerifyTextArray{
					&apmsynthetics.ConfigConfigurationVerifyTextArgs{
						Text: pulumi.Any(_var.Monitor_configuration_verify_texts_text),
					},
				},
			},
			DefinedTags: pulumi.AnyMap{
				"foo-namespace.bar-key": pulumi.Any("value"),
			},
			FreeformTags: pulumi.AnyMap{
				"bar-key": pulumi.Any("value"),
			},
			IsRunNow:  pulumi.Any(_var.Monitor_is_run_now),
			IsRunOnce: pulumi.Any(_var.Monitor_is_run_once),
			MaintenanceWindowSchedule: &apmsynthetics.ConfigMaintenanceWindowScheduleArgs{
				TimeEnded:   pulumi.Any(_var.Monitor_maintenance_window_schedule_time_ended),
				TimeStarted: pulumi.Any(_var.Monitor_maintenance_window_schedule_time_started),
			},
			SchedulingPolicy: pulumi.Any(_var.Monitor_scheduling_policy),
			ScriptId:         pulumi.Any(oci_apm_synthetics_script.Test_script.Id),
			ScriptParameters: apmsynthetics.ConfigScriptParameterArray{
				&apmsynthetics.ConfigScriptParameterArgs{
					ParamName:  pulumi.Any(_var.Monitor_script_parameters_param_name),
					ParamValue: pulumi.Any(_var.Monitor_script_parameters_param_value),
				},
			},
			Status:           pulumi.Any(_var.Monitor_status),
			Target:           pulumi.Any(_var.Monitor_target),
			TimeoutInSeconds: pulumi.Any(_var.Monitor_timeout_in_seconds),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.ApmSynthetics.Config;
import com.pulumi.oci.ApmSynthetics.ConfigArgs;
import com.pulumi.oci.ApmSynthetics.inputs.ConfigAvailabilityConfigurationArgs;
import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationArgs;
import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationDnsConfigurationArgs;
import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationNetworkConfigurationArgs;
import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationReqAuthenticationDetailsArgs;
import com.pulumi.oci.ApmSynthetics.inputs.ConfigMaintenanceWindowScheduleArgs;
import com.pulumi.oci.ApmSynthetics.inputs.ConfigScriptParameterArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var testMonitor = new Config("testMonitor", ConfigArgs.builder()        
            .apmDomainId(oci_apm_synthetics_apm_domain.test_apm_domain().id())
            .displayName(var_.monitor_display_name())
            .monitorType(var_.monitor_monitor_type())
            .repeatIntervalInSeconds(var_.monitor_repeat_interval_in_seconds())
            .vantagePoints(var_.vantage_points())
            .availabilityConfiguration(ConfigAvailabilityConfigurationArgs.builder()
                .maxAllowedFailuresPerInterval(var_.monitor_availability_configuration_max_allowed_failures_per_interval())
                .minAllowedRunsPerInterval(var_.monitor_availability_configuration_min_allowed_runs_per_interval())
                .build())
            .batchIntervalInSeconds(var_.monitor_batch_interval_in_seconds())
            .configuration(ConfigConfigurationArgs.builder()
                .configType(var_.monitor_configuration_config_type())
                .dnsConfiguration(ConfigConfigurationDnsConfigurationArgs.builder()
                    .isOverrideDns(var_.monitor_configuration_dns_configuration_is_override_dns())
                    .overrideDnsIp(var_.monitor_configuration_dns_configuration_override_dns_ip())
                    .build())
                .isCertificateValidationEnabled(var_.monitor_configuration_is_certificate_validation_enabled())
                .isFailureRetried(var_.monitor_configuration_is_failure_retried())
                .isRedirectionEnabled(var_.monitor_configuration_is_redirection_enabled())
                .networkConfiguration(ConfigConfigurationNetworkConfigurationArgs.builder()
                    .numberOfHops(var_.monitor_configuration_network_configuration_number_of_hops())
                    .probeMode(var_.monitor_configuration_network_configuration_probe_mode())
                    .probePerHop(var_.monitor_configuration_network_configuration_probe_per_hop())
                    .protocol(var_.monitor_configuration_network_configuration_protocol())
                    .transmissionRate(var_.monitor_configuration_network_configuration_transmission_rate())
                    .build())
                .reqAuthenticationDetails(ConfigConfigurationReqAuthenticationDetailsArgs.builder()
                    .authHeaders(ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs.builder()
                        .headerName(var_.monitor_configuration_req_authentication_details_auth_headers_header_name())
                        .headerValue(var_.monitor_configuration_req_authentication_details_auth_headers_header_value())
                        .build())
                    .authRequestMethod(var_.monitor_configuration_req_authentication_details_auth_request_method())
                    .authRequestPostBody(var_.monitor_configuration_req_authentication_details_auth_request_post_body())
                    .authToken(var_.monitor_configuration_req_authentication_details_auth_token())
                    .authUrl(var_.monitor_configuration_req_authentication_details_auth_url())
                    .authUserName(oci_identity_user.test_user().name())
                    .authUserPassword(var_.monitor_configuration_req_authentication_details_auth_user_password())
                    .oauthScheme(var_.monitor_configuration_req_authentication_details_oauth_scheme())
                    .build())
                .reqAuthenticationScheme(var_.monitor_configuration_req_authentication_scheme())
                .requestHeaders(ConfigConfigurationRequestHeaderArgs.builder()
                    .headerName(var_.monitor_configuration_request_headers_header_name())
                    .headerValue(var_.monitor_configuration_request_headers_header_value())
                    .build())
                .requestMethod(var_.monitor_configuration_request_method())
                .requestPostBody(var_.monitor_configuration_request_post_body())
                .requestQueryParams(ConfigConfigurationRequestQueryParamArgs.builder()
                    .paramName(var_.monitor_configuration_request_query_params_param_name())
                    .paramValue(var_.monitor_configuration_request_query_params_param_value())
                    .build())
                .verifyResponseCodes(var_.monitor_configuration_verify_response_codes())
                .verifyResponseContent(var_.monitor_configuration_verify_response_content())
                .verifyTexts(ConfigConfigurationVerifyTextArgs.builder()
                    .text(var_.monitor_configuration_verify_texts_text())
                    .build())
                .build())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .freeformTags(Map.of("bar-key", "value"))
            .isRunNow(var_.monitor_is_run_now())
            .isRunOnce(var_.monitor_is_run_once())
            .maintenanceWindowSchedule(ConfigMaintenanceWindowScheduleArgs.builder()
                .timeEnded(var_.monitor_maintenance_window_schedule_time_ended())
                .timeStarted(var_.monitor_maintenance_window_schedule_time_started())
                .build())
            .schedulingPolicy(var_.monitor_scheduling_policy())
            .scriptId(oci_apm_synthetics_script.test_script().id())
            .scriptParameters(ConfigScriptParameterArgs.builder()
                .paramName(var_.monitor_script_parameters_param_name())
                .paramValue(var_.monitor_script_parameters_param_value())
                .build())
            .status(var_.monitor_status())
            .target(var_.monitor_target())
            .timeoutInSeconds(var_.monitor_timeout_in_seconds())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_monitor = oci.apm_synthetics.Config("testMonitor",
    apm_domain_id=oci_apm_synthetics_apm_domain["test_apm_domain"]["id"],
    display_name=var["monitor_display_name"],
    monitor_type=var["monitor_monitor_type"],
    repeat_interval_in_seconds=var["monitor_repeat_interval_in_seconds"],
    vantage_points=var["vantage_points"],
    availability_configuration=oci.apm_synthetics.ConfigAvailabilityConfigurationArgs(
        max_allowed_failures_per_interval=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        min_allowed_runs_per_interval=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    ),
    batch_interval_in_seconds=var["monitor_batch_interval_in_seconds"],
    configuration=oci.apm_synthetics.ConfigConfigurationArgs(
        config_type=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        dns_configuration=oci.apm_synthetics.ConfigConfigurationDnsConfigurationArgs(
            is_override_dns=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            override_dns_ip=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        ),
        is_certificate_validation_enabled=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        is_failure_retried=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        is_redirection_enabled=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        network_configuration=oci.apm_synthetics.ConfigConfigurationNetworkConfigurationArgs(
            number_of_hops=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            probe_mode=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            probe_per_hop=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            protocol=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            transmission_rate=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        ),
        req_authentication_details=oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsArgs(
            auth_headers=[oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs(
                header_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
                header_value=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            )],
            auth_request_method=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            auth_request_post_body=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            auth_token=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            auth_url=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            auth_user_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            auth_user_password=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            oauth_scheme=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        ),
        req_authentication_scheme=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        request_headers=[oci.apm_synthetics.ConfigConfigurationRequestHeaderArgs(
            header_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            header_value=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        )],
        request_method=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        request_post_body=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        request_query_params=[oci.apm_synthetics.ConfigConfigurationRequestQueryParamArgs(
            param_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
            param_value=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        )],
        verify_response_codes=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        verify_response_content=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        verify_texts=[oci.apm_synthetics.ConfigConfigurationVerifyTextArgs(
            text=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        )],
    ),
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    freeform_tags={
        "bar-key": "value",
    },
    is_run_now=var["monitor_is_run_now"],
    is_run_once=var["monitor_is_run_once"],
    maintenance_window_schedule=oci.apm_synthetics.ConfigMaintenanceWindowScheduleArgs(
        time_ended=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        time_started=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    ),
    scheduling_policy=var["monitor_scheduling_policy"],
    script_id=oci_apm_synthetics_script["test_script"]["id"],
    script_parameters=[oci.apm_synthetics.ConfigScriptParameterArgs(
        param_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        param_value=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    )],
    status=var["monitor_status"],
    target=var["monitor_target"],
    timeout_in_seconds=var["monitor_timeout_in_seconds"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testMonitor = new oci.apmsynthetics.Config("testMonitor", {
    apmDomainId: oci_apm_synthetics_apm_domain.test_apm_domain.id,
    displayName: _var.monitor_display_name,
    monitorType: _var.monitor_monitor_type,
    repeatIntervalInSeconds: _var.monitor_repeat_interval_in_seconds,
    vantagePoints: _var.vantage_points,
    availabilityConfiguration: {
        maxAllowedFailuresPerInterval: _var.monitor_availability_configuration_max_allowed_failures_per_interval,
        minAllowedRunsPerInterval: _var.monitor_availability_configuration_min_allowed_runs_per_interval,
    },
    batchIntervalInSeconds: _var.monitor_batch_interval_in_seconds,
    configuration: {
        configType: _var.monitor_configuration_config_type,
        dnsConfiguration: {
            isOverrideDns: _var.monitor_configuration_dns_configuration_is_override_dns,
            overrideDnsIp: _var.monitor_configuration_dns_configuration_override_dns_ip,
        },
        isCertificateValidationEnabled: _var.monitor_configuration_is_certificate_validation_enabled,
        isFailureRetried: _var.monitor_configuration_is_failure_retried,
        isRedirectionEnabled: _var.monitor_configuration_is_redirection_enabled,
        networkConfiguration: {
            numberOfHops: _var.monitor_configuration_network_configuration_number_of_hops,
            probeMode: _var.monitor_configuration_network_configuration_probe_mode,
            probePerHop: _var.monitor_configuration_network_configuration_probe_per_hop,
            protocol: _var.monitor_configuration_network_configuration_protocol,
            transmissionRate: _var.monitor_configuration_network_configuration_transmission_rate,
        },
        reqAuthenticationDetails: {
            authHeaders: [{
                headerName: _var.monitor_configuration_req_authentication_details_auth_headers_header_name,
                headerValue: _var.monitor_configuration_req_authentication_details_auth_headers_header_value,
            }],
            authRequestMethod: _var.monitor_configuration_req_authentication_details_auth_request_method,
            authRequestPostBody: _var.monitor_configuration_req_authentication_details_auth_request_post_body,
            authToken: _var.monitor_configuration_req_authentication_details_auth_token,
            authUrl: _var.monitor_configuration_req_authentication_details_auth_url,
            authUserName: oci_identity_user.test_user.name,
            authUserPassword: _var.monitor_configuration_req_authentication_details_auth_user_password,
            oauthScheme: _var.monitor_configuration_req_authentication_details_oauth_scheme,
        },
        reqAuthenticationScheme: _var.monitor_configuration_req_authentication_scheme,
        requestHeaders: [{
            headerName: _var.monitor_configuration_request_headers_header_name,
            headerValue: _var.monitor_configuration_request_headers_header_value,
        }],
        requestMethod: _var.monitor_configuration_request_method,
        requestPostBody: _var.monitor_configuration_request_post_body,
        requestQueryParams: [{
            paramName: _var.monitor_configuration_request_query_params_param_name,
            paramValue: _var.monitor_configuration_request_query_params_param_value,
        }],
        verifyResponseCodes: _var.monitor_configuration_verify_response_codes,
        verifyResponseContent: _var.monitor_configuration_verify_response_content,
        verifyTexts: [{
            text: _var.monitor_configuration_verify_texts_text,
        }],
    },
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    freeformTags: {
        "bar-key": "value",
    },
    isRunNow: _var.monitor_is_run_now,
    isRunOnce: _var.monitor_is_run_once,
    maintenanceWindowSchedule: {
        timeEnded: _var.monitor_maintenance_window_schedule_time_ended,
        timeStarted: _var.monitor_maintenance_window_schedule_time_started,
    },
    schedulingPolicy: _var.monitor_scheduling_policy,
    scriptId: oci_apm_synthetics_script.test_script.id,
    scriptParameters: [{
        paramName: _var.monitor_script_parameters_param_name,
        paramValue: _var.monitor_script_parameters_param_value,
    }],
    status: _var.monitor_status,
    target: _var.monitor_target,
    timeoutInSeconds: _var.monitor_timeout_in_seconds,
});
resources:
  testMonitor:
    type: oci:ApmSynthetics:Config
    properties:
      #Required
      apmDomainId: ${oci_apm_synthetics_apm_domain.test_apm_domain.id}
      displayName: ${var.monitor_display_name}
      monitorType: ${var.monitor_monitor_type}
      repeatIntervalInSeconds: ${var.monitor_repeat_interval_in_seconds}
      vantagePoints: ${var.vantage_points}
      availabilityConfiguration:
        maxAllowedFailuresPerInterval: ${var.monitor_availability_configuration_max_allowed_failures_per_interval}
        minAllowedRunsPerInterval: ${var.monitor_availability_configuration_min_allowed_runs_per_interval}
      batchIntervalInSeconds: ${var.monitor_batch_interval_in_seconds}
      configuration:
        configType: ${var.monitor_configuration_config_type}
        dnsConfiguration:
          isOverrideDns: ${var.monitor_configuration_dns_configuration_is_override_dns}
          overrideDnsIp: ${var.monitor_configuration_dns_configuration_override_dns_ip}
        isCertificateValidationEnabled: ${var.monitor_configuration_is_certificate_validation_enabled}
        isFailureRetried: ${var.monitor_configuration_is_failure_retried}
        isRedirectionEnabled: ${var.monitor_configuration_is_redirection_enabled}
        networkConfiguration:
          numberOfHops: ${var.monitor_configuration_network_configuration_number_of_hops}
          probeMode: ${var.monitor_configuration_network_configuration_probe_mode}
          probePerHop: ${var.monitor_configuration_network_configuration_probe_per_hop}
          protocol: ${var.monitor_configuration_network_configuration_protocol}
          transmissionRate: ${var.monitor_configuration_network_configuration_transmission_rate}
        reqAuthenticationDetails:
          authHeaders:
            - headerName: ${var.monitor_configuration_req_authentication_details_auth_headers_header_name}
              headerValue: ${var.monitor_configuration_req_authentication_details_auth_headers_header_value}
          authRequestMethod: ${var.monitor_configuration_req_authentication_details_auth_request_method}
          authRequestPostBody: ${var.monitor_configuration_req_authentication_details_auth_request_post_body}
          authToken: ${var.monitor_configuration_req_authentication_details_auth_token}
          authUrl: ${var.monitor_configuration_req_authentication_details_auth_url}
          authUserName: ${oci_identity_user.test_user.name}
          authUserPassword: ${var.monitor_configuration_req_authentication_details_auth_user_password}
          oauthScheme: ${var.monitor_configuration_req_authentication_details_oauth_scheme}
        reqAuthenticationScheme: ${var.monitor_configuration_req_authentication_scheme}
        requestHeaders:
          - headerName: ${var.monitor_configuration_request_headers_header_name}
            headerValue: ${var.monitor_configuration_request_headers_header_value}
        requestMethod: ${var.monitor_configuration_request_method}
        requestPostBody: ${var.monitor_configuration_request_post_body}
        requestQueryParams:
          - paramName: ${var.monitor_configuration_request_query_params_param_name}
            paramValue: ${var.monitor_configuration_request_query_params_param_value}
        verifyResponseCodes: ${var.monitor_configuration_verify_response_codes}
        verifyResponseContent: ${var.monitor_configuration_verify_response_content}
        verifyTexts:
          - text: ${var.monitor_configuration_verify_texts_text}
      definedTags:
        foo-namespace.bar-key: value
      freeformTags:
        bar-key: value
      isRunNow: ${var.monitor_is_run_now}
      isRunOnce: ${var.monitor_is_run_once}
      maintenanceWindowSchedule:
        timeEnded: ${var.monitor_maintenance_window_schedule_time_ended}
        timeStarted: ${var.monitor_maintenance_window_schedule_time_started}
      schedulingPolicy: ${var.monitor_scheduling_policy}
      scriptId: ${oci_apm_synthetics_script.test_script.id}
      scriptParameters:
        - paramName: ${var.monitor_script_parameters_param_name}
          paramValue: ${var.monitor_script_parameters_param_value}
      status: ${var.monitor_status}
      target: ${var.monitor_target}
      timeoutInSeconds: ${var.monitor_timeout_in_seconds}

Create Config Resource

new Config(name: string, args: ConfigArgs, opts?: CustomResourceOptions);
@overload
def Config(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           apm_domain_id: Optional[str] = None,
           availability_configuration: Optional[_apmsynthetics.ConfigAvailabilityConfigurationArgs] = None,
           batch_interval_in_seconds: Optional[int] = None,
           configuration: Optional[_apmsynthetics.ConfigConfigurationArgs] = None,
           defined_tags: Optional[Mapping[str, Any]] = None,
           display_name: Optional[str] = None,
           freeform_tags: Optional[Mapping[str, Any]] = None,
           is_run_now: Optional[bool] = None,
           is_run_once: Optional[bool] = None,
           maintenance_window_schedule: Optional[_apmsynthetics.ConfigMaintenanceWindowScheduleArgs] = None,
           monitor_type: Optional[str] = None,
           repeat_interval_in_seconds: Optional[int] = None,
           scheduling_policy: Optional[str] = None,
           script_id: Optional[str] = None,
           script_name: Optional[str] = None,
           script_parameters: Optional[Sequence[_apmsynthetics.ConfigScriptParameterArgs]] = None,
           status: Optional[str] = None,
           target: Optional[str] = None,
           timeout_in_seconds: Optional[int] = None,
           vantage_points: Optional[Sequence[str]] = None)
@overload
def Config(resource_name: str,
           args: ConfigArgs,
           opts: Optional[ResourceOptions] = None)
func NewConfig(ctx *Context, name string, args ConfigArgs, opts ...ResourceOption) (*Config, error)
public Config(string name, ConfigArgs args, CustomResourceOptions? opts = null)
public Config(String name, ConfigArgs args)
public Config(String name, ConfigArgs args, CustomResourceOptions options)
type: oci:ApmSynthetics:Config
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args ConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
args ConfigArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args ConfigArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args ConfigArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args ConfigArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Config Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The Config resource accepts the following input properties:

ApmDomainId string

(Updatable) The APM domain ID the request is intended for.

DisplayName string

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

MonitorType string

Type of monitor.

RepeatIntervalInSeconds int

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

VantagePoints List<string>

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AvailabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

BatchIntervalInSeconds int

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

Configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

FreeformTags Dictionary<string, object>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

IsRunNow bool

(Updatable) If isRunNow is enabled, then the monitor will run now.

IsRunOnce bool

(Updatable) If runOnce is enabled, then the monitor will run once.

MaintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

SchedulingPolicy string

(Updatable) Scheduling policy on Vantage points.

ScriptId string

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

ScriptName string

Name of the script.

ScriptParameters List<ConfigScriptParameterArgs>

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

Status string

(Updatable) Enables or disables the monitor.

Target string

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

TimeoutInSeconds int

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

ApmDomainId string

(Updatable) The APM domain ID the request is intended for.

DisplayName string

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

MonitorType string

Type of monitor.

RepeatIntervalInSeconds int

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

VantagePoints []string

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

AvailabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

BatchIntervalInSeconds int

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

Configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

FreeformTags map[string]interface{}

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

IsRunNow bool

(Updatable) If isRunNow is enabled, then the monitor will run now.

IsRunOnce bool

(Updatable) If runOnce is enabled, then the monitor will run once.

MaintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

SchedulingPolicy string

(Updatable) Scheduling policy on Vantage points.

ScriptId string

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

ScriptName string

Name of the script.

ScriptParameters []ConfigScriptParameterArgs

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

Status string

(Updatable) Enables or disables the monitor.

Target string

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

TimeoutInSeconds int

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

apmDomainId String

(Updatable) The APM domain ID the request is intended for.

displayName String

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

monitorType String

Type of monitor.

repeatIntervalInSeconds Integer

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

vantagePoints List<String>

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

batchIntervalInSeconds Integer

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

freeformTags Map<String,Object>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

isRunNow Boolean

(Updatable) If isRunNow is enabled, then the monitor will run now.

isRunOnce Boolean

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

schedulingPolicy String

(Updatable) Scheduling policy on Vantage points.

scriptId String

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

scriptName String

Name of the script.

scriptParameters List<ConfigScriptParameterArgs>

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status String

(Updatable) Enables or disables the monitor.

target String

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

timeoutInSeconds Integer

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

apmDomainId string

(Updatable) The APM domain ID the request is intended for.

displayName string

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

monitorType string

Type of monitor.

repeatIntervalInSeconds number

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

vantagePoints string[]

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

batchIntervalInSeconds number

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

freeformTags {[key: string]: any}

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

isRunNow boolean

(Updatable) If isRunNow is enabled, then the monitor will run now.

isRunOnce boolean

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

schedulingPolicy string

(Updatable) Scheduling policy on Vantage points.

scriptId string

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

scriptName string

Name of the script.

scriptParameters ConfigScriptParameterArgs[]

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status string

(Updatable) Enables or disables the monitor.

target string

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

timeoutInSeconds number

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

apm_domain_id str

(Updatable) The APM domain ID the request is intended for.

display_name str

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

monitor_type str

Type of monitor.

repeat_interval_in_seconds int

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

vantage_points Sequence[str]

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availability_configuration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

batch_interval_in_seconds int

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

freeform_tags Mapping[str, Any]

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

is_run_now bool

(Updatable) If isRunNow is enabled, then the monitor will run now.

is_run_once bool

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenance_window_schedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

scheduling_policy str

(Updatable) Scheduling policy on Vantage points.

script_id str

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

script_name str

Name of the script.

script_parameters ConfigScriptParameterArgs]

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status str

(Updatable) Enables or disables the monitor.

target str

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

timeout_in_seconds int

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

apmDomainId String

(Updatable) The APM domain ID the request is intended for.

displayName String

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

monitorType String

Type of monitor.

repeatIntervalInSeconds Number

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

vantagePoints List<String>

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

availabilityConfiguration Property Map

(Updatable) Monitor availability configuration details.

batchIntervalInSeconds Number

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration Property Map

(Updatable) Details of monitor configuration.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

freeformTags Map<Any>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

isRunNow Boolean

(Updatable) If isRunNow is enabled, then the monitor will run now.

isRunOnce Boolean

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenanceWindowSchedule Property Map

(Updatable) Details used to schedule maintenance window.

schedulingPolicy String

(Updatable) Scheduling policy on Vantage points.

scriptId String

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

scriptName String

Name of the script.

scriptParameters List<Property Map>

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status String

(Updatable) Enables or disables the monitor.

target String

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

timeoutInSeconds Number

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

Outputs

All input properties are implicitly available as output properties. Additionally, the Config resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

TimeCreated string

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

TimeUpdated string

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

VantagePointCount int

Number of vantage points where monitor is running.

Id string

The provider-assigned unique ID for this managed resource.

TimeCreated string

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

TimeUpdated string

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

VantagePointCount int

Number of vantage points where monitor is running.

id String

The provider-assigned unique ID for this managed resource.

timeCreated String

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeUpdated String

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

vantagePointCount Integer

Number of vantage points where monitor is running.

id string

The provider-assigned unique ID for this managed resource.

timeCreated string

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeUpdated string

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

vantagePointCount number

Number of vantage points where monitor is running.

id str

The provider-assigned unique ID for this managed resource.

time_created str

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

time_updated str

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

vantage_point_count int

Number of vantage points where monitor is running.

id String

The provider-assigned unique ID for this managed resource.

timeCreated String

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeUpdated String

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

vantagePointCount Number

Number of vantage points where monitor is running.

Look up Existing Config Resource

Get an existing Config resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: ConfigState, opts?: CustomResourceOptions): Config
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        apm_domain_id: Optional[str] = None,
        availability_configuration: Optional[_apmsynthetics.ConfigAvailabilityConfigurationArgs] = None,
        batch_interval_in_seconds: Optional[int] = None,
        configuration: Optional[_apmsynthetics.ConfigConfigurationArgs] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        is_run_now: Optional[bool] = None,
        is_run_once: Optional[bool] = None,
        maintenance_window_schedule: Optional[_apmsynthetics.ConfigMaintenanceWindowScheduleArgs] = None,
        monitor_type: Optional[str] = None,
        repeat_interval_in_seconds: Optional[int] = None,
        scheduling_policy: Optional[str] = None,
        script_id: Optional[str] = None,
        script_name: Optional[str] = None,
        script_parameters: Optional[Sequence[_apmsynthetics.ConfigScriptParameterArgs]] = None,
        status: Optional[str] = None,
        target: Optional[str] = None,
        time_created: Optional[str] = None,
        time_updated: Optional[str] = None,
        timeout_in_seconds: Optional[int] = None,
        vantage_point_count: Optional[int] = None,
        vantage_points: Optional[Sequence[str]] = None) -> Config
func GetConfig(ctx *Context, name string, id IDInput, state *ConfigState, opts ...ResourceOption) (*Config, error)
public static Config Get(string name, Input<string> id, ConfigState? state, CustomResourceOptions? opts = null)
public static Config get(String name, Output<String> id, ConfigState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ApmDomainId string

(Updatable) The APM domain ID the request is intended for.

AvailabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

BatchIntervalInSeconds int

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

Configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

DisplayName string

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

FreeformTags Dictionary<string, object>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

IsRunNow bool

(Updatable) If isRunNow is enabled, then the monitor will run now.

IsRunOnce bool

(Updatable) If runOnce is enabled, then the monitor will run once.

MaintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

MonitorType string

Type of monitor.

RepeatIntervalInSeconds int

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

SchedulingPolicy string

(Updatable) Scheduling policy on Vantage points.

ScriptId string

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

ScriptName string

Name of the script.

ScriptParameters List<ConfigScriptParameterArgs>

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

Status string

(Updatable) Enables or disables the monitor.

Target string

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

TimeCreated string

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

TimeUpdated string

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

TimeoutInSeconds int

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

VantagePointCount int

Number of vantage points where monitor is running.

VantagePoints List<string>

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

ApmDomainId string

(Updatable) The APM domain ID the request is intended for.

AvailabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

BatchIntervalInSeconds int

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

Configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

DisplayName string

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

FreeformTags map[string]interface{}

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

IsRunNow bool

(Updatable) If isRunNow is enabled, then the monitor will run now.

IsRunOnce bool

(Updatable) If runOnce is enabled, then the monitor will run once.

MaintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

MonitorType string

Type of monitor.

RepeatIntervalInSeconds int

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

SchedulingPolicy string

(Updatable) Scheduling policy on Vantage points.

ScriptId string

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

ScriptName string

Name of the script.

ScriptParameters []ConfigScriptParameterArgs

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

Status string

(Updatable) Enables or disables the monitor.

Target string

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

TimeCreated string

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

TimeUpdated string

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

TimeoutInSeconds int

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

VantagePointCount int

Number of vantage points where monitor is running.

VantagePoints []string

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId String

(Updatable) The APM domain ID the request is intended for.

availabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

batchIntervalInSeconds Integer

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

displayName String

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

freeformTags Map<String,Object>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

isRunNow Boolean

(Updatable) If isRunNow is enabled, then the monitor will run now.

isRunOnce Boolean

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

monitorType String

Type of monitor.

repeatIntervalInSeconds Integer

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

schedulingPolicy String

(Updatable) Scheduling policy on Vantage points.

scriptId String

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

scriptName String

Name of the script.

scriptParameters List<ConfigScriptParameterArgs>

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status String

(Updatable) Enables or disables the monitor.

target String

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

timeCreated String

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeUpdated String

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

timeoutInSeconds Integer

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

vantagePointCount Integer

Number of vantage points where monitor is running.

vantagePoints List<String>

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId string

(Updatable) The APM domain ID the request is intended for.

availabilityConfiguration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

batchIntervalInSeconds number

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

displayName string

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

freeformTags {[key: string]: any}

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

isRunNow boolean

(Updatable) If isRunNow is enabled, then the monitor will run now.

isRunOnce boolean

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

monitorType string

Type of monitor.

repeatIntervalInSeconds number

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

schedulingPolicy string

(Updatable) Scheduling policy on Vantage points.

scriptId string

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

scriptName string

Name of the script.

scriptParameters ConfigScriptParameterArgs[]

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status string

(Updatable) Enables or disables the monitor.

target string

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

timeCreated string

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeUpdated string

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

timeoutInSeconds number

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

vantagePointCount number

Number of vantage points where monitor is running.

vantagePoints string[]

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apm_domain_id str

(Updatable) The APM domain ID the request is intended for.

availability_configuration ConfigAvailabilityConfigurationArgs

(Updatable) Monitor availability configuration details.

batch_interval_in_seconds int

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration ConfigConfigurationArgs

(Updatable) Details of monitor configuration.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

display_name str

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

freeform_tags Mapping[str, Any]

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

is_run_now bool

(Updatable) If isRunNow is enabled, then the monitor will run now.

is_run_once bool

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenance_window_schedule ConfigMaintenanceWindowScheduleArgs

(Updatable) Details used to schedule maintenance window.

monitor_type str

Type of monitor.

repeat_interval_in_seconds int

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

scheduling_policy str

(Updatable) Scheduling policy on Vantage points.

script_id str

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

script_name str

Name of the script.

script_parameters ConfigScriptParameterArgs]

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status str

(Updatable) Enables or disables the monitor.

target str

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

time_created str

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

time_updated str

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

timeout_in_seconds int

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

vantage_point_count int

Number of vantage points where monitor is running.

vantage_points Sequence[str]

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

apmDomainId String

(Updatable) The APM domain ID the request is intended for.

availabilityConfiguration Property Map

(Updatable) Monitor availability configuration details.

batchIntervalInSeconds Number

(Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).

configuration Property Map

(Updatable) Details of monitor configuration.

definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

displayName String

(Updatable) Unique name that can be edited. The name should not contain any confidential information.

freeformTags Map<Any>

(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

isRunNow Boolean

(Updatable) If isRunNow is enabled, then the monitor will run now.

isRunOnce Boolean

(Updatable) If runOnce is enabled, then the monitor will run once.

maintenanceWindowSchedule Property Map

(Updatable) Details used to schedule maintenance window.

monitorType String

Type of monitor.

repeatIntervalInSeconds Number

(Updatable) Interval in seconds after the start time when the job should be repeated. Minimum repeatIntervalInSeconds should be 300 seconds for Scripted REST, Scripted Browser and Browser monitors, and 60 seconds for REST monitor.

schedulingPolicy String

(Updatable) Scheduling policy on Vantage points.

scriptId String

(Updatable) The OCID of the script. scriptId is mandatory for creation of SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null.

scriptName String

Name of the script.

scriptParameters List<Property Map>

(Updatable) List of script parameters in the monitor. This is valid only for SCRIPTED_BROWSER and SCRIPTED_REST monitor types. For other monitor types, it should be set to null. Example: [{"paramName": "userid", "paramValue":"testuser"}]

status String

(Updatable) Enables or disables the monitor.

target String

(Updatable) Specify the endpoint on which to run the monitor. For BROWSER and REST monitor types, target is mandatory. If target is specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script (specified by scriptId in monitor) against the specified target endpoint. If target is not specified in the SCRIPTED_BROWSER monitor type, then the monitor will run the selected script as it is.

timeCreated String

The time the resource was created, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeUpdated String

The time the resource was updated, expressed in RFC 3339 timestamp format. Example: 2020-02-13T22:47:12.613Z

timeoutInSeconds Number

(Updatable) Timeout in seconds. If isFailureRetried is true, then timeout cannot be more than 30% of repeatIntervalInSeconds time for monitors. If isFailureRetried is false, then timeout cannot be more than 50% of repeatIntervalInSeconds time for monitors. Also, timeoutInSeconds should be a multiple of 60 for Scripted REST, Scripted Browser and Browser monitors. Monitor will be allowed to run only for timeoutInSeconds time. It would be terminated after that.

vantagePointCount Number

Number of vantage points where monitor is running.

vantagePoints List<String>

(Updatable) A list of public and dedicated vantage points from which to execute the monitor. Use /publicVantagePoints to fetch public vantage points, and /dedicatedVantagePoints to fetch dedicated vantage points.

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Supporting Types

ConfigAvailabilityConfiguration

MaxAllowedFailuresPerInterval int

(Updatable) Intervals with failed runs more than this value will be classified as UNAVAILABLE.

MinAllowedRunsPerInterval int

(Updatable) Intervals with runs less than this value will be classified as UNKNOWN and excluded from the availability calculations.

MaxAllowedFailuresPerInterval int

(Updatable) Intervals with failed runs more than this value will be classified as UNAVAILABLE.

MinAllowedRunsPerInterval int

(Updatable) Intervals with runs less than this value will be classified as UNKNOWN and excluded from the availability calculations.

maxAllowedFailuresPerInterval Integer

(Updatable) Intervals with failed runs more than this value will be classified as UNAVAILABLE.

minAllowedRunsPerInterval Integer

(Updatable) Intervals with runs less than this value will be classified as UNKNOWN and excluded from the availability calculations.

maxAllowedFailuresPerInterval number

(Updatable) Intervals with failed runs more than this value will be classified as UNAVAILABLE.

minAllowedRunsPerInterval number

(Updatable) Intervals with runs less than this value will be classified as UNKNOWN and excluded from the availability calculations.

max_allowed_failures_per_interval int

(Updatable) Intervals with failed runs more than this value will be classified as UNAVAILABLE.

min_allowed_runs_per_interval int

(Updatable) Intervals with runs less than this value will be classified as UNKNOWN and excluded from the availability calculations.

maxAllowedFailuresPerInterval Number

(Updatable) Intervals with failed runs more than this value will be classified as UNAVAILABLE.

minAllowedRunsPerInterval Number

(Updatable) Intervals with runs less than this value will be classified as UNKNOWN and excluded from the availability calculations.

ConfigConfiguration

ConfigType string

(Updatable) Type of configuration.

DnsConfiguration ConfigConfigurationDnsConfiguration

(Updatable) Dns settings.

IsCertificateValidationEnabled bool

(Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.

IsFailureRetried bool

(Updatable) If isFailureRetried is enabled, then a failed call will be retried.

IsRedirectionEnabled bool

(Updatable) If redirection enabled, then redirects will be allowed while accessing target URL.

NetworkConfiguration ConfigConfigurationNetworkConfiguration

(Updatable) Details of the network configuration.

ReqAuthenticationDetails ConfigConfigurationReqAuthenticationDetails

(Updatable) Details for request HTTP authentication.

ReqAuthenticationScheme string

(Updatable) Request http authentication scheme.

RequestHeaders List<ConfigConfigurationRequestHeader>

(Updatable) List of request headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

RequestMethod string

(Updatable) Request HTTP method.

RequestPostBody string

(Updatable) Request post body content.

RequestQueryParams List<ConfigConfigurationRequestQueryParam>

(Updatable) List of request query params. Example: [{"paramName": "sortOrder", "paramValue": "asc"}]

VerifyResponseCodes List<string>

(Updatable) Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.

VerifyResponseContent string

(Updatable) Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

VerifyTexts List<ConfigConfigurationVerifyText>

(Updatable) Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.

ConfigType string

(Updatable) Type of configuration.

DnsConfiguration ConfigConfigurationDnsConfiguration

(Updatable) Dns settings.

IsCertificateValidationEnabled bool

(Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.

IsFailureRetried bool

(Updatable) If isFailureRetried is enabled, then a failed call will be retried.

IsRedirectionEnabled bool

(Updatable) If redirection enabled, then redirects will be allowed while accessing target URL.

NetworkConfiguration ConfigConfigurationNetworkConfiguration

(Updatable) Details of the network configuration.

ReqAuthenticationDetails ConfigConfigurationReqAuthenticationDetails

(Updatable) Details for request HTTP authentication.

ReqAuthenticationScheme string

(Updatable) Request http authentication scheme.

RequestHeaders []ConfigConfigurationRequestHeader

(Updatable) List of request headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

RequestMethod string

(Updatable) Request HTTP method.

RequestPostBody string

(Updatable) Request post body content.

RequestQueryParams []ConfigConfigurationRequestQueryParam

(Updatable) List of request query params. Example: [{"paramName": "sortOrder", "paramValue": "asc"}]

VerifyResponseCodes []string

(Updatable) Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.

VerifyResponseContent string

(Updatable) Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

VerifyTexts []ConfigConfigurationVerifyText

(Updatable) Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.

configType String

(Updatable) Type of configuration.

dnsConfiguration ConfigConfigurationDnsConfiguration

(Updatable) Dns settings.

isCertificateValidationEnabled Boolean

(Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.

isFailureRetried Boolean

(Updatable) If isFailureRetried is enabled, then a failed call will be retried.

isRedirectionEnabled Boolean

(Updatable) If redirection enabled, then redirects will be allowed while accessing target URL.

networkConfiguration ConfigConfigurationNetworkConfiguration

(Updatable) Details of the network configuration.

reqAuthenticationDetails ConfigConfigurationReqAuthenticationDetails

(Updatable) Details for request HTTP authentication.

reqAuthenticationScheme String

(Updatable) Request http authentication scheme.

requestHeaders List<ConfigConfigurationRequestHeader>

(Updatable) List of request headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

requestMethod String

(Updatable) Request HTTP method.

requestPostBody String

(Updatable) Request post body content.

requestQueryParams List<ConfigConfigurationRequestQueryParam>

(Updatable) List of request query params. Example: [{"paramName": "sortOrder", "paramValue": "asc"}]

verifyResponseCodes List<String>

(Updatable) Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.

verifyResponseContent String

(Updatable) Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

verifyTexts List<ConfigConfigurationVerifyText>

(Updatable) Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.

configType string

(Updatable) Type of configuration.

dnsConfiguration ConfigConfigurationDnsConfiguration

(Updatable) Dns settings.

isCertificateValidationEnabled boolean

(Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.

isFailureRetried boolean

(Updatable) If isFailureRetried is enabled, then a failed call will be retried.

isRedirectionEnabled boolean

(Updatable) If redirection enabled, then redirects will be allowed while accessing target URL.

networkConfiguration ConfigConfigurationNetworkConfiguration

(Updatable) Details of the network configuration.

reqAuthenticationDetails ConfigConfigurationReqAuthenticationDetails

(Updatable) Details for request HTTP authentication.

reqAuthenticationScheme string

(Updatable) Request http authentication scheme.

requestHeaders ConfigConfigurationRequestHeader[]

(Updatable) List of request headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

requestMethod string

(Updatable) Request HTTP method.

requestPostBody string

(Updatable) Request post body content.

requestQueryParams ConfigConfigurationRequestQueryParam[]

(Updatable) List of request query params. Example: [{"paramName": "sortOrder", "paramValue": "asc"}]

verifyResponseCodes string[]

(Updatable) Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.

verifyResponseContent string

(Updatable) Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

verifyTexts ConfigConfigurationVerifyText[]

(Updatable) Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.

config_type str

(Updatable) Type of configuration.

dns_configuration ConfigConfigurationDnsConfiguration

(Updatable) Dns settings.

is_certificate_validation_enabled bool

(Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.

is_failure_retried bool

(Updatable) If isFailureRetried is enabled, then a failed call will be retried.

is_redirection_enabled bool

(Updatable) If redirection enabled, then redirects will be allowed while accessing target URL.

network_configuration ConfigConfigurationNetworkConfiguration

(Updatable) Details of the network configuration.

req_authentication_details ConfigConfigurationReqAuthenticationDetails

(Updatable) Details for request HTTP authentication.

req_authentication_scheme str

(Updatable) Request http authentication scheme.

request_headers ConfigConfigurationRequestHeader]

(Updatable) List of request headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

request_method str

(Updatable) Request HTTP method.

request_post_body str

(Updatable) Request post body content.

request_query_params ConfigConfigurationRequestQueryParam]

(Updatable) List of request query params. Example: [{"paramName": "sortOrder", "paramValue": "asc"}]

verify_response_codes Sequence[str]

(Updatable) Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.

verify_response_content str

(Updatable) Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

verify_texts ConfigConfigurationVerifyText]

(Updatable) Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.

configType String

(Updatable) Type of configuration.

dnsConfiguration Property Map

(Updatable) Dns settings.

isCertificateValidationEnabled Boolean

(Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.

isFailureRetried Boolean

(Updatable) If isFailureRetried is enabled, then a failed call will be retried.

isRedirectionEnabled Boolean

(Updatable) If redirection enabled, then redirects will be allowed while accessing target URL.

networkConfiguration Property Map

(Updatable) Details of the network configuration.

reqAuthenticationDetails Property Map

(Updatable) Details for request HTTP authentication.

reqAuthenticationScheme String

(Updatable) Request http authentication scheme.

requestHeaders List<Property Map>

(Updatable) List of request headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

requestMethod String

(Updatable) Request HTTP method.

requestPostBody String

(Updatable) Request post body content.

requestQueryParams List<Property Map>

(Updatable) List of request query params. Example: [{"paramName": "sortOrder", "paramValue": "asc"}]

verifyResponseCodes List<String>

(Updatable) Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.

verifyResponseContent String

(Updatable) Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

verifyTexts List<Property Map>

(Updatable) Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.

ConfigConfigurationDnsConfiguration

IsOverrideDns bool

(Updatable) If isOverrideDns is true, then dns will be overridden.

OverrideDnsIp string

(Updatable) Override dns ip value. This value will be honored only if *ref-isOverrideDns is set to true.

IsOverrideDns bool

(Updatable) If isOverrideDns is true, then dns will be overridden.

OverrideDnsIp string

(Updatable) Override dns ip value. This value will be honored only if *ref-isOverrideDns is set to true.

isOverrideDns Boolean

(Updatable) If isOverrideDns is true, then dns will be overridden.

overrideDnsIp String

(Updatable) Override dns ip value. This value will be honored only if *ref-isOverrideDns is set to true.

isOverrideDns boolean

(Updatable) If isOverrideDns is true, then dns will be overridden.

overrideDnsIp string

(Updatable) Override dns ip value. This value will be honored only if *ref-isOverrideDns is set to true.

is_override_dns bool

(Updatable) If isOverrideDns is true, then dns will be overridden.

override_dns_ip str

(Updatable) Override dns ip value. This value will be honored only if *ref-isOverrideDns is set to true.

isOverrideDns Boolean

(Updatable) If isOverrideDns is true, then dns will be overridden.

overrideDnsIp String

(Updatable) Override dns ip value. This value will be honored only if *ref-isOverrideDns is set to true.

ConfigConfigurationNetworkConfiguration

NumberOfHops int

(Updatable) Number of hops.

ProbeMode string

(Updatable) Type of probe mode when TCP protocol is selected.

ProbePerHop int

(Updatable) Number of probes per hop.

Protocol string

(Updatable) Type of protocol.

TransmissionRate int

(Updatable) Number of probe packets sent out simultaneously.

NumberOfHops int

(Updatable) Number of hops.

ProbeMode string

(Updatable) Type of probe mode when TCP protocol is selected.

ProbePerHop int

(Updatable) Number of probes per hop.

Protocol string

(Updatable) Type of protocol.

TransmissionRate int

(Updatable) Number of probe packets sent out simultaneously.

numberOfHops Integer

(Updatable) Number of hops.

probeMode String

(Updatable) Type of probe mode when TCP protocol is selected.

probePerHop Integer

(Updatable) Number of probes per hop.

protocol String

(Updatable) Type of protocol.

transmissionRate Integer

(Updatable) Number of probe packets sent out simultaneously.

numberOfHops number

(Updatable) Number of hops.

probeMode string

(Updatable) Type of probe mode when TCP protocol is selected.

probePerHop number

(Updatable) Number of probes per hop.

protocol string

(Updatable) Type of protocol.

transmissionRate number

(Updatable) Number of probe packets sent out simultaneously.

number_of_hops int

(Updatable) Number of hops.

probe_mode str

(Updatable) Type of probe mode when TCP protocol is selected.

probe_per_hop int

(Updatable) Number of probes per hop.

protocol str

(Updatable) Type of protocol.

transmission_rate int

(Updatable) Number of probe packets sent out simultaneously.

numberOfHops Number

(Updatable) Number of hops.

probeMode String

(Updatable) Type of probe mode when TCP protocol is selected.

probePerHop Number

(Updatable) Number of probes per hop.

protocol String

(Updatable) Type of protocol.

transmissionRate Number

(Updatable) Number of probe packets sent out simultaneously.

ConfigConfigurationReqAuthenticationDetails

AuthHeaders List<ConfigConfigurationReqAuthenticationDetailsAuthHeader>

(Updatable) List of authentication headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

AuthRequestMethod string

(Updatable) Request method.

AuthRequestPostBody string

(Updatable) Request post body.

AuthToken string

(Updatable) Authentication token.

AuthUrl string

(Updatable) URL to get authetication token.

AuthUserName string

(Updatable) Username for authentication.

AuthUserPassword string

(Updatable) User password for authentication.

OauthScheme string

(Updatable) Request http oauth scheme.

AuthHeaders []ConfigConfigurationReqAuthenticationDetailsAuthHeader

(Updatable) List of authentication headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

AuthRequestMethod string

(Updatable) Request method.

AuthRequestPostBody string

(Updatable) Request post body.

AuthToken string

(Updatable) Authentication token.

AuthUrl string

(Updatable) URL to get authetication token.

AuthUserName string

(Updatable) Username for authentication.

AuthUserPassword string

(Updatable) User password for authentication.

OauthScheme string

(Updatable) Request http oauth scheme.

authHeaders List<ConfigConfigurationReqAuthenticationDetailsAuthHeader>

(Updatable) List of authentication headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

authRequestMethod String

(Updatable) Request method.

authRequestPostBody String

(Updatable) Request post body.

authToken String

(Updatable) Authentication token.

authUrl String

(Updatable) URL to get authetication token.

authUserName String

(Updatable) Username for authentication.

authUserPassword String

(Updatable) User password for authentication.

oauthScheme String

(Updatable) Request http oauth scheme.

authHeaders ConfigConfigurationReqAuthenticationDetailsAuthHeader[]

(Updatable) List of authentication headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

authRequestMethod string

(Updatable) Request method.

authRequestPostBody string

(Updatable) Request post body.

authToken string

(Updatable) Authentication token.

authUrl string

(Updatable) URL to get authetication token.

authUserName string

(Updatable) Username for authentication.

authUserPassword string

(Updatable) User password for authentication.

oauthScheme string

(Updatable) Request http oauth scheme.

auth_headers ConfigConfigurationReqAuthenticationDetailsAuthHeader]

(Updatable) List of authentication headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

auth_request_method str

(Updatable) Request method.

auth_request_post_body str

(Updatable) Request post body.

auth_token str

(Updatable) Authentication token.

auth_url str

(Updatable) URL to get authetication token.

auth_user_name str

(Updatable) Username for authentication.

auth_user_password str

(Updatable) User password for authentication.

oauth_scheme str

(Updatable) Request http oauth scheme.

authHeaders List<Property Map>

(Updatable) List of authentication headers. Example: [{"headerName": "content-type", "headerValue":"json"}]

authRequestMethod String

(Updatable) Request method.

authRequestPostBody String

(Updatable) Request post body.

authToken String

(Updatable) Authentication token.

authUrl String

(Updatable) URL to get authetication token.

authUserName String

(Updatable) Username for authentication.

authUserPassword String

(Updatable) User password for authentication.

oauthScheme String

(Updatable) Request http oauth scheme.

ConfigConfigurationReqAuthenticationDetailsAuthHeader

HeaderName string

(Updatable) Name of the header.

HeaderValue string

(Updatable) Value of the header.

HeaderName string

(Updatable) Name of the header.

HeaderValue string

(Updatable) Value of the header.

headerName String

(Updatable) Name of the header.

headerValue String

(Updatable) Value of the header.

headerName string

(Updatable) Name of the header.

headerValue string

(Updatable) Value of the header.

header_name str

(Updatable) Name of the header.

header_value str

(Updatable) Value of the header.

headerName String

(Updatable) Name of the header.

headerValue String

(Updatable) Value of the header.

ConfigConfigurationRequestHeader

HeaderName string

(Updatable) Name of the header.

HeaderValue string

(Updatable) Value of the header.

HeaderName string

(Updatable) Name of the header.

HeaderValue string

(Updatable) Value of the header.

headerName String

(Updatable) Name of the header.

headerValue String

(Updatable) Value of the header.

headerName string

(Updatable) Name of the header.

headerValue string

(Updatable) Value of the header.

header_name str

(Updatable) Name of the header.

header_value str

(Updatable) Value of the header.

headerName String

(Updatable) Name of the header.

headerValue String

(Updatable) Value of the header.

ConfigConfigurationRequestQueryParam

ParamName string

(Updatable) Name of the parameter.

ParamValue string

(Updatable) Value of the parameter.

ParamName string

(Updatable) Name of the parameter.

ParamValue string

(Updatable) Value of the parameter.

paramName String

(Updatable) Name of the parameter.

paramValue String

(Updatable) Value of the parameter.

paramName string

(Updatable) Name of the parameter.

paramValue string

(Updatable) Value of the parameter.

param_name str

(Updatable) Name of the parameter.

param_value str

(Updatable) Value of the parameter.

paramName String

(Updatable) Name of the parameter.

paramValue String

(Updatable) Value of the parameter.

ConfigConfigurationVerifyText

Text string

(Updatable) Verification text in the response.

Text string

(Updatable) Verification text in the response.

text String

(Updatable) Verification text in the response.

text string

(Updatable) Verification text in the response.

text str

(Updatable) Verification text in the response.

text String

(Updatable) Verification text in the response.

ConfigMaintenanceWindowSchedule

TimeEnded string

(Updatable) End time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

TimeStarted string

(Updatable) Start time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

TimeEnded string

(Updatable) End time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

TimeStarted string

(Updatable) Start time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeEnded String

(Updatable) End time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeStarted String

(Updatable) Start time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeEnded string

(Updatable) End time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeStarted string

(Updatable) Start time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

time_ended str

(Updatable) End time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

time_started str

(Updatable) Start time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeEnded String

(Updatable) End time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

timeStarted String

(Updatable) Start time for the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

ConfigScriptParameter

ParamName string

(Updatable) Name of the parameter.

ParamValue string

(Updatable) Value of the parameter.

IsOverwritten bool

If parameter value is default or overwritten.

IsSecret bool

Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.

MonitorScriptParameters List<ConfigScriptParameterMonitorScriptParameter>

Details of the script parameter that can be used to overwrite the parameter present in the script.

ParamName string

(Updatable) Name of the parameter.

ParamValue string

(Updatable) Value of the parameter.

IsOverwritten bool

If parameter value is default or overwritten.

IsSecret bool

Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.

MonitorScriptParameters []ConfigScriptParameterMonitorScriptParameter

Details of the script parameter that can be used to overwrite the parameter present in the script.

paramName String

(Updatable) Name of the parameter.

paramValue String

(Updatable) Value of the parameter.

isOverwritten Boolean

If parameter value is default or overwritten.

isSecret Boolean

Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.

monitorScriptParameters List<ConfigScriptParameterMonitorScriptParameter>

Details of the script parameter that can be used to overwrite the parameter present in the script.

paramName string

(Updatable) Name of the parameter.

paramValue string

(Updatable) Value of the parameter.

isOverwritten boolean

If parameter value is default or overwritten.

isSecret boolean

Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.

monitorScriptParameters ConfigScriptParameterMonitorScriptParameter[]

Details of the script parameter that can be used to overwrite the parameter present in the script.

param_name str

(Updatable) Name of the parameter.

param_value str

(Updatable) Value of the parameter.

is_overwritten bool

If parameter value is default or overwritten.

is_secret bool

Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.

monitor_script_parameters ConfigScriptParameterMonitorScriptParameter]

Details of the script parameter that can be used to overwrite the parameter present in the script.

paramName String

(Updatable) Name of the parameter.

paramValue String

(Updatable) Value of the parameter.

isOverwritten Boolean

If parameter value is default or overwritten.

isSecret Boolean

Describes if the parameter value is secret and should be kept confidential. isSecret is specified in either CreateScript or UpdateScript API.

monitorScriptParameters List<Property Map>

Details of the script parameter that can be used to overwrite the parameter present in the script.

ConfigScriptParameterMonitorScriptParameter

ParamName string

(Updatable) Name of the parameter.

ParamValue string

(Updatable) Value of the parameter.

ParamName string

(Updatable) Name of the parameter.

ParamValue string

(Updatable) Value of the parameter.

paramName String

(Updatable) Name of the parameter.

paramValue String

(Updatable) Value of the parameter.

paramName string

(Updatable) Name of the parameter.

paramValue string

(Updatable) Value of the parameter.

param_name str

(Updatable) Name of the parameter.

param_value str

(Updatable) Value of the parameter.

paramName String

(Updatable) Name of the parameter.

paramValue String

(Updatable) Value of the parameter.

Import

Monitors can be imported using the id, e.g.

 $ pulumi import oci:ApmSynthetics/config:Config test_monitor "monitors/{monitorId}/apmDomainId/{apmDomainId}"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.