1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ApmSynthetics
  5. Config
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.ApmSynthetics.Config

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

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

    Creates a new monitor.

    Example Usage

    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: [{
            name: _var.monitor_vantage_points_name,
            displayName: _var.monitor_vantage_points_param_display_name,
        }],
        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: {
            clientCertificateDetails: {
                clientCertificate: {
                    content: _var.monitor_configuration_client_certificate_details_client_certificate_content,
                    fileName: _var.monitor_configuration_client_certificate_details_client_certificate_file_name,
                },
                privateKey: {
                    content: _var.monitor_configuration_client_certificate_details_private_key_content,
                    fileName: _var.monitor_configuration_client_certificate_details_private_key_file_name,
                },
            },
            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,
            isDefaultSnapshotEnabled: _var.monitor_configuration_is_default_snapshot_enabled,
            isFailureRetried: _var.monitor_configuration_is_failure_retried,
            isQueryRecursive: _var.monitor_configuration_is_query_recursive,
            isRedirectionEnabled: _var.monitor_configuration_is_redirection_enabled,
            nameServer: _var.monitor_configuration_name_server,
            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,
            },
            protocol: _var.monitor_configuration_protocol,
            recordType: _var.monitor_configuration_record_type,
            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,
    });
    
    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=[oci.apm_synthetics.ConfigVantagePointArgs(
            name=var["monitor_vantage_points_name"],
            display_name=var["monitor_vantage_points_param_display_name"],
        )],
        availability_configuration=oci.apm_synthetics.ConfigAvailabilityConfigurationArgs(
            max_allowed_failures_per_interval=var["monitor_availability_configuration_max_allowed_failures_per_interval"],
            min_allowed_runs_per_interval=var["monitor_availability_configuration_min_allowed_runs_per_interval"],
        ),
        batch_interval_in_seconds=var["monitor_batch_interval_in_seconds"],
        configuration=oci.apm_synthetics.ConfigConfigurationArgs(
            client_certificate_details=oci.apm_synthetics.ConfigConfigurationClientCertificateDetailsArgs(
                client_certificate=oci.apm_synthetics.ConfigConfigurationClientCertificateDetailsClientCertificateArgs(
                    content=var["monitor_configuration_client_certificate_details_client_certificate_content"],
                    file_name=var["monitor_configuration_client_certificate_details_client_certificate_file_name"],
                ),
                private_key=oci.apm_synthetics.ConfigConfigurationClientCertificateDetailsPrivateKeyArgs(
                    content=var["monitor_configuration_client_certificate_details_private_key_content"],
                    file_name=var["monitor_configuration_client_certificate_details_private_key_file_name"],
                ),
            ),
            config_type=var["monitor_configuration_config_type"],
            dns_configuration=oci.apm_synthetics.ConfigConfigurationDnsConfigurationArgs(
                is_override_dns=var["monitor_configuration_dns_configuration_is_override_dns"],
                override_dns_ip=var["monitor_configuration_dns_configuration_override_dns_ip"],
            ),
            is_certificate_validation_enabled=var["monitor_configuration_is_certificate_validation_enabled"],
            is_default_snapshot_enabled=var["monitor_configuration_is_default_snapshot_enabled"],
            is_failure_retried=var["monitor_configuration_is_failure_retried"],
            is_query_recursive=var["monitor_configuration_is_query_recursive"],
            is_redirection_enabled=var["monitor_configuration_is_redirection_enabled"],
            name_server=var["monitor_configuration_name_server"],
            network_configuration=oci.apm_synthetics.ConfigConfigurationNetworkConfigurationArgs(
                number_of_hops=var["monitor_configuration_network_configuration_number_of_hops"],
                probe_mode=var["monitor_configuration_network_configuration_probe_mode"],
                probe_per_hop=var["monitor_configuration_network_configuration_probe_per_hop"],
                protocol=var["monitor_configuration_network_configuration_protocol"],
                transmission_rate=var["monitor_configuration_network_configuration_transmission_rate"],
            ),
            protocol=var["monitor_configuration_protocol"],
            record_type=var["monitor_configuration_record_type"],
            req_authentication_details=oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsArgs(
                auth_headers=[oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs(
                    header_name=var["monitor_configuration_req_authentication_details_auth_headers_header_name"],
                    header_value=var["monitor_configuration_req_authentication_details_auth_headers_header_value"],
                )],
                auth_request_method=var["monitor_configuration_req_authentication_details_auth_request_method"],
                auth_request_post_body=var["monitor_configuration_req_authentication_details_auth_request_post_body"],
                auth_token=var["monitor_configuration_req_authentication_details_auth_token"],
                auth_url=var["monitor_configuration_req_authentication_details_auth_url"],
                auth_user_name=oci_identity_user["test_user"]["name"],
                auth_user_password=var["monitor_configuration_req_authentication_details_auth_user_password"],
                oauth_scheme=var["monitor_configuration_req_authentication_details_oauth_scheme"],
            ),
            req_authentication_scheme=var["monitor_configuration_req_authentication_scheme"],
            request_headers=[oci.apm_synthetics.ConfigConfigurationRequestHeaderArgs(
                header_name=var["monitor_configuration_request_headers_header_name"],
                header_value=var["monitor_configuration_request_headers_header_value"],
            )],
            request_method=var["monitor_configuration_request_method"],
            request_post_body=var["monitor_configuration_request_post_body"],
            request_query_params=[oci.apm_synthetics.ConfigConfigurationRequestQueryParamArgs(
                param_name=var["monitor_configuration_request_query_params_param_name"],
                param_value=var["monitor_configuration_request_query_params_param_value"],
            )],
            verify_response_codes=var["monitor_configuration_verify_response_codes"],
            verify_response_content=var["monitor_configuration_verify_response_content"],
            verify_texts=[oci.apm_synthetics.ConfigConfigurationVerifyTextArgs(
                text=var["monitor_configuration_verify_texts_text"],
            )],
        ),
        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=var["monitor_maintenance_window_schedule_time_ended"],
            time_started=var["monitor_maintenance_window_schedule_time_started"],
        ),
        scheduling_policy=var["monitor_scheduling_policy"],
        script_id=oci_apm_synthetics_script["test_script"]["id"],
        script_parameters=[oci.apm_synthetics.ConfigScriptParameterArgs(
            param_name=var["monitor_script_parameters_param_name"],
            param_value=var["monitor_script_parameters_param_value"],
        )],
        status=var["monitor_status"],
        target=var["monitor_target"],
        timeout_in_seconds=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: apmsynthetics.ConfigVantagePointArray{
    				&apmsynthetics.ConfigVantagePointArgs{
    					Name:        pulumi.Any(_var.Monitor_vantage_points_name),
    					DisplayName: pulumi.Any(_var.Monitor_vantage_points_param_display_name),
    				},
    			},
    			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{
    				ClientCertificateDetails: &apmsynthetics.ConfigConfigurationClientCertificateDetailsArgs{
    					ClientCertificate: &apmsynthetics.ConfigConfigurationClientCertificateDetailsClientCertificateArgs{
    						Content:  pulumi.Any(_var.Monitor_configuration_client_certificate_details_client_certificate_content),
    						FileName: pulumi.Any(_var.Monitor_configuration_client_certificate_details_client_certificate_file_name),
    					},
    					PrivateKey: &apmsynthetics.ConfigConfigurationClientCertificateDetailsPrivateKeyArgs{
    						Content:  pulumi.Any(_var.Monitor_configuration_client_certificate_details_private_key_content),
    						FileName: pulumi.Any(_var.Monitor_configuration_client_certificate_details_private_key_file_name),
    					},
    				},
    				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),
    				IsDefaultSnapshotEnabled:       pulumi.Any(_var.Monitor_configuration_is_default_snapshot_enabled),
    				IsFailureRetried:               pulumi.Any(_var.Monitor_configuration_is_failure_retried),
    				IsQueryRecursive:               pulumi.Any(_var.Monitor_configuration_is_query_recursive),
    				IsRedirectionEnabled:           pulumi.Any(_var.Monitor_configuration_is_redirection_enabled),
    				NameServer:                     pulumi.Any(_var.Monitor_configuration_name_server),
    				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),
    				},
    				Protocol:   pulumi.Any(_var.Monitor_configuration_protocol),
    				RecordType: pulumi.Any(_var.Monitor_configuration_record_type),
    				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.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			FreeformTags: pulumi.Map{
    				"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
    	})
    }
    
    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 = new[]
            {
                new Oci.ApmSynthetics.Inputs.ConfigVantagePointArgs
                {
                    Name = @var.Monitor_vantage_points_name,
                    DisplayName = @var.Monitor_vantage_points_param_display_name,
                },
            },
            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
            {
                ClientCertificateDetails = new Oci.ApmSynthetics.Inputs.ConfigConfigurationClientCertificateDetailsArgs
                {
                    ClientCertificate = new Oci.ApmSynthetics.Inputs.ConfigConfigurationClientCertificateDetailsClientCertificateArgs
                    {
                        Content = @var.Monitor_configuration_client_certificate_details_client_certificate_content,
                        FileName = @var.Monitor_configuration_client_certificate_details_client_certificate_file_name,
                    },
                    PrivateKey = new Oci.ApmSynthetics.Inputs.ConfigConfigurationClientCertificateDetailsPrivateKeyArgs
                    {
                        Content = @var.Monitor_configuration_client_certificate_details_private_key_content,
                        FileName = @var.Monitor_configuration_client_certificate_details_private_key_file_name,
                    },
                },
                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,
                IsDefaultSnapshotEnabled = @var.Monitor_configuration_is_default_snapshot_enabled,
                IsFailureRetried = @var.Monitor_configuration_is_failure_retried,
                IsQueryRecursive = @var.Monitor_configuration_is_query_recursive,
                IsRedirectionEnabled = @var.Monitor_configuration_is_redirection_enabled,
                NameServer = @var.Monitor_configuration_name_server,
                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,
                },
                Protocol = @var.Monitor_configuration_protocol,
                RecordType = @var.Monitor_configuration_record_type,
                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 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.ConfigVantagePointArgs;
    import com.pulumi.oci.ApmSynthetics.inputs.ConfigAvailabilityConfigurationArgs;
    import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationArgs;
    import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationClientCertificateDetailsArgs;
    import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationClientCertificateDetailsClientCertificateArgs;
    import com.pulumi.oci.ApmSynthetics.inputs.ConfigConfigurationClientCertificateDetailsPrivateKeyArgs;
    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(ConfigVantagePointArgs.builder()
                    .name(var_.monitor_vantage_points_name())
                    .displayName(var_.monitor_vantage_points_param_display_name())
                    .build())
                .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()
                    .clientCertificateDetails(ConfigConfigurationClientCertificateDetailsArgs.builder()
                        .clientCertificate(ConfigConfigurationClientCertificateDetailsClientCertificateArgs.builder()
                            .content(var_.monitor_configuration_client_certificate_details_client_certificate_content())
                            .fileName(var_.monitor_configuration_client_certificate_details_client_certificate_file_name())
                            .build())
                        .privateKey(ConfigConfigurationClientCertificateDetailsPrivateKeyArgs.builder()
                            .content(var_.monitor_configuration_client_certificate_details_private_key_content())
                            .fileName(var_.monitor_configuration_client_certificate_details_private_key_file_name())
                            .build())
                        .build())
                    .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())
                    .isDefaultSnapshotEnabled(var_.monitor_configuration_is_default_snapshot_enabled())
                    .isFailureRetried(var_.monitor_configuration_is_failure_retried())
                    .isQueryRecursive(var_.monitor_configuration_is_query_recursive())
                    .isRedirectionEnabled(var_.monitor_configuration_is_redirection_enabled())
                    .nameServer(var_.monitor_configuration_name_server())
                    .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())
                    .protocol(var_.monitor_configuration_protocol())
                    .recordType(var_.monitor_configuration_record_type())
                    .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());
    
        }
    }
    
    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:
            - name: ${var.monitor_vantage_points_name}
              displayName: ${var.monitor_vantage_points_param_display_name}
          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:
            clientCertificateDetails:
              clientCertificate:
                content: ${var.monitor_configuration_client_certificate_details_client_certificate_content}
                fileName: ${var.monitor_configuration_client_certificate_details_client_certificate_file_name}
              privateKey:
                content: ${var.monitor_configuration_client_certificate_details_private_key_content}
                fileName: ${var.monitor_configuration_client_certificate_details_private_key_file_name}
            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}
            isDefaultSnapshotEnabled: ${var.monitor_configuration_is_default_snapshot_enabled}
            isFailureRetried: ${var.monitor_configuration_is_failure_retried}
            isQueryRecursive: ${var.monitor_configuration_is_query_recursive}
            isRedirectionEnabled: ${var.monitor_configuration_is_redirection_enabled}
            nameServer: ${var.monitor_configuration_name_server}
            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}
            protocol: ${var.monitor_configuration_protocol}
            recordType: ${var.monitor_configuration_record_type}
            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

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Config(name: string, args: ConfigArgs, opts?: CustomResourceOptions);
    @overload
    def Config(resource_name: str,
               args: ConfigArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Config(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               monitor_type: Optional[str] = None,
               display_name: Optional[str] = None,
               repeat_interval_in_seconds: Optional[int] = None,
               vantage_points: Optional[Sequence[_apmsynthetics.ConfigVantagePointArgs]] = None,
               apm_domain_id: Optional[str] = None,
               target: Optional[str] = None,
               scheduling_policy: Optional[str] = None,
               defined_tags: Optional[Mapping[str, Any]] = None,
               configuration: Optional[_apmsynthetics.ConfigConfigurationArgs] = None,
               availability_configuration: Optional[_apmsynthetics.ConfigAvailabilityConfigurationArgs] = None,
               is_run_now: Optional[bool] = None,
               batch_interval_in_seconds: Optional[int] = None,
               freeform_tags: Optional[Mapping[str, Any]] = None,
               script_id: Optional[str] = None,
               script_name: Optional[str] = None,
               script_parameters: Optional[Sequence[_apmsynthetics.ConfigScriptParameterArgs]] = None,
               status: Optional[str] = None,
               maintenance_window_schedule: Optional[_apmsynthetics.ConfigMaintenanceWindowScheduleArgs] = None,
               timeout_in_seconds: Optional[int] = None,
               is_run_once: Optional[bool] = 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.
    
    

    Parameters

    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.

    Example

    The following reference example uses placeholder values for all input properties.

    var ociConfigResource = new Oci.ApmSynthetics.Config("ociConfigResource", new()
    {
        MonitorType = "string",
        DisplayName = "string",
        RepeatIntervalInSeconds = 0,
        VantagePoints = new[]
        {
            new Oci.ApmSynthetics.Inputs.ConfigVantagePointArgs
            {
                Name = "string",
                DisplayName = "string",
            },
        },
        ApmDomainId = "string",
        Target = "string",
        SchedulingPolicy = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        Configuration = new Oci.ApmSynthetics.Inputs.ConfigConfigurationArgs
        {
            ClientCertificateDetails = new Oci.ApmSynthetics.Inputs.ConfigConfigurationClientCertificateDetailsArgs
            {
                ClientCertificate = new Oci.ApmSynthetics.Inputs.ConfigConfigurationClientCertificateDetailsClientCertificateArgs
                {
                    Content = "string",
                    FileName = "string",
                },
                PrivateKey = new Oci.ApmSynthetics.Inputs.ConfigConfigurationClientCertificateDetailsPrivateKeyArgs
                {
                    Content = "string",
                    FileName = "string",
                },
            },
            ConfigType = "string",
            DnsConfiguration = new Oci.ApmSynthetics.Inputs.ConfigConfigurationDnsConfigurationArgs
            {
                IsOverrideDns = false,
                OverrideDnsIp = "string",
            },
            IsCertificateValidationEnabled = false,
            IsDefaultSnapshotEnabled = false,
            IsFailureRetried = false,
            IsQueryRecursive = false,
            IsRedirectionEnabled = false,
            NameServer = "string",
            NetworkConfiguration = new Oci.ApmSynthetics.Inputs.ConfigConfigurationNetworkConfigurationArgs
            {
                NumberOfHops = 0,
                ProbeMode = "string",
                ProbePerHop = 0,
                Protocol = "string",
                TransmissionRate = 0,
            },
            Protocol = "string",
            RecordType = "string",
            ReqAuthenticationDetails = new Oci.ApmSynthetics.Inputs.ConfigConfigurationReqAuthenticationDetailsArgs
            {
                AuthHeaders = new[]
                {
                    new Oci.ApmSynthetics.Inputs.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs
                    {
                        HeaderName = "string",
                        HeaderValue = "string",
                    },
                },
                AuthRequestMethod = "string",
                AuthRequestPostBody = "string",
                AuthToken = "string",
                AuthUrl = "string",
                AuthUserName = "string",
                AuthUserPassword = "string",
                OauthScheme = "string",
            },
            ReqAuthenticationScheme = "string",
            RequestHeaders = new[]
            {
                new Oci.ApmSynthetics.Inputs.ConfigConfigurationRequestHeaderArgs
                {
                    HeaderName = "string",
                    HeaderValue = "string",
                },
            },
            RequestMethod = "string",
            RequestPostBody = "string",
            RequestQueryParams = new[]
            {
                new Oci.ApmSynthetics.Inputs.ConfigConfigurationRequestQueryParamArgs
                {
                    ParamName = "string",
                    ParamValue = "string",
                },
            },
            VerifyResponseCodes = new[]
            {
                "string",
            },
            VerifyResponseContent = "string",
            VerifyTexts = new[]
            {
                new Oci.ApmSynthetics.Inputs.ConfigConfigurationVerifyTextArgs
                {
                    Text = "string",
                },
            },
        },
        AvailabilityConfiguration = new Oci.ApmSynthetics.Inputs.ConfigAvailabilityConfigurationArgs
        {
            MaxAllowedFailuresPerInterval = 0,
            MinAllowedRunsPerInterval = 0,
        },
        IsRunNow = false,
        BatchIntervalInSeconds = 0,
        FreeformTags = 
        {
            { "string", "any" },
        },
        ScriptId = "string",
        ScriptName = "string",
        ScriptParameters = new[]
        {
            new Oci.ApmSynthetics.Inputs.ConfigScriptParameterArgs
            {
                ParamName = "string",
                ParamValue = "string",
                IsOverwritten = false,
                IsSecret = false,
                MonitorScriptParameters = new[]
                {
                    new Oci.ApmSynthetics.Inputs.ConfigScriptParameterMonitorScriptParameterArgs
                    {
                        ParamName = "string",
                        ParamValue = "string",
                    },
                },
            },
        },
        Status = "string",
        MaintenanceWindowSchedule = new Oci.ApmSynthetics.Inputs.ConfigMaintenanceWindowScheduleArgs
        {
            TimeEnded = "string",
            TimeStarted = "string",
        },
        TimeoutInSeconds = 0,
        IsRunOnce = false,
    });
    
    example, err := ApmSynthetics.NewConfig(ctx, "ociConfigResource", &ApmSynthetics.ConfigArgs{
    	MonitorType:             pulumi.String("string"),
    	DisplayName:             pulumi.String("string"),
    	RepeatIntervalInSeconds: pulumi.Int(0),
    	VantagePoints: apmsynthetics.ConfigVantagePointArray{
    		&apmsynthetics.ConfigVantagePointArgs{
    			Name:        pulumi.String("string"),
    			DisplayName: pulumi.String("string"),
    		},
    	},
    	ApmDomainId:      pulumi.String("string"),
    	Target:           pulumi.String("string"),
    	SchedulingPolicy: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Configuration: &apmsynthetics.ConfigConfigurationArgs{
    		ClientCertificateDetails: &apmsynthetics.ConfigConfigurationClientCertificateDetailsArgs{
    			ClientCertificate: &apmsynthetics.ConfigConfigurationClientCertificateDetailsClientCertificateArgs{
    				Content:  pulumi.String("string"),
    				FileName: pulumi.String("string"),
    			},
    			PrivateKey: &apmsynthetics.ConfigConfigurationClientCertificateDetailsPrivateKeyArgs{
    				Content:  pulumi.String("string"),
    				FileName: pulumi.String("string"),
    			},
    		},
    		ConfigType: pulumi.String("string"),
    		DnsConfiguration: &apmsynthetics.ConfigConfigurationDnsConfigurationArgs{
    			IsOverrideDns: pulumi.Bool(false),
    			OverrideDnsIp: pulumi.String("string"),
    		},
    		IsCertificateValidationEnabled: pulumi.Bool(false),
    		IsDefaultSnapshotEnabled:       pulumi.Bool(false),
    		IsFailureRetried:               pulumi.Bool(false),
    		IsQueryRecursive:               pulumi.Bool(false),
    		IsRedirectionEnabled:           pulumi.Bool(false),
    		NameServer:                     pulumi.String("string"),
    		NetworkConfiguration: &apmsynthetics.ConfigConfigurationNetworkConfigurationArgs{
    			NumberOfHops:     pulumi.Int(0),
    			ProbeMode:        pulumi.String("string"),
    			ProbePerHop:      pulumi.Int(0),
    			Protocol:         pulumi.String("string"),
    			TransmissionRate: pulumi.Int(0),
    		},
    		Protocol:   pulumi.String("string"),
    		RecordType: pulumi.String("string"),
    		ReqAuthenticationDetails: &apmsynthetics.ConfigConfigurationReqAuthenticationDetailsArgs{
    			AuthHeaders: apmsynthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArray{
    				&apmsynthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs{
    					HeaderName:  pulumi.String("string"),
    					HeaderValue: pulumi.String("string"),
    				},
    			},
    			AuthRequestMethod:   pulumi.String("string"),
    			AuthRequestPostBody: pulumi.String("string"),
    			AuthToken:           pulumi.String("string"),
    			AuthUrl:             pulumi.String("string"),
    			AuthUserName:        pulumi.String("string"),
    			AuthUserPassword:    pulumi.String("string"),
    			OauthScheme:         pulumi.String("string"),
    		},
    		ReqAuthenticationScheme: pulumi.String("string"),
    		RequestHeaders: apmsynthetics.ConfigConfigurationRequestHeaderArray{
    			&apmsynthetics.ConfigConfigurationRequestHeaderArgs{
    				HeaderName:  pulumi.String("string"),
    				HeaderValue: pulumi.String("string"),
    			},
    		},
    		RequestMethod:   pulumi.String("string"),
    		RequestPostBody: pulumi.String("string"),
    		RequestQueryParams: apmsynthetics.ConfigConfigurationRequestQueryParamArray{
    			&apmsynthetics.ConfigConfigurationRequestQueryParamArgs{
    				ParamName:  pulumi.String("string"),
    				ParamValue: pulumi.String("string"),
    			},
    		},
    		VerifyResponseCodes: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		VerifyResponseContent: pulumi.String("string"),
    		VerifyTexts: apmsynthetics.ConfigConfigurationVerifyTextArray{
    			&apmsynthetics.ConfigConfigurationVerifyTextArgs{
    				Text: pulumi.String("string"),
    			},
    		},
    	},
    	AvailabilityConfiguration: &apmsynthetics.ConfigAvailabilityConfigurationArgs{
    		MaxAllowedFailuresPerInterval: pulumi.Int(0),
    		MinAllowedRunsPerInterval:     pulumi.Int(0),
    	},
    	IsRunNow:               pulumi.Bool(false),
    	BatchIntervalInSeconds: pulumi.Int(0),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	ScriptId:   pulumi.String("string"),
    	ScriptName: pulumi.String("string"),
    	ScriptParameters: apmsynthetics.ConfigScriptParameterArray{
    		&apmsynthetics.ConfigScriptParameterArgs{
    			ParamName:     pulumi.String("string"),
    			ParamValue:    pulumi.String("string"),
    			IsOverwritten: pulumi.Bool(false),
    			IsSecret:      pulumi.Bool(false),
    			MonitorScriptParameters: apmsynthetics.ConfigScriptParameterMonitorScriptParameterArray{
    				&apmsynthetics.ConfigScriptParameterMonitorScriptParameterArgs{
    					ParamName:  pulumi.String("string"),
    					ParamValue: pulumi.String("string"),
    				},
    			},
    		},
    	},
    	Status: pulumi.String("string"),
    	MaintenanceWindowSchedule: &apmsynthetics.ConfigMaintenanceWindowScheduleArgs{
    		TimeEnded:   pulumi.String("string"),
    		TimeStarted: pulumi.String("string"),
    	},
    	TimeoutInSeconds: pulumi.Int(0),
    	IsRunOnce:        pulumi.Bool(false),
    })
    
    var ociConfigResource = new Config("ociConfigResource", ConfigArgs.builder()        
        .monitorType("string")
        .displayName("string")
        .repeatIntervalInSeconds(0)
        .vantagePoints(ConfigVantagePointArgs.builder()
            .name("string")
            .displayName("string")
            .build())
        .apmDomainId("string")
        .target("string")
        .schedulingPolicy("string")
        .definedTags(Map.of("string", "any"))
        .configuration(ConfigConfigurationArgs.builder()
            .clientCertificateDetails(ConfigConfigurationClientCertificateDetailsArgs.builder()
                .clientCertificate(ConfigConfigurationClientCertificateDetailsClientCertificateArgs.builder()
                    .content("string")
                    .fileName("string")
                    .build())
                .privateKey(ConfigConfigurationClientCertificateDetailsPrivateKeyArgs.builder()
                    .content("string")
                    .fileName("string")
                    .build())
                .build())
            .configType("string")
            .dnsConfiguration(ConfigConfigurationDnsConfigurationArgs.builder()
                .isOverrideDns(false)
                .overrideDnsIp("string")
                .build())
            .isCertificateValidationEnabled(false)
            .isDefaultSnapshotEnabled(false)
            .isFailureRetried(false)
            .isQueryRecursive(false)
            .isRedirectionEnabled(false)
            .nameServer("string")
            .networkConfiguration(ConfigConfigurationNetworkConfigurationArgs.builder()
                .numberOfHops(0)
                .probeMode("string")
                .probePerHop(0)
                .protocol("string")
                .transmissionRate(0)
                .build())
            .protocol("string")
            .recordType("string")
            .reqAuthenticationDetails(ConfigConfigurationReqAuthenticationDetailsArgs.builder()
                .authHeaders(ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs.builder()
                    .headerName("string")
                    .headerValue("string")
                    .build())
                .authRequestMethod("string")
                .authRequestPostBody("string")
                .authToken("string")
                .authUrl("string")
                .authUserName("string")
                .authUserPassword("string")
                .oauthScheme("string")
                .build())
            .reqAuthenticationScheme("string")
            .requestHeaders(ConfigConfigurationRequestHeaderArgs.builder()
                .headerName("string")
                .headerValue("string")
                .build())
            .requestMethod("string")
            .requestPostBody("string")
            .requestQueryParams(ConfigConfigurationRequestQueryParamArgs.builder()
                .paramName("string")
                .paramValue("string")
                .build())
            .verifyResponseCodes("string")
            .verifyResponseContent("string")
            .verifyTexts(ConfigConfigurationVerifyTextArgs.builder()
                .text("string")
                .build())
            .build())
        .availabilityConfiguration(ConfigAvailabilityConfigurationArgs.builder()
            .maxAllowedFailuresPerInterval(0)
            .minAllowedRunsPerInterval(0)
            .build())
        .isRunNow(false)
        .batchIntervalInSeconds(0)
        .freeformTags(Map.of("string", "any"))
        .scriptId("string")
        .scriptName("string")
        .scriptParameters(ConfigScriptParameterArgs.builder()
            .paramName("string")
            .paramValue("string")
            .isOverwritten(false)
            .isSecret(false)
            .monitorScriptParameters(ConfigScriptParameterMonitorScriptParameterArgs.builder()
                .paramName("string")
                .paramValue("string")
                .build())
            .build())
        .status("string")
        .maintenanceWindowSchedule(ConfigMaintenanceWindowScheduleArgs.builder()
            .timeEnded("string")
            .timeStarted("string")
            .build())
        .timeoutInSeconds(0)
        .isRunOnce(false)
        .build());
    
    oci_config_resource = oci.apm_synthetics.Config("ociConfigResource",
        monitor_type="string",
        display_name="string",
        repeat_interval_in_seconds=0,
        vantage_points=[oci.apm_synthetics.ConfigVantagePointArgs(
            name="string",
            display_name="string",
        )],
        apm_domain_id="string",
        target="string",
        scheduling_policy="string",
        defined_tags={
            "string": "any",
        },
        configuration=oci.apm_synthetics.ConfigConfigurationArgs(
            client_certificate_details=oci.apm_synthetics.ConfigConfigurationClientCertificateDetailsArgs(
                client_certificate=oci.apm_synthetics.ConfigConfigurationClientCertificateDetailsClientCertificateArgs(
                    content="string",
                    file_name="string",
                ),
                private_key=oci.apm_synthetics.ConfigConfigurationClientCertificateDetailsPrivateKeyArgs(
                    content="string",
                    file_name="string",
                ),
            ),
            config_type="string",
            dns_configuration=oci.apm_synthetics.ConfigConfigurationDnsConfigurationArgs(
                is_override_dns=False,
                override_dns_ip="string",
            ),
            is_certificate_validation_enabled=False,
            is_default_snapshot_enabled=False,
            is_failure_retried=False,
            is_query_recursive=False,
            is_redirection_enabled=False,
            name_server="string",
            network_configuration=oci.apm_synthetics.ConfigConfigurationNetworkConfigurationArgs(
                number_of_hops=0,
                probe_mode="string",
                probe_per_hop=0,
                protocol="string",
                transmission_rate=0,
            ),
            protocol="string",
            record_type="string",
            req_authentication_details=oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsArgs(
                auth_headers=[oci.apm_synthetics.ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs(
                    header_name="string",
                    header_value="string",
                )],
                auth_request_method="string",
                auth_request_post_body="string",
                auth_token="string",
                auth_url="string",
                auth_user_name="string",
                auth_user_password="string",
                oauth_scheme="string",
            ),
            req_authentication_scheme="string",
            request_headers=[oci.apm_synthetics.ConfigConfigurationRequestHeaderArgs(
                header_name="string",
                header_value="string",
            )],
            request_method="string",
            request_post_body="string",
            request_query_params=[oci.apm_synthetics.ConfigConfigurationRequestQueryParamArgs(
                param_name="string",
                param_value="string",
            )],
            verify_response_codes=["string"],
            verify_response_content="string",
            verify_texts=[oci.apm_synthetics.ConfigConfigurationVerifyTextArgs(
                text="string",
            )],
        ),
        availability_configuration=oci.apm_synthetics.ConfigAvailabilityConfigurationArgs(
            max_allowed_failures_per_interval=0,
            min_allowed_runs_per_interval=0,
        ),
        is_run_now=False,
        batch_interval_in_seconds=0,
        freeform_tags={
            "string": "any",
        },
        script_id="string",
        script_name="string",
        script_parameters=[oci.apm_synthetics.ConfigScriptParameterArgs(
            param_name="string",
            param_value="string",
            is_overwritten=False,
            is_secret=False,
            monitor_script_parameters=[oci.apm_synthetics.ConfigScriptParameterMonitorScriptParameterArgs(
                param_name="string",
                param_value="string",
            )],
        )],
        status="string",
        maintenance_window_schedule=oci.apm_synthetics.ConfigMaintenanceWindowScheduleArgs(
            time_ended="string",
            time_started="string",
        ),
        timeout_in_seconds=0,
        is_run_once=False)
    
    const ociConfigResource = new oci.apmsynthetics.Config("ociConfigResource", {
        monitorType: "string",
        displayName: "string",
        repeatIntervalInSeconds: 0,
        vantagePoints: [{
            name: "string",
            displayName: "string",
        }],
        apmDomainId: "string",
        target: "string",
        schedulingPolicy: "string",
        definedTags: {
            string: "any",
        },
        configuration: {
            clientCertificateDetails: {
                clientCertificate: {
                    content: "string",
                    fileName: "string",
                },
                privateKey: {
                    content: "string",
                    fileName: "string",
                },
            },
            configType: "string",
            dnsConfiguration: {
                isOverrideDns: false,
                overrideDnsIp: "string",
            },
            isCertificateValidationEnabled: false,
            isDefaultSnapshotEnabled: false,
            isFailureRetried: false,
            isQueryRecursive: false,
            isRedirectionEnabled: false,
            nameServer: "string",
            networkConfiguration: {
                numberOfHops: 0,
                probeMode: "string",
                probePerHop: 0,
                protocol: "string",
                transmissionRate: 0,
            },
            protocol: "string",
            recordType: "string",
            reqAuthenticationDetails: {
                authHeaders: [{
                    headerName: "string",
                    headerValue: "string",
                }],
                authRequestMethod: "string",
                authRequestPostBody: "string",
                authToken: "string",
                authUrl: "string",
                authUserName: "string",
                authUserPassword: "string",
                oauthScheme: "string",
            },
            reqAuthenticationScheme: "string",
            requestHeaders: [{
                headerName: "string",
                headerValue: "string",
            }],
            requestMethod: "string",
            requestPostBody: "string",
            requestQueryParams: [{
                paramName: "string",
                paramValue: "string",
            }],
            verifyResponseCodes: ["string"],
            verifyResponseContent: "string",
            verifyTexts: [{
                text: "string",
            }],
        },
        availabilityConfiguration: {
            maxAllowedFailuresPerInterval: 0,
            minAllowedRunsPerInterval: 0,
        },
        isRunNow: false,
        batchIntervalInSeconds: 0,
        freeformTags: {
            string: "any",
        },
        scriptId: "string",
        scriptName: "string",
        scriptParameters: [{
            paramName: "string",
            paramValue: "string",
            isOverwritten: false,
            isSecret: false,
            monitorScriptParameters: [{
                paramName: "string",
                paramValue: "string",
            }],
        }],
        status: "string",
        maintenanceWindowSchedule: {
            timeEnded: "string",
            timeStarted: "string",
        },
        timeoutInSeconds: 0,
        isRunOnce: false,
    });
    
    type: oci:ApmSynthetics:Config
    properties:
        apmDomainId: string
        availabilityConfiguration:
            maxAllowedFailuresPerInterval: 0
            minAllowedRunsPerInterval: 0
        batchIntervalInSeconds: 0
        configuration:
            clientCertificateDetails:
                clientCertificate:
                    content: string
                    fileName: string
                privateKey:
                    content: string
                    fileName: string
            configType: string
            dnsConfiguration:
                isOverrideDns: false
                overrideDnsIp: string
            isCertificateValidationEnabled: false
            isDefaultSnapshotEnabled: false
            isFailureRetried: false
            isQueryRecursive: false
            isRedirectionEnabled: false
            nameServer: string
            networkConfiguration:
                numberOfHops: 0
                probeMode: string
                probePerHop: 0
                protocol: string
                transmissionRate: 0
            protocol: string
            recordType: string
            reqAuthenticationDetails:
                authHeaders:
                    - headerName: string
                      headerValue: string
                authRequestMethod: string
                authRequestPostBody: string
                authToken: string
                authUrl: string
                authUserName: string
                authUserPassword: string
                oauthScheme: string
            reqAuthenticationScheme: string
            requestHeaders:
                - headerName: string
                  headerValue: string
            requestMethod: string
            requestPostBody: string
            requestQueryParams:
                - paramName: string
                  paramValue: string
            verifyResponseCodes:
                - string
            verifyResponseContent: string
            verifyTexts:
                - text: string
        definedTags:
            string: any
        displayName: string
        freeformTags:
            string: any
        isRunNow: false
        isRunOnce: false
        maintenanceWindowSchedule:
            timeEnded: string
            timeStarted: string
        monitorType: string
        repeatIntervalInSeconds: 0
        schedulingPolicy: string
        scriptId: string
        scriptName: string
        scriptParameters:
            - isOverwritten: false
              isSecret: false
              monitorScriptParameters:
                - paramName: string
                  paramValue: string
              paramName: string
              paramValue: string
        status: string
        target: string
        timeoutInSeconds: 0
        vantagePoints:
            - displayName: string
              name: string
    

    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
    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<ConfigVantagePoint>

    (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 ConfigAvailabilityConfiguration
    (Updatable) Monitor availability configuration details.
    BatchIntervalInSeconds int
    (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
    Configuration ConfigConfiguration
    (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 immediately.
    IsRunOnce bool
    (Updatable) If runOnce is enabled, then the monitor will run once.
    MaintenanceWindowSchedule ConfigMaintenanceWindowSchedule
    (Updatable) Details required to schedule maintenance window.
    SchedulingPolicy string
    (Updatable) Scheduling policy to decide the distribution of monitor executions 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<ConfigScriptParameter>
    (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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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
    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 []ConfigVantagePointArgs

    (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 immediately.
    IsRunOnce bool
    (Updatable) If runOnce is enabled, then the monitor will run once.
    MaintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs
    (Updatable) Details required to schedule maintenance window.
    SchedulingPolicy string
    (Updatable) Scheduling policy to decide the distribution of monitor executions 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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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
    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<ConfigVantagePoint>

    (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 ConfigAvailabilityConfiguration
    (Updatable) Monitor availability configuration details.
    batchIntervalInSeconds Integer
    (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
    configuration ConfigConfiguration
    (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 immediately.
    isRunOnce Boolean
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenanceWindowSchedule ConfigMaintenanceWindowSchedule
    (Updatable) Details required to schedule maintenance window.
    schedulingPolicy String
    (Updatable) Scheduling policy to decide the distribution of monitor executions 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<ConfigScriptParameter>
    (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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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
    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 ConfigVantagePoint[]

    (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 ConfigAvailabilityConfiguration
    (Updatable) Monitor availability configuration details.
    batchIntervalInSeconds number
    (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
    configuration ConfigConfiguration
    (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 immediately.
    isRunOnce boolean
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenanceWindowSchedule ConfigMaintenanceWindowSchedule
    (Updatable) Details required to schedule maintenance window.
    schedulingPolicy string
    (Updatable) Scheduling policy to decide the distribution of monitor executions 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 ConfigScriptParameter[]
    (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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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
    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[apmsynthetics.ConfigVantagePointArgs]

    (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 apmsynthetics.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 apmsynthetics.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 immediately.
    is_run_once bool
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenance_window_schedule apmsynthetics.ConfigMaintenanceWindowScheduleArgs
    (Updatable) Details required to schedule maintenance window.
    scheduling_policy str
    (Updatable) Scheduling policy to decide the distribution of monitor executions 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 Sequence[apmsynthetics.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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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
    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<Property Map>

    (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 immediately.
    isRunOnce Boolean
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenanceWindowSchedule Property Map
    (Updatable) Details required to schedule maintenance window.
    schedulingPolicy String
    (Updatable) Scheduling policy to decide the distribution of monitor executions 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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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[_apmsynthetics.ConfigVantagePointArgs]] = 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 ConfigAvailabilityConfiguration
    (Updatable) Monitor availability configuration details.
    BatchIntervalInSeconds int
    (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
    Configuration ConfigConfiguration
    (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
    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 immediately.
    IsRunOnce bool
    (Updatable) If runOnce is enabled, then the monitor will run once.
    MaintenanceWindowSchedule ConfigMaintenanceWindowSchedule
    (Updatable) Details required 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 to decide the distribution of monitor executions 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<ConfigScriptParameter>
    (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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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<ConfigVantagePoint>

    (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
    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 immediately.
    IsRunOnce bool
    (Updatable) If runOnce is enabled, then the monitor will run once.
    MaintenanceWindowSchedule ConfigMaintenanceWindowScheduleArgs
    (Updatable) Details required 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 to decide the distribution of monitor executions 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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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 []ConfigVantagePointArgs

    (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 ConfigAvailabilityConfiguration
    (Updatable) Monitor availability configuration details.
    batchIntervalInSeconds Integer
    (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
    configuration ConfigConfiguration
    (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
    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 immediately.
    isRunOnce Boolean
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenanceWindowSchedule ConfigMaintenanceWindowSchedule
    (Updatable) Details required 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 to decide the distribution of monitor executions 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<ConfigScriptParameter>
    (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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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<ConfigVantagePoint>

    (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 ConfigAvailabilityConfiguration
    (Updatable) Monitor availability configuration details.
    batchIntervalInSeconds number
    (Updatable) Time interval between 2 runs in round robin batch mode (*SchedulingPolicy - BATCHED_ROUND_ROBIN).
    configuration ConfigConfiguration
    (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
    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 immediately.
    isRunOnce boolean
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenanceWindowSchedule ConfigMaintenanceWindowSchedule
    (Updatable) Details required 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 to decide the distribution of monitor executions 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 ConfigScriptParameter[]
    (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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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 ConfigVantagePoint[]

    (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 apmsynthetics.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 apmsynthetics.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
    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 immediately.
    is_run_once bool
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenance_window_schedule apmsynthetics.ConfigMaintenanceWindowScheduleArgs
    (Updatable) Details required 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 to decide the distribution of monitor executions 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 Sequence[apmsynthetics.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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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[apmsynthetics.ConfigVantagePointArgs]

    (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
    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 immediately.
    isRunOnce Boolean
    (Updatable) If runOnce is enabled, then the monitor will run once.
    maintenanceWindowSchedule Property Map
    (Updatable) Details required 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 to decide the distribution of monitor executions 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, REST and NETWORK 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. For NETWORK monitor with TCP protocol, a port needs to be provided along with target. Example: 192.168.0.1:80
    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<Property Map>

    (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, ConfigAvailabilityConfigurationArgs

    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, ConfigConfigurationArgs

    ClientCertificateDetails ConfigConfigurationClientCertificateDetails
    (Updatable) Details for client certificate.
    ConfigType string
    (Updatable) Type of configuration.
    DnsConfiguration ConfigConfigurationDnsConfiguration
    (Updatable) Information about the DNS settings.
    IsCertificateValidationEnabled bool
    (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
    IsDefaultSnapshotEnabled bool
    (Updatable) If disabled, auto snapshots are not collected.
    IsFailureRetried bool
    (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
    IsQueryRecursive bool
    (Updatable) If isQueryRecursive is enabled, then queries will be sent recursively to the target server.
    IsRedirectionEnabled bool
    (Updatable) If redirection is enabled, then redirects will be allowed while accessing target URL.
    NameServer string
    (Updatable) Name of the server that will be used to perform DNS lookup.
    NetworkConfiguration ConfigConfigurationNetworkConfiguration
    (Updatable) Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
    Protocol string
    (Updatable) Type of protocol.
    RecordType string
    (Updatable) DNS record type.
    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.
    ClientCertificateDetails ConfigConfigurationClientCertificateDetails
    (Updatable) Details for client certificate.
    ConfigType string
    (Updatable) Type of configuration.
    DnsConfiguration ConfigConfigurationDnsConfiguration
    (Updatable) Information about the DNS settings.
    IsCertificateValidationEnabled bool
    (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
    IsDefaultSnapshotEnabled bool
    (Updatable) If disabled, auto snapshots are not collected.
    IsFailureRetried bool
    (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
    IsQueryRecursive bool
    (Updatable) If isQueryRecursive is enabled, then queries will be sent recursively to the target server.
    IsRedirectionEnabled bool
    (Updatable) If redirection is enabled, then redirects will be allowed while accessing target URL.
    NameServer string
    (Updatable) Name of the server that will be used to perform DNS lookup.
    NetworkConfiguration ConfigConfigurationNetworkConfiguration
    (Updatable) Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
    Protocol string
    (Updatable) Type of protocol.
    RecordType string
    (Updatable) DNS record type.
    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.
    clientCertificateDetails ConfigConfigurationClientCertificateDetails
    (Updatable) Details for client certificate.
    configType String
    (Updatable) Type of configuration.
    dnsConfiguration ConfigConfigurationDnsConfiguration
    (Updatable) Information about the DNS settings.
    isCertificateValidationEnabled Boolean
    (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
    isDefaultSnapshotEnabled Boolean
    (Updatable) If disabled, auto snapshots are not collected.
    isFailureRetried Boolean
    (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
    isQueryRecursive Boolean
    (Updatable) If isQueryRecursive is enabled, then queries will be sent recursively to the target server.
    isRedirectionEnabled Boolean
    (Updatable) If redirection is enabled, then redirects will be allowed while accessing target URL.
    nameServer String
    (Updatable) Name of the server that will be used to perform DNS lookup.
    networkConfiguration ConfigConfigurationNetworkConfiguration
    (Updatable) Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
    protocol String
    (Updatable) Type of protocol.
    recordType String
    (Updatable) DNS record type.
    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.
    clientCertificateDetails ConfigConfigurationClientCertificateDetails
    (Updatable) Details for client certificate.
    configType string
    (Updatable) Type of configuration.
    dnsConfiguration ConfigConfigurationDnsConfiguration
    (Updatable) Information about the DNS settings.
    isCertificateValidationEnabled boolean
    (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
    isDefaultSnapshotEnabled boolean
    (Updatable) If disabled, auto snapshots are not collected.
    isFailureRetried boolean
    (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
    isQueryRecursive boolean
    (Updatable) If isQueryRecursive is enabled, then queries will be sent recursively to the target server.
    isRedirectionEnabled boolean
    (Updatable) If redirection is enabled, then redirects will be allowed while accessing target URL.
    nameServer string
    (Updatable) Name of the server that will be used to perform DNS lookup.
    networkConfiguration ConfigConfigurationNetworkConfiguration
    (Updatable) Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
    protocol string
    (Updatable) Type of protocol.
    recordType string
    (Updatable) DNS record type.
    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.
    client_certificate_details apmsynthetics.ConfigConfigurationClientCertificateDetails
    (Updatable) Details for client certificate.
    config_type str
    (Updatable) Type of configuration.
    dns_configuration apmsynthetics.ConfigConfigurationDnsConfiguration
    (Updatable) Information about the DNS settings.
    is_certificate_validation_enabled bool
    (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
    is_default_snapshot_enabled bool
    (Updatable) If disabled, auto snapshots are not collected.
    is_failure_retried bool
    (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
    is_query_recursive bool
    (Updatable) If isQueryRecursive is enabled, then queries will be sent recursively to the target server.
    is_redirection_enabled bool
    (Updatable) If redirection is enabled, then redirects will be allowed while accessing target URL.
    name_server str
    (Updatable) Name of the server that will be used to perform DNS lookup.
    network_configuration apmsynthetics.ConfigConfigurationNetworkConfiguration
    (Updatable) Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
    protocol str
    (Updatable) Type of protocol.
    record_type str
    (Updatable) DNS record type.
    req_authentication_details apmsynthetics.ConfigConfigurationReqAuthenticationDetails
    (Updatable) Details for request HTTP authentication.
    req_authentication_scheme str
    (Updatable) Request HTTP authentication scheme.
    request_headers Sequence[apmsynthetics.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 Sequence[apmsynthetics.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 Sequence[apmsynthetics.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.
    clientCertificateDetails Property Map
    (Updatable) Details for client certificate.
    configType String
    (Updatable) Type of configuration.
    dnsConfiguration Property Map
    (Updatable) Information about the DNS settings.
    isCertificateValidationEnabled Boolean
    (Updatable) If certificate validation is enabled, then the call will fail in case of certification errors.
    isDefaultSnapshotEnabled Boolean
    (Updatable) If disabled, auto snapshots are not collected.
    isFailureRetried Boolean
    (Updatable) If isFailureRetried is enabled, then a failed call will be retried.
    isQueryRecursive Boolean
    (Updatable) If isQueryRecursive is enabled, then queries will be sent recursively to the target server.
    isRedirectionEnabled Boolean
    (Updatable) If redirection is enabled, then redirects will be allowed while accessing target URL.
    nameServer String
    (Updatable) Name of the server that will be used to perform DNS lookup.
    networkConfiguration Property Map
    (Updatable) Details of the network configuration. For NETWORK monitor type, NetworkConfiguration is mandatory.
    protocol String
    (Updatable) Type of protocol.
    recordType String
    (Updatable) DNS record type.
    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.

    ConfigConfigurationClientCertificateDetails, ConfigConfigurationClientCertificateDetailsArgs

    ClientCertificate ConfigConfigurationClientCertificateDetailsClientCertificate
    (Updatable) Client certificate in PEM format.
    PrivateKey ConfigConfigurationClientCertificateDetailsPrivateKey
    (Updatable) The private key associated with the client certificate in PEM format.
    ClientCertificate ConfigConfigurationClientCertificateDetailsClientCertificate
    (Updatable) Client certificate in PEM format.
    PrivateKey ConfigConfigurationClientCertificateDetailsPrivateKey
    (Updatable) The private key associated with the client certificate in PEM format.
    clientCertificate ConfigConfigurationClientCertificateDetailsClientCertificate
    (Updatable) Client certificate in PEM format.
    privateKey ConfigConfigurationClientCertificateDetailsPrivateKey
    (Updatable) The private key associated with the client certificate in PEM format.
    clientCertificate ConfigConfigurationClientCertificateDetailsClientCertificate
    (Updatable) Client certificate in PEM format.
    privateKey ConfigConfigurationClientCertificateDetailsPrivateKey
    (Updatable) The private key associated with the client certificate in PEM format.
    client_certificate apmsynthetics.ConfigConfigurationClientCertificateDetailsClientCertificate
    (Updatable) Client certificate in PEM format.
    private_key apmsynthetics.ConfigConfigurationClientCertificateDetailsPrivateKey
    (Updatable) The private key associated with the client certificate in PEM format.
    clientCertificate Property Map
    (Updatable) Client certificate in PEM format.
    privateKey Property Map
    (Updatable) The private key associated with the client certificate in PEM format.

    ConfigConfigurationClientCertificateDetailsClientCertificate, ConfigConfigurationClientCertificateDetailsClientCertificateArgs

    Content string
    (Updatable) Content of the private key file.
    FileName string
    (Updatable) Name of the private key file.
    Content string
    (Updatable) Content of the private key file.
    FileName string
    (Updatable) Name of the private key file.
    content String
    (Updatable) Content of the private key file.
    fileName String
    (Updatable) Name of the private key file.
    content string
    (Updatable) Content of the private key file.
    fileName string
    (Updatable) Name of the private key file.
    content str
    (Updatable) Content of the private key file.
    file_name str
    (Updatable) Name of the private key file.
    content String
    (Updatable) Content of the private key file.
    fileName String
    (Updatable) Name of the private key file.

    ConfigConfigurationClientCertificateDetailsPrivateKey, ConfigConfigurationClientCertificateDetailsPrivateKeyArgs

    Content string
    (Updatable) Content of the private key file.
    FileName string
    (Updatable) Name of the private key file.
    Content string
    (Updatable) Content of the private key file.
    FileName string
    (Updatable) Name of the private key file.
    content String
    (Updatable) Content of the private key file.
    fileName String
    (Updatable) Name of the private key file.
    content string
    (Updatable) Content of the private key file.
    fileName string
    (Updatable) Name of the private key file.
    content str
    (Updatable) Content of the private key file.
    file_name str
    (Updatable) Name of the private key file.
    content String
    (Updatable) Content of the private key file.
    fileName String
    (Updatable) Name of the private key file.

    ConfigConfigurationDnsConfiguration, ConfigConfigurationDnsConfigurationArgs

    IsOverrideDns bool
    (Updatable) If isOverrideDns is true, then DNS settings will be overridden.
    OverrideDnsIp string
    (Updatable) Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
    IsOverrideDns bool
    (Updatable) If isOverrideDns is true, then DNS settings will be overridden.
    OverrideDnsIp string
    (Updatable) Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
    isOverrideDns Boolean
    (Updatable) If isOverrideDns is true, then DNS settings will be overridden.
    overrideDnsIp String
    (Updatable) Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
    isOverrideDns boolean
    (Updatable) If isOverrideDns is true, then DNS settings will be overridden.
    overrideDnsIp string
    (Updatable) Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
    is_override_dns bool
    (Updatable) If isOverrideDns is true, then DNS settings will be overridden.
    override_dns_ip str
    (Updatable) Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.
    isOverrideDns Boolean
    (Updatable) If isOverrideDns is true, then DNS settings will be overridden.
    overrideDnsIp String
    (Updatable) Attribute to override the DNS IP value. This value will be honored only if isOverrideDns is set to true.

    ConfigConfigurationNetworkConfiguration, ConfigConfigurationNetworkConfigurationArgs

    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, ConfigConfigurationReqAuthenticationDetailsArgs

    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 authentication token.
    AuthUserName string
    (Updatable) User name 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 authentication token.
    AuthUserName string
    (Updatable) User name 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 authentication token.
    authUserName String
    (Updatable) User name 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 authentication token.
    authUserName string
    (Updatable) User name for authentication.
    authUserPassword string
    (Updatable) User password for authentication.
    oauthScheme string
    (Updatable) Request HTTP OAuth scheme.
    auth_headers Sequence[apmsynthetics.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 authentication token.
    auth_user_name str
    (Updatable) User name 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 authentication token.
    authUserName String
    (Updatable) User name for authentication.
    authUserPassword String
    (Updatable) User password for authentication.
    oauthScheme String
    (Updatable) Request HTTP OAuth scheme.

    ConfigConfigurationReqAuthenticationDetailsAuthHeader, ConfigConfigurationReqAuthenticationDetailsAuthHeaderArgs

    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, ConfigConfigurationRequestHeaderArgs

    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, ConfigConfigurationRequestQueryParamArgs

    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, ConfigConfigurationVerifyTextArgs

    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, ConfigMaintenanceWindowScheduleArgs

    TimeEnded string
    (Updatable) End time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    TimeStarted string
    (Updatable) Start time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    TimeEnded string
    (Updatable) End time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    TimeStarted string
    (Updatable) Start time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    timeEnded String
    (Updatable) End time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    timeStarted String
    (Updatable) Start time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    timeEnded string
    (Updatable) End time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    timeStarted string
    (Updatable) Start time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    time_ended str
    (Updatable) End time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    time_started str
    (Updatable) Start time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    timeEnded String
    (Updatable) End time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z
    timeStarted String
    (Updatable) Start time of the maintenance window, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

    ConfigScriptParameter, ConfigScriptParameterArgs

    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 Sequence[apmsynthetics.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, ConfigScriptParameterMonitorScriptParameterArgs

    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.

    ConfigVantagePoint, ConfigVantagePointArgs

    Name string
    Name of the vantage point.
    DisplayName string
    Unique name that can be edited. The name should not contain any confidential information.
    Name string
    Name of the vantage point.
    DisplayName string
    Unique name that can be edited. The name should not contain any confidential information.
    name String
    Name of the vantage point.
    displayName String
    Unique name that can be edited. The name should not contain any confidential information.
    name string
    Name of the vantage point.
    displayName string
    Unique name that can be edited. The name should not contain any confidential information.
    name str
    Name of the vantage point.
    display_name str
    Unique name that can be edited. The name should not contain any confidential information.
    name String
    Name of the vantage point.
    displayName String
    Unique name that can be edited. The name should not contain any confidential information.

    Import

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

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

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi