azure-native.datareplication.Policy
Explore with Pulumi AI
Policy model. Azure REST API version: 2021-02-16-preview.
Example Usage
Policy_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var policy = new AzureNative.DataReplication.Policy("policy", new()
    {
        PolicyName = "fafqwc",
        Properties = new AzureNative.DataReplication.Inputs.PolicyModelPropertiesArgs
        {
            CustomProperties = 
            {
                { "instanceType", "PolicyModelCustomProperties" },
            },
        },
        ResourceGroupName = "rgrecoveryservicesdatareplication",
        VaultName = "4",
    });
});
package main
import (
	datareplication "github.com/pulumi/pulumi-azure-native-sdk/datareplication/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datareplication.NewPolicy(ctx, "policy", &datareplication.PolicyArgs{
			PolicyName: pulumi.String("fafqwc"),
			Properties: &datareplication.PolicyModelPropertiesArgs{
				CustomProperties: pulumi.Any{
					InstanceType: pulumi.String("PolicyModelCustomProperties"),
				},
			},
			ResourceGroupName: pulumi.String("rgrecoveryservicesdatareplication"),
			VaultName:         pulumi.String("4"),
		})
		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.datareplication.Policy;
import com.pulumi.azurenative.datareplication.PolicyArgs;
import com.pulumi.azurenative.datareplication.inputs.PolicyModelPropertiesArgs;
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 policy = new Policy("policy", PolicyArgs.builder()
            .policyName("fafqwc")
            .properties(PolicyModelPropertiesArgs.builder()
                .customProperties(HyperVToAzStackHCIPolicyModelCustomPropertiesArgs.builder()
                    .instanceType("PolicyModelCustomProperties")
                    .build())
                .build())
            .resourceGroupName("rgrecoveryservicesdatareplication")
            .vaultName("4")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const policy = new azure_native.datareplication.Policy("policy", {
    policyName: "fafqwc",
    properties: {
        customProperties: {
            instanceType: "PolicyModelCustomProperties",
        },
    },
    resourceGroupName: "rgrecoveryservicesdatareplication",
    vaultName: "4",
});
import pulumi
import pulumi_azure_native as azure_native
policy = azure_native.datareplication.Policy("policy",
    policy_name="fafqwc",
    properties={
        "custom_properties": {
            "instance_type": "PolicyModelCustomProperties",
        },
    },
    resource_group_name="rgrecoveryservicesdatareplication",
    vault_name="4")
resources:
  policy:
    type: azure-native:datareplication:Policy
    properties:
      policyName: fafqwc
      properties:
        customProperties:
          instanceType: PolicyModelCustomProperties
      resourceGroupName: rgrecoveryservicesdatareplication
      vaultName: '4'
Create Policy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Policy(name: string, args: PolicyArgs, opts?: CustomResourceOptions);@overload
def Policy(resource_name: str,
           args: PolicyArgs,
           opts: Optional[ResourceOptions] = None)
@overload
def Policy(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           properties: Optional[PolicyModelPropertiesArgs] = None,
           resource_group_name: Optional[str] = None,
           vault_name: Optional[str] = None,
           policy_name: Optional[str] = None)func NewPolicy(ctx *Context, name string, args PolicyArgs, opts ...ResourceOption) (*Policy, error)public Policy(string name, PolicyArgs args, CustomResourceOptions? opts = null)
public Policy(String name, PolicyArgs args)
public Policy(String name, PolicyArgs args, CustomResourceOptions options)
type: azure-native:datareplication:Policy
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 PolicyArgs
- 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 PolicyArgs
- 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 PolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyArgs
- 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 examplepolicyResourceResourceFromDatareplication = new AzureNative.DataReplication.Policy("examplepolicyResourceResourceFromDatareplication", new()
{
    Properties = new AzureNative.DataReplication.Inputs.PolicyModelPropertiesArgs
    {
        CustomProperties = new AzureNative.DataReplication.Inputs.HyperVToAzStackHCIPolicyModelCustomPropertiesArgs
        {
            AppConsistentFrequencyInMinutes = 0,
            CrashConsistentFrequencyInMinutes = 0,
            InstanceType = "HyperVToAzStackHCI",
            RecoveryPointHistoryInMinutes = 0,
        },
    },
    ResourceGroupName = "string",
    VaultName = "string",
    PolicyName = "string",
});
example, err := datareplication.NewPolicy(ctx, "examplepolicyResourceResourceFromDatareplication", &datareplication.PolicyArgs{
	Properties: &datareplication.PolicyModelPropertiesArgs{
		CustomProperties: datareplication.HyperVToAzStackHCIPolicyModelCustomProperties{
			AppConsistentFrequencyInMinutes:   0,
			CrashConsistentFrequencyInMinutes: 0,
			InstanceType:                      "HyperVToAzStackHCI",
			RecoveryPointHistoryInMinutes:     0,
		},
	},
	ResourceGroupName: pulumi.String("string"),
	VaultName:         pulumi.String("string"),
	PolicyName:        pulumi.String("string"),
})
var examplepolicyResourceResourceFromDatareplication = new Policy("examplepolicyResourceResourceFromDatareplication", PolicyArgs.builder()
    .properties(PolicyModelPropertiesArgs.builder()
        .customProperties(HyperVToAzStackHCIPolicyModelCustomPropertiesArgs.builder()
            .appConsistentFrequencyInMinutes(0)
            .crashConsistentFrequencyInMinutes(0)
            .instanceType("HyperVToAzStackHCI")
            .recoveryPointHistoryInMinutes(0)
            .build())
        .build())
    .resourceGroupName("string")
    .vaultName("string")
    .policyName("string")
    .build());
examplepolicy_resource_resource_from_datareplication = azure_native.datareplication.Policy("examplepolicyResourceResourceFromDatareplication",
    properties={
        "custom_properties": {
            "app_consistent_frequency_in_minutes": 0,
            "crash_consistent_frequency_in_minutes": 0,
            "instance_type": "HyperVToAzStackHCI",
            "recovery_point_history_in_minutes": 0,
        },
    },
    resource_group_name="string",
    vault_name="string",
    policy_name="string")
const examplepolicyResourceResourceFromDatareplication = new azure_native.datareplication.Policy("examplepolicyResourceResourceFromDatareplication", {
    properties: {
        customProperties: {
            appConsistentFrequencyInMinutes: 0,
            crashConsistentFrequencyInMinutes: 0,
            instanceType: "HyperVToAzStackHCI",
            recoveryPointHistoryInMinutes: 0,
        },
    },
    resourceGroupName: "string",
    vaultName: "string",
    policyName: "string",
});
type: azure-native:datareplication:Policy
properties:
    policyName: string
    properties:
        customProperties:
            appConsistentFrequencyInMinutes: 0
            crashConsistentFrequencyInMinutes: 0
            instanceType: HyperVToAzStackHCI
            recoveryPointHistoryInMinutes: 0
    resourceGroupName: string
    vaultName: string
Policy 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 Policy resource accepts the following input properties:
- Properties
Pulumi.Azure Native. Data Replication. Inputs. Policy Model Properties 
- Policy model properties.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- VaultName string
- The vault name.
- PolicyName string
- The policy name.
- Properties
PolicyModel Properties Args 
- Policy model properties.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- VaultName string
- The vault name.
- PolicyName string
- The policy name.
- properties
PolicyModel Properties 
- Policy model properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- vaultName String
- The vault name.
- policyName String
- The policy name.
- properties
PolicyModel Properties 
- Policy model properties.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- vaultName string
- The vault name.
- policyName string
- The policy name.
- properties
PolicyModel Properties Args 
- Policy model properties.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- vault_name str
- The vault name.
- policy_name str
- The policy name.
- properties Property Map
- Policy model properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- vaultName String
- The vault name.
- policyName String
- The policy name.
Outputs
All input properties are implicitly available as output properties. Additionally, the Policy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets or sets the name of the resource.
- SystemData Pulumi.Azure Native. Data Replication. Outputs. Policy Model Response System Data 
- Type string
- Gets or sets the type of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Gets or sets the name of the resource.
- SystemData PolicyModel Response System Data 
- Type string
- Gets or sets the type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Gets or sets the name of the resource.
- systemData PolicyModel Response System Data 
- type String
- Gets or sets the type of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Gets or sets the name of the resource.
- systemData PolicyModel Response System Data 
- type string
- Gets or sets the type of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Gets or sets the name of the resource.
- system_data PolicyModel Response System Data 
- type str
- Gets or sets the type of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Gets or sets the name of the resource.
- systemData Property Map
- type String
- Gets or sets the type of the resource.
Supporting Types
HyperVToAzStackHCIPolicyModelCustomProperties, HyperVToAzStackHCIPolicyModelCustomPropertiesArgs                
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent IntegerFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent IntegerFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint IntegerHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent numberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent numberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint numberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- app_consistent_ intfrequency_ in_ minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crash_consistent_ intfrequency_ in_ minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery_point_ inthistory_ in_ minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent NumberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent NumberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint NumberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
HyperVToAzStackHCIPolicyModelCustomPropertiesResponse, HyperVToAzStackHCIPolicyModelCustomPropertiesResponseArgs                  
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent IntegerFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent IntegerFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint IntegerHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent numberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent numberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint numberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- app_consistent_ intfrequency_ in_ minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crash_consistent_ intfrequency_ in_ minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery_point_ inthistory_ in_ minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent NumberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent NumberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint NumberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
PolicyModelProperties, PolicyModelPropertiesArgs      
- CustomProperties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties To Az Stack HCIPolicy Model Custom Properties 
- Policy model custom properties.
- customProperties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties To Az Stack HCIPolicy Model Custom Properties 
- Policy model custom properties.
- customProperties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties To Az Stack HCIPolicy Model Custom Properties 
- Policy model custom properties.
- custom_properties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties To Az Stack HCIPolicy Model Custom Properties 
- Policy model custom properties.
- customProperties Property Map | Property Map
- Policy model custom properties.
PolicyModelPropertiesResponse, PolicyModelPropertiesResponseArgs        
- CustomProperties Pulumi.Azure | Pulumi.Native. Data Replication. Inputs. Hyper VTo Az Stack HCIPolicy Model Custom Properties Response Azure Native. Data Replication. Inputs. VMware To Az Stack HCIPolicy Model Custom Properties Response 
- Policy model custom properties.
- ProvisioningState string
- Gets or sets the provisioning state of the policy.
- CustomProperties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties Response To Az Stack HCIPolicy Model Custom Properties Response 
- Policy model custom properties.
- ProvisioningState string
- Gets or sets the provisioning state of the policy.
- customProperties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties Response To Az Stack HCIPolicy Model Custom Properties Response 
- Policy model custom properties.
- provisioningState String
- Gets or sets the provisioning state of the policy.
- customProperties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties Response To Az Stack HCIPolicy Model Custom Properties Response 
- Policy model custom properties.
- provisioningState string
- Gets or sets the provisioning state of the policy.
- custom_properties HyperVTo | VMwareAz Stack HCIPolicy Model Custom Properties Response To Az Stack HCIPolicy Model Custom Properties Response 
- Policy model custom properties.
- provisioning_state str
- Gets or sets the provisioning state of the policy.
- customProperties Property Map | Property Map
- Policy model custom properties.
- provisioningState String
- Gets or sets the provisioning state of the policy.
PolicyModelResponseSystemData, PolicyModelResponseSystemDataArgs          
- CreatedAt string
- Gets or sets the timestamp of resource creation (UTC).
- CreatedBy string
- Gets or sets identity that created the resource.
- CreatedBy stringType 
- Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- LastModified stringAt 
- Gets or sets the timestamp of resource last modification (UTC).
- LastModified stringBy 
- Gets or sets the identity that last modified the resource.
- LastModified stringBy Type 
- Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- CreatedAt string
- Gets or sets the timestamp of resource creation (UTC).
- CreatedBy string
- Gets or sets identity that created the resource.
- CreatedBy stringType 
- Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- LastModified stringAt 
- Gets or sets the timestamp of resource last modification (UTC).
- LastModified stringBy 
- Gets or sets the identity that last modified the resource.
- LastModified stringBy Type 
- Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- createdAt String
- Gets or sets the timestamp of resource creation (UTC).
- createdBy String
- Gets or sets identity that created the resource.
- createdBy StringType 
- Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- lastModified StringAt 
- Gets or sets the timestamp of resource last modification (UTC).
- lastModified StringBy 
- Gets or sets the identity that last modified the resource.
- lastModified StringBy Type 
- Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- createdAt string
- Gets or sets the timestamp of resource creation (UTC).
- createdBy string
- Gets or sets identity that created the resource.
- createdBy stringType 
- Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- lastModified stringAt 
- Gets or sets the timestamp of resource last modification (UTC).
- lastModified stringBy 
- Gets or sets the identity that last modified the resource.
- lastModified stringBy Type 
- Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created_at str
- Gets or sets the timestamp of resource creation (UTC).
- created_by str
- Gets or sets identity that created the resource.
- created_by_ strtype 
- Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last_modified_ strat 
- Gets or sets the timestamp of resource last modification (UTC).
- last_modified_ strby 
- Gets or sets the identity that last modified the resource.
- last_modified_ strby_ type 
- Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- createdAt String
- Gets or sets the timestamp of resource creation (UTC).
- createdBy String
- Gets or sets identity that created the resource.
- createdBy StringType 
- Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- lastModified StringAt 
- Gets or sets the timestamp of resource last modification (UTC).
- lastModified StringBy 
- Gets or sets the identity that last modified the resource.
- lastModified StringBy Type 
- Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
VMwareToAzStackHCIPolicyModelCustomProperties, VMwareToAzStackHCIPolicyModelCustomPropertiesArgs                
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent IntegerFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent IntegerFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint IntegerHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent numberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent numberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint numberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- app_consistent_ intfrequency_ in_ minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crash_consistent_ intfrequency_ in_ minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery_point_ inthistory_ in_ minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent NumberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent NumberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint NumberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
VMwareToAzStackHCIPolicyModelCustomPropertiesResponse, VMwareToAzStackHCIPolicyModelCustomPropertiesResponseArgs                  
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- AppConsistent intFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- CrashConsistent intFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- RecoveryPoint intHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent IntegerFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent IntegerFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint IntegerHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent numberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent numberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint numberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- app_consistent_ intfrequency_ in_ minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crash_consistent_ intfrequency_ in_ minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery_point_ inthistory_ in_ minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
- appConsistent NumberFrequency In Minutes 
- Gets or sets the app consistent snapshot frequency (in minutes).
- crashConsistent NumberFrequency In Minutes 
- Gets or sets the crash consistent snapshot frequency (in minutes).
- recoveryPoint NumberHistory In Minutes 
- Gets or sets the duration in minutes until which the recovery points need to be stored.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datareplication:Policy ocmty /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationPolicies/{policyName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0