1. Packages
  2. Azure Native v2
  3. API Docs
  4. automanage
  5. ConfigurationProfilePreference
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.automanage.ConfigurationProfilePreference

Explore with Pulumi AI

Definition of the configuration profile preference. Azure REST API version: 2020-06-30-preview. Prior API version in Azure Native 1.x: 2020-06-30-preview.

Example Usage

Create or update configuration profile preference

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var configurationProfilePreference = new AzureNative.Automanage.ConfigurationProfilePreference("configurationProfilePreference", new()
    {
        ConfigurationProfilePreferenceName = "defaultProfilePreference",
        Location = "East US",
        Properties = new AzureNative.Automanage.Inputs.ConfigurationProfilePreferencePropertiesArgs
        {
            AntiMalware = new AzureNative.Automanage.Inputs.ConfigurationProfilePreferenceAntiMalwareArgs
            {
                EnableRealTimeProtection = AzureNative.Automanage.EnableRealTimeProtection.True,
            },
            VmBackup = new AzureNative.Automanage.Inputs.ConfigurationProfilePreferenceVmBackupArgs
            {
                TimeZone = "Pacific Standard Time",
            },
        },
        ResourceGroupName = "myResourceGroupName",
        Tags = 
        {
            { "Organization", "Administration" },
        },
    });

});
Copy
package main

import (
	automanage "github.com/pulumi/pulumi-azure-native-sdk/automanage/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := automanage.NewConfigurationProfilePreference(ctx, "configurationProfilePreference", &automanage.ConfigurationProfilePreferenceArgs{
			ConfigurationProfilePreferenceName: pulumi.String("defaultProfilePreference"),
			Location:                           pulumi.String("East US"),
			Properties: &automanage.ConfigurationProfilePreferencePropertiesArgs{
				AntiMalware: &automanage.ConfigurationProfilePreferenceAntiMalwareArgs{
					EnableRealTimeProtection: pulumi.String(automanage.EnableRealTimeProtectionTrue),
				},
				VmBackup: &automanage.ConfigurationProfilePreferenceVmBackupArgs{
					TimeZone: pulumi.String("Pacific Standard Time"),
				},
			},
			ResourceGroupName: pulumi.String("myResourceGroupName"),
			Tags: pulumi.StringMap{
				"Organization": pulumi.String("Administration"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.automanage.ConfigurationProfilePreference;
import com.pulumi.azurenative.automanage.ConfigurationProfilePreferenceArgs;
import com.pulumi.azurenative.automanage.inputs.ConfigurationProfilePreferencePropertiesArgs;
import com.pulumi.azurenative.automanage.inputs.ConfigurationProfilePreferenceAntiMalwareArgs;
import com.pulumi.azurenative.automanage.inputs.ConfigurationProfilePreferenceVmBackupArgs;
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 configurationProfilePreference = new ConfigurationProfilePreference("configurationProfilePreference", ConfigurationProfilePreferenceArgs.builder()
            .configurationProfilePreferenceName("defaultProfilePreference")
            .location("East US")
            .properties(ConfigurationProfilePreferencePropertiesArgs.builder()
                .antiMalware(ConfigurationProfilePreferenceAntiMalwareArgs.builder()
                    .enableRealTimeProtection("True")
                    .build())
                .vmBackup(ConfigurationProfilePreferenceVmBackupArgs.builder()
                    .timeZone("Pacific Standard Time")
                    .build())
                .build())
            .resourceGroupName("myResourceGroupName")
            .tags(Map.of("Organization", "Administration"))
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const configurationProfilePreference = new azure_native.automanage.ConfigurationProfilePreference("configurationProfilePreference", {
    configurationProfilePreferenceName: "defaultProfilePreference",
    location: "East US",
    properties: {
        antiMalware: {
            enableRealTimeProtection: azure_native.automanage.EnableRealTimeProtection.True,
        },
        vmBackup: {
            timeZone: "Pacific Standard Time",
        },
    },
    resourceGroupName: "myResourceGroupName",
    tags: {
        Organization: "Administration",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

configuration_profile_preference = azure_native.automanage.ConfigurationProfilePreference("configurationProfilePreference",
    configuration_profile_preference_name="defaultProfilePreference",
    location="East US",
    properties={
        "anti_malware": {
            "enable_real_time_protection": azure_native.automanage.EnableRealTimeProtection.TRUE,
        },
        "vm_backup": {
            "time_zone": "Pacific Standard Time",
        },
    },
    resource_group_name="myResourceGroupName",
    tags={
        "Organization": "Administration",
    })
Copy
resources:
  configurationProfilePreference:
    type: azure-native:automanage:ConfigurationProfilePreference
    properties:
      configurationProfilePreferenceName: defaultProfilePreference
      location: East US
      properties:
        antiMalware:
          enableRealTimeProtection: True
        vmBackup:
          timeZone: Pacific Standard Time
      resourceGroupName: myResourceGroupName
      tags:
        Organization: Administration
Copy

Create ConfigurationProfilePreference Resource

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

Constructor syntax

new ConfigurationProfilePreference(name: string, args: ConfigurationProfilePreferenceArgs, opts?: CustomResourceOptions);
@overload
def ConfigurationProfilePreference(resource_name: str,
                                   args: ConfigurationProfilePreferenceArgs,
                                   opts: Optional[ResourceOptions] = None)

@overload
def ConfigurationProfilePreference(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   resource_group_name: Optional[str] = None,
                                   configuration_profile_preference_name: Optional[str] = None,
                                   location: Optional[str] = None,
                                   properties: Optional[ConfigurationProfilePreferencePropertiesArgs] = None,
                                   tags: Optional[Mapping[str, str]] = None)
func NewConfigurationProfilePreference(ctx *Context, name string, args ConfigurationProfilePreferenceArgs, opts ...ResourceOption) (*ConfigurationProfilePreference, error)
public ConfigurationProfilePreference(string name, ConfigurationProfilePreferenceArgs args, CustomResourceOptions? opts = null)
public ConfigurationProfilePreference(String name, ConfigurationProfilePreferenceArgs args)
public ConfigurationProfilePreference(String name, ConfigurationProfilePreferenceArgs args, CustomResourceOptions options)
type: azure-native:automanage:ConfigurationProfilePreference
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ConfigurationProfilePreferenceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ConfigurationProfilePreferenceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ConfigurationProfilePreferenceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ConfigurationProfilePreferenceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ConfigurationProfilePreferenceArgs
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 configurationProfilePreferenceResource = new AzureNative.Automanage.ConfigurationProfilePreference("configurationProfilePreferenceResource", new()
{
    ResourceGroupName = "string",
    ConfigurationProfilePreferenceName = "string",
    Location = "string",
    Properties = 
    {
        { "antiMalware", 
        {
            { "enableRealTimeProtection", "string" },
            { "exclusions", "any" },
            { "runScheduledScan", "string" },
            { "scanDay", "string" },
            { "scanTimeInMinutes", "string" },
            { "scanType", "string" },
        } },
        { "vmBackup", 
        {
            { "instantRpRetentionRangeInDays", 0 },
            { "retentionPolicy", "string" },
            { "schedulePolicy", "string" },
            { "timeZone", "string" },
        } },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := automanage.NewConfigurationProfilePreference(ctx, "configurationProfilePreferenceResource", &automanage.ConfigurationProfilePreferenceArgs{
	ResourceGroupName:                  "string",
	ConfigurationProfilePreferenceName: "string",
	Location:                           "string",
	Properties: map[string]interface{}{
		"antiMalware": map[string]interface{}{
			"enableRealTimeProtection": "string",
			"exclusions":               "any",
			"runScheduledScan":         "string",
			"scanDay":                  "string",
			"scanTimeInMinutes":        "string",
			"scanType":                 "string",
		},
		"vmBackup": map[string]interface{}{
			"instantRpRetentionRangeInDays": 0,
			"retentionPolicy":               "string",
			"schedulePolicy":                "string",
			"timeZone":                      "string",
		},
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var configurationProfilePreferenceResource = new ConfigurationProfilePreference("configurationProfilePreferenceResource", ConfigurationProfilePreferenceArgs.builder()
    .resourceGroupName("string")
    .configurationProfilePreferenceName("string")
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
configuration_profile_preference_resource = azure_native.automanage.ConfigurationProfilePreference("configurationProfilePreferenceResource",
    resource_group_name=string,
    configuration_profile_preference_name=string,
    location=string,
    properties={
        antiMalware: {
            enableRealTimeProtection: string,
            exclusions: any,
            runScheduledScan: string,
            scanDay: string,
            scanTimeInMinutes: string,
            scanType: string,
        },
        vmBackup: {
            instantRpRetentionRangeInDays: 0,
            retentionPolicy: string,
            schedulePolicy: string,
            timeZone: string,
        },
    },
    tags={
        string: string,
    })
Copy
const configurationProfilePreferenceResource = new azure_native.automanage.ConfigurationProfilePreference("configurationProfilePreferenceResource", {
    resourceGroupName: "string",
    configurationProfilePreferenceName: "string",
    location: "string",
    properties: {
        antiMalware: {
            enableRealTimeProtection: "string",
            exclusions: "any",
            runScheduledScan: "string",
            scanDay: "string",
            scanTimeInMinutes: "string",
            scanType: "string",
        },
        vmBackup: {
            instantRpRetentionRangeInDays: 0,
            retentionPolicy: "string",
            schedulePolicy: "string",
            timeZone: "string",
        },
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:automanage:ConfigurationProfilePreference
properties:
    configurationProfilePreferenceName: string
    location: string
    properties:
        antiMalware:
            enableRealTimeProtection: string
            exclusions: any
            runScheduledScan: string
            scanDay: string
            scanTimeInMinutes: string
            scanType: string
        vmBackup:
            instantRpRetentionRangeInDays: 0
            retentionPolicy: string
            schedulePolicy: string
            timeZone: string
    resourceGroupName: string
    tags:
        string: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ConfigurationProfilePreferenceName Changes to this property will trigger replacement. string
Name of the configuration profile preference.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.Automanage.Inputs.ConfigurationProfilePreferenceProperties
Properties of the configuration profile preference.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ConfigurationProfilePreferenceName Changes to this property will trigger replacement. string
Name of the configuration profile preference.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties ConfigurationProfilePreferencePropertiesArgs
Properties of the configuration profile preference.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
configurationProfilePreferenceName Changes to this property will trigger replacement. String
Name of the configuration profile preference.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties ConfigurationProfilePreferenceProperties
Properties of the configuration profile preference.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
configurationProfilePreferenceName Changes to this property will trigger replacement. string
Name of the configuration profile preference.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties ConfigurationProfilePreferenceProperties
Properties of the configuration profile preference.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
configuration_profile_preference_name Changes to this property will trigger replacement. str
Name of the configuration profile preference.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties ConfigurationProfilePreferencePropertiesArgs
Properties of the configuration profile preference.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
configurationProfilePreferenceName Changes to this property will trigger replacement. String
Name of the configuration profile preference.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map
Properties of the configuration profile preference.
tags Map<String>
Resource tags.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ConfigurationProfilePreferenceAntiMalware
, ConfigurationProfilePreferenceAntiMalwareArgs

EnableRealTimeProtection string | Pulumi.AzureNative.Automanage.EnableRealTimeProtection
Enables or disables Real Time Protection
Exclusions object
Extensions, Paths and Processes that must be excluded from scan
RunScheduledScan string | Pulumi.AzureNative.Automanage.RunScheduledScan
Enables or disables a periodic scan for antimalware
ScanDay string
Schedule scan settings day
ScanTimeInMinutes string
Schedule scan settings time
ScanType string | Pulumi.AzureNative.Automanage.ScanType
Type of scheduled scan
EnableRealTimeProtection string | EnableRealTimeProtection
Enables or disables Real Time Protection
Exclusions interface{}
Extensions, Paths and Processes that must be excluded from scan
RunScheduledScan string | RunScheduledScan
Enables or disables a periodic scan for antimalware
ScanDay string
Schedule scan settings day
ScanTimeInMinutes string
Schedule scan settings time
ScanType string | ScanType
Type of scheduled scan
enableRealTimeProtection String | EnableRealTimeProtection
Enables or disables Real Time Protection
exclusions Object
Extensions, Paths and Processes that must be excluded from scan
runScheduledScan String | RunScheduledScan
Enables or disables a periodic scan for antimalware
scanDay String
Schedule scan settings day
scanTimeInMinutes String
Schedule scan settings time
scanType String | ScanType
Type of scheduled scan
enableRealTimeProtection string | EnableRealTimeProtection
Enables or disables Real Time Protection
exclusions any
Extensions, Paths and Processes that must be excluded from scan
runScheduledScan string | RunScheduledScan
Enables or disables a periodic scan for antimalware
scanDay string
Schedule scan settings day
scanTimeInMinutes string
Schedule scan settings time
scanType string | ScanType
Type of scheduled scan
enable_real_time_protection str | EnableRealTimeProtection
Enables or disables Real Time Protection
exclusions Any
Extensions, Paths and Processes that must be excluded from scan
run_scheduled_scan str | RunScheduledScan
Enables or disables a periodic scan for antimalware
scan_day str
Schedule scan settings day
scan_time_in_minutes str
Schedule scan settings time
scan_type str | ScanType
Type of scheduled scan
enableRealTimeProtection String | "True" | "False"
Enables or disables Real Time Protection
exclusions Any
Extensions, Paths and Processes that must be excluded from scan
runScheduledScan String | "True" | "False"
Enables or disables a periodic scan for antimalware
scanDay String
Schedule scan settings day
scanTimeInMinutes String
Schedule scan settings time
scanType String | "Quick" | "Full"
Type of scheduled scan

ConfigurationProfilePreferenceAntiMalwareResponse
, ConfigurationProfilePreferenceAntiMalwareResponseArgs

EnableRealTimeProtection string
Enables or disables Real Time Protection
Exclusions object
Extensions, Paths and Processes that must be excluded from scan
RunScheduledScan string
Enables or disables a periodic scan for antimalware
ScanDay string
Schedule scan settings day
ScanTimeInMinutes string
Schedule scan settings time
ScanType string
Type of scheduled scan
EnableRealTimeProtection string
Enables or disables Real Time Protection
Exclusions interface{}
Extensions, Paths and Processes that must be excluded from scan
RunScheduledScan string
Enables or disables a periodic scan for antimalware
ScanDay string
Schedule scan settings day
ScanTimeInMinutes string
Schedule scan settings time
ScanType string
Type of scheduled scan
enableRealTimeProtection String
Enables or disables Real Time Protection
exclusions Object
Extensions, Paths and Processes that must be excluded from scan
runScheduledScan String
Enables or disables a periodic scan for antimalware
scanDay String
Schedule scan settings day
scanTimeInMinutes String
Schedule scan settings time
scanType String
Type of scheduled scan
enableRealTimeProtection string
Enables or disables Real Time Protection
exclusions any
Extensions, Paths and Processes that must be excluded from scan
runScheduledScan string
Enables or disables a periodic scan for antimalware
scanDay string
Schedule scan settings day
scanTimeInMinutes string
Schedule scan settings time
scanType string
Type of scheduled scan
enable_real_time_protection str
Enables or disables Real Time Protection
exclusions Any
Extensions, Paths and Processes that must be excluded from scan
run_scheduled_scan str
Enables or disables a periodic scan for antimalware
scan_day str
Schedule scan settings day
scan_time_in_minutes str
Schedule scan settings time
scan_type str
Type of scheduled scan
enableRealTimeProtection String
Enables or disables Real Time Protection
exclusions Any
Extensions, Paths and Processes that must be excluded from scan
runScheduledScan String
Enables or disables a periodic scan for antimalware
scanDay String
Schedule scan settings day
scanTimeInMinutes String
Schedule scan settings time
scanType String
Type of scheduled scan

ConfigurationProfilePreferenceProperties
, ConfigurationProfilePreferencePropertiesArgs

AntiMalware ConfigurationProfilePreferenceAntiMalware
The custom preferences for Azure Antimalware.
VmBackup ConfigurationProfilePreferenceVmBackup
The custom preferences for Azure VM Backup.
antiMalware ConfigurationProfilePreferenceAntiMalware
The custom preferences for Azure Antimalware.
vmBackup ConfigurationProfilePreferenceVmBackup
The custom preferences for Azure VM Backup.
antiMalware ConfigurationProfilePreferenceAntiMalware
The custom preferences for Azure Antimalware.
vmBackup ConfigurationProfilePreferenceVmBackup
The custom preferences for Azure VM Backup.
anti_malware ConfigurationProfilePreferenceAntiMalware
The custom preferences for Azure Antimalware.
vm_backup ConfigurationProfilePreferenceVmBackup
The custom preferences for Azure VM Backup.
antiMalware Property Map
The custom preferences for Azure Antimalware.
vmBackup Property Map
The custom preferences for Azure VM Backup.

ConfigurationProfilePreferencePropertiesResponse
, ConfigurationProfilePreferencePropertiesResponseArgs

AntiMalware ConfigurationProfilePreferenceAntiMalwareResponse
The custom preferences for Azure Antimalware.
VmBackup ConfigurationProfilePreferenceVmBackupResponse
The custom preferences for Azure VM Backup.
antiMalware ConfigurationProfilePreferenceAntiMalwareResponse
The custom preferences for Azure Antimalware.
vmBackup ConfigurationProfilePreferenceVmBackupResponse
The custom preferences for Azure VM Backup.
antiMalware ConfigurationProfilePreferenceAntiMalwareResponse
The custom preferences for Azure Antimalware.
vmBackup ConfigurationProfilePreferenceVmBackupResponse
The custom preferences for Azure VM Backup.
anti_malware ConfigurationProfilePreferenceAntiMalwareResponse
The custom preferences for Azure Antimalware.
vm_backup ConfigurationProfilePreferenceVmBackupResponse
The custom preferences for Azure VM Backup.
antiMalware Property Map
The custom preferences for Azure Antimalware.
vmBackup Property Map
The custom preferences for Azure VM Backup.

ConfigurationProfilePreferenceVmBackup
, ConfigurationProfilePreferenceVmBackupArgs

InstantRpRetentionRangeInDays int
Instant RP retention policy range in days
RetentionPolicy string
Retention policy with the details on backup copy retention ranges.
SchedulePolicy string
Backup schedule specified as part of backup policy.
TimeZone string
TimeZone optional input as string. For example: Pacific Standard Time
InstantRpRetentionRangeInDays int
Instant RP retention policy range in days
RetentionPolicy string
Retention policy with the details on backup copy retention ranges.
SchedulePolicy string
Backup schedule specified as part of backup policy.
TimeZone string
TimeZone optional input as string. For example: Pacific Standard Time
instantRpRetentionRangeInDays Integer
Instant RP retention policy range in days
retentionPolicy String
Retention policy with the details on backup copy retention ranges.
schedulePolicy String
Backup schedule specified as part of backup policy.
timeZone String
TimeZone optional input as string. For example: Pacific Standard Time
instantRpRetentionRangeInDays number
Instant RP retention policy range in days
retentionPolicy string
Retention policy with the details on backup copy retention ranges.
schedulePolicy string
Backup schedule specified as part of backup policy.
timeZone string
TimeZone optional input as string. For example: Pacific Standard Time
instant_rp_retention_range_in_days int
Instant RP retention policy range in days
retention_policy str
Retention policy with the details on backup copy retention ranges.
schedule_policy str
Backup schedule specified as part of backup policy.
time_zone str
TimeZone optional input as string. For example: Pacific Standard Time
instantRpRetentionRangeInDays Number
Instant RP retention policy range in days
retentionPolicy String
Retention policy with the details on backup copy retention ranges.
schedulePolicy String
Backup schedule specified as part of backup policy.
timeZone String
TimeZone optional input as string. For example: Pacific Standard Time

ConfigurationProfilePreferenceVmBackupResponse
, ConfigurationProfilePreferenceVmBackupResponseArgs

InstantRpRetentionRangeInDays int
Instant RP retention policy range in days
RetentionPolicy string
Retention policy with the details on backup copy retention ranges.
SchedulePolicy string
Backup schedule specified as part of backup policy.
TimeZone string
TimeZone optional input as string. For example: Pacific Standard Time
InstantRpRetentionRangeInDays int
Instant RP retention policy range in days
RetentionPolicy string
Retention policy with the details on backup copy retention ranges.
SchedulePolicy string
Backup schedule specified as part of backup policy.
TimeZone string
TimeZone optional input as string. For example: Pacific Standard Time
instantRpRetentionRangeInDays Integer
Instant RP retention policy range in days
retentionPolicy String
Retention policy with the details on backup copy retention ranges.
schedulePolicy String
Backup schedule specified as part of backup policy.
timeZone String
TimeZone optional input as string. For example: Pacific Standard Time
instantRpRetentionRangeInDays number
Instant RP retention policy range in days
retentionPolicy string
Retention policy with the details on backup copy retention ranges.
schedulePolicy string
Backup schedule specified as part of backup policy.
timeZone string
TimeZone optional input as string. For example: Pacific Standard Time
instant_rp_retention_range_in_days int
Instant RP retention policy range in days
retention_policy str
Retention policy with the details on backup copy retention ranges.
schedule_policy str
Backup schedule specified as part of backup policy.
time_zone str
TimeZone optional input as string. For example: Pacific Standard Time
instantRpRetentionRangeInDays Number
Instant RP retention policy range in days
retentionPolicy String
Retention policy with the details on backup copy retention ranges.
schedulePolicy String
Backup schedule specified as part of backup policy.
timeZone String
TimeZone optional input as string. For example: Pacific Standard Time

EnableRealTimeProtection
, EnableRealTimeProtectionArgs

True
True
False
False
EnableRealTimeProtectionTrue
True
EnableRealTimeProtectionFalse
False
True
True
False
False
True
True
False
False
TRUE
True
FALSE
False
"True"
True
"False"
False

RunScheduledScan
, RunScheduledScanArgs

True
True
False
False
RunScheduledScanTrue
True
RunScheduledScanFalse
False
True
True
False
False
True
True
False
False
TRUE
True
FALSE
False
"True"
True
"False"
False

ScanType
, ScanTypeArgs

Quick
Quick
Full
Full
ScanTypeQuick
Quick
ScanTypeFull
Full
Quick
Quick
Full
Full
Quick
Quick
Full
Full
QUICK
Quick
FULL
Full
"Quick"
Quick
"Full"
Full

Import

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

$ pulumi import azure-native:automanage:ConfigurationProfilePreference defaultProfilePreference /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automanage/configurationProfilePreferences/{configurationProfilePreferenceName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0