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 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")
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",
});
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={
"customProperties": {
"appConsistentFrequencyInMinutes": 0,
"crashConsistentFrequencyInMinutes": 0,
"instanceType": "HyperVToAzStackHCI",
"recoveryPointHistoryInMinutes": 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
The Policy resource accepts the following input properties:
- Properties
Pulumi.
Azure Native. Data Replication. Inputs. Policy Model Properties - Policy model properties.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Vault
Name string - The vault name.
- Policy
Name string - The policy name.
- Properties
Policy
Model Properties Args - Policy model properties.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Vault
Name string - The vault name.
- Policy
Name string - The policy name.
- properties
Policy
Model Properties - Policy model properties.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- vault
Name String - The vault name.
- policy
Name String - The policy name.
- properties
Policy
Model Properties - Policy model properties.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- vault
Name string - The vault name.
- policy
Name string - The policy name.
- properties
Policy
Model 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.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- vault
Name String - The vault name.
- policy
Name 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.
- System
Data 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.
- System
Data 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.
- system
Data 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.
- system
Data 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.
- system
Data Property Map - type String
- Gets or sets the type of the resource.
Supporting Types
HyperVToAzStackHCIPolicyModelCustomProperties, HyperVToAzStackHCIPolicyModelCustomPropertiesArgs
- 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.
- 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.
- app
Consistent IntegerFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent IntegerFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point IntegerHistory In Minutes - Gets or sets the duration in minutes until which the recovery points need to be stored.
- app
Consistent numberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent numberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point 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.
- app
Consistent NumberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent NumberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point NumberHistory In Minutes - Gets or sets the duration in minutes until which the recovery points need to be stored.
HyperVToAzStackHCIPolicyModelCustomPropertiesResponse, HyperVToAzStackHCIPolicyModelCustomPropertiesResponseArgs
- 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.
- 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.
- app
Consistent IntegerFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent IntegerFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point IntegerHistory In Minutes - Gets or sets the duration in minutes until which the recovery points need to be stored.
- app
Consistent numberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent numberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point 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.
- app
Consistent NumberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent NumberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point NumberHistory In Minutes - Gets or sets the duration in minutes until which the recovery points need to be stored.
PolicyModelProperties, PolicyModelPropertiesArgs
- Custom
Properties 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.
- custom
Properties 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.
- custom
Properties Property Map | Property Map - Policy model custom properties.
PolicyModelPropertiesResponse, PolicyModelPropertiesResponseArgs
- Custom
Properties 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.
- Provisioning
State 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 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 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 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.
- custom
Properties Property Map | Property Map - Policy model custom properties.
- provisioning
State String - Gets or sets the provisioning state of the policy.
PolicyModelResponseSystemData, PolicyModelResponseSystemDataArgs
- Created
At string - Gets or sets the timestamp of resource creation (UTC).
- Created
By string - Gets or sets identity that created the resource.
- Created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- Last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- Last
Modified stringBy - Gets or sets the identity that last modified the resource.
- Last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- Created
At string - Gets or sets the timestamp of resource creation (UTC).
- Created
By string - Gets or sets identity that created the resource.
- Created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- Last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- Last
Modified stringBy - Gets or sets the identity that last modified the resource.
- Last
Modified stringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At String - Gets or sets the timestamp of resource creation (UTC).
- created
By String - Gets or sets identity that created the resource.
- created
By StringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified StringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified StringBy - Gets or sets the identity that last modified the resource.
- last
Modified StringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
- created
At string - Gets or sets the timestamp of resource creation (UTC).
- created
By string - Gets or sets identity that created the resource.
- created
By stringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified stringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified stringBy - Gets or sets the identity that last modified the resource.
- last
Modified 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.
- created
At String - Gets or sets the timestamp of resource creation (UTC).
- created
By String - Gets or sets identity that created the resource.
- created
By StringType - Gets or sets the type of identity that created the resource: user, application, managedIdentity.
- last
Modified StringAt - Gets or sets the timestamp of resource last modification (UTC).
- last
Modified StringBy - Gets or sets the identity that last modified the resource.
- last
Modified StringBy Type - Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
VMwareToAzStackHCIPolicyModelCustomProperties, VMwareToAzStackHCIPolicyModelCustomPropertiesArgs
- 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.
- 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.
- app
Consistent IntegerFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent IntegerFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point IntegerHistory In Minutes - Gets or sets the duration in minutes until which the recovery points need to be stored.
- app
Consistent numberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent numberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point 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.
- app
Consistent NumberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent NumberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point NumberHistory In Minutes - Gets or sets the duration in minutes until which the recovery points need to be stored.
VMwareToAzStackHCIPolicyModelCustomPropertiesResponse, VMwareToAzStackHCIPolicyModelCustomPropertiesResponseArgs
- 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.
- 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.
- app
Consistent IntegerFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent IntegerFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point IntegerHistory In Minutes - Gets or sets the duration in minutes until which the recovery points need to be stored.
- app
Consistent numberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent numberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point 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.
- app
Consistent NumberFrequency In Minutes - Gets or sets the app consistent snapshot frequency (in minutes).
- crash
Consistent NumberFrequency In Minutes - Gets or sets the crash consistent snapshot frequency (in minutes).
- recovery
Point 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