azure-native.insights.AutoscaleSetting
Explore with Pulumi AI
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 (
	insights "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: pulumi.StringMap{},
							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 * 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",
});
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=[{
        "email": {
            "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": [{
            "properties": {},
            "service_uri": "http://myservice.com",
        }],
    }],
    predictive_autoscale_policy={
        "scale_mode": azure_native.insights.PredictiveAutoscalePolicyScaleMode.ENABLED,
    },
    profiles=[
        {
            "capacity": {
                "default": "1",
                "maximum": "10",
                "minimum": "1",
            },
            "fixed_date": {
                "end": "2015-03-05T14:30:00Z",
                "start": "2015-03-05T14:00:00Z",
                "time_zone": "UTC",
            },
            "name": "adios",
            "rules": [
                {
                    "metric_trigger": {
                        "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": {
                        "cooldown": "PT5M",
                        "direction": azure_native.insights.ScaleDirection.INCREASE,
                        "type": azure_native.insights.ScaleType.CHANGE_COUNT,
                        "value": "1",
                    },
                },
                {
                    "metric_trigger": {
                        "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": {
                        "cooldown": "PT6M",
                        "direction": azure_native.insights.ScaleDirection.DECREASE,
                        "type": azure_native.insights.ScaleType.CHANGE_COUNT,
                        "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],
                    "time_zone": "UTC",
                },
            },
            "rules": [
                {
                    "metric_trigger": {
                        "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": {
                        "cooldown": "PT5M",
                        "direction": azure_native.insights.ScaleDirection.INCREASE,
                        "type": azure_native.insights.ScaleType.CHANGE_COUNT,
                        "value": "1",
                    },
                },
                {
                    "metric_trigger": {
                        "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": {
                        "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")
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.
Constructor 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=[{
        "capacity": {
            "default": "string",
            "maximum": "string",
            "minimum": "string",
        },
        "name": "string",
        "rules": [{
            "metric_trigger": {
                "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": [{
                    "dimension_name": "string",
                    "operator": "string",
                    "values": ["string"],
                }],
                "divide_per_instance": False,
                "metric_namespace": "string",
                "metric_resource_location": "string",
            },
            "scale_action": {
                "cooldown": "string",
                "direction": azure_native.insights.ScaleDirection.NONE,
                "type": azure_native.insights.ScaleType.CHANGE_COUNT,
                "value": "string",
            },
        }],
        "fixed_date": {
            "end": "string",
            "start": "string",
            "time_zone": "string",
        },
        "recurrence": {
            "frequency": azure_native.insights.RecurrenceFrequency.NONE,
            "schedule": {
                "days": ["string"],
                "hours": [0],
                "minutes": [0],
                "time_zone": "string",
            },
        },
    }],
    resource_group_name="string",
    autoscale_setting_name="string",
    enabled=False,
    location="string",
    name="string",
    notifications=[{
        "operation": azure_native.insights.OperationType.SCALE,
        "email": {
            "custom_emails": ["string"],
            "send_to_subscription_administrator": False,
            "send_to_subscription_co_administrators": False,
        },
        "webhooks": [{
            "properties": {
                "string": "string",
            },
            "service_uri": "string",
        }],
    }],
    predictive_autoscale_policy={
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AutoscaleSetting resource accepts the following input properties:
- Profiles
List<Pulumi.Azure Native. Insights. Inputs. Autoscale Profile> 
- the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AutoscaleSetting stringName 
- 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.Azure Native. Insights. Inputs. Autoscale Notification> 
- the collection of notifications.
- PredictiveAutoscale Pulumi.Policy Azure Native. Insights. Inputs. Predictive Autoscale Policy 
- the predictive autoscale policy mode.
- 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.
- TargetResource stringLocation 
- the location of the resource that the autoscale setting should be added to.
- TargetResource stringUri 
- the resource identifier of the resource that the autoscale setting should be added to.
- Profiles
[]AutoscaleProfile Args 
- the collection of automatic scaling profiles that specify different scaling parameters for different time periods. A maximum of 20 profiles can be specified.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AutoscaleSetting stringName 
- 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
[]AutoscaleNotification Args 
- the collection of notifications.
- PredictiveAutoscale PredictivePolicy Autoscale Policy Args 
- the predictive autoscale policy mode.
- 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.
- TargetResource stringLocation 
- the location of the resource that the autoscale setting should be added to.
- TargetResource stringUri 
- 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.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- autoscaleSetting StringName 
- 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.
- predictiveAutoscale PredictivePolicy Autoscale Policy 
- the predictive autoscale policy mode.
- 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.
- targetResource StringLocation 
- the location of the resource that the autoscale setting should be added to.
- targetResource StringUri 
- 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.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- autoscaleSetting stringName 
- 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.
- predictiveAutoscale PredictivePolicy Autoscale Policy 
- the predictive autoscale policy mode.
- {[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.
- targetResource stringLocation 
- the location of the resource that the autoscale setting should be added to.
- targetResource stringUri 
- the resource identifier of the resource that the autoscale setting should be added to.
- profiles
Sequence[AutoscaleProfile Args] 
- 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_ strname 
- The name of the resource group. The name is case insensitive.
- autoscale_setting_ strname 
- 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[AutoscaleNotification Args] 
- the collection of notifications.
- predictive_autoscale_ Predictivepolicy Autoscale Policy Args 
- the predictive autoscale policy mode.
- 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_ strlocation 
- the location of the resource that the autoscale setting should be added to.
- target_resource_ struri 
- 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.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- autoscaleSetting StringName 
- 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.
- predictiveAutoscale Property MapPolicy 
- the predictive autoscale policy mode.
- 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.
- targetResource StringLocation 
- the location of the resource that the autoscale setting should be added to.
- targetResource StringUri 
- 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.Azure Native. Insights. Outputs. System Data Response 
- The system metadata related to the response.
- Type string
- Azure resource type
- Id string
- The provider-assigned unique ID for this managed resource.
- SystemData SystemData Response 
- The system metadata related to the response.
- Type string
- Azure resource type
- id String
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- The system metadata related to the response.
- type String
- Azure resource type
- id string
- The provider-assigned unique ID for this managed resource.
- systemData SystemData Response 
- 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 SystemData Response 
- 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.Azure Native. Insights. Operation Type 
- the operation associated with the notification and its value must be "scale"
- Email
Pulumi.Azure Native. Insights. Inputs. Email Notification 
- the email notification.
- Webhooks
List<Pulumi.Azure Native. Insights. Inputs. Webhook Notification> 
- 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.Azure Native. Insights. Inputs. Email Notification Response 
- the email notification.
- Webhooks
List<Pulumi.Azure Native. Insights. Inputs. Webhook Notification Response> 
- the collection of webhook notifications.
- Operation string
- the operation associated with the notification and its value must be "scale"
- Email
EmailNotification Response 
- the email notification.
- Webhooks
[]WebhookNotification Response 
- the collection of webhook notifications.
- operation String
- the operation associated with the notification and its value must be "scale"
- email
EmailNotification Response 
- the email notification.
- webhooks
List<WebhookNotification Response> 
- the collection of webhook notifications.
- operation string
- the operation associated with the notification and its value must be "scale"
- email
EmailNotification Response 
- the email notification.
- webhooks
WebhookNotification Response[] 
- the collection of webhook notifications.
- operation str
- the operation associated with the notification and its value must be "scale"
- email
EmailNotification Response 
- the email notification.
- webhooks
Sequence[WebhookNotification Response] 
- 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.Azure Native. Insights. Inputs. Scale Capacity 
- the number of instances that can be used during this profile.
- Name string
- the name of the profile.
- Rules
List<Pulumi.Azure Native. Insights. Inputs. Scale Rule> 
- the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
- FixedDate Pulumi.Azure Native. Insights. Inputs. Time Window 
- the specific date-time for the profile. This element is not used if the Recurrence element is used.
- Recurrence
Pulumi.Azure Native. 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.Azure Native. Insights. Inputs. Scale Capacity Response 
- the number of instances that can be used during this profile.
- Name string
- the name of the profile.
- Rules
List<Pulumi.Azure Native. Insights. Inputs. Scale Rule Response> 
- the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
- FixedDate Pulumi.Azure Native. Insights. Inputs. Time Window Response 
- the specific date-time for the profile. This element is not used if the Recurrence element is used.
- Recurrence
Pulumi.Azure Native. Insights. Inputs. Recurrence Response 
- the repeating times at which this profile begins. This element is not used if the FixedDate element is used.
- Capacity
ScaleCapacity Response 
- the number of instances that can be used during this profile.
- Name string
- the name of the profile.
- Rules
[]ScaleRule Response 
- the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
- FixedDate TimeWindow Response 
- 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
ScaleCapacity Response 
- the number of instances that can be used during this profile.
- name String
- the name of the profile.
- rules
List<ScaleRule Response> 
- the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
- fixedDate TimeWindow Response 
- 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
ScaleCapacity Response 
- the number of instances that can be used during this profile.
- name string
- the name of the profile.
- rules
ScaleRule Response[] 
- the collection of rules that provide the triggers and parameters for the scaling action. A maximum of 10 rules can be specified.
- fixedDate TimeWindow Response 
- 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
ScaleCapacity Response 
- the number of instances that can be used during this profile.
- name str
- the name of the profile.
- rules
Sequence[ScaleRule Response] 
- 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 Response 
- 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
- GreaterThan Or Equal 
- GreaterThanOrEqual
- LessThan 
- LessThan
- LessThan Or Equal 
- LessThanOrEqual
- ComparisonOperation Type Equals 
- Equals
- ComparisonOperation Type Not Equals 
- NotEquals
- ComparisonOperation Type Greater Than 
- GreaterThan
- ComparisonOperation Type Greater Than Or Equal 
- GreaterThanOrEqual
- ComparisonOperation Type Less Than 
- LessThan
- ComparisonOperation Type Less Than Or Equal 
- LessThanOrEqual
- Equals
- Equals
- NotEquals 
- NotEquals
- GreaterThan 
- GreaterThan
- GreaterThan Or Equal 
- GreaterThanOrEqual
- LessThan 
- LessThan
- LessThan Or Equal 
- LessThanOrEqual
- Equals
- Equals
- NotEquals 
- NotEquals
- GreaterThan 
- GreaterThan
- GreaterThan Or Equal 
- GreaterThanOrEqual
- LessThan 
- LessThan
- LessThan Or Equal 
- 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
- "GreaterThan Or Equal" 
- GreaterThanOrEqual
- "LessThan" 
- LessThan
- "LessThan Or Equal" 
- 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.
- SendTo boolSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- SendTo boolSubscription Co Administrators 
- 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.
- SendTo boolSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- SendTo boolSubscription Co Administrators 
- 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.
- sendTo BooleanSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- sendTo BooleanSubscription Co Administrators 
- 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.
- sendTo booleanSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- sendTo booleanSubscription Co Administrators 
- 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_ boolsubscription_ administrator 
- a value indicating whether to send email to subscription administrator.
- send_to_ boolsubscription_ co_ administrators 
- 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.
- sendTo BooleanSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- sendTo BooleanSubscription Co Administrators 
- 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.
- SendTo boolSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- SendTo boolSubscription Co Administrators 
- 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.
- SendTo boolSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- SendTo boolSubscription Co Administrators 
- 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.
- sendTo BooleanSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- sendTo BooleanSubscription Co Administrators 
- 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.
- sendTo booleanSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- sendTo booleanSubscription Co Administrators 
- 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_ boolsubscription_ administrator 
- a value indicating whether to send email to subscription administrator.
- send_to_ boolsubscription_ co_ administrators 
- 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.
- sendTo BooleanSubscription Administrator 
- a value indicating whether to send email to subscription administrator.
- sendTo BooleanSubscription Co Administrators 
- a value indicating whether to send email to subscription co-administrators.
MetricStatisticType, MetricStatisticTypeArgs      
- Average
- Average
- Min
- Min
- Max
- Max
- Sum
- Sum
- Count
- Count
- MetricStatistic Type Average 
- Average
- MetricStatistic Type Min 
- Min
- MetricStatistic Type Max 
- Max
- MetricStatistic Type Sum 
- Sum
- MetricStatistic Type 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
- "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.
- MetricResource stringUri 
- the resource identifier of the resource the rule monitors.
- Operator
Pulumi.Azure Native. Insights. Comparison Operation Type 
- the operator that is used to compare the metric data and the threshold.
- Statistic
Pulumi.Azure Native. Insights. Metric Statistic Type 
- 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.Azure Native. Insights. Time Aggregation Type 
- 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.Azure Native. Insights. Inputs. Scale Rule Metric Dimension> 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- DividePer boolInstance 
- a value indicating whether metric should divide per instance.
- MetricNamespace string
- the namespace of the metric that defines what the rule monitors.
- MetricResource stringLocation 
- the location of the resource the rule monitors.
- MetricName string
- the name of the metric that defines what the rule monitors.
- MetricResource stringUri 
- the resource identifier of the resource the rule monitors.
- Operator
ComparisonOperation Type 
- the operator that is used to compare the metric data and the threshold.
- Statistic
MetricStatistic Type 
- 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 TimeAggregation Type 
- 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
[]ScaleRule Metric Dimension 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- DividePer boolInstance 
- a value indicating whether metric should divide per instance.
- MetricNamespace string
- the namespace of the metric that defines what the rule monitors.
- MetricResource stringLocation 
- the location of the resource the rule monitors.
- metricName String
- the name of the metric that defines what the rule monitors.
- metricResource StringUri 
- the resource identifier of the resource the rule monitors.
- operator
ComparisonOperation Type 
- the operator that is used to compare the metric data and the threshold.
- statistic
MetricStatistic Type 
- 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 TimeAggregation Type 
- 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<ScaleRule Metric Dimension> 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- dividePer BooleanInstance 
- a value indicating whether metric should divide per instance.
- metricNamespace String
- the namespace of the metric that defines what the rule monitors.
- metricResource StringLocation 
- the location of the resource the rule monitors.
- metricName string
- the name of the metric that defines what the rule monitors.
- metricResource stringUri 
- the resource identifier of the resource the rule monitors.
- operator
ComparisonOperation Type 
- the operator that is used to compare the metric data and the threshold.
- statistic
MetricStatistic Type 
- 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 TimeAggregation Type 
- 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
ScaleRule Metric Dimension[] 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- dividePer booleanInstance 
- a value indicating whether metric should divide per instance.
- metricNamespace string
- the namespace of the metric that defines what the rule monitors.
- metricResource stringLocation 
- the location of the resource the rule monitors.
- metric_name str
- the name of the metric that defines what the rule monitors.
- metric_resource_ struri 
- the resource identifier of the resource the rule monitors.
- operator
ComparisonOperation Type 
- the operator that is used to compare the metric data and the threshold.
- statistic
MetricStatistic Type 
- 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 TimeAggregation Type 
- 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[ScaleRule Metric Dimension] 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- divide_per_ boolinstance 
- 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_ strlocation 
- the location of the resource the rule monitors.
- metricName String
- the name of the metric that defines what the rule monitors.
- metricResource StringUri 
- the resource identifier of the resource the rule monitors.
- operator
"Equals" | "NotEquals" | "Greater Than" | "Greater Than Or Equal" | "Less Than" | "Less Than Or Equal" 
- 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"]}].
- dividePer BooleanInstance 
- a value indicating whether metric should divide per instance.
- metricNamespace String
- the namespace of the metric that defines what the rule monitors.
- metricResource StringLocation 
- the location of the resource the rule monitors.
MetricTriggerResponse, MetricTriggerResponseArgs      
- MetricName string
- the name of the metric that defines what the rule monitors.
- MetricResource stringUri 
- 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.Azure Native. Insights. Inputs. Scale Rule Metric Dimension Response> 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- DividePer boolInstance 
- a value indicating whether metric should divide per instance.
- MetricNamespace string
- the namespace of the metric that defines what the rule monitors.
- MetricResource stringLocation 
- the location of the resource the rule monitors.
- MetricName string
- the name of the metric that defines what the rule monitors.
- MetricResource stringUri 
- 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
[]ScaleRule Metric Dimension Response 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- DividePer boolInstance 
- a value indicating whether metric should divide per instance.
- MetricNamespace string
- the namespace of the metric that defines what the rule monitors.
- MetricResource stringLocation 
- the location of the resource the rule monitors.
- metricName String
- the name of the metric that defines what the rule monitors.
- metricResource StringUri 
- 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<ScaleRule Metric Dimension Response> 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- dividePer BooleanInstance 
- a value indicating whether metric should divide per instance.
- metricNamespace String
- the namespace of the metric that defines what the rule monitors.
- metricResource StringLocation 
- the location of the resource the rule monitors.
- metricName string
- the name of the metric that defines what the rule monitors.
- metricResource stringUri 
- 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
ScaleRule Metric Dimension Response[] 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- dividePer booleanInstance 
- a value indicating whether metric should divide per instance.
- metricNamespace string
- the namespace of the metric that defines what the rule monitors.
- metricResource stringLocation 
- the location of the resource the rule monitors.
- metric_name str
- the name of the metric that defines what the rule monitors.
- metric_resource_ struri 
- 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[ScaleRule Metric Dimension Response] 
- List of dimension conditions. For example: [{"DimensionName":"AppName","Operator":"Equals","Values":["App1"]},{"DimensionName":"Deployment","Operator":"Equals","Values":["default"]}].
- divide_per_ boolinstance 
- 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_ strlocation 
- the location of the resource the rule monitors.
- metricName String
- the name of the metric that defines what the rule monitors.
- metricResource StringUri 
- 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"]}].
- dividePer BooleanInstance 
- a value indicating whether metric should divide per instance.
- metricNamespace String
- the namespace of the metric that defines what the rule monitors.
- metricResource StringLocation 
- the location of the resource the rule monitors.
OperationType, OperationTypeArgs    
- Scale
- Scale
- OperationType Scale 
- Scale
- Scale
- Scale
- Scale
- Scale
- SCALE
- Scale
- "Scale"
- Scale
PredictiveAutoscalePolicy, PredictiveAutoscalePolicyArgs      
- ScaleMode Pulumi.Azure Native. Insights. Predictive Autoscale Policy Scale Mode 
- the predictive autoscale mode
- ScaleLook stringAhead Time 
- 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 PredictiveAutoscale Policy Scale Mode 
- the predictive autoscale mode
- ScaleLook stringAhead Time 
- 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 PredictiveAutoscale Policy Scale Mode 
- the predictive autoscale mode
- scaleLook StringAhead Time 
- 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 PredictiveAutoscale Policy Scale Mode 
- the predictive autoscale mode
- scaleLook stringAhead Time 
- 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 PredictiveAutoscale Policy Scale Mode 
- the predictive autoscale mode
- scale_look_ strahead_ time 
- 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
- scaleLook StringAhead Time 
- 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
- ScaleLook stringAhead Time 
- 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
- ScaleLook stringAhead Time 
- 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
- scaleLook StringAhead Time 
- 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
- scaleLook stringAhead Time 
- 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_ strahead_ time 
- 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
- scaleLook StringAhead Time 
- 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
- PredictiveAutoscale Policy Scale Mode Disabled 
- Disabled
- PredictiveAutoscale Policy Scale Mode Forecast Only 
- ForecastOnly
- PredictiveAutoscale Policy Scale Mode Enabled 
- 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.Azure Native. Insights. Recurrence Frequency 
- 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.Azure Native. Insights. Inputs. Recurrent Schedule 
- 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
- RecurrenceFrequency None 
- None
- RecurrenceFrequency Second 
- Second
- RecurrenceFrequency Minute 
- Minute
- RecurrenceFrequency Hour 
- Hour
- RecurrenceFrequency Day 
- Day
- RecurrenceFrequency Week 
- Week
- RecurrenceFrequency Month 
- Month
- RecurrenceFrequency 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
- "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.Azure Native. Insights. Inputs. Recurrent Schedule Response 
- 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
RecurrentSchedule Response 
- 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
RecurrentSchedule Response 
- 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
RecurrentSchedule Response 
- 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
RecurrentSchedule Response 
- 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.Azure Native. Insights. Scale Direction 
- the scale direction. Whether the scaling action increases or decreases the number of instances.
- Type
Pulumi.Azure Native. Insights. Scale Type 
- 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" | "Percent Change Count" | "Exact Count" | "Service Allowed Next Value" 
- 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
- ScaleDirection None 
- None
- ScaleDirection Increase 
- Increase
- ScaleDirection Decrease 
- 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.Azure Native. Insights. Inputs. Metric Trigger 
- the trigger that results in a scaling action.
- ScaleAction Pulumi.Azure Native. Insights. Inputs. Scale Action 
- 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.Azure Native. Insights. Scale Rule Metric Dimension Operation Type 
- 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 | ScaleRule Metric Dimension Operation Type 
- 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 | ScaleRule Metric Dimension Operation Type 
- 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 | ScaleRule Metric Dimension Operation Type 
- 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 | ScaleRule Metric Dimension Operation Type 
- 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
- ScaleRule Metric Dimension Operation Type Equals 
- Equals
- ScaleRule Metric Dimension Operation Type Not Equals 
- 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 Pulumi.Azure Native. Insights. Inputs. Metric Trigger Response 
- the trigger that results in a scaling action.
- ScaleAction Pulumi.Azure Native. Insights. Inputs. Scale Action Response 
- the parameters for the scaling action.
- MetricTrigger MetricTrigger Response 
- the trigger that results in a scaling action.
- ScaleAction ScaleAction Response 
- the parameters for the scaling action.
- metricTrigger MetricTrigger Response 
- the trigger that results in a scaling action.
- scaleAction ScaleAction Response 
- the parameters for the scaling action.
- metricTrigger MetricTrigger Response 
- the trigger that results in a scaling action.
- scaleAction ScaleAction Response 
- the parameters for the scaling action.
- metric_trigger MetricTrigger Response 
- the trigger that results in a scaling action.
- scale_action ScaleAction Response 
- 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
- PercentChange Count 
- PercentChangeCount
- ExactCount 
- ExactCount
- ServiceAllowed Next Value 
- ServiceAllowedNextValue
- ScaleType Change Count 
- ChangeCount
- ScaleType Percent Change Count 
- PercentChangeCount
- ScaleType Exact Count 
- ExactCount
- ScaleType Service Allowed Next Value 
- ServiceAllowedNextValue
- ChangeCount 
- ChangeCount
- PercentChange Count 
- PercentChangeCount
- ExactCount 
- ExactCount
- ServiceAllowed Next Value 
- ServiceAllowedNextValue
- ChangeCount 
- ChangeCount
- PercentChange Count 
- PercentChangeCount
- ExactCount 
- ExactCount
- ServiceAllowed Next Value 
- ServiceAllowedNextValue
- CHANGE_COUNT
- ChangeCount
- PERCENT_CHANGE_COUNT
- PercentChangeCount
- EXACT_COUNT
- ExactCount
- SERVICE_ALLOWED_NEXT_VALUE
- ServiceAllowedNextValue
- "ChangeCount" 
- ChangeCount
- "PercentChange Count" 
- PercentChangeCount
- "ExactCount" 
- ExactCount
- "ServiceAllowed Next Value" 
- ServiceAllowedNextValue
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
TimeAggregationType, TimeAggregationTypeArgs      
- Average
- Average
- Minimum
- Minimum
- Maximum
- Maximum
- Total
- Total
- Count
- Count
- Last
- Last
- TimeAggregation Type Average 
- Average
- TimeAggregation Type Minimum 
- Minimum
- TimeAggregation Type Maximum 
- Maximum
- TimeAggregation Type Total 
- Total
- TimeAggregation Type Count 
- Count
- TimeAggregation Type 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
- "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