azure-native.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" },
        },
    });
});
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
	})
}
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());
    }
}
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",
    },
});
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",
    })
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
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 string
- The unique name of the resource.
- args ConfigurationProfilePreferenceArgs
- 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 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 string
- The unique name of the resource.
- args ConfigurationProfilePreferenceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationProfilePreferenceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.Automanage.Inputs.ConfigurationProfilePreferencePropertiesArgs
    {
        AntiMalware = new AzureNative.Automanage.Inputs.ConfigurationProfilePreferenceAntiMalwareArgs
        {
            EnableRealTimeProtection = "string",
            Exclusions = "any",
            RunScheduledScan = "string",
            ScanDay = "string",
            ScanTimeInMinutes = "string",
            ScanType = "string",
        },
        VmBackup = new AzureNative.Automanage.Inputs.ConfigurationProfilePreferenceVmBackupArgs
        {
            InstantRpRetentionRangeInDays = 0,
            RetentionPolicy = "string",
            SchedulePolicy = "string",
            TimeZone = "string",
        },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := automanage.NewConfigurationProfilePreference(ctx, "configurationProfilePreferenceResource", &automanage.ConfigurationProfilePreferenceArgs{
	ResourceGroupName:                  pulumi.String("string"),
	ConfigurationProfilePreferenceName: pulumi.String("string"),
	Location:                           pulumi.String("string"),
	Properties: &automanage.ConfigurationProfilePreferencePropertiesArgs{
		AntiMalware: &automanage.ConfigurationProfilePreferenceAntiMalwareArgs{
			EnableRealTimeProtection: pulumi.String("string"),
			Exclusions:               pulumi.Any("any"),
			RunScheduledScan:         pulumi.String("string"),
			ScanDay:                  pulumi.String("string"),
			ScanTimeInMinutes:        pulumi.String("string"),
			ScanType:                 pulumi.String("string"),
		},
		VmBackup: &automanage.ConfigurationProfilePreferenceVmBackupArgs{
			InstantRpRetentionRangeInDays: pulumi.Int(0),
			RetentionPolicy:               pulumi.String("string"),
			SchedulePolicy:                pulumi.String("string"),
			TimeZone:                      pulumi.String("string"),
		},
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var configurationProfilePreferenceResource = new ConfigurationProfilePreference("configurationProfilePreferenceResource", ConfigurationProfilePreferenceArgs.builder()
    .resourceGroupName("string")
    .configurationProfilePreferenceName("string")
    .location("string")
    .properties(ConfigurationProfilePreferencePropertiesArgs.builder()
        .antiMalware(ConfigurationProfilePreferenceAntiMalwareArgs.builder()
            .enableRealTimeProtection("string")
            .exclusions("any")
            .runScheduledScan("string")
            .scanDay("string")
            .scanTimeInMinutes("string")
            .scanType("string")
            .build())
        .vmBackup(ConfigurationProfilePreferenceVmBackupArgs.builder()
            .instantRpRetentionRangeInDays(0)
            .retentionPolicy("string")
            .schedulePolicy("string")
            .timeZone("string")
            .build())
        .build())
    .tags(Map.of("string", "string"))
    .build());
configuration_profile_preference_resource = azure_native.automanage.ConfigurationProfilePreference("configurationProfilePreferenceResource",
    resource_group_name="string",
    configuration_profile_preference_name="string",
    location="string",
    properties={
        "anti_malware": {
            "enable_real_time_protection": "string",
            "exclusions": "any",
            "run_scheduled_scan": "string",
            "scan_day": "string",
            "scan_time_in_minutes": "string",
            "scan_type": "string",
        },
        "vm_backup": {
            "instant_rp_retention_range_in_days": 0,
            "retention_policy": "string",
            "schedule_policy": "string",
            "time_zone": "string",
        },
    },
    tags={
        "string": "string",
    })
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",
    },
});
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
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:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConfigurationProfile stringPreference Name 
- Name of the configuration profile preference.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.Azure Native. Automanage. Inputs. Configuration Profile Preference Properties 
- Properties of the configuration profile preference.
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConfigurationProfile stringPreference Name 
- Name of the configuration profile preference.
- Location string
- The geo-location where the resource lives
- Properties
ConfigurationProfile Preference Properties Args 
- Properties of the configuration profile preference.
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- configurationProfile StringPreference Name 
- Name of the configuration profile preference.
- location String
- The geo-location where the resource lives
- properties
ConfigurationProfile Preference Properties 
- Properties of the configuration profile preference.
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- configurationProfile stringPreference Name 
- Name of the configuration profile preference.
- location string
- The geo-location where the resource lives
- properties
ConfigurationProfile Preference Properties 
- Properties of the configuration profile preference.
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- configuration_profile_ strpreference_ name 
- Name of the configuration profile preference.
- location str
- The geo-location where the resource lives
- properties
ConfigurationProfile Preference Properties Args 
- Properties of the configuration profile preference.
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- configurationProfile StringPreference Name 
- Name of the configuration profile preference.
- location String
- The geo-location where the resource lives
- properties Property Map
- Properties of the configuration profile preference.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationProfilePreference resource produces the following output properties:
Supporting Types
ConfigurationProfilePreferenceAntiMalware, ConfigurationProfilePreferenceAntiMalwareArgs          
- EnableReal string | Pulumi.Time Protection Azure Native. Automanage. Enable Real Time Protection 
- Enables or disables Real Time Protection
- Exclusions object
- Extensions, Paths and Processes that must be excluded from scan
- RunScheduled string | Pulumi.Scan Azure Native. Automanage. Run Scheduled Scan 
- Enables or disables a periodic scan for antimalware
- ScanDay string
- Schedule scan settings day
- ScanTime stringIn Minutes 
- Schedule scan settings time
- ScanType string | Pulumi.Azure Native. Automanage. Scan Type 
- Type of scheduled scan
- EnableReal string | EnableTime Protection Real Time Protection 
- Enables or disables Real Time Protection
- Exclusions interface{}
- Extensions, Paths and Processes that must be excluded from scan
- RunScheduled string | RunScan Scheduled Scan 
- Enables or disables a periodic scan for antimalware
- ScanDay string
- Schedule scan settings day
- ScanTime stringIn Minutes 
- Schedule scan settings time
- ScanType string | ScanType 
- Type of scheduled scan
- enableReal String | EnableTime Protection Real Time Protection 
- Enables or disables Real Time Protection
- exclusions Object
- Extensions, Paths and Processes that must be excluded from scan
- runScheduled String | RunScan Scheduled Scan 
- Enables or disables a periodic scan for antimalware
- scanDay String
- Schedule scan settings day
- scanTime StringIn Minutes 
- Schedule scan settings time
- scanType String | ScanType 
- Type of scheduled scan
- enableReal string | EnableTime Protection Real Time Protection 
- Enables or disables Real Time Protection
- exclusions any
- Extensions, Paths and Processes that must be excluded from scan
- runScheduled string | RunScan Scheduled Scan 
- Enables or disables a periodic scan for antimalware
- scanDay string
- Schedule scan settings day
- scanTime stringIn Minutes 
- Schedule scan settings time
- scanType string | ScanType 
- Type of scheduled scan
- enable_real_ str | Enabletime_ protection Real Time Protection 
- Enables or disables Real Time Protection
- exclusions Any
- Extensions, Paths and Processes that must be excluded from scan
- run_scheduled_ str | Runscan Scheduled Scan 
- Enables or disables a periodic scan for antimalware
- scan_day str
- Schedule scan settings day
- scan_time_ strin_ minutes 
- Schedule scan settings time
- scan_type str | ScanType 
- Type of scheduled scan
- enableReal String | "True" | "False"Time Protection 
- Enables or disables Real Time Protection
- exclusions Any
- Extensions, Paths and Processes that must be excluded from scan
- runScheduled String | "True" | "False"Scan 
- Enables or disables a periodic scan for antimalware
- scanDay String
- Schedule scan settings day
- scanTime StringIn Minutes 
- Schedule scan settings time
- scanType String | "Quick" | "Full"
- Type of scheduled scan
ConfigurationProfilePreferenceAntiMalwareResponse, ConfigurationProfilePreferenceAntiMalwareResponseArgs            
- EnableReal stringTime Protection 
- Enables or disables Real Time Protection
- Exclusions object
- Extensions, Paths and Processes that must be excluded from scan
- RunScheduled stringScan 
- Enables or disables a periodic scan for antimalware
- ScanDay string
- Schedule scan settings day
- ScanTime stringIn Minutes 
- Schedule scan settings time
- ScanType string
- Type of scheduled scan
- EnableReal stringTime Protection 
- Enables or disables Real Time Protection
- Exclusions interface{}
- Extensions, Paths and Processes that must be excluded from scan
- RunScheduled stringScan 
- Enables or disables a periodic scan for antimalware
- ScanDay string
- Schedule scan settings day
- ScanTime stringIn Minutes 
- Schedule scan settings time
- ScanType string
- Type of scheduled scan
- enableReal StringTime Protection 
- Enables or disables Real Time Protection
- exclusions Object
- Extensions, Paths and Processes that must be excluded from scan
- runScheduled StringScan 
- Enables or disables a periodic scan for antimalware
- scanDay String
- Schedule scan settings day
- scanTime StringIn Minutes 
- Schedule scan settings time
- scanType String
- Type of scheduled scan
- enableReal stringTime Protection 
- Enables or disables Real Time Protection
- exclusions any
- Extensions, Paths and Processes that must be excluded from scan
- runScheduled stringScan 
- Enables or disables a periodic scan for antimalware
- scanDay string
- Schedule scan settings day
- scanTime stringIn Minutes 
- Schedule scan settings time
- scanType string
- Type of scheduled scan
- enable_real_ strtime_ protection 
- Enables or disables Real Time Protection
- exclusions Any
- Extensions, Paths and Processes that must be excluded from scan
- run_scheduled_ strscan 
- Enables or disables a periodic scan for antimalware
- scan_day str
- Schedule scan settings day
- scan_time_ strin_ minutes 
- Schedule scan settings time
- scan_type str
- Type of scheduled scan
- enableReal StringTime Protection 
- Enables or disables Real Time Protection
- exclusions Any
- Extensions, Paths and Processes that must be excluded from scan
- runScheduled StringScan 
- Enables or disables a periodic scan for antimalware
- scanDay String
- Schedule scan settings day
- scanTime StringIn Minutes 
- Schedule scan settings time
- scanType String
- Type of scheduled scan
ConfigurationProfilePreferenceProperties, ConfigurationProfilePreferencePropertiesArgs        
- AntiMalware Pulumi.Azure Native. Automanage. Inputs. Configuration Profile Preference Anti Malware 
- The custom preferences for Azure Antimalware.
- VmBackup Pulumi.Azure Native. Automanage. Inputs. Configuration Profile Preference Vm Backup 
- The custom preferences for Azure VM Backup.
- AntiMalware ConfigurationProfile Preference Anti Malware 
- The custom preferences for Azure Antimalware.
- VmBackup ConfigurationProfile Preference Vm Backup 
- The custom preferences for Azure VM Backup.
- antiMalware ConfigurationProfile Preference Anti Malware 
- The custom preferences for Azure Antimalware.
- vmBackup ConfigurationProfile Preference Vm Backup 
- The custom preferences for Azure VM Backup.
- antiMalware ConfigurationProfile Preference Anti Malware 
- The custom preferences for Azure Antimalware.
- vmBackup ConfigurationProfile Preference Vm Backup 
- The custom preferences for Azure VM Backup.
- anti_malware ConfigurationProfile Preference Anti Malware 
- The custom preferences for Azure Antimalware.
- vm_backup ConfigurationProfile Preference Vm Backup 
- 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 Pulumi.Azure Native. Automanage. Inputs. Configuration Profile Preference Anti Malware Response 
- The custom preferences for Azure Antimalware.
- VmBackup Pulumi.Azure Native. Automanage. Inputs. Configuration Profile Preference Vm Backup Response 
- The custom preferences for Azure VM Backup.
- AntiMalware ConfigurationProfile Preference Anti Malware Response 
- The custom preferences for Azure Antimalware.
- VmBackup ConfigurationProfile Preference Vm Backup Response 
- The custom preferences for Azure VM Backup.
- antiMalware ConfigurationProfile Preference Anti Malware Response 
- The custom preferences for Azure Antimalware.
- vmBackup ConfigurationProfile Preference Vm Backup Response 
- The custom preferences for Azure VM Backup.
- antiMalware ConfigurationProfile Preference Anti Malware Response 
- The custom preferences for Azure Antimalware.
- vmBackup ConfigurationProfile Preference Vm Backup Response 
- The custom preferences for Azure VM Backup.
- anti_malware ConfigurationProfile Preference Anti Malware Response 
- The custom preferences for Azure Antimalware.
- vm_backup ConfigurationProfile Preference Vm Backup Response 
- 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          
- InstantRp intRetention Range In Days 
- 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
- InstantRp intRetention Range In Days 
- 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
- instantRp IntegerRetention Range In Days 
- 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
- instantRp numberRetention Range In Days 
- 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_ intretention_ range_ in_ days 
- 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
- instantRp NumberRetention Range In Days 
- 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            
- InstantRp intRetention Range In Days 
- 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
- InstantRp intRetention Range In Days 
- 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
- instantRp IntegerRetention Range In Days 
- 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
- instantRp numberRetention Range In Days 
- 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_ intretention_ range_ in_ days 
- 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
- instantRp NumberRetention Range In Days 
- 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
- EnableReal Time Protection True 
- True
- EnableReal Time Protection False 
- False
- True
- True
- False
- False
- True
- True
- False
- False
- TRUE
- True
- FALSE
- False
- "True"
- True
- "False"
- False
RunScheduledScan, RunScheduledScanArgs      
- True
- True
- False
- False
- RunScheduled Scan True 
- True
- RunScheduled Scan False 
- False
- True
- True
- False
- False
- True
- True
- False
- False
- TRUE
- True
- FALSE
- False
- "True"
- True
- "False"
- False
ScanType, ScanTypeArgs    
- Quick
- Quick
- Full
- Full
- ScanType Quick 
- Quick
- ScanType Full 
- 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} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0