1. Packages
  2. Azure Native
  3. API Docs
  4. insights
  5. WebTest
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

azure-native.insights.WebTest

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

    An Application Insights WebTest definition. Azure REST API version: 2022-06-15. Prior API version in Azure Native 1.x: 2015-05-01

    Example Usage

    webTestCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var webTest = new AzureNative.Insights.WebTest("webTest", new()
        {
            Configuration = new AzureNative.Insights.Inputs.WebTestPropertiesConfigurationArgs
            {
                WebTest = "<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"120\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"120\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>",
            },
            Description = "Ping web test alert for mytestwebapp",
            Enabled = true,
            Frequency = 900,
            Kind = AzureNative.Insights.WebTestKind.Ping,
            Location = "South Central US",
            Locations = new[]
            {
                new AzureNative.Insights.Inputs.WebTestGeolocationArgs
                {
                    Location = "us-fl-mia-edge",
                },
            },
            ResourceGroupName = "my-resource-group",
            RetryEnabled = true,
            SyntheticMonitorId = "my-webtest-my-component",
            Timeout = 120,
            WebTestKind = AzureNative.Insights.WebTestKind.Ping,
            WebTestName = "my-webtest-my-component",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/insights/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := insights.NewWebTest(ctx, "webTest", &insights.WebTestArgs{
    			Configuration: &insights.WebTestPropertiesConfigurationArgs{
    				WebTest: pulumi.String("<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"120\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"120\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>"),
    			},
    			Description: pulumi.String("Ping web test alert for mytestwebapp"),
    			Enabled:     pulumi.Bool(true),
    			Frequency:   pulumi.Int(900),
    			Kind:        insights.WebTestKindPing,
    			Location:    pulumi.String("South Central US"),
    			Locations: []insights.WebTestGeolocationArgs{
    				{
    					Location: pulumi.String("us-fl-mia-edge"),
    				},
    			},
    			ResourceGroupName:  pulumi.String("my-resource-group"),
    			RetryEnabled:       pulumi.Bool(true),
    			SyntheticMonitorId: pulumi.String("my-webtest-my-component"),
    			Timeout:            pulumi.Int(120),
    			WebTestKind:        insights.WebTestKindPing,
    			WebTestName:        pulumi.String("my-webtest-my-component"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.insights.WebTest;
    import com.pulumi.azurenative.insights.WebTestArgs;
    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 webTest = new WebTest("webTest", WebTestArgs.builder()        
                .configuration(Map.of("webTest", "<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"120\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"120\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>"))
                .description("Ping web test alert for mytestwebapp")
                .enabled(true)
                .frequency(900)
                .kind("ping")
                .location("South Central US")
                .locations(Map.of("location", "us-fl-mia-edge"))
                .resourceGroupName("my-resource-group")
                .retryEnabled(true)
                .syntheticMonitorId("my-webtest-my-component")
                .timeout(120)
                .webTestKind("ping")
                .webTestName("my-webtest-my-component")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    web_test = azure_native.insights.WebTest("webTest",
        configuration=azure_native.insights.WebTestPropertiesConfigurationArgs(
            web_test="<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"120\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"120\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>",
        ),
        description="Ping web test alert for mytestwebapp",
        enabled=True,
        frequency=900,
        kind=azure_native.insights.WebTestKind.PING,
        location="South Central US",
        locations=[azure_native.insights.WebTestGeolocationArgs(
            location="us-fl-mia-edge",
        )],
        resource_group_name="my-resource-group",
        retry_enabled=True,
        synthetic_monitor_id="my-webtest-my-component",
        timeout=120,
        web_test_kind=azure_native.insights.WebTestKind.PING,
        web_test_name="my-webtest-my-component")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const webTest = new azure_native.insights.WebTest("webTest", {
        configuration: {
            webTest: "<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"120\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"120\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>",
        },
        description: "Ping web test alert for mytestwebapp",
        enabled: true,
        frequency: 900,
        kind: azure_native.insights.WebTestKind.Ping,
        location: "South Central US",
        locations: [{
            location: "us-fl-mia-edge",
        }],
        resourceGroupName: "my-resource-group",
        retryEnabled: true,
        syntheticMonitorId: "my-webtest-my-component",
        timeout: 120,
        webTestKind: azure_native.insights.WebTestKind.Ping,
        webTestName: "my-webtest-my-component",
    });
    
    resources:
      webTest:
        type: azure-native:insights:WebTest
        properties:
          configuration:
            webTest: <WebTest Name="my-webtest" Id="678ddf96-1ab8-44c8-9274-123456789abc" Enabled="True" CssProjectStructure="" CssIteration="" Timeout="120" WorkItemIds="" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010" Description="" CredentialUserName="" CredentialPassword="" PreAuthenticate="True" Proxy="default" StopOnError="False" RecordedResultFile="" ResultsLocale="" ><Items><Request Method="GET" Guid="a4162485-9114-fcfc-e086-123456789abc" Version="1.1" Url="http://my-component.azurewebsites.net" ThinkTime="0" Timeout="120" ParseDependentRequests="True" FollowRedirects="True" RecordResult="True" Cache="False" ResponseTimeGoal="0" Encoding="utf-8" ExpectedHttpStatusCode="200" ExpectedResponseUrl="" ReportingName="" IgnoreHttpStatusCode="False" /></Items></WebTest>
          description: Ping web test alert for mytestwebapp
          enabled: true
          frequency: 900
          kind: ping
          location: South Central US
          locations:
            - location: us-fl-mia-edge
          resourceGroupName: my-resource-group
          retryEnabled: true
          syntheticMonitorId: my-webtest-my-component
          timeout: 120
          webTestKind: ping
          webTestName: my-webtest-my-component
    

    webTestCreateStandard

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var webTest = new AzureNative.Insights.WebTest("webTest", new()
        {
            Description = "Ping web test alert for mytestwebapp",
            Enabled = true,
            Frequency = 900,
            Location = "South Central US",
            Locations = new[]
            {
                new AzureNative.Insights.Inputs.WebTestGeolocationArgs
                {
                    Location = "us-fl-mia-edge",
                },
            },
            Request = new AzureNative.Insights.Inputs.WebTestPropertiesRequestArgs
            {
                Headers = new[]
                {
                    new AzureNative.Insights.Inputs.HeaderFieldArgs
                    {
                        HeaderFieldName = "Content-Language",
                        HeaderFieldValue = "de-DE",
                    },
                    new AzureNative.Insights.Inputs.HeaderFieldArgs
                    {
                        HeaderFieldName = "Accept-Language",
                        HeaderFieldValue = "de-DE",
                    },
                },
                HttpVerb = "POST",
                RequestBody = "SGVsbG8gd29ybGQ=",
                RequestUrl = "https://bing.com",
            },
            ResourceGroupName = "my-resource-group",
            RetryEnabled = true,
            SyntheticMonitorId = "my-webtest-my-component",
            Timeout = 120,
            ValidationRules = new AzureNative.Insights.Inputs.WebTestPropertiesValidationRulesArgs
            {
                SSLCertRemainingLifetimeCheck = 100,
                SSLCheck = true,
            },
            WebTestKind = AzureNative.Insights.WebTestKind.Standard,
            WebTestName = "my-webtest-my-component",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/insights/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := insights.NewWebTest(ctx, "webTest", &insights.WebTestArgs{
    			Description: pulumi.String("Ping web test alert for mytestwebapp"),
    			Enabled:     pulumi.Bool(true),
    			Frequency:   pulumi.Int(900),
    			Location:    pulumi.String("South Central US"),
    			Locations: []insights.WebTestGeolocationArgs{
    				{
    					Location: pulumi.String("us-fl-mia-edge"),
    				},
    			},
    			Request: insights.WebTestPropertiesResponseRequest{
    				Headers: insights.HeaderFieldArray{
    					&insights.HeaderFieldArgs{
    						HeaderFieldName:  pulumi.String("Content-Language"),
    						HeaderFieldValue: pulumi.String("de-DE"),
    					},
    					&insights.HeaderFieldArgs{
    						HeaderFieldName:  pulumi.String("Accept-Language"),
    						HeaderFieldValue: pulumi.String("de-DE"),
    					},
    				},
    				HttpVerb:    pulumi.String("POST"),
    				RequestBody: pulumi.String("SGVsbG8gd29ybGQ="),
    				RequestUrl:  pulumi.String("https://bing.com"),
    			},
    			ResourceGroupName:  pulumi.String("my-resource-group"),
    			RetryEnabled:       pulumi.Bool(true),
    			SyntheticMonitorId: pulumi.String("my-webtest-my-component"),
    			Timeout:            pulumi.Int(120),
    			ValidationRules: &insights.WebTestPropertiesValidationRulesArgs{
    				SSLCertRemainingLifetimeCheck: pulumi.Int(100),
    				SSLCheck:                      pulumi.Bool(true),
    			},
    			WebTestKind: insights.WebTestKindStandard,
    			WebTestName: pulumi.String("my-webtest-my-component"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.insights.WebTest;
    import com.pulumi.azurenative.insights.WebTestArgs;
    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 webTest = new WebTest("webTest", WebTestArgs.builder()        
                .description("Ping web test alert for mytestwebapp")
                .enabled(true)
                .frequency(900)
                .location("South Central US")
                .locations(Map.of("location", "us-fl-mia-edge"))
                .request(Map.ofEntries(
                    Map.entry("headers",                 
                        Map.ofEntries(
                            Map.entry("headerFieldName", "Content-Language"),
                            Map.entry("headerFieldValue", "de-DE")
                        ),
                        Map.ofEntries(
                            Map.entry("headerFieldName", "Accept-Language"),
                            Map.entry("headerFieldValue", "de-DE")
                        )),
                    Map.entry("httpVerb", "POST"),
                    Map.entry("requestBody", "SGVsbG8gd29ybGQ="),
                    Map.entry("requestUrl", "https://bing.com")
                ))
                .resourceGroupName("my-resource-group")
                .retryEnabled(true)
                .syntheticMonitorId("my-webtest-my-component")
                .timeout(120)
                .validationRules(Map.ofEntries(
                    Map.entry("sSLCertRemainingLifetimeCheck", 100),
                    Map.entry("sSLCheck", true)
                ))
                .webTestKind("standard")
                .webTestName("my-webtest-my-component")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    web_test = azure_native.insights.WebTest("webTest",
        description="Ping web test alert for mytestwebapp",
        enabled=True,
        frequency=900,
        location="South Central US",
        locations=[azure_native.insights.WebTestGeolocationArgs(
            location="us-fl-mia-edge",
        )],
        request=azure_native.insights.WebTestPropertiesResponseRequestArgs(
            headers=[
                azure_native.insights.HeaderFieldArgs(
                    header_field_name="Content-Language",
                    header_field_value="de-DE",
                ),
                azure_native.insights.HeaderFieldArgs(
                    header_field_name="Accept-Language",
                    header_field_value="de-DE",
                ),
            ],
            http_verb="POST",
            request_body="SGVsbG8gd29ybGQ=",
            request_url="https://bing.com",
        ),
        resource_group_name="my-resource-group",
        retry_enabled=True,
        synthetic_monitor_id="my-webtest-my-component",
        timeout=120,
        validation_rules=azure_native.insights.WebTestPropertiesValidationRulesArgs(
            s_sl_cert_remaining_lifetime_check=100,
            s_sl_check=True,
        ),
        web_test_kind=azure_native.insights.WebTestKind.STANDARD,
        web_test_name="my-webtest-my-component")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const webTest = new azure_native.insights.WebTest("webTest", {
        description: "Ping web test alert for mytestwebapp",
        enabled: true,
        frequency: 900,
        location: "South Central US",
        locations: [{
            location: "us-fl-mia-edge",
        }],
        request: {
            headers: [
                {
                    headerFieldName: "Content-Language",
                    headerFieldValue: "de-DE",
                },
                {
                    headerFieldName: "Accept-Language",
                    headerFieldValue: "de-DE",
                },
            ],
            httpVerb: "POST",
            requestBody: "SGVsbG8gd29ybGQ=",
            requestUrl: "https://bing.com",
        },
        resourceGroupName: "my-resource-group",
        retryEnabled: true,
        syntheticMonitorId: "my-webtest-my-component",
        timeout: 120,
        validationRules: {
            sSLCertRemainingLifetimeCheck: 100,
            sSLCheck: true,
        },
        webTestKind: azure_native.insights.WebTestKind.Standard,
        webTestName: "my-webtest-my-component",
    });
    
    resources:
      webTest:
        type: azure-native:insights:WebTest
        properties:
          description: Ping web test alert for mytestwebapp
          enabled: true
          frequency: 900
          location: South Central US
          locations:
            - location: us-fl-mia-edge
          request:
            headers:
              - headerFieldName: Content-Language
                headerFieldValue: de-DE
              - headerFieldName: Accept-Language
                headerFieldValue: de-DE
            httpVerb: POST
            requestBody: SGVsbG8gd29ybGQ=
            requestUrl: https://bing.com
          resourceGroupName: my-resource-group
          retryEnabled: true
          syntheticMonitorId: my-webtest-my-component
          timeout: 120
          validationRules:
            sSLCertRemainingLifetimeCheck: 100
            sSLCheck: true
          webTestKind: standard
          webTestName: my-webtest-my-component
    

    webTestUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var webTest = new AzureNative.Insights.WebTest("webTest", new()
        {
            Configuration = new AzureNative.Insights.Inputs.WebTestPropertiesConfigurationArgs
            {
                WebTest = "<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"30\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"30\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>",
            },
            Frequency = 600,
            Kind = AzureNative.Insights.WebTestKind.Ping,
            Location = "South Central US",
            Locations = new[]
            {
                new AzureNative.Insights.Inputs.WebTestGeolocationArgs
                {
                    Location = "us-fl-mia-edge",
                },
                new AzureNative.Insights.Inputs.WebTestGeolocationArgs
                {
                    Location = "apac-hk-hkn-azr",
                },
            },
            ResourceGroupName = "my-resource-group",
            SyntheticMonitorId = "my-webtest-my-component",
            Timeout = 30,
            WebTestKind = AzureNative.Insights.WebTestKind.Ping,
            WebTestName = "my-webtest-my-component",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/insights/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := insights.NewWebTest(ctx, "webTest", &insights.WebTestArgs{
    			Configuration: &insights.WebTestPropertiesConfigurationArgs{
    				WebTest: pulumi.String("<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"30\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"30\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>"),
    			},
    			Frequency: pulumi.Int(600),
    			Kind:      insights.WebTestKindPing,
    			Location:  pulumi.String("South Central US"),
    			Locations: []insights.WebTestGeolocationArgs{
    				{
    					Location: pulumi.String("us-fl-mia-edge"),
    				},
    				{
    					Location: pulumi.String("apac-hk-hkn-azr"),
    				},
    			},
    			ResourceGroupName:  pulumi.String("my-resource-group"),
    			SyntheticMonitorId: pulumi.String("my-webtest-my-component"),
    			Timeout:            pulumi.Int(30),
    			WebTestKind:        insights.WebTestKindPing,
    			WebTestName:        pulumi.String("my-webtest-my-component"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.insights.WebTest;
    import com.pulumi.azurenative.insights.WebTestArgs;
    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 webTest = new WebTest("webTest", WebTestArgs.builder()        
                .configuration(Map.of("webTest", "<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"30\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"30\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>"))
                .frequency(600)
                .kind("ping")
                .location("South Central US")
                .locations(            
                    Map.of("location", "us-fl-mia-edge"),
                    Map.of("location", "apac-hk-hkn-azr"))
                .resourceGroupName("my-resource-group")
                .syntheticMonitorId("my-webtest-my-component")
                .timeout(30)
                .webTestKind("ping")
                .webTestName("my-webtest-my-component")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    web_test = azure_native.insights.WebTest("webTest",
        configuration=azure_native.insights.WebTestPropertiesConfigurationArgs(
            web_test="<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"30\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"30\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>",
        ),
        frequency=600,
        kind=azure_native.insights.WebTestKind.PING,
        location="South Central US",
        locations=[
            azure_native.insights.WebTestGeolocationArgs(
                location="us-fl-mia-edge",
            ),
            azure_native.insights.WebTestGeolocationArgs(
                location="apac-hk-hkn-azr",
            ),
        ],
        resource_group_name="my-resource-group",
        synthetic_monitor_id="my-webtest-my-component",
        timeout=30,
        web_test_kind=azure_native.insights.WebTestKind.PING,
        web_test_name="my-webtest-my-component")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const webTest = new azure_native.insights.WebTest("webTest", {
        configuration: {
            webTest: "<WebTest Name=\"my-webtest\" Id=\"678ddf96-1ab8-44c8-9274-123456789abc\" Enabled=\"True\" CssProjectStructure=\"\" CssIteration=\"\" Timeout=\"30\" WorkItemIds=\"\" xmlns=\"http://microsoft.com/schemas/VisualStudio/TeamTest/2010\" Description=\"\" CredentialUserName=\"\" CredentialPassword=\"\" PreAuthenticate=\"True\" Proxy=\"default\" StopOnError=\"False\" RecordedResultFile=\"\" ResultsLocale=\"\" ><Items><Request Method=\"GET\" Guid=\"a4162485-9114-fcfc-e086-123456789abc\" Version=\"1.1\" Url=\"http://my-component.azurewebsites.net\" ThinkTime=\"0\" Timeout=\"30\" ParseDependentRequests=\"True\" FollowRedirects=\"True\" RecordResult=\"True\" Cache=\"False\" ResponseTimeGoal=\"0\" Encoding=\"utf-8\" ExpectedHttpStatusCode=\"200\" ExpectedResponseUrl=\"\" ReportingName=\"\" IgnoreHttpStatusCode=\"False\" /></Items></WebTest>",
        },
        frequency: 600,
        kind: azure_native.insights.WebTestKind.Ping,
        location: "South Central US",
        locations: [
            {
                location: "us-fl-mia-edge",
            },
            {
                location: "apac-hk-hkn-azr",
            },
        ],
        resourceGroupName: "my-resource-group",
        syntheticMonitorId: "my-webtest-my-component",
        timeout: 30,
        webTestKind: azure_native.insights.WebTestKind.Ping,
        webTestName: "my-webtest-my-component",
    });
    
    resources:
      webTest:
        type: azure-native:insights:WebTest
        properties:
          configuration:
            webTest: <WebTest Name="my-webtest" Id="678ddf96-1ab8-44c8-9274-123456789abc" Enabled="True" CssProjectStructure="" CssIteration="" Timeout="30" WorkItemIds="" xmlns="http://microsoft.com/schemas/VisualStudio/TeamTest/2010" Description="" CredentialUserName="" CredentialPassword="" PreAuthenticate="True" Proxy="default" StopOnError="False" RecordedResultFile="" ResultsLocale="" ><Items><Request Method="GET" Guid="a4162485-9114-fcfc-e086-123456789abc" Version="1.1" Url="http://my-component.azurewebsites.net" ThinkTime="0" Timeout="30" ParseDependentRequests="True" FollowRedirects="True" RecordResult="True" Cache="False" ResponseTimeGoal="0" Encoding="utf-8" ExpectedHttpStatusCode="200" ExpectedResponseUrl="" ReportingName="" IgnoreHttpStatusCode="False" /></Items></WebTest>
          frequency: 600
          kind: ping
          location: South Central US
          locations:
            - location: us-fl-mia-edge
            - location: apac-hk-hkn-azr
          resourceGroupName: my-resource-group
          syntheticMonitorId: my-webtest-my-component
          timeout: 30
          webTestKind: ping
          webTestName: my-webtest-my-component
    

    Create WebTest Resource

    new WebTest(name: string, args: WebTestArgs, opts?: CustomResourceOptions);
    @overload
    def WebTest(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                configuration: Optional[WebTestPropertiesConfigurationArgs] = None,
                description: Optional[str] = None,
                enabled: Optional[bool] = None,
                frequency: Optional[int] = None,
                kind: Optional[WebTestKind] = None,
                location: Optional[str] = None,
                locations: Optional[Sequence[WebTestGeolocationArgs]] = None,
                request: Optional[WebTestPropertiesRequestArgs] = None,
                resource_group_name: Optional[str] = None,
                retry_enabled: Optional[bool] = None,
                synthetic_monitor_id: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                timeout: Optional[int] = None,
                validation_rules: Optional[WebTestPropertiesValidationRulesArgs] = None,
                web_test_kind: Optional[WebTestKind] = None,
                web_test_name: Optional[str] = None)
    @overload
    def WebTest(resource_name: str,
                args: WebTestArgs,
                opts: Optional[ResourceOptions] = None)
    func NewWebTest(ctx *Context, name string, args WebTestArgs, opts ...ResourceOption) (*WebTest, error)
    public WebTest(string name, WebTestArgs args, CustomResourceOptions? opts = null)
    public WebTest(String name, WebTestArgs args)
    public WebTest(String name, WebTestArgs args, CustomResourceOptions options)
    
    type: azure-native:insights:WebTest
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args WebTestArgs
    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 WebTestArgs
    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 WebTestArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WebTestArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WebTestArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    WebTest 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 WebTest resource accepts the following input properties:

    Locations List<Pulumi.AzureNative.Insights.Inputs.WebTestGeolocation>

    A list of where to physically run the tests from to give global coverage for accessibility of your application.

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    SyntheticMonitorId string

    Unique ID of this WebTest. This is typically the same value as the Name field.

    WebTestKind Pulumi.AzureNative.Insights.WebTestKind

    The kind of web test this is, valid choices are ping, multistep and standard.

    Configuration Pulumi.AzureNative.Insights.Inputs.WebTestPropertiesConfiguration

    An XML configuration specification for a WebTest.

    Description string

    User defined description for this WebTest.

    Enabled bool

    Is the test actively being monitored.

    Frequency int

    Interval in seconds between test runs for this WebTest. Default value is 300.

    Kind Pulumi.AzureNative.Insights.WebTestKind

    The kind of WebTest that this web test watches. Choices are ping, multistep and standard.

    Location string

    Resource location

    Request Pulumi.AzureNative.Insights.Inputs.WebTestPropertiesRequest

    The collection of request properties

    RetryEnabled bool

    Allow for retries should this WebTest fail.

    Tags Dictionary<string, string>

    Resource tags

    Timeout int

    Seconds until this WebTest will timeout and fail. Default value is 30.

    ValidationRules Pulumi.AzureNative.Insights.Inputs.WebTestPropertiesValidationRules

    The collection of validation rule properties

    WebTestName string

    User defined name if this WebTest.

    Locations []WebTestGeolocationArgs

    A list of where to physically run the tests from to give global coverage for accessibility of your application.

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    SyntheticMonitorId string

    Unique ID of this WebTest. This is typically the same value as the Name field.

    WebTestKind WebTestKind

    The kind of web test this is, valid choices are ping, multistep and standard.

    Configuration WebTestPropertiesConfigurationArgs

    An XML configuration specification for a WebTest.

    Description string

    User defined description for this WebTest.

    Enabled bool

    Is the test actively being monitored.

    Frequency int

    Interval in seconds between test runs for this WebTest. Default value is 300.

    Kind WebTestKind

    The kind of WebTest that this web test watches. Choices are ping, multistep and standard.

    Location string

    Resource location

    Request WebTestPropertiesRequestArgs

    The collection of request properties

    RetryEnabled bool

    Allow for retries should this WebTest fail.

    Tags map[string]string

    Resource tags

    Timeout int

    Seconds until this WebTest will timeout and fail. Default value is 30.

    ValidationRules WebTestPropertiesValidationRulesArgs

    The collection of validation rule properties

    WebTestName string

    User defined name if this WebTest.

    locations List<WebTestGeolocation>

    A list of where to physically run the tests from to give global coverage for accessibility of your application.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    syntheticMonitorId String

    Unique ID of this WebTest. This is typically the same value as the Name field.

    webTestKind WebTestKind

    The kind of web test this is, valid choices are ping, multistep and standard.

    configuration WebTestPropertiesConfiguration

    An XML configuration specification for a WebTest.

    description String

    User defined description for this WebTest.

    enabled Boolean

    Is the test actively being monitored.

    frequency Integer

    Interval in seconds between test runs for this WebTest. Default value is 300.

    kind WebTestKind

    The kind of WebTest that this web test watches. Choices are ping, multistep and standard.

    location String

    Resource location

    request WebTestPropertiesRequest

    The collection of request properties

    retryEnabled Boolean

    Allow for retries should this WebTest fail.

    tags Map<String,String>

    Resource tags

    timeout Integer

    Seconds until this WebTest will timeout and fail. Default value is 30.

    validationRules WebTestPropertiesValidationRules

    The collection of validation rule properties

    webTestName String

    User defined name if this WebTest.

    locations WebTestGeolocation[]

    A list of where to physically run the tests from to give global coverage for accessibility of your application.

    resourceGroupName string

    The name of the resource group. The name is case insensitive.

    syntheticMonitorId string

    Unique ID of this WebTest. This is typically the same value as the Name field.

    webTestKind WebTestKind

    The kind of web test this is, valid choices are ping, multistep and standard.

    configuration WebTestPropertiesConfiguration

    An XML configuration specification for a WebTest.

    description string

    User defined description for this WebTest.

    enabled boolean

    Is the test actively being monitored.

    frequency number

    Interval in seconds between test runs for this WebTest. Default value is 300.

    kind WebTestKind

    The kind of WebTest that this web test watches. Choices are ping, multistep and standard.

    location string

    Resource location

    request WebTestPropertiesRequest

    The collection of request properties

    retryEnabled boolean

    Allow for retries should this WebTest fail.

    tags {[key: string]: string}

    Resource tags

    timeout number

    Seconds until this WebTest will timeout and fail. Default value is 30.

    validationRules WebTestPropertiesValidationRules

    The collection of validation rule properties

    webTestName string

    User defined name if this WebTest.

    locations Sequence[WebTestGeolocationArgs]

    A list of where to physically run the tests from to give global coverage for accessibility of your application.

    resource_group_name str

    The name of the resource group. The name is case insensitive.

    synthetic_monitor_id str

    Unique ID of this WebTest. This is typically the same value as the Name field.

    web_test_kind WebTestKind

    The kind of web test this is, valid choices are ping, multistep and standard.

    configuration WebTestPropertiesConfigurationArgs

    An XML configuration specification for a WebTest.

    description str

    User defined description for this WebTest.

    enabled bool

    Is the test actively being monitored.

    frequency int

    Interval in seconds between test runs for this WebTest. Default value is 300.

    kind WebTestKind

    The kind of WebTest that this web test watches. Choices are ping, multistep and standard.

    location str

    Resource location

    request WebTestPropertiesRequestArgs

    The collection of request properties

    retry_enabled bool

    Allow for retries should this WebTest fail.

    tags Mapping[str, str]

    Resource tags

    timeout int

    Seconds until this WebTest will timeout and fail. Default value is 30.

    validation_rules WebTestPropertiesValidationRulesArgs

    The collection of validation rule properties

    web_test_name str

    User defined name if this WebTest.

    locations List<Property Map>

    A list of where to physically run the tests from to give global coverage for accessibility of your application.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    syntheticMonitorId String

    Unique ID of this WebTest. This is typically the same value as the Name field.

    webTestKind "ping" | "multistep" | "standard"

    The kind of web test this is, valid choices are ping, multistep and standard.

    configuration Property Map

    An XML configuration specification for a WebTest.

    description String

    User defined description for this WebTest.

    enabled Boolean

    Is the test actively being monitored.

    frequency Number

    Interval in seconds between test runs for this WebTest. Default value is 300.

    kind "ping" | "multistep" | "standard"

    The kind of WebTest that this web test watches. Choices are ping, multistep and standard.

    location String

    Resource location

    request Property Map

    The collection of request properties

    retryEnabled Boolean

    Allow for retries should this WebTest fail.

    tags Map<String>

    Resource tags

    timeout Number

    Seconds until this WebTest will timeout and fail. Default value is 30.

    validationRules Property Map

    The collection of validation rule properties

    webTestName String

    User defined name if this WebTest.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Azure resource name

    ProvisioningState string

    Current state of this component, whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.

    Type string

    Azure resource type

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Azure resource name

    ProvisioningState string

    Current state of this component, whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.

    Type string

    Azure resource type

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Azure resource name

    provisioningState String

    Current state of this component, whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.

    type String

    Azure resource type

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    Azure resource name

    provisioningState string

    Current state of this component, whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.

    type string

    Azure resource type

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    Azure resource name

    provisioning_state str

    Current state of this component, whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.

    type str

    Azure resource type

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Azure resource name

    provisioningState String

    Current state of this component, whether or not is has been provisioned within the resource group it is defined. Users cannot change this value but are able to read from it. Values will include Succeeded, Deploying, Canceled, and Failed.

    type String

    Azure resource type

    Supporting Types

    HeaderField, HeaderFieldArgs

    HeaderFieldName string

    The name of the header.

    HeaderFieldValue string

    The value of the header.

    HeaderFieldName string

    The name of the header.

    HeaderFieldValue string

    The value of the header.

    headerFieldName String

    The name of the header.

    headerFieldValue String

    The value of the header.

    headerFieldName string

    The name of the header.

    headerFieldValue string

    The value of the header.

    header_field_name str

    The name of the header.

    header_field_value str

    The value of the header.

    headerFieldName String

    The name of the header.

    headerFieldValue String

    The value of the header.

    HeaderFieldResponse, HeaderFieldResponseArgs

    HeaderFieldName string

    The name of the header.

    HeaderFieldValue string

    The value of the header.

    HeaderFieldName string

    The name of the header.

    HeaderFieldValue string

    The value of the header.

    headerFieldName String

    The name of the header.

    headerFieldValue String

    The value of the header.

    headerFieldName string

    The name of the header.

    headerFieldValue string

    The value of the header.

    header_field_name str

    The name of the header.

    header_field_value str

    The value of the header.

    headerFieldName String

    The name of the header.

    headerFieldValue String

    The value of the header.

    WebTestGeolocation, WebTestGeolocationArgs

    Location string

    Location ID for the WebTest to run from.

    Location string

    Location ID for the WebTest to run from.

    location String

    Location ID for the WebTest to run from.

    location string

    Location ID for the WebTest to run from.

    location str

    Location ID for the WebTest to run from.

    location String

    Location ID for the WebTest to run from.

    WebTestGeolocationResponse, WebTestGeolocationResponseArgs

    Location string

    Location ID for the WebTest to run from.

    Location string

    Location ID for the WebTest to run from.

    location String

    Location ID for the WebTest to run from.

    location string

    Location ID for the WebTest to run from.

    location str

    Location ID for the WebTest to run from.

    location String

    Location ID for the WebTest to run from.

    WebTestKind, WebTestKindArgs

    Ping
    ping
    Multistep
    multistep
    Standard
    standard
    WebTestKindPing
    ping
    WebTestKindMultistep
    multistep
    WebTestKindStandard
    standard
    Ping
    ping
    Multistep
    multistep
    Standard
    standard
    Ping
    ping
    Multistep
    multistep
    Standard
    standard
    PING
    ping
    MULTISTEP
    multistep
    STANDARD
    standard
    "ping"
    ping
    "multistep"
    multistep
    "standard"
    standard

    WebTestPropertiesConfiguration, WebTestPropertiesConfigurationArgs

    WebTest string

    The XML specification of a WebTest to run against an application.

    WebTest string

    The XML specification of a WebTest to run against an application.

    webTest String

    The XML specification of a WebTest to run against an application.

    webTest string

    The XML specification of a WebTest to run against an application.

    web_test str

    The XML specification of a WebTest to run against an application.

    webTest String

    The XML specification of a WebTest to run against an application.

    WebTestPropertiesContentValidation, WebTestPropertiesContentValidationArgs

    ContentMatch string

    Content to look for in the return of the WebTest. Must not be null or empty.

    IgnoreCase bool

    When set, this value makes the ContentMatch validation case insensitive.

    PassIfTextFound bool

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    ContentMatch string

    Content to look for in the return of the WebTest. Must not be null or empty.

    IgnoreCase bool

    When set, this value makes the ContentMatch validation case insensitive.

    PassIfTextFound bool

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    contentMatch String

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignoreCase Boolean

    When set, this value makes the ContentMatch validation case insensitive.

    passIfTextFound Boolean

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    contentMatch string

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignoreCase boolean

    When set, this value makes the ContentMatch validation case insensitive.

    passIfTextFound boolean

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    content_match str

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignore_case bool

    When set, this value makes the ContentMatch validation case insensitive.

    pass_if_text_found bool

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    contentMatch String

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignoreCase Boolean

    When set, this value makes the ContentMatch validation case insensitive.

    passIfTextFound Boolean

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    WebTestPropertiesRequest, WebTestPropertiesRequestArgs

    FollowRedirects bool

    Follow redirects for this web test.

    Headers List<Pulumi.AzureNative.Insights.Inputs.HeaderField>

    List of headers and their values to add to the WebTest call.

    HttpVerb string

    Http verb to use for this web test.

    ParseDependentRequests bool

    Parse Dependent request for this WebTest.

    RequestBody string

    Base64 encoded string body to send with this web test.

    RequestUrl string

    Url location to test.

    FollowRedirects bool

    Follow redirects for this web test.

    Headers []HeaderField

    List of headers and their values to add to the WebTest call.

    HttpVerb string

    Http verb to use for this web test.

    ParseDependentRequests bool

    Parse Dependent request for this WebTest.

    RequestBody string

    Base64 encoded string body to send with this web test.

    RequestUrl string

    Url location to test.

    followRedirects Boolean

    Follow redirects for this web test.

    headers List<HeaderField>

    List of headers and their values to add to the WebTest call.

    httpVerb String

    Http verb to use for this web test.

    parseDependentRequests Boolean

    Parse Dependent request for this WebTest.

    requestBody String

    Base64 encoded string body to send with this web test.

    requestUrl String

    Url location to test.

    followRedirects boolean

    Follow redirects for this web test.

    headers HeaderField[]

    List of headers and their values to add to the WebTest call.

    httpVerb string

    Http verb to use for this web test.

    parseDependentRequests boolean

    Parse Dependent request for this WebTest.

    requestBody string

    Base64 encoded string body to send with this web test.

    requestUrl string

    Url location to test.

    follow_redirects bool

    Follow redirects for this web test.

    headers Sequence[HeaderField]

    List of headers and their values to add to the WebTest call.

    http_verb str

    Http verb to use for this web test.

    parse_dependent_requests bool

    Parse Dependent request for this WebTest.

    request_body str

    Base64 encoded string body to send with this web test.

    request_url str

    Url location to test.

    followRedirects Boolean

    Follow redirects for this web test.

    headers List<Property Map>

    List of headers and their values to add to the WebTest call.

    httpVerb String

    Http verb to use for this web test.

    parseDependentRequests Boolean

    Parse Dependent request for this WebTest.

    requestBody String

    Base64 encoded string body to send with this web test.

    requestUrl String

    Url location to test.

    WebTestPropertiesResponseConfiguration, WebTestPropertiesResponseConfigurationArgs

    WebTest string

    The XML specification of a WebTest to run against an application.

    WebTest string

    The XML specification of a WebTest to run against an application.

    webTest String

    The XML specification of a WebTest to run against an application.

    webTest string

    The XML specification of a WebTest to run against an application.

    web_test str

    The XML specification of a WebTest to run against an application.

    webTest String

    The XML specification of a WebTest to run against an application.

    WebTestPropertiesResponseContentValidation, WebTestPropertiesResponseContentValidationArgs

    ContentMatch string

    Content to look for in the return of the WebTest. Must not be null or empty.

    IgnoreCase bool

    When set, this value makes the ContentMatch validation case insensitive.

    PassIfTextFound bool

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    ContentMatch string

    Content to look for in the return of the WebTest. Must not be null or empty.

    IgnoreCase bool

    When set, this value makes the ContentMatch validation case insensitive.

    PassIfTextFound bool

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    contentMatch String

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignoreCase Boolean

    When set, this value makes the ContentMatch validation case insensitive.

    passIfTextFound Boolean

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    contentMatch string

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignoreCase boolean

    When set, this value makes the ContentMatch validation case insensitive.

    passIfTextFound boolean

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    content_match str

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignore_case bool

    When set, this value makes the ContentMatch validation case insensitive.

    pass_if_text_found bool

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    contentMatch String

    Content to look for in the return of the WebTest. Must not be null or empty.

    ignoreCase Boolean

    When set, this value makes the ContentMatch validation case insensitive.

    passIfTextFound Boolean

    When true, validation will pass if there is a match for the ContentMatch string. If false, validation will fail if there is a match

    WebTestPropertiesResponseRequest, WebTestPropertiesResponseRequestArgs

    FollowRedirects bool

    Follow redirects for this web test.

    Headers List<Pulumi.AzureNative.Insights.Inputs.HeaderFieldResponse>

    List of headers and their values to add to the WebTest call.

    HttpVerb string

    Http verb to use for this web test.

    ParseDependentRequests bool

    Parse Dependent request for this WebTest.

    RequestBody string

    Base64 encoded string body to send with this web test.

    RequestUrl string

    Url location to test.

    FollowRedirects bool

    Follow redirects for this web test.

    Headers []HeaderFieldResponse

    List of headers and their values to add to the WebTest call.

    HttpVerb string

    Http verb to use for this web test.

    ParseDependentRequests bool

    Parse Dependent request for this WebTest.

    RequestBody string

    Base64 encoded string body to send with this web test.

    RequestUrl string

    Url location to test.

    followRedirects Boolean

    Follow redirects for this web test.

    headers List<HeaderFieldResponse>

    List of headers and their values to add to the WebTest call.

    httpVerb String

    Http verb to use for this web test.

    parseDependentRequests Boolean

    Parse Dependent request for this WebTest.

    requestBody String

    Base64 encoded string body to send with this web test.

    requestUrl String

    Url location to test.

    followRedirects boolean

    Follow redirects for this web test.

    headers HeaderFieldResponse[]

    List of headers and their values to add to the WebTest call.

    httpVerb string

    Http verb to use for this web test.

    parseDependentRequests boolean

    Parse Dependent request for this WebTest.

    requestBody string

    Base64 encoded string body to send with this web test.

    requestUrl string

    Url location to test.

    follow_redirects bool

    Follow redirects for this web test.

    headers Sequence[HeaderFieldResponse]

    List of headers and their values to add to the WebTest call.

    http_verb str

    Http verb to use for this web test.

    parse_dependent_requests bool

    Parse Dependent request for this WebTest.

    request_body str

    Base64 encoded string body to send with this web test.

    request_url str

    Url location to test.

    followRedirects Boolean

    Follow redirects for this web test.

    headers List<Property Map>

    List of headers and their values to add to the WebTest call.

    httpVerb String

    Http verb to use for this web test.

    parseDependentRequests Boolean

    Parse Dependent request for this WebTest.

    requestBody String

    Base64 encoded string body to send with this web test.

    requestUrl String

    Url location to test.

    WebTestPropertiesResponseValidationRules, WebTestPropertiesResponseValidationRulesArgs

    ContentValidation Pulumi.AzureNative.Insights.Inputs.WebTestPropertiesResponseContentValidation

    The collection of content validation properties

    ExpectedHttpStatusCode int

    Validate that the WebTest returns the http status code provided.

    IgnoreHttpStatusCode bool

    When set, validation will ignore the status code.

    SSLCertRemainingLifetimeCheck int

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    SSLCheck bool

    Checks to see if the SSL cert is still valid.

    ContentValidation WebTestPropertiesResponseContentValidation

    The collection of content validation properties

    ExpectedHttpStatusCode int

    Validate that the WebTest returns the http status code provided.

    IgnoreHttpStatusCode bool

    When set, validation will ignore the status code.

    SSLCertRemainingLifetimeCheck int

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    SSLCheck bool

    Checks to see if the SSL cert is still valid.

    contentValidation WebTestPropertiesResponseContentValidation

    The collection of content validation properties

    expectedHttpStatusCode Integer

    Validate that the WebTest returns the http status code provided.

    ignoreHttpStatusCode Boolean

    When set, validation will ignore the status code.

    sSLCertRemainingLifetimeCheck Integer

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    sSLCheck Boolean

    Checks to see if the SSL cert is still valid.

    contentValidation WebTestPropertiesResponseContentValidation

    The collection of content validation properties

    expectedHttpStatusCode number

    Validate that the WebTest returns the http status code provided.

    ignoreHttpStatusCode boolean

    When set, validation will ignore the status code.

    sSLCertRemainingLifetimeCheck number

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    sSLCheck boolean

    Checks to see if the SSL cert is still valid.

    content_validation WebTestPropertiesResponseContentValidation

    The collection of content validation properties

    expected_http_status_code int

    Validate that the WebTest returns the http status code provided.

    ignore_http_status_code bool

    When set, validation will ignore the status code.

    s_sl_cert_remaining_lifetime_check int

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    s_sl_check bool

    Checks to see if the SSL cert is still valid.

    contentValidation Property Map

    The collection of content validation properties

    expectedHttpStatusCode Number

    Validate that the WebTest returns the http status code provided.

    ignoreHttpStatusCode Boolean

    When set, validation will ignore the status code.

    sSLCertRemainingLifetimeCheck Number

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    sSLCheck Boolean

    Checks to see if the SSL cert is still valid.

    WebTestPropertiesValidationRules, WebTestPropertiesValidationRulesArgs

    ContentValidation Pulumi.AzureNative.Insights.Inputs.WebTestPropertiesContentValidation

    The collection of content validation properties

    ExpectedHttpStatusCode int

    Validate that the WebTest returns the http status code provided.

    IgnoreHttpStatusCode bool

    When set, validation will ignore the status code.

    SSLCertRemainingLifetimeCheck int

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    SSLCheck bool

    Checks to see if the SSL cert is still valid.

    ContentValidation WebTestPropertiesContentValidation

    The collection of content validation properties

    ExpectedHttpStatusCode int

    Validate that the WebTest returns the http status code provided.

    IgnoreHttpStatusCode bool

    When set, validation will ignore the status code.

    SSLCertRemainingLifetimeCheck int

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    SSLCheck bool

    Checks to see if the SSL cert is still valid.

    contentValidation WebTestPropertiesContentValidation

    The collection of content validation properties

    expectedHttpStatusCode Integer

    Validate that the WebTest returns the http status code provided.

    ignoreHttpStatusCode Boolean

    When set, validation will ignore the status code.

    sSLCertRemainingLifetimeCheck Integer

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    sSLCheck Boolean

    Checks to see if the SSL cert is still valid.

    contentValidation WebTestPropertiesContentValidation

    The collection of content validation properties

    expectedHttpStatusCode number

    Validate that the WebTest returns the http status code provided.

    ignoreHttpStatusCode boolean

    When set, validation will ignore the status code.

    sSLCertRemainingLifetimeCheck number

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    sSLCheck boolean

    Checks to see if the SSL cert is still valid.

    content_validation WebTestPropertiesContentValidation

    The collection of content validation properties

    expected_http_status_code int

    Validate that the WebTest returns the http status code provided.

    ignore_http_status_code bool

    When set, validation will ignore the status code.

    s_sl_cert_remaining_lifetime_check int

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    s_sl_check bool

    Checks to see if the SSL cert is still valid.

    contentValidation Property Map

    The collection of content validation properties

    expectedHttpStatusCode Number

    Validate that the WebTest returns the http status code provided.

    ignoreHttpStatusCode Boolean

    When set, validation will ignore the status code.

    sSLCertRemainingLifetimeCheck Number

    A number of days to check still remain before the the existing SSL cert expires. Value must be positive and the SSLCheck must be set to true.

    sSLCheck Boolean

    Checks to see if the SSL cert is still valid.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:insights:WebTest my-webtest-my-component /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Insights/webtests/{webTestName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi