1. Packages
  2. Azure Native
  3. API Docs
  4. insights
  5. AutoscaleSetting
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.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.insights.AutoscaleSetting

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.37.0 published on Monday, Apr 15, 2024 by Pulumi

    The autoscale setting resource. Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2015-04-01.

    Example Usage

    Create or update an autoscale setting

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var autoscaleSetting = new AzureNative.Insights.AutoscaleSetting("autoscaleSetting", new()
        {
            AutoscaleSettingName = "MySetting",
            Enabled = true,
            Location = "West US",
            Notifications = new[]
            {
                new AzureNative.Insights.Inputs.AutoscaleNotificationArgs
                {
                    Email = new AzureNative.Insights.Inputs.EmailNotificationArgs
                    {
                        CustomEmails = new[]
                        {
                            "gu@ms.com",
                            "ge@ns.net",
                        },
                        SendToSubscriptionAdministrator = true,
                        SendToSubscriptionCoAdministrators = true,
                    },
                    Operation = AzureNative.Insights.OperationType.Scale,
                    Webhooks = new[]
                    {
                        new AzureNative.Insights.Inputs.WebhookNotificationArgs
                        {
                            Properties = null,
                            ServiceUri = "http://myservice.com",
                        },
                    },
                },
            },
            PredictiveAutoscalePolicy = new AzureNative.Insights.Inputs.PredictiveAutoscalePolicyArgs
            {
                ScaleMode = AzureNative.Insights.PredictiveAutoscalePolicyScaleMode.Enabled,
            },
            Profiles = new[]
            {
                new AzureNative.Insights.Inputs.AutoscaleProfileArgs
                {
                    Capacity = new AzureNative.Insights.Inputs.ScaleCapacityArgs
                    {
                        Default = "1",
                        Maximum = "10",
                        Minimum = "1",
                    },
                    FixedDate = new AzureNative.Insights.Inputs.TimeWindowArgs
                    {
                        End = "2015-03-05T14:30:00Z",
                        Start = "2015-03-05T14:00:00Z",
                        TimeZone = "UTC",
                    },
                    Name = "adios",
                    Rules = new[]
                    {
                        new AzureNative.Insights.Inputs.ScaleRuleArgs
                        {
                            MetricTrigger = new AzureNative.Insights.Inputs.MetricTriggerArgs
                            {
                                DividePerInstance = false,
                                MetricName = "Percentage CPU",
                                MetricResourceUri = "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                                Operator = AzureNative.Insights.ComparisonOperationType.GreaterThan,
                                Statistic = AzureNative.Insights.MetricStatisticType.Average,
                                Threshold = 10,
                                TimeAggregation = AzureNative.Insights.TimeAggregationType.Average,
                                TimeGrain = "PT1M",
                                TimeWindow = "PT5M",
                            },
                            ScaleAction = new AzureNative.Insights.Inputs.ScaleActionArgs
                            {
                                Cooldown = "PT5M",
                                Direction = AzureNative.Insights.ScaleDirection.Increase,
                                Type = AzureNative.Insights.ScaleType.ChangeCount,
                                Value = "1",
                            },
                        },
                        new AzureNative.Insights.Inputs.ScaleRuleArgs
                        {
                            MetricTrigger = new AzureNative.Insights.Inputs.MetricTriggerArgs
                            {
                                DividePerInstance = false,
                                MetricName = "Percentage CPU",
                                MetricResourceUri = "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                                Operator = AzureNative.Insights.ComparisonOperationType.GreaterThan,
                                Statistic = AzureNative.Insights.MetricStatisticType.Average,
                                Threshold = 15,
                                TimeAggregation = AzureNative.Insights.TimeAggregationType.Average,
                                TimeGrain = "PT2M",
                                TimeWindow = "PT5M",
                            },
                            ScaleAction = new AzureNative.Insights.Inputs.ScaleActionArgs
                            {
                                Cooldown = "PT6M",
                                Direction = AzureNative.Insights.ScaleDirection.Decrease,
                                Type = AzureNative.Insights.ScaleType.ChangeCount,
                                Value = "2",
                            },
                        },
                    },
                },
                new AzureNative.Insights.Inputs.AutoscaleProfileArgs
                {
                    Capacity = new AzureNative.Insights.Inputs.ScaleCapacityArgs
                    {
                        Default = "1",
                        Maximum = "10",
                        Minimum = "1",
                    },
                    Name = "saludos",
                    Recurrence = new AzureNative.Insights.Inputs.RecurrenceArgs
                    {
                        Frequency = AzureNative.Insights.RecurrenceFrequency.Week,
                        Schedule = new AzureNative.Insights.Inputs.RecurrentScheduleArgs
                        {
                            Days = new[]
                            {
                                "1",
                            },
                            Hours = new[]
                            {
                                5,
                            },
                            Minutes = new[]
                            {
                                15,
                            },
                            TimeZone = "UTC",
                        },
                    },
                    Rules = new[]
                    {
                        new AzureNative.Insights.Inputs.ScaleRuleArgs
                        {
                            MetricTrigger = new AzureNative.Insights.Inputs.MetricTriggerArgs
                            {
                                DividePerInstance = false,
                                MetricName = "Percentage CPU",
                                MetricResourceUri = "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                                Operator = AzureNative.Insights.ComparisonOperationType.GreaterThan,
                                Statistic = AzureNative.Insights.MetricStatisticType.Average,
                                Threshold = 10,
                                TimeAggregation = AzureNative.Insights.TimeAggregationType.Average,
                                TimeGrain = "PT1M",
                                TimeWindow = "PT5M",
                            },
                            ScaleAction = new AzureNative.Insights.Inputs.ScaleActionArgs
                            {
                                Cooldown = "PT5M",
                                Direction = AzureNative.Insights.ScaleDirection.Increase,
                                Type = AzureNative.Insights.ScaleType.ChangeCount,
                                Value = "1",
                            },
                        },
                        new AzureNative.Insights.Inputs.ScaleRuleArgs
                        {
                            MetricTrigger = new AzureNative.Insights.Inputs.MetricTriggerArgs
                            {
                                DividePerInstance = false,
                                MetricName = "Percentage CPU",
                                MetricResourceUri = "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                                Operator = AzureNative.Insights.ComparisonOperationType.GreaterThan,
                                Statistic = AzureNative.Insights.MetricStatisticType.Average,
                                Threshold = 15,
                                TimeAggregation = AzureNative.Insights.TimeAggregationType.Average,
                                TimeGrain = "PT2M",
                                TimeWindow = "PT5M",
                            },
                            ScaleAction = new AzureNative.Insights.Inputs.ScaleActionArgs
                            {
                                Cooldown = "PT6M",
                                Direction = AzureNative.Insights.ScaleDirection.Decrease,
                                Type = AzureNative.Insights.ScaleType.ChangeCount,
                                Value = "2",
                            },
                        },
                    },
                },
            },
            ResourceGroupName = "TestingMetricsScaleSet",
            Tags = 
            {
                { "key1", "value1" },
                { "key2", "value2" },
            },
            TargetResourceUri = "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
        });
    
    });
    
    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.NewAutoscaleSetting(ctx, "autoscaleSetting", &insights.AutoscaleSettingArgs{
    			AutoscaleSettingName: pulumi.String("MySetting"),
    			Enabled:              pulumi.Bool(true),
    			Location:             pulumi.String("West US"),
    			Notifications: insights.AutoscaleNotificationArray{
    				&insights.AutoscaleNotificationArgs{
    					Email: &insights.EmailNotificationArgs{
    						CustomEmails: pulumi.StringArray{
    							pulumi.String("gu@ms.com"),
    							pulumi.String("ge@ns.net"),
    						},
    						SendToSubscriptionAdministrator:    pulumi.Bool(true),
    						SendToSubscriptionCoAdministrators: pulumi.Bool(true),
    					},
    					Operation: insights.OperationTypeScale,
    					Webhooks: insights.WebhookNotificationArray{
    						&insights.WebhookNotificationArgs{
    							Properties: nil,
    							ServiceUri: pulumi.String("http://myservice.com"),
    						},
    					},
    				},
    			},
    			PredictiveAutoscalePolicy: &insights.PredictiveAutoscalePolicyArgs{
    				ScaleMode: insights.PredictiveAutoscalePolicyScaleModeEnabled,
    			},
    			Profiles: insights.AutoscaleProfileArray{
    				&insights.AutoscaleProfileArgs{
    					Capacity: &insights.ScaleCapacityArgs{
    						Default: pulumi.String("1"),
    						Maximum: pulumi.String("10"),
    						Minimum: pulumi.String("1"),
    					},
    					FixedDate: &insights.TimeWindowArgs{
    						End:      pulumi.String("2015-03-05T14:30:00Z"),
    						Start:    pulumi.String("2015-03-05T14:00:00Z"),
    						TimeZone: pulumi.String("UTC"),
    					},
    					Name: pulumi.String("adios"),
    					Rules: insights.ScaleRuleArray{
    						&insights.ScaleRuleArgs{
    							MetricTrigger: &insights.MetricTriggerArgs{
    								DividePerInstance: pulumi.Bool(false),
    								MetricName:        pulumi.String("Percentage CPU"),
    								MetricResourceUri: pulumi.String("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc"),
    								Operator:          insights.ComparisonOperationTypeGreaterThan,
    								Statistic:         insights.MetricStatisticTypeAverage,
    								Threshold:         pulumi.Float64(10),
    								TimeAggregation:   insights.TimeAggregationTypeAverage,
    								TimeGrain:         pulumi.String("PT1M"),
    								TimeWindow:        pulumi.String("PT5M"),
    							},
    							ScaleAction: &insights.ScaleActionArgs{
    								Cooldown:  pulumi.String("PT5M"),
    								Direction: insights.ScaleDirectionIncrease,
    								Type:      insights.ScaleTypeChangeCount,
    								Value:     pulumi.String("1"),
    							},
    						},
    						&insights.ScaleRuleArgs{
    							MetricTrigger: &insights.MetricTriggerArgs{
    								DividePerInstance: pulumi.Bool(false),
    								MetricName:        pulumi.String("Percentage CPU"),
    								MetricResourceUri: pulumi.String("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc"),
    								Operator:          insights.ComparisonOperationTypeGreaterThan,
    								Statistic:         insights.MetricStatisticTypeAverage,
    								Threshold:         pulumi.Float64(15),
    								TimeAggregation:   insights.TimeAggregationTypeAverage,
    								TimeGrain:         pulumi.String("PT2M"),
    								TimeWindow:        pulumi.String("PT5M"),
    							},
    							ScaleAction: &insights.ScaleActionArgs{
    								Cooldown:  pulumi.String("PT6M"),
    								Direction: insights.ScaleDirectionDecrease,
    								Type:      insights.ScaleTypeChangeCount,
    								Value:     pulumi.String("2"),
    							},
    						},
    					},
    				},
    				&insights.AutoscaleProfileArgs{
    					Capacity: &insights.ScaleCapacityArgs{
    						Default: pulumi.String("1"),
    						Maximum: pulumi.String("10"),
    						Minimum: pulumi.String("1"),
    					},
    					Name: pulumi.String("saludos"),
    					Recurrence: &insights.RecurrenceArgs{
    						Frequency: insights.RecurrenceFrequencyWeek,
    						Schedule: &insights.RecurrentScheduleArgs{
    							Days: pulumi.StringArray{
    								pulumi.String("1"),
    							},
    							Hours: pulumi.IntArray{
    								pulumi.Int(5),
    							},
    							Minutes: pulumi.IntArray{
    								pulumi.Int(15),
    							},
    							TimeZone: pulumi.String("UTC"),
    						},
    					},
    					Rules: insights.ScaleRuleArray{
    						&insights.ScaleRuleArgs{
    							MetricTrigger: &insights.MetricTriggerArgs{
    								DividePerInstance: pulumi.Bool(false),
    								MetricName:        pulumi.String("Percentage CPU"),
    								MetricResourceUri: pulumi.String("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc"),
    								Operator:          insights.ComparisonOperationTypeGreaterThan,
    								Statistic:         insights.MetricStatisticTypeAverage,
    								Threshold:         pulumi.Float64(10),
    								TimeAggregation:   insights.TimeAggregationTypeAverage,
    								TimeGrain:         pulumi.String("PT1M"),
    								TimeWindow:        pulumi.String("PT5M"),
    							},
    							ScaleAction: &insights.ScaleActionArgs{
    								Cooldown:  pulumi.String("PT5M"),
    								Direction: insights.ScaleDirectionIncrease,
    								Type:      insights.ScaleTypeChangeCount,
    								Value:     pulumi.String("1"),
    							},
    						},
    						&insights.ScaleRuleArgs{
    							MetricTrigger: &insights.MetricTriggerArgs{
    								DividePerInstance: pulumi.Bool(false),
    								MetricName:        pulumi.String("Percentage CPU"),
    								MetricResourceUri: pulumi.String("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc"),
    								Operator:          insights.ComparisonOperationTypeGreaterThan,
    								Statistic:         insights.MetricStatisticTypeAverage,
    								Threshold:         pulumi.Float64(15),
    								TimeAggregation:   insights.TimeAggregationTypeAverage,
    								TimeGrain:         pulumi.String("PT2M"),
    								TimeWindow:        pulumi.String("PT5M"),
    							},
    							ScaleAction: &insights.ScaleActionArgs{
    								Cooldown:  pulumi.String("PT6M"),
    								Direction: insights.ScaleDirectionDecrease,
    								Type:      insights.ScaleTypeChangeCount,
    								Value:     pulumi.String("2"),
    							},
    						},
    					},
    				},
    			},
    			ResourceGroupName: pulumi.String("TestingMetricsScaleSet"),
    			Tags: pulumi.StringMap{
    				"key1": pulumi.String("value1"),
    				"key2": pulumi.String("value2"),
    			},
    			TargetResourceUri: pulumi.String("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc"),
    		})
    		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.AutoscaleSetting;
    import com.pulumi.azurenative.insights.AutoscaleSettingArgs;
    import com.pulumi.azurenative.insights.inputs.AutoscaleNotificationArgs;
    import com.pulumi.azurenative.insights.inputs.EmailNotificationArgs;
    import com.pulumi.azurenative.insights.inputs.PredictiveAutoscalePolicyArgs;
    import com.pulumi.azurenative.insights.inputs.AutoscaleProfileArgs;
    import com.pulumi.azurenative.insights.inputs.ScaleCapacityArgs;
    import com.pulumi.azurenative.insights.inputs.TimeWindowArgs;
    import com.pulumi.azurenative.insights.inputs.RecurrenceArgs;
    import com.pulumi.azurenative.insights.inputs.RecurrentScheduleArgs;
    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 autoscaleSetting = new AutoscaleSetting("autoscaleSetting", AutoscaleSettingArgs.builder()        
                .autoscaleSettingName("MySetting")
                .enabled(true)
                .location("West US")
                .notifications(AutoscaleNotificationArgs.builder()
                    .email(EmailNotificationArgs.builder()
                        .customEmails(                    
                            "gu@ms.com",
                            "ge@ns.net")
                        .sendToSubscriptionAdministrator(true)
                        .sendToSubscriptionCoAdministrators(true)
                        .build())
                    .operation("Scale")
                    .webhooks(WebhookNotificationArgs.builder()
                        .properties()
                        .serviceUri("http://myservice.com")
                        .build())
                    .build())
                .predictiveAutoscalePolicy(PredictiveAutoscalePolicyArgs.builder()
                    .scaleMode("Enabled")
                    .build())
                .profiles(            
                    AutoscaleProfileArgs.builder()
                        .capacity(ScaleCapacityArgs.builder()
                            .default_("1")
                            .maximum("10")
                            .minimum("1")
                            .build())
                        .fixedDate(TimeWindowArgs.builder()
                            .end("2015-03-05T14:30:00Z")
                            .start("2015-03-05T14:00:00Z")
                            .timeZone("UTC")
                            .build())
                        .name("adios")
                        .rules(                    
                            ScaleRuleArgs.builder()
                                .metricTrigger(MetricTriggerArgs.builder()
                                    .dividePerInstance(false)
                                    .metricName("Percentage CPU")
                                    .metricResourceUri("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc")
                                    .operator("GreaterThan")
                                    .statistic("Average")
                                    .threshold(10)
                                    .timeAggregation("Average")
                                    .timeGrain("PT1M")
                                    .timeWindow("PT5M")
                                    .build())
                                .scaleAction(ScaleActionArgs.builder()
                                    .cooldown("PT5M")
                                    .direction("Increase")
                                    .type("ChangeCount")
                                    .value("1")
                                    .build())
                                .build(),
                            ScaleRuleArgs.builder()
                                .metricTrigger(MetricTriggerArgs.builder()
                                    .dividePerInstance(false)
                                    .metricName("Percentage CPU")
                                    .metricResourceUri("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc")
                                    .operator("GreaterThan")
                                    .statistic("Average")
                                    .threshold(15)
                                    .timeAggregation("Average")
                                    .timeGrain("PT2M")
                                    .timeWindow("PT5M")
                                    .build())
                                .scaleAction(ScaleActionArgs.builder()
                                    .cooldown("PT6M")
                                    .direction("Decrease")
                                    .type("ChangeCount")
                                    .value("2")
                                    .build())
                                .build())
                        .build(),
                    AutoscaleProfileArgs.builder()
                        .capacity(ScaleCapacityArgs.builder()
                            .default_("1")
                            .maximum("10")
                            .minimum("1")
                            .build())
                        .name("saludos")
                        .recurrence(RecurrenceArgs.builder()
                            .frequency("Week")
                            .schedule(RecurrentScheduleArgs.builder()
                                .days("1")
                                .hours(5)
                                .minutes(15)
                                .timeZone("UTC")
                                .build())
                            .build())
                        .rules(                    
                            ScaleRuleArgs.builder()
                                .metricTrigger(MetricTriggerArgs.builder()
                                    .dividePerInstance(false)
                                    .metricName("Percentage CPU")
                                    .metricResourceUri("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc")
                                    .operator("GreaterThan")
                                    .statistic("Average")
                                    .threshold(10)
                                    .timeAggregation("Average")
                                    .timeGrain("PT1M")
                                    .timeWindow("PT5M")
                                    .build())
                                .scaleAction(ScaleActionArgs.builder()
                                    .cooldown("PT5M")
                                    .direction("Increase")
                                    .type("ChangeCount")
                                    .value("1")
                                    .build())
                                .build(),
                            ScaleRuleArgs.builder()
                                .metricTrigger(MetricTriggerArgs.builder()
                                    .dividePerInstance(false)
                                    .metricName("Percentage CPU")
                                    .metricResourceUri("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc")
                                    .operator("GreaterThan")
                                    .statistic("Average")
                                    .threshold(15)
                                    .timeAggregation("Average")
                                    .timeGrain("PT2M")
                                    .timeWindow("PT5M")
                                    .build())
                                .scaleAction(ScaleActionArgs.builder()
                                    .cooldown("PT6M")
                                    .direction("Decrease")
                                    .type("ChangeCount")
                                    .value("2")
                                    .build())
                                .build())
                        .build())
                .resourceGroupName("TestingMetricsScaleSet")
                .tags(Map.ofEntries(
                    Map.entry("key1", "value1"),
                    Map.entry("key2", "value2")
                ))
                .targetResourceUri("/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    autoscale_setting = azure_native.insights.AutoscaleSetting("autoscaleSetting",
        autoscale_setting_name="MySetting",
        enabled=True,
        location="West US",
        notifications=[azure_native.insights.AutoscaleNotificationArgs(
            email=azure_native.insights.EmailNotificationArgs(
                custom_emails=[
                    "gu@ms.com",
                    "ge@ns.net",
                ],
                send_to_subscription_administrator=True,
                send_to_subscription_co_administrators=True,
            ),
            operation=azure_native.insights.OperationType.SCALE,
            webhooks=[azure_native.insights.WebhookNotificationArgs(
                properties={},
                service_uri="http://myservice.com",
            )],
        )],
        predictive_autoscale_policy=azure_native.insights.PredictiveAutoscalePolicyArgs(
            scale_mode=azure_native.insights.PredictiveAutoscalePolicyScaleMode.ENABLED,
        ),
        profiles=[
            azure_native.insights.AutoscaleProfileArgs(
                capacity=azure_native.insights.ScaleCapacityArgs(
                    default="1",
                    maximum="10",
                    minimum="1",
                ),
                fixed_date=azure_native.insights.TimeWindowArgs(
                    end="2015-03-05T14:30:00Z",
                    start="2015-03-05T14:00:00Z",
                    time_zone="UTC",
                ),
                name="adios",
                rules=[
                    azure_native.insights.ScaleRuleArgs(
                        metric_trigger=azure_native.insights.MetricTriggerArgs(
                            divide_per_instance=False,
                            metric_name="Percentage CPU",
                            metric_resource_uri="/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator=azure_native.insights.ComparisonOperationType.GREATER_THAN,
                            statistic=azure_native.insights.MetricStatisticType.AVERAGE,
                            threshold=10,
                            time_aggregation=azure_native.insights.TimeAggregationType.AVERAGE,
                            time_grain="PT1M",
                            time_window="PT5M",
                        ),
                        scale_action=azure_native.insights.ScaleActionArgs(
                            cooldown="PT5M",
                            direction=azure_native.insights.ScaleDirection.INCREASE,
                            type=azure_native.insights.ScaleType.CHANGE_COUNT,
                            value="1",
                        ),
                    ),
                    azure_native.insights.ScaleRuleArgs(
                        metric_trigger=azure_native.insights.MetricTriggerArgs(
                            divide_per_instance=False,
                            metric_name="Percentage CPU",
                            metric_resource_uri="/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator=azure_native.insights.ComparisonOperationType.GREATER_THAN,
                            statistic=azure_native.insights.MetricStatisticType.AVERAGE,
                            threshold=15,
                            time_aggregation=azure_native.insights.TimeAggregationType.AVERAGE,
                            time_grain="PT2M",
                            time_window="PT5M",
                        ),
                        scale_action=azure_native.insights.ScaleActionArgs(
                            cooldown="PT6M",
                            direction=azure_native.insights.ScaleDirection.DECREASE,
                            type=azure_native.insights.ScaleType.CHANGE_COUNT,
                            value="2",
                        ),
                    ),
                ],
            ),
            azure_native.insights.AutoscaleProfileArgs(
                capacity=azure_native.insights.ScaleCapacityArgs(
                    default="1",
                    maximum="10",
                    minimum="1",
                ),
                name="saludos",
                recurrence=azure_native.insights.RecurrenceArgs(
                    frequency=azure_native.insights.RecurrenceFrequency.WEEK,
                    schedule=azure_native.insights.RecurrentScheduleArgs(
                        days=["1"],
                        hours=[5],
                        minutes=[15],
                        time_zone="UTC",
                    ),
                ),
                rules=[
                    azure_native.insights.ScaleRuleArgs(
                        metric_trigger=azure_native.insights.MetricTriggerArgs(
                            divide_per_instance=False,
                            metric_name="Percentage CPU",
                            metric_resource_uri="/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator=azure_native.insights.ComparisonOperationType.GREATER_THAN,
                            statistic=azure_native.insights.MetricStatisticType.AVERAGE,
                            threshold=10,
                            time_aggregation=azure_native.insights.TimeAggregationType.AVERAGE,
                            time_grain="PT1M",
                            time_window="PT5M",
                        ),
                        scale_action=azure_native.insights.ScaleActionArgs(
                            cooldown="PT5M",
                            direction=azure_native.insights.ScaleDirection.INCREASE,
                            type=azure_native.insights.ScaleType.CHANGE_COUNT,
                            value="1",
                        ),
                    ),
                    azure_native.insights.ScaleRuleArgs(
                        metric_trigger=azure_native.insights.MetricTriggerArgs(
                            divide_per_instance=False,
                            metric_name="Percentage CPU",
                            metric_resource_uri="/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator=azure_native.insights.ComparisonOperationType.GREATER_THAN,
                            statistic=azure_native.insights.MetricStatisticType.AVERAGE,
                            threshold=15,
                            time_aggregation=azure_native.insights.TimeAggregationType.AVERAGE,
                            time_grain="PT2M",
                            time_window="PT5M",
                        ),
                        scale_action=azure_native.insights.ScaleActionArgs(
                            cooldown="PT6M",
                            direction=azure_native.insights.ScaleDirection.DECREASE,
                            type=azure_native.insights.ScaleType.CHANGE_COUNT,
                            value="2",
                        ),
                    ),
                ],
            ),
        ],
        resource_group_name="TestingMetricsScaleSet",
        tags={
            "key1": "value1",
            "key2": "value2",
        },
        target_resource_uri="/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const autoscaleSetting = new azure_native.insights.AutoscaleSetting("autoscaleSetting", {
        autoscaleSettingName: "MySetting",
        enabled: true,
        location: "West US",
        notifications: [{
            email: {
                customEmails: [
                    "gu@ms.com",
                    "ge@ns.net",
                ],
                sendToSubscriptionAdministrator: true,
                sendToSubscriptionCoAdministrators: true,
            },
            operation: azure_native.insights.OperationType.Scale,
            webhooks: [{
                properties: {},
                serviceUri: "http://myservice.com",
            }],
        }],
        predictiveAutoscalePolicy: {
            scaleMode: azure_native.insights.PredictiveAutoscalePolicyScaleMode.Enabled,
        },
        profiles: [
            {
                capacity: {
                    "default": "1",
                    maximum: "10",
                    minimum: "1",
                },
                fixedDate: {
                    end: "2015-03-05T14:30:00Z",
                    start: "2015-03-05T14:00:00Z",
                    timeZone: "UTC",
                },
                name: "adios",
                rules: [
                    {
                        metricTrigger: {
                            dividePerInstance: false,
                            metricName: "Percentage CPU",
                            metricResourceUri: "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator: azure_native.insights.ComparisonOperationType.GreaterThan,
                            statistic: azure_native.insights.MetricStatisticType.Average,
                            threshold: 10,
                            timeAggregation: azure_native.insights.TimeAggregationType.Average,
                            timeGrain: "PT1M",
                            timeWindow: "PT5M",
                        },
                        scaleAction: {
                            cooldown: "PT5M",
                            direction: azure_native.insights.ScaleDirection.Increase,
                            type: azure_native.insights.ScaleType.ChangeCount,
                            value: "1",
                        },
                    },
                    {
                        metricTrigger: {
                            dividePerInstance: false,
                            metricName: "Percentage CPU",
                            metricResourceUri: "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator: azure_native.insights.ComparisonOperationType.GreaterThan,
                            statistic: azure_native.insights.MetricStatisticType.Average,
                            threshold: 15,
                            timeAggregation: azure_native.insights.TimeAggregationType.Average,
                            timeGrain: "PT2M",
                            timeWindow: "PT5M",
                        },
                        scaleAction: {
                            cooldown: "PT6M",
                            direction: azure_native.insights.ScaleDirection.Decrease,
                            type: azure_native.insights.ScaleType.ChangeCount,
                            value: "2",
                        },
                    },
                ],
            },
            {
                capacity: {
                    "default": "1",
                    maximum: "10",
                    minimum: "1",
                },
                name: "saludos",
                recurrence: {
                    frequency: azure_native.insights.RecurrenceFrequency.Week,
                    schedule: {
                        days: ["1"],
                        hours: [5],
                        minutes: [15],
                        timeZone: "UTC",
                    },
                },
                rules: [
                    {
                        metricTrigger: {
                            dividePerInstance: false,
                            metricName: "Percentage CPU",
                            metricResourceUri: "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator: azure_native.insights.ComparisonOperationType.GreaterThan,
                            statistic: azure_native.insights.MetricStatisticType.Average,
                            threshold: 10,
                            timeAggregation: azure_native.insights.TimeAggregationType.Average,
                            timeGrain: "PT1M",
                            timeWindow: "PT5M",
                        },
                        scaleAction: {
                            cooldown: "PT5M",
                            direction: azure_native.insights.ScaleDirection.Increase,
                            type: azure_native.insights.ScaleType.ChangeCount,
                            value: "1",
                        },
                    },
                    {
                        metricTrigger: {
                            dividePerInstance: false,
                            metricName: "Percentage CPU",
                            metricResourceUri: "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
                            operator: azure_native.insights.ComparisonOperationType.GreaterThan,
                            statistic: azure_native.insights.MetricStatisticType.Average,
                            threshold: 15,
                            timeAggregation: azure_native.insights.TimeAggregationType.Average,
                            timeGrain: "PT2M",
                            timeWindow: "PT5M",
                        },
                        scaleAction: {
                            cooldown: "PT6M",
                            direction: azure_native.insights.ScaleDirection.Decrease,
                            type: azure_native.insights.ScaleType.ChangeCount,
                            value: "2",
                        },
                    },
                ],
            },
        ],
        resourceGroupName: "TestingMetricsScaleSet",
        tags: {
            key1: "value1",
            key2: "value2",
        },
        targetResourceUri: "/subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc",
    });
    
    resources:
      autoscaleSetting:
        type: azure-native:insights:AutoscaleSetting
        properties:
          autoscaleSettingName: MySetting
          enabled: true
          location: West US
          notifications:
            - email:
                customEmails:
                  - gu@ms.com
                  - ge@ns.net
                sendToSubscriptionAdministrator: true
                sendToSubscriptionCoAdministrators: true
              operation: Scale
              webhooks:
                - properties: {}
                  serviceUri: http://myservice.com
          predictiveAutoscalePolicy:
            scaleMode: Enabled
          profiles:
            - capacity:
                default: '1'
                maximum: '10'
                minimum: '1'
              fixedDate:
                end: 2015-03-05T14:30:00Z
                start: 2015-03-05T14:00:00Z
                timeZone: UTC
              name: adios
              rules:
                - metricTrigger:
                    dividePerInstance: false
                    metricName: Percentage CPU
                    metricResourceUri: /subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc
                    operator: GreaterThan
                    statistic: Average
                    threshold: 10
                    timeAggregation: Average
                    timeGrain: PT1M
                    timeWindow: PT5M
                  scaleAction:
                    cooldown: PT5M
                    direction: Increase
                    type: ChangeCount
                    value: '1'
                - metricTrigger:
                    dividePerInstance: false
                    metricName: Percentage CPU
                    metricResourceUri: /subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc
                    operator: GreaterThan
                    statistic: Average
                    threshold: 15
                    timeAggregation: Average
                    timeGrain: PT2M
                    timeWindow: PT5M
                  scaleAction:
                    cooldown: PT6M
                    direction: Decrease
                    type: ChangeCount
                    value: '2'
            - capacity:
                default: '1'
                maximum: '10'
                minimum: '1'
              name: saludos
              recurrence:
                frequency: Week
                schedule:
                  days:
                    - '1'
                  hours:
                    - 5
                  minutes:
                    - 15
                  timeZone: UTC
              rules:
                - metricTrigger:
                    dividePerInstance: false
                    metricName: Percentage CPU
                    metricResourceUri: /subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc
                    operator: GreaterThan
                    statistic: Average
                    threshold: 10
                    timeAggregation: Average
                    timeGrain: PT1M
                    timeWindow: PT5M
                  scaleAction:
                    cooldown: PT5M
                    direction: Increase
                    type: ChangeCount
                    value: '1'
                - metricTrigger:
                    dividePerInstance: false
                    metricName: Percentage CPU
                    metricResourceUri: /subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc
                    operator: GreaterThan
                    statistic: Average
                    threshold: 15
                    timeAggregation: Average
                    timeGrain: PT2M
                    timeWindow: PT5M
                  scaleAction:
                    cooldown: PT6M
                    direction: Decrease
                    type: ChangeCount
                    value: '2'
          resourceGroupName: TestingMetricsScaleSet
          tags:
            key1: value1
            key2: value2
          targetResourceUri: /subscriptions/b67f7fec-69fc-4974-9099-a26bd6ffeda3/resourceGroups/TestingMetricsScaleSet/providers/Microsoft.Compute/virtualMachineScaleSets/testingsc
    

    Create AutoscaleSetting Resource

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

    Constructor syntax

    new AutoscaleSetting(name: string, args: AutoscaleSettingArgs, opts?: CustomResourceOptions);
    @overload
    def AutoscaleSetting(resource_name: str,
                         args: AutoscaleSettingArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def AutoscaleSetting(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         profiles: Optional[Sequence[AutoscaleProfileArgs]] = None,
                         resource_group_name: Optional[str] = None,
                         autoscale_setting_name: Optional[str] = None,
                         enabled: Optional[bool] = None,
                         location: Optional[str] = None,
                         name: Optional[str] = None,
                         notifications: Optional[Sequence[AutoscaleNotificationArgs]] = None,
                         predictive_autoscale_policy: Optional[PredictiveAutoscalePolicyArgs] = None,
                         tags: Optional[Mapping[str, str]] = None,
                         target_resource_location: Optional[str] = None,
                         target_resource_uri: Optional[str] = None)
    func NewAutoscaleSetting(ctx *Context, name string, args AutoscaleSettingArgs, opts ...ResourceOption) (*AutoscaleSetting, error)
    public AutoscaleSetting(string name, AutoscaleSettingArgs args, CustomResourceOptions? opts = null)
    public AutoscaleSetting(String name, AutoscaleSettingArgs args)
    public AutoscaleSetting(String name, AutoscaleSettingArgs args, CustomResourceOptions options)
    
    type: azure-native:insights:AutoscaleSetting
    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 AutoscaleSettingArgs
    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 AutoscaleSettingArgs
    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 AutoscaleSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutoscaleSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutoscaleSettingArgs
    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 autoscaleSettingResource = new AzureNative.Insights.AutoscaleSetting("autoscaleSettingResource", new()
    {
        Profiles = new[]
        {
            new AzureNative.Insights.Inputs.AutoscaleProfileArgs
            {
                Capacity = new AzureNative.Insights.Inputs.ScaleCapacityArgs
                {
                    Default = "string",
                    Maximum = "string",
                    Minimum = "string",
                },
                Name = "string",
                Rules = new[]
                {
                    new AzureNative.Insights.Inputs.ScaleRuleArgs
                    {
                        MetricTrigger = new AzureNative.Insights.Inputs.MetricTriggerArgs
                        {
                            MetricName = "string",
                            MetricResourceUri = "string",
                            Operator = AzureNative.Insights.ComparisonOperationType.EqualsValue,
                            Statistic = AzureNative.Insights.MetricStatisticType.Average,
                            Threshold = 0,
                            TimeAggregation = AzureNative.Insights.TimeAggregationType.Average,
                            TimeGrain = "string",
                            TimeWindow = "string",
                            Dimensions = new[]
                            {
                                new AzureNative.Insights.Inputs.ScaleRuleMetricDimensionArgs
                                {
                                    DimensionName = "string",
                                    Operator = "string",
                                    Values = new[]
                                    {
                                        "string",
                                    },
                                },
                            },
                            DividePerInstance = false,
                            MetricNamespace = "string",
                            MetricResourceLocation = "string",
                        },
                        ScaleAction = new AzureNative.Insights.Inputs.ScaleActionArgs
                        {
                            Cooldown = "string",
                            Direction = AzureNative.Insights.ScaleDirection.None,
                            Type = AzureNative.Insights.ScaleType.ChangeCount,
                            Value = "string",
                        },
                    },
                },
                FixedDate = new AzureNative.Insights.Inputs.TimeWindowArgs
                {
                    End = "string",
                    Start = "string",
                    TimeZone = "string",
                },
                Recurrence = new AzureNative.Insights.Inputs.RecurrenceArgs
                {
                    Frequency = AzureNative.Insights.RecurrenceFrequency.None,
                    Schedule = new AzureNative.Insights.Inputs.RecurrentScheduleArgs
                    {
                        Days = new[]
                        {
                            "string",
                        },
                        Hours = new[]
                        {
                            0,
                        },
                        Minutes = new[]
                        {
                            0,
                        },
                        TimeZone = "string",
                    },
                },
            },
        },
        ResourceGroupName = "string",
        AutoscaleSettingName = "string",
        Enabled = false,
        Location = "string",
        Name = "string",
        Notifications = new[]
        {
            new AzureNative.Insights.Inputs.AutoscaleNotificationArgs
            {
                Operation = AzureNative.Insights.OperationType.Scale,
                Email = new AzureNative.Insights.Inputs.EmailNotificationArgs
                {
                    CustomEmails = new[]
                    {
                        "string",
                    },
                    SendToSubscriptionAdministrator = false,
                    SendToSubscriptionCoAdministrators = false,
                },
                Webhooks = new[]
                {
                    new AzureNative.Insights.Inputs.WebhookNotificationArgs
                    {
                        Properties = 
                        {
                            { "string", "string" },
                        },
                        ServiceUri = "string",
                    },
                },
            },
        },
        PredictiveAutoscalePolicy = new AzureNative.Insights.Inputs.PredictiveAutoscalePolicyArgs
        {
            ScaleMode = AzureNative.Insights.PredictiveAutoscalePolicyScaleMode.Disabled,
            ScaleLookAheadTime = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
        TargetResourceLocation = "string",
        TargetResourceUri = "string",
    });
    
    example, err := insights.NewAutoscaleSetting(ctx, "autoscaleSettingResource", &insights.AutoscaleSettingArgs{
    Profiles: insights.AutoscaleProfileArray{
    &insights.AutoscaleProfileArgs{
    Capacity: &insights.ScaleCapacityArgs{
    Default: pulumi.String("string"),
    Maximum: pulumi.String("string"),
    Minimum: pulumi.String("string"),
    },
    Name: pulumi.String("string"),
    Rules: insights.ScaleRuleArray{
    &insights.ScaleRuleArgs{
    MetricTrigger: &insights.MetricTriggerArgs{
    MetricName: pulumi.String("string"),
    MetricResourceUri: pulumi.String("string"),
    Operator: insights.ComparisonOperationTypeEquals,
    Statistic: insights.MetricStatisticTypeAverage,
    Threshold: pulumi.Float64(0),
    TimeAggregation: insights.TimeAggregationTypeAverage,
    TimeGrain: pulumi.String("string"),
    TimeWindow: pulumi.String("string"),
    Dimensions: insights.ScaleRuleMetricDimensionArray{
    &insights.ScaleRuleMetricDimensionArgs{
    DimensionName: pulumi.String("string"),
    Operator: pulumi.String("string"),
    Values: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    DividePerInstance: pulumi.Bool(false),
    MetricNamespace: pulumi.String("string"),
    MetricResourceLocation: pulumi.String("string"),
    },
    ScaleAction: &insights.ScaleActionArgs{
    Cooldown: pulumi.String("string"),
    Direction: insights.ScaleDirectionNone,
    Type: insights.ScaleTypeChangeCount,
    Value: pulumi.String("string"),
    },
    },
    },
    FixedDate: &insights.TimeWindowArgs{
    End: pulumi.String("string"),
    Start: pulumi.String("string"),
    TimeZone: pulumi.String("string"),
    },
    Recurrence: &insights.RecurrenceArgs{
    Frequency: insights.RecurrenceFrequencyNone,
    Schedule: &insights.RecurrentScheduleArgs{
    Days: pulumi.StringArray{
    pulumi.String("string"),
    },
    Hours: pulumi.IntArray{
    pulumi.Int(0),
    },
    Minutes: pulumi.IntArray{
    pulumi.Int(0),
    },
    TimeZone: pulumi.String("string"),
    },
    },
    },
    },
    ResourceGroupName: pulumi.String("string"),
    AutoscaleSettingName: pulumi.String("string"),
    Enabled: pulumi.Bool(false),
    Location: pulumi.String("string"),
    Name: pulumi.String("string"),
    Notifications: insights.AutoscaleNotificationArray{
    &insights.AutoscaleNotificationArgs{
    Operation: insights.OperationTypeScale,
    Email: &insights.EmailNotificationArgs{
    CustomEmails: pulumi.StringArray{
    pulumi.String("string"),
    },
    SendToSubscriptionAdministrator: pulumi.Bool(false),
    SendToSubscriptionCoAdministrators: pulumi.Bool(false),
    },
    Webhooks: insights.WebhookNotificationArray{
    &insights.WebhookNotificationArgs{
    Properties: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    ServiceUri: pulumi.String("string"),
    },
    },
    },
    },
    PredictiveAutoscalePolicy: &insights.PredictiveAutoscalePolicyArgs{
    ScaleMode: insights.PredictiveAutoscalePolicyScaleModeDisabled,
    ScaleLookAheadTime: pulumi.String("string"),
    },
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    TargetResourceLocation: pulumi.String("string"),
    TargetResourceUri: pulumi.String("string"),
    })
    
    var autoscaleSettingResource = new AutoscaleSetting("autoscaleSettingResource", AutoscaleSettingArgs.builder()        
        .profiles(AutoscaleProfileArgs.builder()
            .capacity(ScaleCapacityArgs.builder()
                .default_("string")
                .maximum("string")
                .minimum("string")
                .build())
            .name("string")
            .rules(ScaleRuleArgs.builder()
                .metricTrigger(MetricTriggerArgs.builder()
                    .metricName("string")
                    .metricResourceUri("string")
                    .operator("Equals")
                    .statistic("Average")
                    .threshold(0)
                    .timeAggregation("Average")
                    .timeGrain("string")
                    .timeWindow("string")
                    .dimensions(ScaleRuleMetricDimensionArgs.builder()
                        .dimensionName("string")
                        .operator("string")
                        .values("string")
                        .build())
                    .dividePerInstance(false)
                    .metricNamespace("string")
                    .metricResourceLocation("string")
                    .build())
                .scaleAction(ScaleActionArgs.builder()
                    .cooldown("string")
                    .direction("None")
                    .type("ChangeCount")
                    .value("string")
                    .build())
                .build())
            .fixedDate(TimeWindowArgs.builder()
                .end("string")
                .start("string")
                .timeZone("string")
                .build())
            .recurrence(RecurrenceArgs.builder()
                .frequency("None")
                .schedule(RecurrentScheduleArgs.builder()
                    .days("string")
                    .hours(0)
                    .minutes(0)
                    .timeZone("string")
                    .build())
                .build())
            .build())
        .resourceGroupName("string")
        .autoscaleSettingName("string")
        .enabled(false)
        .location("string")
        .name("string")
        .notifications(AutoscaleNotificationArgs.builder()
            .operation("Scale")
            .email(EmailNotificationArgs.builder()
                .customEmails("string")
                .sendToSubscriptionAdministrator(false)
                .sendToSubscriptionCoAdministrators(false)
                .build())
            .webhooks(WebhookNotificationArgs.builder()
                .properties(Map.of("string", "string"))
                .serviceUri("string")
                .build())
            .build())
        .predictiveAutoscalePolicy(PredictiveAutoscalePolicyArgs.builder()
            .scaleMode("Disabled")
            .scaleLookAheadTime("string")
            .build())
        .tags(Map.of("string", "string"))
        .targetResourceLocation("string")
        .targetResourceUri("string")
        .build());
    
    autoscale_setting_resource = azure_native.insights.AutoscaleSetting("autoscaleSettingResource",
        profiles=[azure_native.insights.AutoscaleProfileArgs(
            capacity=azure_native.insights.ScaleCapacityArgs(
                default="string",
                maximum="string",
                minimum="string",
            ),
            name="string",
            rules=[azure_native.insights.ScaleRuleArgs(
                metric_trigger=azure_native.insights.MetricTriggerArgs(
                    metric_name="string",
                    metric_resource_uri="string",
                    operator=azure_native.insights.ComparisonOperationType.EQUALS,
                    statistic=azure_native.insights.MetricStatisticType.AVERAGE,
                    threshold=0,
                    time_aggregation=azure_native.insights.TimeAggregationType.AVERAGE,
                    time_grain="string",
                    time_window="string",
                    dimensions=[azure_native.insights.ScaleRuleMetricDimensionArgs(
                        dimension_name="string",
                        operator="string",
                        values=["string"],
                    )],
                    divide_per_instance=False,
                    metric_namespace="string",
                    metric_resource_location="string",
                ),
                scale_action=azure_native.insights.ScaleActionArgs(
                    cooldown="string",
                    direction=azure_native.insights.ScaleDirection.NONE,
                    type=azure_native.insights.ScaleType.CHANGE_COUNT,
                    value="string",
                ),
            )],
            fixed_date=azure_native.insights.TimeWindowArgs(
                end="string",
                start="string",
                time_zone="string",
            ),
            recurrence=azure_native.insights.RecurrenceArgs(
                frequency=azure_native.insights.RecurrenceFrequency.NONE,
                schedule=azure_native.insights.RecurrentScheduleArgs(
                    days=["string"],
                    hours=[0],
                    minutes=[0],
                    time_zone="string",
                ),
            ),
        )],
        resource_group_name="string",
        autoscale_setting_name="string",
        enabled=False,
        location="string",
        name="string",
        notifications=[azure_native.insights.AutoscaleNotificationArgs(
            operation=azure_native.insights.OperationType.SCALE,
            email=azure_native.insights.EmailNotificationArgs(
                custom_emails=["string"],
                send_to_subscription_administrator=False,
                send_to_subscription_co_administrators=False,
            ),
            webhooks=[azure_native.insights.WebhookNotificationArgs(
                properties={
                    "string": "string",
                },
                service_uri="string",
            )],
        )],
        predictive_autoscale_policy=azure_native.insights.PredictiveAutoscalePolicyArgs(
            scale_mode=azure_native.insights.PredictiveAutoscalePolicyScaleMode.DISABLED,
            scale_look_ahead_time="string",
        ),
        tags={
            "string": "string",
        },
        target_resource_location="string",
        target_resource_uri="string")
    
    const autoscaleSettingResource = new azure_native.insights.AutoscaleSetting("autoscaleSettingResource", {
        profiles: [{
            capacity: {
                "default": "string",
                maximum: "string",
                minimum: "string",
            },
            name: "string",
            rules: [{
                metricTrigger: {
                    metricName: "string",
                    metricResourceUri: "string",
                    operator: azure_native.insights.ComparisonOperationType.Equals,
                    statistic: azure_native.insights.MetricStatisticType.Average,
                    threshold: 0,
                    timeAggregation: azure_native.insights.TimeAggregationType.Average,
                    timeGrain: "string",
                    timeWindow: "string",
                    dimensions: [{
                        dimensionName: "string",
                        operator: "string",
                        values: ["string"],
                    }],
                    dividePerInstance: false,
                    metricNamespace: "string",
                    metricResourceLocation: "string",
                },
                scaleAction: {
                    cooldown: "string",
                    direction: azure_native.insights.ScaleDirection.None,
                    type: azure_native.insights.ScaleType.ChangeCount,
                    value: "string",
                },
            }],
            fixedDate: {
                end: "string",
                start: "string",
                timeZone: "string",
            },
            recurrence: {
                frequency: azure_native.insights.RecurrenceFrequency.None,
                schedule: {
                    days: ["string"],
                    hours: [0],
                    minutes: [0],
                    timeZone: "string",
                },
            },
        }],
        resourceGroupName: "string",
        autoscaleSettingName: "string",
        enabled: false,
        location: "string",
        name: "string",
        notifications: [{
            operation: azure_native.insights.OperationType.Scale,
            email: {
                customEmails: ["string"],
                sendToSubscriptionAdministrator: false,
                sendToSubscriptionCoAdministrators: false,
            },
            webhooks: [{
                properties: {
                    string: "string",
                },
                serviceUri: "string",
            }],
        }],
        predictiveAutoscalePolicy: {
            scaleMode: azure_native.insights.PredictiveAutoscalePolicyScaleMode.Disabled,
            scaleLookAheadTime: "string",
        },
        tags: {
            string: "string",
        },
        targetResourceLocation: "string",
        targetResourceUri: "string",
    });
    
    type: azure-native:insights:AutoscaleSetting
    properties:
        autoscaleSettingName: string
        enabled: false
        location: string
        name: string
        notifications:
            - email:
                customEmails:
                    - string
                sendToSubscriptionAdministrator: false
                sendToSubscriptionCoAdministrators: false
              operation: Scale
              webhooks:
                - properties:
                    string: string
                  serviceUri: string
        predictiveAutoscalePolicy:
            scaleLookAheadTime: string
            scaleMode: Disabled
        profiles:
            - capacity:
                default: string
                maximum: string
                minimum: string
              fixedDate:
                end: string
                start: string
                timeZone: string
              name: string
              recurrence:
                frequency: None
                schedule:
                    days:
                        - string
                    hours:
                        - 0
                    minutes:
                        - 0
                    timeZone: string
              rules:
                - metricTrigger:
                    dimensions:
                        - dimensionName: string
                          operator: string
                          values:
                            - string
                    dividePerInstance: false
                    metricName: string
                    metricNamespace: string
                    metricResourceLocation: string
                    metricResourceUri: string
                    operator: Equals
                    statistic: Average
                    threshold: 0
                    timeAggregation: Average
                    timeGrain: string
                    timeWindow: string
                  scaleAction:
                    cooldown: string
                    direction: None
                    type: ChangeCount
                    value: string
        resourceGroupName: string
        tags:
            string: string
        targetResourceLocation: string
        targetResourceUri: string
    

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

    Profiles List<Pulumi.AzureNative.Insights.Inputs.AutoscaleProfile>
    the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AutoscaleSettingName string
    The autoscale setting name.
    Enabled bool
    the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
    Location string
    Resource location
    Name string
    the name of the autoscale setting.
    Notifications List<Pulumi.AzureNative.Insights.Inputs.AutoscaleNotification>
    the collection of notifications.
    PredictiveAutoscalePolicy Pulumi.AzureNative.Insights.Inputs.PredictiveAutoscalePolicy
    the predictive autoscale policy mode.
    Tags Dictionary<string, string>
    Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
    TargetResourceLocation string
    the location of the resource that the autoscale setting should be added to.
    TargetResourceUri string
    the resource identifier of the resource that the autoscale setting should be added to.
    Profiles []AutoscaleProfileArgs
    the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    AutoscaleSettingName string
    The autoscale setting name.
    Enabled bool
    the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
    Location string
    Resource location
    Name string
    the name of the autoscale setting.
    Notifications []AutoscaleNotificationArgs
    the collection of notifications.
    PredictiveAutoscalePolicy PredictiveAutoscalePolicyArgs
    the predictive autoscale policy mode.
    Tags map[string]string
    Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
    TargetResourceLocation string
    the location of the resource that the autoscale setting should be added to.
    TargetResourceUri string
    the resource identifier of the resource that the autoscale setting should be added to.
    profiles List<AutoscaleProfile>
    the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    autoscaleSettingName String
    The autoscale setting name.
    enabled Boolean
    the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
    location String
    Resource location
    name String
    the name of the autoscale setting.
    notifications List<AutoscaleNotification>
    the collection of notifications.
    predictiveAutoscalePolicy PredictiveAutoscalePolicy
    the predictive autoscale policy mode.
    tags Map<String,String>
    Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
    targetResourceLocation String
    the location of the resource that the autoscale setting should be added to.
    targetResourceUri String
    the resource identifier of the resource that the autoscale setting should be added to.
    profiles AutoscaleProfile[]
    the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    autoscaleSettingName string
    The autoscale setting name.
    enabled boolean
    the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
    location string
    Resource location
    name string
    the name of the autoscale setting.
    notifications AutoscaleNotification[]
    the collection of notifications.
    predictiveAutoscalePolicy PredictiveAutoscalePolicy
    the predictive autoscale policy mode.
    tags {[key: string]: string}
    Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
    targetResourceLocation string
    the location of the resource that the autoscale setting should be added to.
    targetResourceUri string
    the resource identifier of the resource that the autoscale setting should be added to.
    profiles Sequence[AutoscaleProfileArgs]
    the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    autoscale_setting_name str
    The autoscale setting name.
    enabled bool
    the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
    location str
    Resource location
    name str
    the name of the autoscale setting.
    notifications Sequence[AutoscaleNotificationArgs]
    the collection of notifications.
    predictive_autoscale_policy PredictiveAutoscalePolicyArgs
    the predictive autoscale policy mode.
    tags Mapping[str, str]
    Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
    target_resource_location str
    the location of the resource that the autoscale setting should be added to.
    target_resource_uri str
    the resource identifier of the resource that the autoscale setting should be added to.
    profiles List<Property Map>
    the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    autoscaleSettingName String
    The autoscale setting name.
    enabled Boolean
    the enabled flag. Specifies whether automatic scaling is enabled for the resource. The default value is 'false'.
    location String
    Resource location
    name String
    the name of the autoscale setting.
    notifications List<Property Map>
    the collection of notifications.
    predictiveAutoscalePolicy Property Map
    the predictive autoscale policy mode.
    tags Map<String>
    Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.
    targetResourceLocation String
    the location of the resource that the autoscale setting should be added to.
    targetResourceUri String
    the resource identifier of the resource that the autoscale setting should be added to.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData Pulumi.AzureNative.Insights.Outputs.SystemDataResponse
    The system metadata related to the response.
    Type string
    Azure resource type
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData SystemDataResponse
    The system metadata related to the response.
    Type string
    Azure resource type
    id String
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    The system metadata related to the response.
    type String
    Azure resource type
    id string
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    The system metadata related to the response.
    type string
    Azure resource type
    id str
    The provider-assigned unique ID for this managed resource.
    system_data SystemDataResponse
    The system metadata related to the response.
    type str
    Azure resource type
    id String
    The provider-assigned unique ID for this managed resource.
    systemData Property Map
    The system metadata related to the response.
    type String
    Azure resource type

    Supporting Types

    AutoscaleNotification, AutoscaleNotificationArgs

    Operation Pulumi.AzureNative.Insights.OperationType
    the operation associated with the notification and its value must be "scale"
    Email Pulumi.AzureNative.Insights.Inputs.EmailNotification
    the email notification.
    Webhooks List<Pulumi.AzureNative.Insights.Inputs.WebhookNotification>
    the collection of webhook notifications.
    Operation OperationType
    the operation associated with the notification and its value must be "scale"
    Email EmailNotification
    the email notification.
    Webhooks []WebhookNotification
    the collection of webhook notifications.
    operation OperationType
    the operation associated with the notification and its value must be "scale"
    email EmailNotification
    the email notification.
    webhooks List<WebhookNotification>
    the collection of webhook notifications.
    operation OperationType
    the operation associated with the notification and its value must be "scale"
    email EmailNotification
    the email notification.
    webhooks WebhookNotification[]
    the collection of webhook notifications.
    operation OperationType
    the operation associated with the notification and its value must be "scale"
    email EmailNotification
    the email notification.
    webhooks Sequence[WebhookNotification]
    the collection of webhook notifications.
    operation "Scale"
    the operation associated with the notification and its value must be "scale"
    email Property Map
    the email notification.
    webhooks List<Property Map>
    the collection of webhook notifications.

    AutoscaleNotificationResponse, AutoscaleNotificationResponseArgs

    Operation string
    the operation associated with the notification and its value must be "scale"
    Email Pulumi.AzureNative.Insights.Inputs.EmailNotificationResponse
    the email notification.
    Webhooks List<Pulumi.AzureNative.Insights.Inputs.WebhookNotificationResponse>
    the collection of webhook notifications.
    Operation string
    the operation associated with the notification and its value must be "scale"
    Email EmailNotificationResponse
    the email notification.
    Webhooks []WebhookNotificationResponse
    the collection of webhook notifications.
    operation String
    the operation associated with the notification and its value must be "scale"
    email EmailNotificationResponse
    the email notification.
    webhooks List<WebhookNotificationResponse>
    the collection of webhook notifications.
    operation string
    the operation associated with the notification and its value must be "scale"
    email EmailNotificationResponse
    the email notification.
    webhooks WebhookNotificationResponse[]
    the collection of webhook notifications.
    operation str
    the operation associated with the notification and its value must be "scale"
    email EmailNotificationResponse
    the email notification.
    webhooks Sequence[WebhookNotificationResponse]
    the collection of webhook notifications.
    operation String
    the operation associated with the notification and its value must be "scale"
    email Property Map
    the email notification.
    webhooks List<Property Map>
    the collection of webhook notifications.

    AutoscaleProfile, AutoscaleProfileArgs

    Capacity Pulumi.AzureNative.Insights.Inputs.ScaleCapacity
    the number of instances that can be used during this profile.
    Name string
    the name of the profile.
    Rules List<Pulumi.AzureNative.Insights.Inputs.ScaleRule>
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    FixedDate Pulumi.AzureNative.Insights.Inputs.TimeWindow
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    Recurrence Pulumi.AzureNative.Insights.Inputs.Recurrence
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    Capacity ScaleCapacity
    the number of instances that can be used during this profile.
    Name string
    the name of the profile.
    Rules []ScaleRule
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    FixedDate TimeWindow
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    Recurrence Recurrence
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity ScaleCapacity
    the number of instances that can be used during this profile.
    name String
    the name of the profile.
    rules List<ScaleRule>
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixedDate TimeWindow
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence Recurrence
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity ScaleCapacity
    the number of instances that can be used during this profile.
    name string
    the name of the profile.
    rules ScaleRule[]
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixedDate TimeWindow
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence Recurrence
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity ScaleCapacity
    the number of instances that can be used during this profile.
    name str
    the name of the profile.
    rules Sequence[ScaleRule]
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixed_date TimeWindow
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence Recurrence
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity Property Map
    the number of instances that can be used during this profile.
    name String
    the name of the profile.
    rules List<Property Map>
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixedDate Property Map
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence Property Map
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.

    AutoscaleProfileResponse, AutoscaleProfileResponseArgs

    Capacity Pulumi.AzureNative.Insights.Inputs.ScaleCapacityResponse
    the number of instances that can be used during this profile.
    Name string
    the name of the profile.
    Rules List<Pulumi.AzureNative.Insights.Inputs.ScaleRuleResponse>
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    FixedDate Pulumi.AzureNative.Insights.Inputs.TimeWindowResponse
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    Recurrence Pulumi.AzureNative.Insights.Inputs.RecurrenceResponse
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    Capacity ScaleCapacityResponse
    the number of instances that can be used during this profile.
    Name string
    the name of the profile.
    Rules []ScaleRuleResponse
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    FixedDate TimeWindowResponse
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    Recurrence RecurrenceResponse
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity ScaleCapacityResponse
    the number of instances that can be used during this profile.
    name String
    the name of the profile.
    rules List<ScaleRuleResponse>
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixedDate TimeWindowResponse
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence RecurrenceResponse
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity ScaleCapacityResponse
    the number of instances that can be used during this profile.
    name string
    the name of the profile.
    rules ScaleRuleResponse[]
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixedDate TimeWindowResponse
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence RecurrenceResponse
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity ScaleCapacityResponse
    the number of instances that can be used during this profile.
    name str
    the name of the profile.
    rules Sequence[ScaleRuleResponse]
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixed_date TimeWindowResponse
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence RecurrenceResponse
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
    capacity Property Map
    the number of instances that can be used during this profile.
    name String
    the name of the profile.
    rules List<Property Map>
    the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
    fixedDate Property Map
    the specific date-time for the profile. This element is not used if the Recurrence element is used.
    recurrence Property Map
    the repeating times at which this profile begins. This element is not used if the FixedDate element is used.

    ComparisonOperationType, ComparisonOperationTypeArgs

    EqualsValue
    Equals
    NotEquals
    NotEquals
    GreaterThan
    GreaterThan
    GreaterThanOrEqual
    GreaterThanOrEqual
    LessThan
    LessThan
    LessThanOrEqual
    LessThanOrEqual
    ComparisonOperationTypeEquals
    Equals
    ComparisonOperationTypeNotEquals
    NotEquals
    ComparisonOperationTypeGreaterThan
    GreaterThan
    ComparisonOperationTypeGreaterThanOrEqual
    GreaterThanOrEqual
    ComparisonOperationTypeLessThan
    LessThan
    ComparisonOperationTypeLessThanOrEqual
    LessThanOrEqual
    Equals
    Equals
    NotEquals
    NotEquals
    GreaterThan
    GreaterThan
    GreaterThanOrEqual
    GreaterThanOrEqual
    LessThan
    LessThan
    LessThanOrEqual
    LessThanOrEqual
    Equals
    Equals
    NotEquals
    NotEquals
    GreaterThan
    GreaterThan
    GreaterThanOrEqual
    GreaterThanOrEqual
    LessThan
    LessThan
    LessThanOrEqual
    LessThanOrEqual
    EQUALS
    Equals
    NOT_EQUALS
    NotEquals
    GREATER_THAN
    GreaterThan
    GREATER_THAN_OR_EQUAL
    GreaterThanOrEqual
    LESS_THAN
    LessThan
    LESS_THAN_OR_EQUAL
    LessThanOrEqual
    "Equals"
    Equals
    "NotEquals"
    NotEquals
    "GreaterThan"
    GreaterThan
    "GreaterThanOrEqual"
    GreaterThanOrEqual
    "LessThan"
    LessThan
    "LessThanOrEqual"
    LessThanOrEqual

    EmailNotification, EmailNotificationArgs

    CustomEmails List<string>
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    SendToSubscriptionAdministrator bool
    a value indicating whether to send email to subscription administrator.
    SendToSubscriptionCoAdministrators bool
    a value indicating whether to send email to subscription co-administrators.
    CustomEmails []string
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    SendToSubscriptionAdministrator bool
    a value indicating whether to send email to subscription administrator.
    SendToSubscriptionCoAdministrators bool
    a value indicating whether to send email to subscription co-administrators.
    customEmails List<String>
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    sendToSubscriptionAdministrator Boolean
    a value indicating whether to send email to subscription administrator.
    sendToSubscriptionCoAdministrators Boolean
    a value indicating whether to send email to subscription co-administrators.
    customEmails string[]
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    sendToSubscriptionAdministrator boolean
    a value indicating whether to send email to subscription administrator.
    sendToSubscriptionCoAdministrators boolean
    a value indicating whether to send email to subscription co-administrators.
    custom_emails Sequence[str]
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    send_to_subscription_administrator bool
    a value indicating whether to send email to subscription administrator.
    send_to_subscription_co_administrators bool
    a value indicating whether to send email to subscription co-administrators.
    customEmails List<String>
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    sendToSubscriptionAdministrator Boolean
    a value indicating whether to send email to subscription administrator.
    sendToSubscriptionCoAdministrators Boolean
    a value indicating whether to send email to subscription co-administrators.

    EmailNotificationResponse, EmailNotificationResponseArgs

    CustomEmails List<string>
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    SendToSubscriptionAdministrator bool
    a value indicating whether to send email to subscription administrator.
    SendToSubscriptionCoAdministrators bool
    a value indicating whether to send email to subscription co-administrators.
    CustomEmails []string
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    SendToSubscriptionAdministrator bool
    a value indicating whether to send email to subscription administrator.
    SendToSubscriptionCoAdministrators bool
    a value indicating whether to send email to subscription co-administrators.
    customEmails List<String>
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    sendToSubscriptionAdministrator Boolean
    a value indicating whether to send email to subscription administrator.
    sendToSubscriptionCoAdministrators Boolean
    a value indicating whether to send email to subscription co-administrators.
    customEmails string[]
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    sendToSubscriptionAdministrator boolean
    a value indicating whether to send email to subscription administrator.
    sendToSubscriptionCoAdministrators boolean
    a value indicating whether to send email to subscription co-administrators.
    custom_emails Sequence[str]
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    send_to_subscription_administrator bool
    a value indicating whether to send email to subscription administrator.
    send_to_subscription_co_administrators bool
    a value indicating whether to send email to subscription co-administrators.
    customEmails List<String>
    the custom e-mails list. This value can be null or empty, in which case this attribute will be ignored.
    sendToSubscriptionAdministrator Boolean
    a value indicating whether to send email to subscription administrator.
    sendToSubscriptionCoAdministrators Boolean
    a value indicating whether to send email to subscription co-administrators.

    MetricStatisticType, MetricStatisticTypeArgs

    Average
    Average
    Min
    Min
    Max
    Max
    Sum
    Sum
    Count
    Count
    MetricStatisticTypeAverage
    Average
    MetricStatisticTypeMin
    Min
    MetricStatisticTypeMax
    Max
    MetricStatisticTypeSum
    Sum
    MetricStatisticTypeCount
    Count
    Average
    Average
    Min
    Min
    Max
    Max
    Sum
    Sum
    Count
    Count
    Average
    Average
    Min
    Min
    Max
    Max
    Sum
    Sum
    Count
    Count
    AVERAGE
    Average
    MIN
    Min
    MAX
    Max
    SUM
    Sum
    COUNT
    Count
    "Average"
    Average
    "Min"
    Min
    "Max"
    Max
    "Sum"
    Sum
    "Count"
    Count

    MetricTrigger, MetricTriggerArgs

    MetricName string
    the name of the metric that defines what the rule monitors.
    MetricResourceUri string
    the resource identifier of the resource the rule monitors.
    Operator Pulumi.AzureNative.Insights.ComparisonOperationType
    the operator that is used to compare the metric data and the threshold.
    Statistic Pulumi.AzureNative.Insights.MetricStatisticType
    the metric statistic type. How the metrics from multiple instances are combined.
    Threshold double
    the threshold of the metric that triggers the scale action.
    TimeAggregation Pulumi.AzureNative.Insights.TimeAggregationType
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    TimeGrain string
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    TimeWindow string
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    Dimensions List<Pulumi.AzureNative.Insights.Inputs.ScaleRuleMetricDimension>
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    DividePerInstance bool
    a value indicating whether metric should divide per instance.
    MetricNamespace string
    the namespace of the metric that defines what the rule monitors.
    MetricResourceLocation string
    the location of the resource the rule monitors.
    MetricName string
    the name of the metric that defines what the rule monitors.
    MetricResourceUri string
    the resource identifier of the resource the rule monitors.
    Operator ComparisonOperationType
    the operator that is used to compare the metric data and the threshold.
    Statistic MetricStatisticType
    the metric statistic type. How the metrics from multiple instances are combined.
    Threshold float64
    the threshold of the metric that triggers the scale action.
    TimeAggregation TimeAggregationType
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    TimeGrain string
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    TimeWindow string
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    Dimensions []ScaleRuleMetricDimension
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    DividePerInstance bool
    a value indicating whether metric should divide per instance.
    MetricNamespace string
    the namespace of the metric that defines what the rule monitors.
    MetricResourceLocation string
    the location of the resource the rule monitors.
    metricName String
    the name of the metric that defines what the rule monitors.
    metricResourceUri String
    the resource identifier of the resource the rule monitors.
    operator ComparisonOperationType
    the operator that is used to compare the metric data and the threshold.
    statistic MetricStatisticType
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold Double
    the threshold of the metric that triggers the scale action.
    timeAggregation TimeAggregationType
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    timeGrain String
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    timeWindow String
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions List<ScaleRuleMetricDimension>
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    dividePerInstance Boolean
    a value indicating whether metric should divide per instance.
    metricNamespace String
    the namespace of the metric that defines what the rule monitors.
    metricResourceLocation String
    the location of the resource the rule monitors.
    metricName string
    the name of the metric that defines what the rule monitors.
    metricResourceUri string
    the resource identifier of the resource the rule monitors.
    operator ComparisonOperationType
    the operator that is used to compare the metric data and the threshold.
    statistic MetricStatisticType
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold number
    the threshold of the metric that triggers the scale action.
    timeAggregation TimeAggregationType
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    timeGrain string
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    timeWindow string
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions ScaleRuleMetricDimension[]
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    dividePerInstance boolean
    a value indicating whether metric should divide per instance.
    metricNamespace string
    the namespace of the metric that defines what the rule monitors.
    metricResourceLocation string
    the location of the resource the rule monitors.
    metric_name str
    the name of the metric that defines what the rule monitors.
    metric_resource_uri str
    the resource identifier of the resource the rule monitors.
    operator ComparisonOperationType
    the operator that is used to compare the metric data and the threshold.
    statistic MetricStatisticType
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold float
    the threshold of the metric that triggers the scale action.
    time_aggregation TimeAggregationType
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    time_grain str
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    time_window str
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions Sequence[ScaleRuleMetricDimension]
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    divide_per_instance bool
    a value indicating whether metric should divide per instance.
    metric_namespace str
    the namespace of the metric that defines what the rule monitors.
    metric_resource_location str
    the location of the resource the rule monitors.
    metricName String
    the name of the metric that defines what the rule monitors.
    metricResourceUri String
    the resource identifier of the resource the rule monitors.
    operator "Equals" | "NotEquals" | "GreaterThan" | "GreaterThanOrEqual" | "LessThan" | "LessThanOrEqual"
    the operator that is used to compare the metric data and the threshold.
    statistic "Average" | "Min" | "Max" | "Sum" | "Count"
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold Number
    the threshold of the metric that triggers the scale action.
    timeAggregation "Average" | "Minimum" | "Maximum" | "Total" | "Count" | "Last"
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    timeGrain String
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    timeWindow String
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions List<Property Map>
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    dividePerInstance Boolean
    a value indicating whether metric should divide per instance.
    metricNamespace String
    the namespace of the metric that defines what the rule monitors.
    metricResourceLocation String
    the location of the resource the rule monitors.

    MetricTriggerResponse, MetricTriggerResponseArgs

    MetricName string
    the name of the metric that defines what the rule monitors.
    MetricResourceUri string
    the resource identifier of the resource the rule monitors.
    Operator string
    the operator that is used to compare the metric data and the threshold.
    Statistic string
    the metric statistic type. How the metrics from multiple instances are combined.
    Threshold double
    the threshold of the metric that triggers the scale action.
    TimeAggregation string
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    TimeGrain string
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    TimeWindow string
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    Dimensions List<Pulumi.AzureNative.Insights.Inputs.ScaleRuleMetricDimensionResponse>
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    DividePerInstance bool
    a value indicating whether metric should divide per instance.
    MetricNamespace string
    the namespace of the metric that defines what the rule monitors.
    MetricResourceLocation string
    the location of the resource the rule monitors.
    MetricName string
    the name of the metric that defines what the rule monitors.
    MetricResourceUri string
    the resource identifier of the resource the rule monitors.
    Operator string
    the operator that is used to compare the metric data and the threshold.
    Statistic string
    the metric statistic type. How the metrics from multiple instances are combined.
    Threshold float64
    the threshold of the metric that triggers the scale action.
    TimeAggregation string
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    TimeGrain string
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    TimeWindow string
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    Dimensions []ScaleRuleMetricDimensionResponse
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    DividePerInstance bool
    a value indicating whether metric should divide per instance.
    MetricNamespace string
    the namespace of the metric that defines what the rule monitors.
    MetricResourceLocation string
    the location of the resource the rule monitors.
    metricName String
    the name of the metric that defines what the rule monitors.
    metricResourceUri String
    the resource identifier of the resource the rule monitors.
    operator String
    the operator that is used to compare the metric data and the threshold.
    statistic String
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold Double
    the threshold of the metric that triggers the scale action.
    timeAggregation String
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    timeGrain String
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    timeWindow String
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions List<ScaleRuleMetricDimensionResponse>
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    dividePerInstance Boolean
    a value indicating whether metric should divide per instance.
    metricNamespace String
    the namespace of the metric that defines what the rule monitors.
    metricResourceLocation String
    the location of the resource the rule monitors.
    metricName string
    the name of the metric that defines what the rule monitors.
    metricResourceUri string
    the resource identifier of the resource the rule monitors.
    operator string
    the operator that is used to compare the metric data and the threshold.
    statistic string
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold number
    the threshold of the metric that triggers the scale action.
    timeAggregation string
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    timeGrain string
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    timeWindow string
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions ScaleRuleMetricDimensionResponse[]
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    dividePerInstance boolean
    a value indicating whether metric should divide per instance.
    metricNamespace string
    the namespace of the metric that defines what the rule monitors.
    metricResourceLocation string
    the location of the resource the rule monitors.
    metric_name str
    the name of the metric that defines what the rule monitors.
    metric_resource_uri str
    the resource identifier of the resource the rule monitors.
    operator str
    the operator that is used to compare the metric data and the threshold.
    statistic str
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold float
    the threshold of the metric that triggers the scale action.
    time_aggregation str
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    time_grain str
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    time_window str
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions Sequence[ScaleRuleMetricDimensionResponse]
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    divide_per_instance bool
    a value indicating whether metric should divide per instance.
    metric_namespace str
    the namespace of the metric that defines what the rule monitors.
    metric_resource_location str
    the location of the resource the rule monitors.
    metricName String
    the name of the metric that defines what the rule monitors.
    metricResourceUri String
    the resource identifier of the resource the rule monitors.
    operator String
    the operator that is used to compare the metric data and the threshold.
    statistic String
    the metric statistic type. How the metrics from multiple instances are combined.
    threshold Number
    the threshold of the metric that triggers the scale action.
    timeAggregation String
    time aggregation type. How the data that is collected should be combined over time. The default value is Average.
    timeGrain String
    the granularity of metrics the rule monitors. Must be one of the predefined values returned from metric definitions for the metric. Must be between 12 hours and 1 minute.
    timeWindow String
    the range of time in which instance data is collected. This value must be greater than the delay in metric collection, which can vary from resource-to-resource. Must be between 12 hours and 5 minutes.
    dimensions List<Property Map>
    List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
    dividePerInstance Boolean
    a value indicating whether metric should divide per instance.
    metricNamespace String
    the namespace of the metric that defines what the rule monitors.
    metricResourceLocation String
    the location of the resource the rule monitors.

    OperationType, OperationTypeArgs

    Scale
    Scale
    OperationTypeScale
    Scale
    Scale
    Scale
    Scale
    Scale
    SCALE
    Scale
    "Scale"
    Scale

    PredictiveAutoscalePolicy, PredictiveAutoscalePolicyArgs

    ScaleMode Pulumi.AzureNative.Insights.PredictiveAutoscalePolicyScaleMode
    the predictive autoscale mode
    ScaleLookAheadTime string
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    ScaleMode PredictiveAutoscalePolicyScaleMode
    the predictive autoscale mode
    ScaleLookAheadTime string
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scaleMode PredictiveAutoscalePolicyScaleMode
    the predictive autoscale mode
    scaleLookAheadTime String
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scaleMode PredictiveAutoscalePolicyScaleMode
    the predictive autoscale mode
    scaleLookAheadTime string
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scale_mode PredictiveAutoscalePolicyScaleMode
    the predictive autoscale mode
    scale_look_ahead_time str
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scaleMode "Disabled" | "ForecastOnly" | "Enabled"
    the predictive autoscale mode
    scaleLookAheadTime String
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.

    PredictiveAutoscalePolicyResponse, PredictiveAutoscalePolicyResponseArgs

    ScaleMode string
    the predictive autoscale mode
    ScaleLookAheadTime string
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    ScaleMode string
    the predictive autoscale mode
    ScaleLookAheadTime string
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scaleMode String
    the predictive autoscale mode
    scaleLookAheadTime String
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scaleMode string
    the predictive autoscale mode
    scaleLookAheadTime string
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scale_mode str
    the predictive autoscale mode
    scale_look_ahead_time str
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.
    scaleMode String
    the predictive autoscale mode
    scaleLookAheadTime String
    the amount of time to specify by which instances are launched in advance. It must be between 1 minute and 60 minutes in ISO 8601 format.

    PredictiveAutoscalePolicyScaleMode, PredictiveAutoscalePolicyScaleModeArgs

    Disabled
    Disabled
    ForecastOnly
    ForecastOnly
    Enabled
    Enabled
    PredictiveAutoscalePolicyScaleModeDisabled
    Disabled
    PredictiveAutoscalePolicyScaleModeForecastOnly
    ForecastOnly
    PredictiveAutoscalePolicyScaleModeEnabled
    Enabled
    Disabled
    Disabled
    ForecastOnly
    ForecastOnly
    Enabled
    Enabled
    Disabled
    Disabled
    ForecastOnly
    ForecastOnly
    Enabled
    Enabled
    DISABLED
    Disabled
    FORECAST_ONLY
    ForecastOnly
    ENABLED
    Enabled
    "Disabled"
    Disabled
    "ForecastOnly"
    ForecastOnly
    "Enabled"
    Enabled

    Recurrence, RecurrenceArgs

    Frequency Pulumi.AzureNative.Insights.RecurrenceFrequency
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    Schedule Pulumi.AzureNative.Insights.Inputs.RecurrentSchedule
    the scheduling constraints for when the profile begins.
    Frequency RecurrenceFrequency
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    Schedule RecurrentSchedule
    the scheduling constraints for when the profile begins.
    frequency RecurrenceFrequency
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule RecurrentSchedule
    the scheduling constraints for when the profile begins.
    frequency RecurrenceFrequency
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule RecurrentSchedule
    the scheduling constraints for when the profile begins.
    frequency RecurrenceFrequency
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule RecurrentSchedule
    the scheduling constraints for when the profile begins.
    frequency "None" | "Second" | "Minute" | "Hour" | "Day" | "Week" | "Month" | "Year"
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule Property Map
    the scheduling constraints for when the profile begins.

    RecurrenceFrequency, RecurrenceFrequencyArgs

    None
    None
    Second
    Second
    Minute
    Minute
    Hour
    Hour
    Day
    Day
    Week
    Week
    Month
    Month
    Year
    Year
    RecurrenceFrequencyNone
    None
    RecurrenceFrequencySecond
    Second
    RecurrenceFrequencyMinute
    Minute
    RecurrenceFrequencyHour
    Hour
    RecurrenceFrequencyDay
    Day
    RecurrenceFrequencyWeek
    Week
    RecurrenceFrequencyMonth
    Month
    RecurrenceFrequencyYear
    Year
    None
    None
    Second
    Second
    Minute
    Minute
    Hour
    Hour
    Day
    Day
    Week
    Week
    Month
    Month
    Year
    Year
    None
    None
    Second
    Second
    Minute
    Minute
    Hour
    Hour
    Day
    Day
    Week
    Week
    Month
    Month
    Year
    Year
    NONE
    None
    SECOND
    Second
    MINUTE
    Minute
    HOUR
    Hour
    DAY
    Day
    WEEK
    Week
    MONTH
    Month
    YEAR
    Year
    "None"
    None
    "Second"
    Second
    "Minute"
    Minute
    "Hour"
    Hour
    "Day"
    Day
    "Week"
    Week
    "Month"
    Month
    "Year"
    Year

    RecurrenceResponse, RecurrenceResponseArgs

    Frequency string
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    Schedule Pulumi.AzureNative.Insights.Inputs.RecurrentScheduleResponse
    the scheduling constraints for when the profile begins.
    Frequency string
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    Schedule RecurrentScheduleResponse
    the scheduling constraints for when the profile begins.
    frequency String
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule RecurrentScheduleResponse
    the scheduling constraints for when the profile begins.
    frequency string
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule RecurrentScheduleResponse
    the scheduling constraints for when the profile begins.
    frequency str
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule RecurrentScheduleResponse
    the scheduling constraints for when the profile begins.
    frequency String
    the recurrence frequency. How often the schedule profile should take effect. This value must be Week, meaning each week will have the same set of profiles. For example, to set a daily schedule, set schedule to every day of the week. The frequency property specifies that the schedule is repeated weekly.
    schedule Property Map
    the scheduling constraints for when the profile begins.

    RecurrentSchedule, RecurrentScheduleArgs

    Days List<string>
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    Hours List<int>
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    Minutes List<int>
    A collection of minutes at which the profile takes effect at.
    TimeZone string
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    Days []string
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    Hours []int
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    Minutes []int
    A collection of minutes at which the profile takes effect at.
    TimeZone string
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days List<String>
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours List<Integer>
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes List<Integer>
    A collection of minutes at which the profile takes effect at.
    timeZone String
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days string[]
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours number[]
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes number[]
    A collection of minutes at which the profile takes effect at.
    timeZone string
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days Sequence[str]
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours Sequence[int]
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes Sequence[int]
    A collection of minutes at which the profile takes effect at.
    time_zone str
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days List<String>
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours List<Number>
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes List<Number>
    A collection of minutes at which the profile takes effect at.
    timeZone String
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time

    RecurrentScheduleResponse, RecurrentScheduleResponseArgs

    Days List<string>
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    Hours List<int>
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    Minutes List<int>
    A collection of minutes at which the profile takes effect at.
    TimeZone string
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    Days []string
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    Hours []int
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    Minutes []int
    A collection of minutes at which the profile takes effect at.
    TimeZone string
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days List<String>
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours List<Integer>
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes List<Integer>
    A collection of minutes at which the profile takes effect at.
    timeZone String
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days string[]
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours number[]
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes number[]
    A collection of minutes at which the profile takes effect at.
    timeZone string
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days Sequence[str]
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours Sequence[int]
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes Sequence[int]
    A collection of minutes at which the profile takes effect at.
    time_zone str
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    days List<String>
    the collection of days that the profile takes effect on. Possible values are Sunday through Saturday.
    hours List<Number>
    A collection of hours that the profile takes effect on. Values supported are 0 to 23 on the 24-hour clock (AM/PM times are not supported).
    minutes List<Number>
    A collection of minutes at which the profile takes effect at.
    timeZone String
    the timezone for the hours of the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time

    ScaleAction, ScaleActionArgs

    Cooldown string
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    Direction Pulumi.AzureNative.Insights.ScaleDirection
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    Type Pulumi.AzureNative.Insights.ScaleType
    the type of action that should occur when the scale rule fires.
    Value string
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    Cooldown string
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    Direction ScaleDirection
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    Type ScaleType
    the type of action that should occur when the scale rule fires.
    Value string
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown String
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction ScaleDirection
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type ScaleType
    the type of action that should occur when the scale rule fires.
    value String
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown string
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction ScaleDirection
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type ScaleType
    the type of action that should occur when the scale rule fires.
    value string
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown str
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction ScaleDirection
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type ScaleType
    the type of action that should occur when the scale rule fires.
    value str
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown String
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction "None" | "Increase" | "Decrease"
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type "ChangeCount" | "PercentChangeCount" | "ExactCount" | "ServiceAllowedNextValue"
    the type of action that should occur when the scale rule fires.
    value String
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.

    ScaleActionResponse, ScaleActionResponseArgs

    Cooldown string
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    Direction string
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    Type string
    the type of action that should occur when the scale rule fires.
    Value string
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    Cooldown string
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    Direction string
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    Type string
    the type of action that should occur when the scale rule fires.
    Value string
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown String
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction String
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type String
    the type of action that should occur when the scale rule fires.
    value String
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown string
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction string
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type string
    the type of action that should occur when the scale rule fires.
    value string
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown str
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction str
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type str
    the type of action that should occur when the scale rule fires.
    value str
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.
    cooldown String
    the amount of time to wait since the last scaling action before this action occurs. It must be between 1 week and 1 minute in ISO 8601 format.
    direction String
    the scale direction. Whether the scaling action increases or decreases the number of instances.
    type String
    the type of action that should occur when the scale rule fires.
    value String
    the number of instances that are involved in the scaling action. This value must be 1 or greater. The default value is 1.

    ScaleCapacity, ScaleCapacityArgs

    Default string
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    Maximum string
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    Minimum string
    the minimum number of instances for the resource.
    Default string
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    Maximum string
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    Minimum string
    the minimum number of instances for the resource.
    default_ String
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum String
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum String
    the minimum number of instances for the resource.
    default string
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum string
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum string
    the minimum number of instances for the resource.
    default str
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum str
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum str
    the minimum number of instances for the resource.
    default String
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum String
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum String
    the minimum number of instances for the resource.

    ScaleCapacityResponse, ScaleCapacityResponseArgs

    Default string
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    Maximum string
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    Minimum string
    the minimum number of instances for the resource.
    Default string
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    Maximum string
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    Minimum string
    the minimum number of instances for the resource.
    default_ String
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum String
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum String
    the minimum number of instances for the resource.
    default string
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum string
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum string
    the minimum number of instances for the resource.
    default str
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum str
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum str
    the minimum number of instances for the resource.
    default String
    the number of instances that will be set if metrics are not available for evaluation. The default is only used if the current instance count is lower than the default.
    maximum String
    the maximum number of instances for the resource. The actual maximum number of instances is limited by the cores that are available in the subscription.
    minimum String
    the minimum number of instances for the resource.

    ScaleDirection, ScaleDirectionArgs

    None
    None
    Increase
    Increase
    Decrease
    Decrease
    ScaleDirectionNone
    None
    ScaleDirectionIncrease
    Increase
    ScaleDirectionDecrease
    Decrease
    None
    None
    Increase
    Increase
    Decrease
    Decrease
    None
    None
    Increase
    Increase
    Decrease
    Decrease
    NONE
    None
    INCREASE
    Increase
    DECREASE
    Decrease
    "None"
    None
    "Increase"
    Increase
    "Decrease"
    Decrease

    ScaleRule, ScaleRuleArgs

    MetricTrigger Pulumi.AzureNative.Insights.Inputs.MetricTrigger
    the trigger that results in a scaling action.
    ScaleAction Pulumi.AzureNative.Insights.Inputs.ScaleAction
    the parameters for the scaling action.
    MetricTrigger MetricTrigger
    the trigger that results in a scaling action.
    ScaleAction ScaleAction
    the parameters for the scaling action.
    metricTrigger MetricTrigger
    the trigger that results in a scaling action.
    scaleAction ScaleAction
    the parameters for the scaling action.
    metricTrigger MetricTrigger
    the trigger that results in a scaling action.
    scaleAction ScaleAction
    the parameters for the scaling action.
    metric_trigger MetricTrigger
    the trigger that results in a scaling action.
    scale_action ScaleAction
    the parameters for the scaling action.
    metricTrigger Property Map
    the trigger that results in a scaling action.
    scaleAction Property Map
    the parameters for the scaling action.

    ScaleRuleMetricDimension, ScaleRuleMetricDimensionArgs

    DimensionName string
    Name of the dimension.
    Operator string | Pulumi.AzureNative.Insights.ScaleRuleMetricDimensionOperationType
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    Values List<string>
    list of dimension values. For example: ["App1","App2"].
    DimensionName string
    Name of the dimension.
    Operator string | ScaleRuleMetricDimensionOperationType
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    Values []string
    list of dimension values. For example: ["App1","App2"].
    dimensionName String
    Name of the dimension.
    operator String | ScaleRuleMetricDimensionOperationType
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values List<String>
    list of dimension values. For example: ["App1","App2"].
    dimensionName string
    Name of the dimension.
    operator string | ScaleRuleMetricDimensionOperationType
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values string[]
    list of dimension values. For example: ["App1","App2"].
    dimension_name str
    Name of the dimension.
    operator str | ScaleRuleMetricDimensionOperationType
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values Sequence[str]
    list of dimension values. For example: ["App1","App2"].
    dimensionName String
    Name of the dimension.
    operator String | "Equals" | "NotEquals"
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values List<String>
    list of dimension values. For example: ["App1","App2"].

    ScaleRuleMetricDimensionOperationType, ScaleRuleMetricDimensionOperationTypeArgs

    EqualsValue
    Equals
    NotEquals
    NotEquals
    ScaleRuleMetricDimensionOperationTypeEquals
    Equals
    ScaleRuleMetricDimensionOperationTypeNotEquals
    NotEquals
    Equals
    Equals
    NotEquals
    NotEquals
    Equals
    Equals
    NotEquals
    NotEquals
    EQUALS
    Equals
    NOT_EQUALS
    NotEquals
    "Equals"
    Equals
    "NotEquals"
    NotEquals

    ScaleRuleMetricDimensionResponse, ScaleRuleMetricDimensionResponseArgs

    DimensionName string
    Name of the dimension.
    Operator string
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    Values List<string>
    list of dimension values. For example: ["App1","App2"].
    DimensionName string
    Name of the dimension.
    Operator string
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    Values []string
    list of dimension values. For example: ["App1","App2"].
    dimensionName String
    Name of the dimension.
    operator String
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values List<String>
    list of dimension values. For example: ["App1","App2"].
    dimensionName string
    Name of the dimension.
    operator string
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values string[]
    list of dimension values. For example: ["App1","App2"].
    dimension_name str
    Name of the dimension.
    operator str
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values Sequence[str]
    list of dimension values. For example: ["App1","App2"].
    dimensionName String
    Name of the dimension.
    operator String
    the dimension operator. Only 'Equals' and 'NotEquals' are supported. 'Equals' being equal to any of the values. 'NotEquals' being not equal to all of the values
    values List<String>
    list of dimension values. For example: ["App1","App2"].

    ScaleRuleResponse, ScaleRuleResponseArgs

    MetricTrigger MetricTriggerResponse
    the trigger that results in a scaling action.
    ScaleAction ScaleActionResponse
    the parameters for the scaling action.
    metricTrigger MetricTriggerResponse
    the trigger that results in a scaling action.
    scaleAction ScaleActionResponse
    the parameters for the scaling action.
    metricTrigger MetricTriggerResponse
    the trigger that results in a scaling action.
    scaleAction ScaleActionResponse
    the parameters for the scaling action.
    metric_trigger MetricTriggerResponse
    the trigger that results in a scaling action.
    scale_action ScaleActionResponse
    the parameters for the scaling action.
    metricTrigger Property Map
    the trigger that results in a scaling action.
    scaleAction Property Map
    the parameters for the scaling action.

    ScaleType, ScaleTypeArgs

    ChangeCount
    ChangeCount
    PercentChangeCount
    PercentChangeCount
    ExactCount
    ExactCount
    ServiceAllowedNextValue
    ServiceAllowedNextValue
    ScaleTypeChangeCount
    ChangeCount
    ScaleTypePercentChangeCount
    PercentChangeCount
    ScaleTypeExactCount
    ExactCount
    ScaleTypeServiceAllowedNextValue
    ServiceAllowedNextValue
    ChangeCount
    ChangeCount
    PercentChangeCount
    PercentChangeCount
    ExactCount
    ExactCount
    ServiceAllowedNextValue
    ServiceAllowedNextValue
    ChangeCount
    ChangeCount
    PercentChangeCount
    PercentChangeCount
    ExactCount
    ExactCount
    ServiceAllowedNextValue
    ServiceAllowedNextValue
    CHANGE_COUNT
    ChangeCount
    PERCENT_CHANGE_COUNT
    PercentChangeCount
    EXACT_COUNT
    ExactCount
    SERVICE_ALLOWED_NEXT_VALUE
    ServiceAllowedNextValue
    "ChangeCount"
    ChangeCount
    "PercentChangeCount"
    PercentChangeCount
    "ExactCount"
    ExactCount
    "ServiceAllowedNextValue"
    ServiceAllowedNextValue

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    TimeAggregationType, TimeAggregationTypeArgs

    Average
    Average
    Minimum
    Minimum
    Maximum
    Maximum
    Total
    Total
    Count
    Count
    Last
    Last
    TimeAggregationTypeAverage
    Average
    TimeAggregationTypeMinimum
    Minimum
    TimeAggregationTypeMaximum
    Maximum
    TimeAggregationTypeTotal
    Total
    TimeAggregationTypeCount
    Count
    TimeAggregationTypeLast
    Last
    Average
    Average
    Minimum
    Minimum
    Maximum
    Maximum
    Total
    Total
    Count
    Count
    Last
    Last
    Average
    Average
    Minimum
    Minimum
    Maximum
    Maximum
    Total
    Total
    Count
    Count
    Last
    Last
    AVERAGE
    Average
    MINIMUM
    Minimum
    MAXIMUM
    Maximum
    TOTAL
    Total
    COUNT
    Count
    LAST
    Last
    "Average"
    Average
    "Minimum"
    Minimum
    "Maximum"
    Maximum
    "Total"
    Total
    "Count"
    Count
    "Last"
    Last

    TimeWindow, TimeWindowArgs

    End string
    the end time for the profile in ISO 8601 format.
    Start string
    the start time for the profile in ISO 8601 format.
    TimeZone string
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    End string
    the end time for the profile in ISO 8601 format.
    Start string
    the start time for the profile in ISO 8601 format.
    TimeZone string
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end String
    the end time for the profile in ISO 8601 format.
    start String
    the start time for the profile in ISO 8601 format.
    timeZone String
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end string
    the end time for the profile in ISO 8601 format.
    start string
    the start time for the profile in ISO 8601 format.
    timeZone string
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end str
    the end time for the profile in ISO 8601 format.
    start str
    the start time for the profile in ISO 8601 format.
    time_zone str
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end String
    the end time for the profile in ISO 8601 format.
    start String
    the start time for the profile in ISO 8601 format.
    timeZone String
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time

    TimeWindowResponse, TimeWindowResponseArgs

    End string
    the end time for the profile in ISO 8601 format.
    Start string
    the start time for the profile in ISO 8601 format.
    TimeZone string
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    End string
    the end time for the profile in ISO 8601 format.
    Start string
    the start time for the profile in ISO 8601 format.
    TimeZone string
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end String
    the end time for the profile in ISO 8601 format.
    start String
    the start time for the profile in ISO 8601 format.
    timeZone String
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end string
    the end time for the profile in ISO 8601 format.
    start string
    the start time for the profile in ISO 8601 format.
    timeZone string
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end str
    the end time for the profile in ISO 8601 format.
    start str
    the start time for the profile in ISO 8601 format.
    time_zone str
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time
    end String
    the end time for the profile in ISO 8601 format.
    start String
    the start time for the profile in ISO 8601 format.
    timeZone String
    the timezone of the start and end times for the profile. Some examples of valid time zones are: Dateline Standard Time, UTC-11, Hawaiian Standard Time, Alaskan Standard Time, Pacific Standard Time (Mexico), Pacific Standard Time, US Mountain Standard Time, Mountain Standard Time (Mexico), Mountain Standard Time, Central America Standard Time, Central Standard Time, Central Standard Time (Mexico), Canada Central Standard Time, SA Pacific Standard Time, Eastern Standard Time, US Eastern Standard Time, Venezuela Standard Time, Paraguay Standard Time, Atlantic Standard Time, Central Brazilian Standard Time, SA Western Standard Time, Pacific SA Standard Time, Newfoundland Standard Time, E. South America Standard Time, Argentina Standard Time, SA Eastern Standard Time, Greenland Standard Time, Montevideo Standard Time, Bahia Standard Time, UTC-02, Mid-Atlantic Standard Time, Azores Standard Time, Cape Verde Standard Time, Morocco Standard Time, UTC, GMT Standard Time, Greenwich Standard Time, W. Europe Standard Time, Central Europe Standard Time, Romance Standard Time, Central European Standard Time, W. Central Africa Standard Time, Namibia Standard Time, Jordan Standard Time, GTB Standard Time, Middle East Standard Time, Egypt Standard Time, Syria Standard Time, E. Europe Standard Time, South Africa Standard Time, FLE Standard Time, Turkey Standard Time, Israel Standard Time, Kaliningrad Standard Time, Libya Standard Time, Arabic Standard Time, Arab Standard Time, Belarus Standard Time, Russian Standard Time, E. Africa Standard Time, Iran Standard Time, Arabian Standard Time, Azerbaijan Standard Time, Russia Time Zone 3, Mauritius Standard Time, Georgian Standard Time, Caucasus Standard Time, Afghanistan Standard Time, West Asia Standard Time, Ekaterinburg Standard Time, Pakistan Standard Time, India Standard Time, Sri Lanka Standard Time, Nepal Standard Time, Central Asia Standard Time, Bangladesh Standard Time, N. Central Asia Standard Time, Myanmar Standard Time, SE Asia Standard Time, North Asia Standard Time, China Standard Time, North Asia East Standard Time, Singapore Standard Time, W. Australia Standard Time, Taipei Standard Time, Ulaanbaatar Standard Time, Tokyo Standard Time, Korea Standard Time, Yakutsk Standard Time, Cen. Australia Standard Time, AUS Central Standard Time, E. Australia Standard Time, AUS Eastern Standard Time, West Pacific Standard Time, Tasmania Standard Time, Magadan Standard Time, Vladivostok Standard Time, Russia Time Zone 10, Central Pacific Standard Time, Russia Time Zone 11, New Zealand Standard Time, UTC+12, Fiji Standard Time, Kamchatka Standard Time, Tonga Standard Time, Samoa Standard Time, Line Islands Standard Time

    WebhookNotification, WebhookNotificationArgs

    Properties Dictionary<string, string>
    a property bag of settings. This value can be empty.
    ServiceUri string
    the service address to receive the notification.
    Properties map[string]string
    a property bag of settings. This value can be empty.
    ServiceUri string
    the service address to receive the notification.
    properties Map<String,String>
    a property bag of settings. This value can be empty.
    serviceUri String
    the service address to receive the notification.
    properties {[key: string]: string}
    a property bag of settings. This value can be empty.
    serviceUri string
    the service address to receive the notification.
    properties Mapping[str, str]
    a property bag of settings. This value can be empty.
    service_uri str
    the service address to receive the notification.
    properties Map<String>
    a property bag of settings. This value can be empty.
    serviceUri String
    the service address to receive the notification.

    WebhookNotificationResponse, WebhookNotificationResponseArgs

    Properties Dictionary<string, string>
    a property bag of settings. This value can be empty.
    ServiceUri string
    the service address to receive the notification.
    Properties map[string]string
    a property bag of settings. This value can be empty.
    ServiceUri string
    the service address to receive the notification.
    properties Map<String,String>
    a property bag of settings. This value can be empty.
    serviceUri String
    the service address to receive the notification.
    properties {[key: string]: string}
    a property bag of settings. This value can be empty.
    serviceUri string
    the service address to receive the notification.
    properties Mapping[str, str]
    a property bag of settings. This value can be empty.
    service_uri str
    the service address to receive the notification.
    properties Map<String>
    a property bag of settings. This value can be empty.
    serviceUri String
    the service address to receive the notification.

    Import

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

    $ pulumi import azure-native:insights:AutoscaleSetting MySetting /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.Insights/autoscalesettings/{autoscaleSettingName} 
    

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

    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.37.0 published on Monday, Apr 15, 2024 by Pulumi