1. Packages
  2. Azure Classic
  3. API Docs
  4. automanage
  5. Configuration

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

azure.automanage.Configuration

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

    Manages an Automanage Configuration.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West Europe",
        });
    
        var exampleConfiguration = new Azure.Automanage.Configuration("exampleConfiguration", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            Location = exampleResourceGroup.Location,
            Antimalware = new Azure.Automanage.Inputs.ConfigurationAntimalwareArgs
            {
                Exclusions = new Azure.Automanage.Inputs.ConfigurationAntimalwareExclusionsArgs
                {
                    Extensions = "exe;dll",
                    Paths = "C:\\Windows\\Temp;D:\\Temp",
                    Processes = "svchost.exe;notepad.exe",
                },
                RealTimeProtectionEnabled = true,
                ScheduledScanEnabled = true,
                ScheduledScanType = "Quick",
                ScheduledScanDay = 1,
                ScheduledScanTimeInMinutes = 1339,
            },
            AzureSecurityBaseline = new Azure.Automanage.Inputs.ConfigurationAzureSecurityBaselineArgs
            {
                AssignmentType = "ApplyAndAutoCorrect",
            },
            AutomationAccountEnabled = true,
            Backup = new Azure.Automanage.Inputs.ConfigurationBackupArgs
            {
                PolicyName = "acctest-backup-policy-%d",
                TimeZone = "UTC",
                InstantRpRetentionRangeInDays = 2,
                SchedulePolicy = new Azure.Automanage.Inputs.ConfigurationBackupSchedulePolicyArgs
                {
                    ScheduleRunFrequency = "Daily",
                    ScheduleRunDays = new[]
                    {
                        "Monday",
                        "Tuesday",
                    },
                    ScheduleRunTimes = new[]
                    {
                        "12:00",
                    },
                    SchedulePolicyType = "SimpleSchedulePolicy",
                },
                RetentionPolicy = new Azure.Automanage.Inputs.ConfigurationBackupRetentionPolicyArgs
                {
                    RetentionPolicyType = "LongTermRetentionPolicy",
                    DailySchedule = new Azure.Automanage.Inputs.ConfigurationBackupRetentionPolicyDailyScheduleArgs
                    {
                        RetentionTimes = new[]
                        {
                            "12:00",
                        },
                        RetentionDuration = new Azure.Automanage.Inputs.ConfigurationBackupRetentionPolicyDailyScheduleRetentionDurationArgs
                        {
                            Count = 7,
                            DurationType = "Days",
                        },
                    },
                    WeeklySchedule = new Azure.Automanage.Inputs.ConfigurationBackupRetentionPolicyWeeklyScheduleArgs
                    {
                        RetentionTimes = new[]
                        {
                            "14:00",
                        },
                        RetentionDuration = new Azure.Automanage.Inputs.ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDurationArgs
                        {
                            Count = 4,
                            DurationType = "Weeks",
                        },
                    },
                },
            },
            BootDiagnosticsEnabled = true,
            DefenderForCloudEnabled = true,
            GuestConfigurationEnabled = true,
            LogAnalyticsEnabled = true,
            StatusChangeAlertEnabled = true,
            Tags = 
            {
                { "env", "test" },
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/automanage"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = automanage.NewConfiguration(ctx, "exampleConfiguration", &automanage.ConfigurationArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			Antimalware: &automanage.ConfigurationAntimalwareArgs{
    				Exclusions: &automanage.ConfigurationAntimalwareExclusionsArgs{
    					Extensions: pulumi.String("exe;dll"),
    					Paths:      pulumi.String("C:\\Windows\\Temp;D:\\Temp"),
    					Processes:  pulumi.String("svchost.exe;notepad.exe"),
    				},
    				RealTimeProtectionEnabled:  pulumi.Bool(true),
    				ScheduledScanEnabled:       pulumi.Bool(true),
    				ScheduledScanType:          pulumi.String("Quick"),
    				ScheduledScanDay:           pulumi.Int(1),
    				ScheduledScanTimeInMinutes: pulumi.Int(1339),
    			},
    			AzureSecurityBaseline: &automanage.ConfigurationAzureSecurityBaselineArgs{
    				AssignmentType: pulumi.String("ApplyAndAutoCorrect"),
    			},
    			AutomationAccountEnabled: pulumi.Bool(true),
    			Backup: &automanage.ConfigurationBackupArgs{
    				PolicyName:                    pulumi.String("acctest-backup-policy-%d"),
    				TimeZone:                      pulumi.String("UTC"),
    				InstantRpRetentionRangeInDays: pulumi.Int(2),
    				SchedulePolicy: &automanage.ConfigurationBackupSchedulePolicyArgs{
    					ScheduleRunFrequency: pulumi.String("Daily"),
    					ScheduleRunDays: pulumi.StringArray{
    						pulumi.String("Monday"),
    						pulumi.String("Tuesday"),
    					},
    					ScheduleRunTimes: pulumi.StringArray{
    						pulumi.String("12:00"),
    					},
    					SchedulePolicyType: pulumi.String("SimpleSchedulePolicy"),
    				},
    				RetentionPolicy: &automanage.ConfigurationBackupRetentionPolicyArgs{
    					RetentionPolicyType: pulumi.String("LongTermRetentionPolicy"),
    					DailySchedule: &automanage.ConfigurationBackupRetentionPolicyDailyScheduleArgs{
    						RetentionTimes: pulumi.StringArray{
    							pulumi.String("12:00"),
    						},
    						RetentionDuration: &automanage.ConfigurationBackupRetentionPolicyDailyScheduleRetentionDurationArgs{
    							Count:        pulumi.Int(7),
    							DurationType: pulumi.String("Days"),
    						},
    					},
    					WeeklySchedule: &automanage.ConfigurationBackupRetentionPolicyWeeklyScheduleArgs{
    						RetentionTimes: pulumi.StringArray{
    							pulumi.String("14:00"),
    						},
    						RetentionDuration: &automanage.ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDurationArgs{
    							Count:        pulumi.Int(4),
    							DurationType: pulumi.String("Weeks"),
    						},
    					},
    				},
    			},
    			BootDiagnosticsEnabled:    pulumi.Bool(true),
    			DefenderForCloudEnabled:   pulumi.Bool(true),
    			GuestConfigurationEnabled: pulumi.Bool(true),
    			LogAnalyticsEnabled:       pulumi.Bool(true),
    			StatusChangeAlertEnabled:  pulumi.Bool(true),
    			Tags: pulumi.StringMap{
    				"env": pulumi.String("test"),
    			},
    		})
    		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.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.automanage.Configuration;
    import com.pulumi.azure.automanage.ConfigurationArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationAntimalwareArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationAntimalwareExclusionsArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationAzureSecurityBaselineArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationBackupArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationBackupSchedulePolicyArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationBackupRetentionPolicyArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationBackupRetentionPolicyDailyScheduleArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationBackupRetentionPolicyDailyScheduleRetentionDurationArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationBackupRetentionPolicyWeeklyScheduleArgs;
    import com.pulumi.azure.automanage.inputs.ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDurationArgs;
    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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            var exampleConfiguration = new Configuration("exampleConfiguration", ConfigurationArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .location(exampleResourceGroup.location())
                .antimalware(ConfigurationAntimalwareArgs.builder()
                    .exclusions(ConfigurationAntimalwareExclusionsArgs.builder()
                        .extensions("exe;dll")
                        .paths("C:\\Windows\\Temp;D:\\Temp")
                        .processes("svchost.exe;notepad.exe")
                        .build())
                    .realTimeProtectionEnabled(true)
                    .scheduledScanEnabled(true)
                    .scheduledScanType("Quick")
                    .scheduledScanDay(1)
                    .scheduledScanTimeInMinutes(1339)
                    .build())
                .azureSecurityBaseline(ConfigurationAzureSecurityBaselineArgs.builder()
                    .assignmentType("ApplyAndAutoCorrect")
                    .build())
                .automationAccountEnabled(true)
                .backup(ConfigurationBackupArgs.builder()
                    .policyName("acctest-backup-policy-%d")
                    .timeZone("UTC")
                    .instantRpRetentionRangeInDays(2)
                    .schedulePolicy(ConfigurationBackupSchedulePolicyArgs.builder()
                        .scheduleRunFrequency("Daily")
                        .scheduleRunDays(                    
                            "Monday",
                            "Tuesday")
                        .scheduleRunTimes("12:00")
                        .schedulePolicyType("SimpleSchedulePolicy")
                        .build())
                    .retentionPolicy(ConfigurationBackupRetentionPolicyArgs.builder()
                        .retentionPolicyType("LongTermRetentionPolicy")
                        .dailySchedule(ConfigurationBackupRetentionPolicyDailyScheduleArgs.builder()
                            .retentionTimes("12:00")
                            .retentionDuration(ConfigurationBackupRetentionPolicyDailyScheduleRetentionDurationArgs.builder()
                                .count(7)
                                .durationType("Days")
                                .build())
                            .build())
                        .weeklySchedule(ConfigurationBackupRetentionPolicyWeeklyScheduleArgs.builder()
                            .retentionTimes("14:00")
                            .retentionDuration(ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDurationArgs.builder()
                                .count(4)
                                .durationType("Weeks")
                                .build())
                            .build())
                        .build())
                    .build())
                .bootDiagnosticsEnabled(true)
                .defenderForCloudEnabled(true)
                .guestConfigurationEnabled(true)
                .logAnalyticsEnabled(true)
                .statusChangeAlertEnabled(true)
                .tags(Map.of("env", "test"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_configuration = azure.automanage.Configuration("exampleConfiguration",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        antimalware=azure.automanage.ConfigurationAntimalwareArgs(
            exclusions=azure.automanage.ConfigurationAntimalwareExclusionsArgs(
                extensions="exe;dll",
                paths="C:\\Windows\\Temp;D:\\Temp",
                processes="svchost.exe;notepad.exe",
            ),
            real_time_protection_enabled=True,
            scheduled_scan_enabled=True,
            scheduled_scan_type="Quick",
            scheduled_scan_day=1,
            scheduled_scan_time_in_minutes=1339,
        ),
        azure_security_baseline=azure.automanage.ConfigurationAzureSecurityBaselineArgs(
            assignment_type="ApplyAndAutoCorrect",
        ),
        automation_account_enabled=True,
        backup=azure.automanage.ConfigurationBackupArgs(
            policy_name="acctest-backup-policy-%d",
            time_zone="UTC",
            instant_rp_retention_range_in_days=2,
            schedule_policy=azure.automanage.ConfigurationBackupSchedulePolicyArgs(
                schedule_run_frequency="Daily",
                schedule_run_days=[
                    "Monday",
                    "Tuesday",
                ],
                schedule_run_times=["12:00"],
                schedule_policy_type="SimpleSchedulePolicy",
            ),
            retention_policy=azure.automanage.ConfigurationBackupRetentionPolicyArgs(
                retention_policy_type="LongTermRetentionPolicy",
                daily_schedule=azure.automanage.ConfigurationBackupRetentionPolicyDailyScheduleArgs(
                    retention_times=["12:00"],
                    retention_duration=azure.automanage.ConfigurationBackupRetentionPolicyDailyScheduleRetentionDurationArgs(
                        count=7,
                        duration_type="Days",
                    ),
                ),
                weekly_schedule=azure.automanage.ConfigurationBackupRetentionPolicyWeeklyScheduleArgs(
                    retention_times=["14:00"],
                    retention_duration=azure.automanage.ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDurationArgs(
                        count=4,
                        duration_type="Weeks",
                    ),
                ),
            ),
        ),
        boot_diagnostics_enabled=True,
        defender_for_cloud_enabled=True,
        guest_configuration_enabled=True,
        log_analytics_enabled=True,
        status_change_alert_enabled=True,
        tags={
            "env": "test",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleConfiguration = new azure.automanage.Configuration("exampleConfiguration", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        antimalware: {
            exclusions: {
                extensions: "exe;dll",
                paths: "C:\\Windows\\Temp;D:\\Temp",
                processes: "svchost.exe;notepad.exe",
            },
            realTimeProtectionEnabled: true,
            scheduledScanEnabled: true,
            scheduledScanType: "Quick",
            scheduledScanDay: 1,
            scheduledScanTimeInMinutes: 1339,
        },
        azureSecurityBaseline: {
            assignmentType: "ApplyAndAutoCorrect",
        },
        automationAccountEnabled: true,
        backup: {
            policyName: "acctest-backup-policy-%d",
            timeZone: "UTC",
            instantRpRetentionRangeInDays: 2,
            schedulePolicy: {
                scheduleRunFrequency: "Daily",
                scheduleRunDays: [
                    "Monday",
                    "Tuesday",
                ],
                scheduleRunTimes: ["12:00"],
                schedulePolicyType: "SimpleSchedulePolicy",
            },
            retentionPolicy: {
                retentionPolicyType: "LongTermRetentionPolicy",
                dailySchedule: {
                    retentionTimes: ["12:00"],
                    retentionDuration: {
                        count: 7,
                        durationType: "Days",
                    },
                },
                weeklySchedule: {
                    retentionTimes: ["14:00"],
                    retentionDuration: {
                        count: 4,
                        durationType: "Weeks",
                    },
                },
            },
        },
        bootDiagnosticsEnabled: true,
        defenderForCloudEnabled: true,
        guestConfigurationEnabled: true,
        logAnalyticsEnabled: true,
        statusChangeAlertEnabled: true,
        tags: {
            env: "test",
        },
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West Europe
      exampleConfiguration:
        type: azure:automanage:Configuration
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          location: ${exampleResourceGroup.location}
          antimalware:
            exclusions:
              extensions: exe;dll
              paths: C:\Windows\Temp;D:\Temp
              processes: svchost.exe;notepad.exe
            realTimeProtectionEnabled: true
            scheduledScanEnabled: true
            scheduledScanType: Quick
            scheduledScanDay: 1
            scheduledScanTimeInMinutes: 1339
          azureSecurityBaseline:
            assignmentType: ApplyAndAutoCorrect
          automationAccountEnabled: true
          backup:
            policyName: acctest-backup-policy-%d
            timeZone: UTC
            instantRpRetentionRangeInDays: 2
            schedulePolicy:
              scheduleRunFrequency: Daily
              scheduleRunDays:
                - Monday
                - Tuesday
              scheduleRunTimes:
                - 12:00
              schedulePolicyType: SimpleSchedulePolicy
            retentionPolicy:
              retentionPolicyType: LongTermRetentionPolicy
              dailySchedule:
                retentionTimes:
                  - 12:00
                retentionDuration:
                  count: 7
                  durationType: Days
              weeklySchedule:
                retentionTimes:
                  - 14:00
                retentionDuration:
                  count: 4
                  durationType: Weeks
          bootDiagnosticsEnabled: true
          defenderForCloudEnabled: true
          guestConfigurationEnabled: true
          logAnalyticsEnabled: true
          statusChangeAlertEnabled: true
          tags:
            env: test
    

    Create Configuration Resource

    new Configuration(name: string, args: ConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def Configuration(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      antimalware: Optional[ConfigurationAntimalwareArgs] = None,
                      automation_account_enabled: Optional[bool] = None,
                      azure_security_baseline: Optional[ConfigurationAzureSecurityBaselineArgs] = None,
                      backup: Optional[ConfigurationBackupArgs] = None,
                      boot_diagnostics_enabled: Optional[bool] = None,
                      defender_for_cloud_enabled: Optional[bool] = None,
                      guest_configuration_enabled: Optional[bool] = None,
                      location: Optional[str] = None,
                      log_analytics_enabled: Optional[bool] = None,
                      name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      status_change_alert_enabled: Optional[bool] = None,
                      tags: Optional[Mapping[str, str]] = None)
    @overload
    def Configuration(resource_name: str,
                      args: ConfigurationArgs,
                      opts: Optional[ResourceOptions] = None)
    func NewConfiguration(ctx *Context, name string, args ConfigurationArgs, opts ...ResourceOption) (*Configuration, error)
    public Configuration(string name, ConfigurationArgs args, CustomResourceOptions? opts = null)
    public Configuration(String name, ConfigurationArgs args)
    public Configuration(String name, ConfigurationArgs args, CustomResourceOptions options)
    
    type: azure:automanage:Configuration
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ConfigurationArgs
    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 ConfigurationArgs
    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 ConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ConfigurationArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Configuration Resource Properties

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

    Inputs

    The Configuration resource accepts the following input properties:

    ResourceGroupName string

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    Antimalware ConfigurationAntimalware

    A antimalware block as defined below.

    AutomationAccountEnabled bool

    Whether the automation account is enabled. Defaults to false.

    AzureSecurityBaseline ConfigurationAzureSecurityBaseline

    A azure_security_baseline block as defined below.

    Backup ConfigurationBackup

    A backup block as defined below.

    BootDiagnosticsEnabled bool

    Whether the boot diagnostics are enabled. Defaults to false.

    DefenderForCloudEnabled bool

    Whether the defender for cloud is enabled. Defaults to false.

    GuestConfigurationEnabled bool

    Whether the guest configuration is enabled. Defaults to false.

    Location string

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    LogAnalyticsEnabled bool

    Whether log analytics are enabled. Defaults to false.

    Name string

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    StatusChangeAlertEnabled bool

    Whether the status change alert is enabled. Defaults to false.

    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    ResourceGroupName string

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    Antimalware ConfigurationAntimalwareArgs

    A antimalware block as defined below.

    AutomationAccountEnabled bool

    Whether the automation account is enabled. Defaults to false.

    AzureSecurityBaseline ConfigurationAzureSecurityBaselineArgs

    A azure_security_baseline block as defined below.

    Backup ConfigurationBackupArgs

    A backup block as defined below.

    BootDiagnosticsEnabled bool

    Whether the boot diagnostics are enabled. Defaults to false.

    DefenderForCloudEnabled bool

    Whether the defender for cloud is enabled. Defaults to false.

    GuestConfigurationEnabled bool

    Whether the guest configuration is enabled. Defaults to false.

    Location string

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    LogAnalyticsEnabled bool

    Whether log analytics are enabled. Defaults to false.

    Name string

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    StatusChangeAlertEnabled bool

    Whether the status change alert is enabled. Defaults to false.

    Tags map[string]string

    A mapping of tags to assign to the resource.

    resourceGroupName String

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    antimalware ConfigurationAntimalware

    A antimalware block as defined below.

    automationAccountEnabled Boolean

    Whether the automation account is enabled. Defaults to false.

    azureSecurityBaseline ConfigurationAzureSecurityBaseline

    A azure_security_baseline block as defined below.

    backup ConfigurationBackup

    A backup block as defined below.

    bootDiagnosticsEnabled Boolean

    Whether the boot diagnostics are enabled. Defaults to false.

    defenderForCloudEnabled Boolean

    Whether the defender for cloud is enabled. Defaults to false.

    guestConfigurationEnabled Boolean

    Whether the guest configuration is enabled. Defaults to false.

    location String

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    logAnalyticsEnabled Boolean

    Whether log analytics are enabled. Defaults to false.

    name String

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    statusChangeAlertEnabled Boolean

    Whether the status change alert is enabled. Defaults to false.

    tags Map<String,String>

    A mapping of tags to assign to the resource.

    resourceGroupName string

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    antimalware ConfigurationAntimalware

    A antimalware block as defined below.

    automationAccountEnabled boolean

    Whether the automation account is enabled. Defaults to false.

    azureSecurityBaseline ConfigurationAzureSecurityBaseline

    A azure_security_baseline block as defined below.

    backup ConfigurationBackup

    A backup block as defined below.

    bootDiagnosticsEnabled boolean

    Whether the boot diagnostics are enabled. Defaults to false.

    defenderForCloudEnabled boolean

    Whether the defender for cloud is enabled. Defaults to false.

    guestConfigurationEnabled boolean

    Whether the guest configuration is enabled. Defaults to false.

    location string

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    logAnalyticsEnabled boolean

    Whether log analytics are enabled. Defaults to false.

    name string

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    statusChangeAlertEnabled boolean

    Whether the status change alert is enabled. Defaults to false.

    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    resource_group_name str

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    antimalware ConfigurationAntimalwareArgs

    A antimalware block as defined below.

    automation_account_enabled bool

    Whether the automation account is enabled. Defaults to false.

    azure_security_baseline ConfigurationAzureSecurityBaselineArgs

    A azure_security_baseline block as defined below.

    backup ConfigurationBackupArgs

    A backup block as defined below.

    boot_diagnostics_enabled bool

    Whether the boot diagnostics are enabled. Defaults to false.

    defender_for_cloud_enabled bool

    Whether the defender for cloud is enabled. Defaults to false.

    guest_configuration_enabled bool

    Whether the guest configuration is enabled. Defaults to false.

    location str

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    log_analytics_enabled bool

    Whether log analytics are enabled. Defaults to false.

    name str

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    status_change_alert_enabled bool

    Whether the status change alert is enabled. Defaults to false.

    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    resourceGroupName String

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    antimalware Property Map

    A antimalware block as defined below.

    automationAccountEnabled Boolean

    Whether the automation account is enabled. Defaults to false.

    azureSecurityBaseline Property Map

    A azure_security_baseline block as defined below.

    backup Property Map

    A backup block as defined below.

    bootDiagnosticsEnabled Boolean

    Whether the boot diagnostics are enabled. Defaults to false.

    defenderForCloudEnabled Boolean

    Whether the defender for cloud is enabled. Defaults to false.

    guestConfigurationEnabled Boolean

    Whether the guest configuration is enabled. Defaults to false.

    location String

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    logAnalyticsEnabled Boolean

    Whether log analytics are enabled. Defaults to false.

    name String

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    statusChangeAlertEnabled Boolean

    Whether the status change alert is enabled. Defaults to false.

    tags Map<String>

    A mapping of tags to assign to the resource.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing Configuration Resource

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

    public static get(name: string, id: Input<ID>, state?: ConfigurationState, opts?: CustomResourceOptions): Configuration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            antimalware: Optional[ConfigurationAntimalwareArgs] = None,
            automation_account_enabled: Optional[bool] = None,
            azure_security_baseline: Optional[ConfigurationAzureSecurityBaselineArgs] = None,
            backup: Optional[ConfigurationBackupArgs] = None,
            boot_diagnostics_enabled: Optional[bool] = None,
            defender_for_cloud_enabled: Optional[bool] = None,
            guest_configuration_enabled: Optional[bool] = None,
            location: Optional[str] = None,
            log_analytics_enabled: Optional[bool] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            status_change_alert_enabled: Optional[bool] = None,
            tags: Optional[Mapping[str, str]] = None) -> Configuration
    func GetConfiguration(ctx *Context, name string, id IDInput, state *ConfigurationState, opts ...ResourceOption) (*Configuration, error)
    public static Configuration Get(string name, Input<string> id, ConfigurationState? state, CustomResourceOptions? opts = null)
    public static Configuration get(String name, Output<String> id, ConfigurationState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Antimalware ConfigurationAntimalware

    A antimalware block as defined below.

    AutomationAccountEnabled bool

    Whether the automation account is enabled. Defaults to false.

    AzureSecurityBaseline ConfigurationAzureSecurityBaseline

    A azure_security_baseline block as defined below.

    Backup ConfigurationBackup

    A backup block as defined below.

    BootDiagnosticsEnabled bool

    Whether the boot diagnostics are enabled. Defaults to false.

    DefenderForCloudEnabled bool

    Whether the defender for cloud is enabled. Defaults to false.

    GuestConfigurationEnabled bool

    Whether the guest configuration is enabled. Defaults to false.

    Location string

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    LogAnalyticsEnabled bool

    Whether log analytics are enabled. Defaults to false.

    Name string

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    ResourceGroupName string

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    StatusChangeAlertEnabled bool

    Whether the status change alert is enabled. Defaults to false.

    Tags Dictionary<string, string>

    A mapping of tags to assign to the resource.

    Antimalware ConfigurationAntimalwareArgs

    A antimalware block as defined below.

    AutomationAccountEnabled bool

    Whether the automation account is enabled. Defaults to false.

    AzureSecurityBaseline ConfigurationAzureSecurityBaselineArgs

    A azure_security_baseline block as defined below.

    Backup ConfigurationBackupArgs

    A backup block as defined below.

    BootDiagnosticsEnabled bool

    Whether the boot diagnostics are enabled. Defaults to false.

    DefenderForCloudEnabled bool

    Whether the defender for cloud is enabled. Defaults to false.

    GuestConfigurationEnabled bool

    Whether the guest configuration is enabled. Defaults to false.

    Location string

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    LogAnalyticsEnabled bool

    Whether log analytics are enabled. Defaults to false.

    Name string

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    ResourceGroupName string

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    StatusChangeAlertEnabled bool

    Whether the status change alert is enabled. Defaults to false.

    Tags map[string]string

    A mapping of tags to assign to the resource.

    antimalware ConfigurationAntimalware

    A antimalware block as defined below.

    automationAccountEnabled Boolean

    Whether the automation account is enabled. Defaults to false.

    azureSecurityBaseline ConfigurationAzureSecurityBaseline

    A azure_security_baseline block as defined below.

    backup ConfigurationBackup

    A backup block as defined below.

    bootDiagnosticsEnabled Boolean

    Whether the boot diagnostics are enabled. Defaults to false.

    defenderForCloudEnabled Boolean

    Whether the defender for cloud is enabled. Defaults to false.

    guestConfigurationEnabled Boolean

    Whether the guest configuration is enabled. Defaults to false.

    location String

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    logAnalyticsEnabled Boolean

    Whether log analytics are enabled. Defaults to false.

    name String

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    resourceGroupName String

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    statusChangeAlertEnabled Boolean

    Whether the status change alert is enabled. Defaults to false.

    tags Map<String,String>

    A mapping of tags to assign to the resource.

    antimalware ConfigurationAntimalware

    A antimalware block as defined below.

    automationAccountEnabled boolean

    Whether the automation account is enabled. Defaults to false.

    azureSecurityBaseline ConfigurationAzureSecurityBaseline

    A azure_security_baseline block as defined below.

    backup ConfigurationBackup

    A backup block as defined below.

    bootDiagnosticsEnabled boolean

    Whether the boot diagnostics are enabled. Defaults to false.

    defenderForCloudEnabled boolean

    Whether the defender for cloud is enabled. Defaults to false.

    guestConfigurationEnabled boolean

    Whether the guest configuration is enabled. Defaults to false.

    location string

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    logAnalyticsEnabled boolean

    Whether log analytics are enabled. Defaults to false.

    name string

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    resourceGroupName string

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    statusChangeAlertEnabled boolean

    Whether the status change alert is enabled. Defaults to false.

    tags {[key: string]: string}

    A mapping of tags to assign to the resource.

    antimalware ConfigurationAntimalwareArgs

    A antimalware block as defined below.

    automation_account_enabled bool

    Whether the automation account is enabled. Defaults to false.

    azure_security_baseline ConfigurationAzureSecurityBaselineArgs

    A azure_security_baseline block as defined below.

    backup ConfigurationBackupArgs

    A backup block as defined below.

    boot_diagnostics_enabled bool

    Whether the boot diagnostics are enabled. Defaults to false.

    defender_for_cloud_enabled bool

    Whether the defender for cloud is enabled. Defaults to false.

    guest_configuration_enabled bool

    Whether the guest configuration is enabled. Defaults to false.

    location str

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    log_analytics_enabled bool

    Whether log analytics are enabled. Defaults to false.

    name str

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    resource_group_name str

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    status_change_alert_enabled bool

    Whether the status change alert is enabled. Defaults to false.

    tags Mapping[str, str]

    A mapping of tags to assign to the resource.

    antimalware Property Map

    A antimalware block as defined below.

    automationAccountEnabled Boolean

    Whether the automation account is enabled. Defaults to false.

    azureSecurityBaseline Property Map

    A azure_security_baseline block as defined below.

    backup Property Map

    A backup block as defined below.

    bootDiagnosticsEnabled Boolean

    Whether the boot diagnostics are enabled. Defaults to false.

    defenderForCloudEnabled Boolean

    Whether the defender for cloud is enabled. Defaults to false.

    guestConfigurationEnabled Boolean

    Whether the guest configuration is enabled. Defaults to false.

    location String

    The Azure Region where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    logAnalyticsEnabled Boolean

    Whether log analytics are enabled. Defaults to false.

    name String

    The name which should be used for this Automanage Configuration. Changing this forces a new Automanage Configuration to be created.

    resourceGroupName String

    The name of the Resource Group where the Automanage Configuration should exist. Changing this forces a new Automanage Configuration to be created.

    statusChangeAlertEnabled Boolean

    Whether the status change alert is enabled. Defaults to false.

    tags Map<String>

    A mapping of tags to assign to the resource.

    Supporting Types

    ConfigurationAntimalware, ConfigurationAntimalwareArgs

    Exclusions ConfigurationAntimalwareExclusions

    A exclusions block as defined below.

    RealTimeProtectionEnabled bool

    Whether the real time protection is enabled. Defaults to false.

    ScheduledScanDay int

    The day of the scheduled scan. Possible values are 0 to 8 where 0 is daily, 1 to 7 are the days of the week and 8 is Disabled. Defaults to 8.

    ScheduledScanEnabled bool

    Whether the scheduled scan is enabled. Defaults to false.

    ScheduledScanTimeInMinutes int

    The time of the scheduled scan in minutes. Possible values are 0 to 1439 where 0 is 12:00 AM and 1439 is 11:59 PM.

    ScheduledScanType string

    The type of the scheduled scan. Possible values are Quick and Full. Defaults to Quick.

    Exclusions ConfigurationAntimalwareExclusions

    A exclusions block as defined below.

    RealTimeProtectionEnabled bool

    Whether the real time protection is enabled. Defaults to false.

    ScheduledScanDay int

    The day of the scheduled scan. Possible values are 0 to 8 where 0 is daily, 1 to 7 are the days of the week and 8 is Disabled. Defaults to 8.

    ScheduledScanEnabled bool

    Whether the scheduled scan is enabled. Defaults to false.

    ScheduledScanTimeInMinutes int

    The time of the scheduled scan in minutes. Possible values are 0 to 1439 where 0 is 12:00 AM and 1439 is 11:59 PM.

    ScheduledScanType string

    The type of the scheduled scan. Possible values are Quick and Full. Defaults to Quick.

    exclusions ConfigurationAntimalwareExclusions

    A exclusions block as defined below.

    realTimeProtectionEnabled Boolean

    Whether the real time protection is enabled. Defaults to false.

    scheduledScanDay Integer

    The day of the scheduled scan. Possible values are 0 to 8 where 0 is daily, 1 to 7 are the days of the week and 8 is Disabled. Defaults to 8.

    scheduledScanEnabled Boolean

    Whether the scheduled scan is enabled. Defaults to false.

    scheduledScanTimeInMinutes Integer

    The time of the scheduled scan in minutes. Possible values are 0 to 1439 where 0 is 12:00 AM and 1439 is 11:59 PM.

    scheduledScanType String

    The type of the scheduled scan. Possible values are Quick and Full. Defaults to Quick.

    exclusions ConfigurationAntimalwareExclusions

    A exclusions block as defined below.

    realTimeProtectionEnabled boolean

    Whether the real time protection is enabled. Defaults to false.

    scheduledScanDay number

    The day of the scheduled scan. Possible values are 0 to 8 where 0 is daily, 1 to 7 are the days of the week and 8 is Disabled. Defaults to 8.

    scheduledScanEnabled boolean

    Whether the scheduled scan is enabled. Defaults to false.

    scheduledScanTimeInMinutes number

    The time of the scheduled scan in minutes. Possible values are 0 to 1439 where 0 is 12:00 AM and 1439 is 11:59 PM.

    scheduledScanType string

    The type of the scheduled scan. Possible values are Quick and Full. Defaults to Quick.

    exclusions ConfigurationAntimalwareExclusions

    A exclusions block as defined below.

    real_time_protection_enabled bool

    Whether the real time protection is enabled. Defaults to false.

    scheduled_scan_day int

    The day of the scheduled scan. Possible values are 0 to 8 where 0 is daily, 1 to 7 are the days of the week and 8 is Disabled. Defaults to 8.

    scheduled_scan_enabled bool

    Whether the scheduled scan is enabled. Defaults to false.

    scheduled_scan_time_in_minutes int

    The time of the scheduled scan in minutes. Possible values are 0 to 1439 where 0 is 12:00 AM and 1439 is 11:59 PM.

    scheduled_scan_type str

    The type of the scheduled scan. Possible values are Quick and Full. Defaults to Quick.

    exclusions Property Map

    A exclusions block as defined below.

    realTimeProtectionEnabled Boolean

    Whether the real time protection is enabled. Defaults to false.

    scheduledScanDay Number

    The day of the scheduled scan. Possible values are 0 to 8 where 0 is daily, 1 to 7 are the days of the week and 8 is Disabled. Defaults to 8.

    scheduledScanEnabled Boolean

    Whether the scheduled scan is enabled. Defaults to false.

    scheduledScanTimeInMinutes Number

    The time of the scheduled scan in minutes. Possible values are 0 to 1439 where 0 is 12:00 AM and 1439 is 11:59 PM.

    scheduledScanType String

    The type of the scheduled scan. Possible values are Quick and Full. Defaults to Quick.

    ConfigurationAntimalwareExclusions, ConfigurationAntimalwareExclusionsArgs

    Extensions string

    The extensions to exclude from the antimalware scan, separated by ;. For example .ext1;.ext2.

    Paths string

    The paths to exclude from the antimalware scan, separated by ;. For example C:\\Windows\\Temp;D:\\Temp.

    Processes string

    The processes to exclude from the antimalware scan, separated by ;. For example svchost.exe;notepad.exe.

    Extensions string

    The extensions to exclude from the antimalware scan, separated by ;. For example .ext1;.ext2.

    Paths string

    The paths to exclude from the antimalware scan, separated by ;. For example C:\\Windows\\Temp;D:\\Temp.

    Processes string

    The processes to exclude from the antimalware scan, separated by ;. For example svchost.exe;notepad.exe.

    extensions String

    The extensions to exclude from the antimalware scan, separated by ;. For example .ext1;.ext2.

    paths String

    The paths to exclude from the antimalware scan, separated by ;. For example C:\\Windows\\Temp;D:\\Temp.

    processes String

    The processes to exclude from the antimalware scan, separated by ;. For example svchost.exe;notepad.exe.

    extensions string

    The extensions to exclude from the antimalware scan, separated by ;. For example .ext1;.ext2.

    paths string

    The paths to exclude from the antimalware scan, separated by ;. For example C:\\Windows\\Temp;D:\\Temp.

    processes string

    The processes to exclude from the antimalware scan, separated by ;. For example svchost.exe;notepad.exe.

    extensions str

    The extensions to exclude from the antimalware scan, separated by ;. For example .ext1;.ext2.

    paths str

    The paths to exclude from the antimalware scan, separated by ;. For example C:\\Windows\\Temp;D:\\Temp.

    processes str

    The processes to exclude from the antimalware scan, separated by ;. For example svchost.exe;notepad.exe.

    extensions String

    The extensions to exclude from the antimalware scan, separated by ;. For example .ext1;.ext2.

    paths String

    The paths to exclude from the antimalware scan, separated by ;. For example C:\\Windows\\Temp;D:\\Temp.

    processes String

    The processes to exclude from the antimalware scan, separated by ;. For example svchost.exe;notepad.exe.

    ConfigurationAzureSecurityBaseline, ConfigurationAzureSecurityBaselineArgs

    AssignmentType string

    The assignment type of the azure security baseline. Possible values are ApplyAndAutoCorrect, ApplyAndMonitor, Audit and DeployAndAutoCorrect. Defaults to ApplyAndAutoCorrect.

    AssignmentType string

    The assignment type of the azure security baseline. Possible values are ApplyAndAutoCorrect, ApplyAndMonitor, Audit and DeployAndAutoCorrect. Defaults to ApplyAndAutoCorrect.

    assignmentType String

    The assignment type of the azure security baseline. Possible values are ApplyAndAutoCorrect, ApplyAndMonitor, Audit and DeployAndAutoCorrect. Defaults to ApplyAndAutoCorrect.

    assignmentType string

    The assignment type of the azure security baseline. Possible values are ApplyAndAutoCorrect, ApplyAndMonitor, Audit and DeployAndAutoCorrect. Defaults to ApplyAndAutoCorrect.

    assignment_type str

    The assignment type of the azure security baseline. Possible values are ApplyAndAutoCorrect, ApplyAndMonitor, Audit and DeployAndAutoCorrect. Defaults to ApplyAndAutoCorrect.

    assignmentType String

    The assignment type of the azure security baseline. Possible values are ApplyAndAutoCorrect, ApplyAndMonitor, Audit and DeployAndAutoCorrect. Defaults to ApplyAndAutoCorrect.

    ConfigurationBackup, ConfigurationBackupArgs

    InstantRpRetentionRangeInDays int

    The retention range in days of the backup policy. Defaults to 5.

    PolicyName string

    The name of the backup policy.

    RetentionPolicy ConfigurationBackupRetentionPolicy

    A retention_policy block as defined below.

    SchedulePolicy ConfigurationBackupSchedulePolicy

    A schedule_policy block as defined below.

    TimeZone string

    The timezone of the backup policy. Defaults to UTC.

    InstantRpRetentionRangeInDays int

    The retention range in days of the backup policy. Defaults to 5.

    PolicyName string

    The name of the backup policy.

    RetentionPolicy ConfigurationBackupRetentionPolicy

    A retention_policy block as defined below.

    SchedulePolicy ConfigurationBackupSchedulePolicy

    A schedule_policy block as defined below.

    TimeZone string

    The timezone of the backup policy. Defaults to UTC.

    instantRpRetentionRangeInDays Integer

    The retention range in days of the backup policy. Defaults to 5.

    policyName String

    The name of the backup policy.

    retentionPolicy ConfigurationBackupRetentionPolicy

    A retention_policy block as defined below.

    schedulePolicy ConfigurationBackupSchedulePolicy

    A schedule_policy block as defined below.

    timeZone String

    The timezone of the backup policy. Defaults to UTC.

    instantRpRetentionRangeInDays number

    The retention range in days of the backup policy. Defaults to 5.

    policyName string

    The name of the backup policy.

    retentionPolicy ConfigurationBackupRetentionPolicy

    A retention_policy block as defined below.

    schedulePolicy ConfigurationBackupSchedulePolicy

    A schedule_policy block as defined below.

    timeZone string

    The timezone of the backup policy. Defaults to UTC.

    instant_rp_retention_range_in_days int

    The retention range in days of the backup policy. Defaults to 5.

    policy_name str

    The name of the backup policy.

    retention_policy ConfigurationBackupRetentionPolicy

    A retention_policy block as defined below.

    schedule_policy ConfigurationBackupSchedulePolicy

    A schedule_policy block as defined below.

    time_zone str

    The timezone of the backup policy. Defaults to UTC.

    instantRpRetentionRangeInDays Number

    The retention range in days of the backup policy. Defaults to 5.

    policyName String

    The name of the backup policy.

    retentionPolicy Property Map

    A retention_policy block as defined below.

    schedulePolicy Property Map

    A schedule_policy block as defined below.

    timeZone String

    The timezone of the backup policy. Defaults to UTC.

    ConfigurationBackupRetentionPolicy, ConfigurationBackupRetentionPolicyArgs

    DailySchedule ConfigurationBackupRetentionPolicyDailySchedule

    A daily_schedule block as defined below.

    RetentionPolicyType string

    The retention policy type of the backup policy. Possible value is LongTermRetentionPolicy.

    WeeklySchedule ConfigurationBackupRetentionPolicyWeeklySchedule

    A weekly_schedule block as defined below.

    DailySchedule ConfigurationBackupRetentionPolicyDailySchedule

    A daily_schedule block as defined below.

    RetentionPolicyType string

    The retention policy type of the backup policy. Possible value is LongTermRetentionPolicy.

    WeeklySchedule ConfigurationBackupRetentionPolicyWeeklySchedule

    A weekly_schedule block as defined below.

    dailySchedule ConfigurationBackupRetentionPolicyDailySchedule

    A daily_schedule block as defined below.

    retentionPolicyType String

    The retention policy type of the backup policy. Possible value is LongTermRetentionPolicy.

    weeklySchedule ConfigurationBackupRetentionPolicyWeeklySchedule

    A weekly_schedule block as defined below.

    dailySchedule ConfigurationBackupRetentionPolicyDailySchedule

    A daily_schedule block as defined below.

    retentionPolicyType string

    The retention policy type of the backup policy. Possible value is LongTermRetentionPolicy.

    weeklySchedule ConfigurationBackupRetentionPolicyWeeklySchedule

    A weekly_schedule block as defined below.

    daily_schedule ConfigurationBackupRetentionPolicyDailySchedule

    A daily_schedule block as defined below.

    retention_policy_type str

    The retention policy type of the backup policy. Possible value is LongTermRetentionPolicy.

    weekly_schedule ConfigurationBackupRetentionPolicyWeeklySchedule

    A weekly_schedule block as defined below.

    dailySchedule Property Map

    A daily_schedule block as defined below.

    retentionPolicyType String

    The retention policy type of the backup policy. Possible value is LongTermRetentionPolicy.

    weeklySchedule Property Map

    A weekly_schedule block as defined below.

    ConfigurationBackupRetentionPolicyDailySchedule, ConfigurationBackupRetentionPolicyDailyScheduleArgs

    RetentionDuration ConfigurationBackupRetentionPolicyDailyScheduleRetentionDuration

    A retention_duration block as defined below.

    RetentionTimes List<string>

    The retention times of the backup policy.

    RetentionDuration ConfigurationBackupRetentionPolicyDailyScheduleRetentionDuration

    A retention_duration block as defined below.

    RetentionTimes []string

    The retention times of the backup policy.

    retentionDuration ConfigurationBackupRetentionPolicyDailyScheduleRetentionDuration

    A retention_duration block as defined below.

    retentionTimes List<String>

    The retention times of the backup policy.

    retentionDuration ConfigurationBackupRetentionPolicyDailyScheduleRetentionDuration

    A retention_duration block as defined below.

    retentionTimes string[]

    The retention times of the backup policy.

    retention_duration ConfigurationBackupRetentionPolicyDailyScheduleRetentionDuration

    A retention_duration block as defined below.

    retention_times Sequence[str]

    The retention times of the backup policy.

    retentionDuration Property Map

    A retention_duration block as defined below.

    retentionTimes List<String>

    The retention times of the backup policy.

    ConfigurationBackupRetentionPolicyDailyScheduleRetentionDuration, ConfigurationBackupRetentionPolicyDailyScheduleRetentionDurationArgs

    Count int

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    DurationType string

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    Count int

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    DurationType string

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count Integer

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    durationType String

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count number

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    durationType string

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count int

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    duration_type str

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count Number

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    durationType String

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    ConfigurationBackupRetentionPolicyWeeklySchedule, ConfigurationBackupRetentionPolicyWeeklyScheduleArgs

    RetentionDuration ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDuration

    A retention_duration block as defined below.

    RetentionTimes List<string>

    The retention times of the backup policy.

    RetentionDuration ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDuration

    A retention_duration block as defined below.

    RetentionTimes []string

    The retention times of the backup policy.

    retentionDuration ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDuration

    A retention_duration block as defined below.

    retentionTimes List<String>

    The retention times of the backup policy.

    retentionDuration ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDuration

    A retention_duration block as defined below.

    retentionTimes string[]

    The retention times of the backup policy.

    retention_duration ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDuration

    A retention_duration block as defined below.

    retention_times Sequence[str]

    The retention times of the backup policy.

    retentionDuration Property Map

    A retention_duration block as defined below.

    retentionTimes List<String>

    The retention times of the backup policy.

    ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDuration, ConfigurationBackupRetentionPolicyWeeklyScheduleRetentionDurationArgs

    Count int

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    DurationType string

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    Count int

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    DurationType string

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count Integer

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    durationType String

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count number

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    durationType string

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count int

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    duration_type str

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    count Number

    The count of the retention duration of the backup policy. Valid value inside daily_schedule is 7 to 9999 and inside weekly_schedule is 1 to 5163.

    durationType String

    The duration type of the retention duration of the backup policy. Valid value inside daily_schedule is Days and inside weekly_schedule is Weeks.

    ConfigurationBackupSchedulePolicy, ConfigurationBackupSchedulePolicyArgs

    SchedulePolicyType string

    The schedule policy type of the backup policy. Possible value is SimpleSchedulePolicy.

    ScheduleRunDays List<string>

    The schedule run days of the backup policy. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    ScheduleRunFrequency string

    The schedule run frequency of the backup policy. Possible values are Daily and Weekly. Defaults to Daily.

    ScheduleRunTimes List<string>

    The schedule run times of the backup policy.

    SchedulePolicyType string

    The schedule policy type of the backup policy. Possible value is SimpleSchedulePolicy.

    ScheduleRunDays []string

    The schedule run days of the backup policy. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    ScheduleRunFrequency string

    The schedule run frequency of the backup policy. Possible values are Daily and Weekly. Defaults to Daily.

    ScheduleRunTimes []string

    The schedule run times of the backup policy.

    schedulePolicyType String

    The schedule policy type of the backup policy. Possible value is SimpleSchedulePolicy.

    scheduleRunDays List<String>

    The schedule run days of the backup policy. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    scheduleRunFrequency String

    The schedule run frequency of the backup policy. Possible values are Daily and Weekly. Defaults to Daily.

    scheduleRunTimes List<String>

    The schedule run times of the backup policy.

    schedulePolicyType string

    The schedule policy type of the backup policy. Possible value is SimpleSchedulePolicy.

    scheduleRunDays string[]

    The schedule run days of the backup policy. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    scheduleRunFrequency string

    The schedule run frequency of the backup policy. Possible values are Daily and Weekly. Defaults to Daily.

    scheduleRunTimes string[]

    The schedule run times of the backup policy.

    schedule_policy_type str

    The schedule policy type of the backup policy. Possible value is SimpleSchedulePolicy.

    schedule_run_days Sequence[str]

    The schedule run days of the backup policy. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    schedule_run_frequency str

    The schedule run frequency of the backup policy. Possible values are Daily and Weekly. Defaults to Daily.

    schedule_run_times Sequence[str]

    The schedule run times of the backup policy.

    schedulePolicyType String

    The schedule policy type of the backup policy. Possible value is SimpleSchedulePolicy.

    scheduleRunDays List<String>

    The schedule run days of the backup policy. Possible values are Sunday, Monday, Tuesday, Wednesday, Thursday, Friday and Saturday.

    scheduleRunFrequency String

    The schedule run frequency of the backup policy. Possible values are Daily and Weekly. Defaults to Daily.

    scheduleRunTimes List<String>

    The schedule run times of the backup policy.

    Import

    Automanage Configuration can be imported using the resource id, e.g.

     $ pulumi import azure:automanage/configuration:Configuration example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Automanage/configurationProfiles/configurationProfile1
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi