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 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",
})
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",
},
});
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={
"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",
})
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
The ConfigurationProfilePreference resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Configuration
Profile 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.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Configuration
Profile stringPreference Name - Name of the configuration profile preference.
- Location string
- The geo-location where the resource lives
- Properties
Configuration
Profile Preference Properties Args - Properties of the configuration profile preference.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- configuration
Profile StringPreference Name - Name of the configuration profile preference.
- location String
- The geo-location where the resource lives
- properties
Configuration
Profile Preference Properties - Properties of the configuration profile preference.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- configuration
Profile stringPreference Name - Name of the configuration profile preference.
- location string
- The geo-location where the resource lives
- properties
Configuration
Profile 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
Configuration
Profile Preference Properties Args - Properties of the configuration profile preference.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- configuration
Profile 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
- Enable
Real 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
- Run
Scheduled string | Pulumi.Scan Azure Native. Automanage. Run Scheduled Scan - Enables or disables a periodic scan for antimalware
- Scan
Day string - Schedule scan settings day
- Scan
Time stringIn Minutes - Schedule scan settings time
- Scan
Type string | Pulumi.Azure Native. Automanage. Scan Type - Type of scheduled scan
- Enable
Real string | EnableTime Protection Real Time Protection - Enables or disables Real Time Protection
- Exclusions interface{}
- Extensions, Paths and Processes that must be excluded from scan
- Run
Scheduled string | RunScan Scheduled Scan - Enables or disables a periodic scan for antimalware
- Scan
Day string - Schedule scan settings day
- Scan
Time stringIn Minutes - Schedule scan settings time
- Scan
Type string | ScanType - Type of scheduled scan
- enable
Real String | EnableTime Protection Real Time Protection - Enables or disables Real Time Protection
- exclusions Object
- Extensions, Paths and Processes that must be excluded from scan
- run
Scheduled String | RunScan Scheduled Scan - Enables or disables a periodic scan for antimalware
- scan
Day String - Schedule scan settings day
- scan
Time StringIn Minutes - Schedule scan settings time
- scan
Type String | ScanType - Type of scheduled scan
- enable
Real string | 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 string | RunScan Scheduled Scan - Enables or disables a periodic scan for antimalware
- scan
Day string - Schedule scan settings day
- scan
Time stringIn Minutes - Schedule scan settings time
- scan
Type 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
- enable
Real String | "True" | "False"Time Protection - Enables or disables Real Time Protection
- exclusions Any
- Extensions, Paths and Processes that must be excluded from scan
- run
Scheduled String | "True" | "False"Scan - Enables or disables a periodic scan for antimalware
- scan
Day String - Schedule scan settings day
- scan
Time StringIn Minutes - Schedule scan settings time
- scan
Type String | "Quick" | "Full" - Type of scheduled scan
ConfigurationProfilePreferenceAntiMalwareResponse, ConfigurationProfilePreferenceAntiMalwareResponseArgs
- Enable
Real stringTime Protection - Enables or disables Real Time Protection
- Exclusions object
- Extensions, Paths and Processes that must be excluded from scan
- Run
Scheduled stringScan - Enables or disables a periodic scan for antimalware
- Scan
Day string - Schedule scan settings day
- Scan
Time stringIn Minutes - Schedule scan settings time
- Scan
Type string - Type of scheduled scan
- Enable
Real stringTime Protection - Enables or disables Real Time Protection
- Exclusions interface{}
- Extensions, Paths and Processes that must be excluded from scan
- Run
Scheduled stringScan - Enables or disables a periodic scan for antimalware
- Scan
Day string - Schedule scan settings day
- Scan
Time stringIn Minutes - Schedule scan settings time
- Scan
Type string - Type of scheduled scan
- enable
Real StringTime Protection - Enables or disables Real Time Protection
- exclusions Object
- Extensions, Paths and Processes that must be excluded from scan
- run
Scheduled StringScan - Enables or disables a periodic scan for antimalware
- scan
Day String - Schedule scan settings day
- scan
Time StringIn Minutes - Schedule scan settings time
- scan
Type String - Type of scheduled scan
- enable
Real stringTime Protection - Enables or disables Real Time Protection
- exclusions any
- Extensions, Paths and Processes that must be excluded from scan
- run
Scheduled stringScan - Enables or disables a periodic scan for antimalware
- scan
Day string - Schedule scan settings day
- scan
Time stringIn Minutes - Schedule scan settings time
- scan
Type 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
- enable
Real StringTime Protection - Enables or disables Real Time Protection
- exclusions Any
- Extensions, Paths and Processes that must be excluded from scan
- run
Scheduled StringScan - Enables or disables a periodic scan for antimalware
- scan
Day String - Schedule scan settings day
- scan
Time StringIn Minutes - Schedule scan settings time
- scan
Type String - Type of scheduled scan
ConfigurationProfilePreferenceProperties, ConfigurationProfilePreferencePropertiesArgs
- Anti
Malware Pulumi.Azure Native. Automanage. Inputs. Configuration Profile Preference Anti Malware - The custom preferences for Azure Antimalware.
- Vm
Backup Pulumi.Azure Native. Automanage. Inputs. Configuration Profile 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.
- 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.
- 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.
- 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.
- anti
Malware Property Map - The custom preferences for Azure Antimalware.
- vm
Backup Property Map - The custom preferences for Azure VM Backup.
ConfigurationProfilePreferencePropertiesResponse, ConfigurationProfilePreferencePropertiesResponseArgs
- Anti
Malware Pulumi.Azure Native. Automanage. Inputs. Configuration Profile Preference Anti Malware Response - The custom preferences for Azure Antimalware.
- Vm
Backup Pulumi.Azure Native. Automanage. Inputs. Configuration Profile 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.
- 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.
- 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.
- 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.
- anti
Malware Property Map - The custom preferences for Azure Antimalware.
- vm
Backup Property Map - The custom preferences for Azure VM Backup.
ConfigurationProfilePreferenceVmBackup, ConfigurationProfilePreferenceVmBackupArgs
- Instant
Rp intRetention Range In Days - Instant RP retention policy range in days
- Retention
Policy string - Retention policy with the details on backup copy retention ranges.
- Schedule
Policy string - Backup schedule specified as part of backup policy.
- Time
Zone 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 string - Retention policy with the details on backup copy retention ranges.
- Schedule
Policy string - Backup schedule specified as part of backup policy.
- Time
Zone string - TimeZone optional input as string. For example: Pacific Standard Time
- instant
Rp IntegerRetention Range In Days - Instant RP retention policy range in days
- retention
Policy String - Retention policy with the details on backup copy retention ranges.
- schedule
Policy String - Backup schedule specified as part of backup policy.
- time
Zone String - TimeZone optional input as string. For example: Pacific Standard Time
- instant
Rp numberRetention Range In Days - Instant RP retention policy range in days
- retention
Policy string - Retention policy with the details on backup copy retention ranges.
- schedule
Policy string - Backup schedule specified as part of backup policy.
- time
Zone 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
- instant
Rp NumberRetention Range In Days - Instant RP retention policy range in days
- retention
Policy String - Retention policy with the details on backup copy retention ranges.
- schedule
Policy String - Backup schedule specified as part of backup policy.
- time
Zone String - TimeZone optional input as string. For example: Pacific Standard Time
ConfigurationProfilePreferenceVmBackupResponse, ConfigurationProfilePreferenceVmBackupResponseArgs
- Instant
Rp intRetention Range In Days - Instant RP retention policy range in days
- Retention
Policy string - Retention policy with the details on backup copy retention ranges.
- Schedule
Policy string - Backup schedule specified as part of backup policy.
- Time
Zone 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 string - Retention policy with the details on backup copy retention ranges.
- Schedule
Policy string - Backup schedule specified as part of backup policy.
- Time
Zone string - TimeZone optional input as string. For example: Pacific Standard Time
- instant
Rp IntegerRetention Range In Days - Instant RP retention policy range in days
- retention
Policy String - Retention policy with the details on backup copy retention ranges.
- schedule
Policy String - Backup schedule specified as part of backup policy.
- time
Zone String - TimeZone optional input as string. For example: Pacific Standard Time
- instant
Rp numberRetention Range In Days - Instant RP retention policy range in days
- retention
Policy string - Retention policy with the details on backup copy retention ranges.
- schedule
Policy string - Backup schedule specified as part of backup policy.
- time
Zone 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
- instant
Rp NumberRetention Range In Days - Instant RP retention policy range in days
- retention
Policy String - Retention policy with the details on backup copy retention ranges.
- schedule
Policy String - Backup schedule specified as part of backup policy.
- time
Zone String - TimeZone optional input as string. For example: Pacific Standard Time
EnableRealTimeProtection, EnableRealTimeProtectionArgs
- True
- True
- False
- False
- Enable
Real Time Protection True - True
- Enable
Real 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
- Run
Scheduled Scan True - True
- Run
Scheduled 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
- Scan
Type Quick - Quick
- Scan
Type 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