import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Manages a Azure recovery vault protection container mapping. A protection container mapping decides how to translate the protection container when a VM is migrated from one region to another. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const primary = new azure.core.ResourceGroup("primary", { * name: "tfex-network-mapping-primary", * location: "West US", * }); * const secondary = new azure.core.ResourceGroup("secondary", { * name: "tfex-network-mapping-secondary", * location: "East US", * }); * const vault = new azure.recoveryservices.Vault("vault", { * name: "example-recovery-vault", * location: secondary.location, * resourceGroupName: secondary.name, * sku: "Standard", * }); * const primaryFabric = new azure.siterecovery.Fabric("primary", { * name: "primary-fabric", * resourceGroupName: secondary.name, * recoveryVaultName: vault.name, * location: primary.location, * }); * const secondaryFabric = new azure.siterecovery.Fabric("secondary", { * name: "secondary-fabric", * resourceGroupName: secondary.name, * recoveryVaultName: vault.name, * location: secondary.location, * }); * const primaryProtectionContainer = new azure.siterecovery.ProtectionContainer("primary", { * name: "primary-protection-container", * resourceGroupName: secondary.name, * recoveryVaultName: vault.name, * recoveryFabricName: primaryFabric.name, * }); * const secondaryProtectionContainer = new azure.siterecovery.ProtectionContainer("secondary", { * name: "secondary-protection-container", * resourceGroupName: secondary.name, * recoveryVaultName: vault.name, * recoveryFabricName: secondaryFabric.name, * }); * const policy = new azure.siterecovery.ReplicationPolicy("policy", { * name: "policy", * resourceGroupName: secondary.name, * recoveryVaultName: vault.name, * recoveryPointRetentionInMinutes: 24 * 60, * applicationConsistentSnapshotFrequencyInMinutes: 4 * 60, * }); * const container_mapping = new azure.siterecovery.ProtectionContainerMapping("container-mapping", { * name: "container-mapping", * resourceGroupName: secondary.name, * recoveryVaultName: vault.name, * recoveryFabricName: primaryFabric.name, * recoverySourceProtectionContainerName: primaryProtectionContainer.name, * recoveryTargetProtectionContainerId: secondaryProtectionContainer.id, * recoveryReplicationPolicyId: policy.id, * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.RecoveryServices` - 2024-04-01 * * ## Import * * Site Recovery Protection Container Mappings can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:siterecovery/protectionContainerMapping:ProtectionContainerMapping mymapping /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resource-group-name/providers/Microsoft.RecoveryServices/vaults/recovery-vault-name/replicationFabrics/fabric1/replicationProtectionContainers/container1/replicationProtectionContainerMappings/mapping1 * ``` */ export declare class ProtectionContainerMapping extends pulumi.CustomResource { /** * Get an existing ProtectionContainerMapping resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ProtectionContainerMappingState, opts?: pulumi.CustomResourceOptions): ProtectionContainerMapping; /** * Returns true if the given object is an instance of ProtectionContainerMapping. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ProtectionContainerMapping; /** * a `automaticUpdate` block defined as below. */ readonly automaticUpdate: pulumi.Output; /** * The name of the protection container mapping. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * Name of fabric that should contains the protection container to map. Changing this forces a new resource to be created. */ readonly recoveryFabricName: pulumi.Output; /** * Id of the policy to use for this mapping. Changing this forces a new resource to be created. */ readonly recoveryReplicationPolicyId: pulumi.Output; /** * Name of the source protection container to map. Changing this forces a new resource to be created. */ readonly recoverySourceProtectionContainerName: pulumi.Output; /** * Id of target protection container to map to. Changing this forces a new resource to be created. */ readonly recoveryTargetProtectionContainerId: pulumi.Output; /** * The name of the vault that should be updated. Changing this forces a new resource to be created. */ readonly recoveryVaultName: pulumi.Output; /** * Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * Create a ProtectionContainerMapping resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ProtectionContainerMappingArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ProtectionContainerMapping resources. */ export interface ProtectionContainerMappingState { /** * a `automaticUpdate` block defined as below. */ automaticUpdate?: pulumi.Input; /** * The name of the protection container mapping. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Name of fabric that should contains the protection container to map. Changing this forces a new resource to be created. */ recoveryFabricName?: pulumi.Input; /** * Id of the policy to use for this mapping. Changing this forces a new resource to be created. */ recoveryReplicationPolicyId?: pulumi.Input; /** * Name of the source protection container to map. Changing this forces a new resource to be created. */ recoverySourceProtectionContainerName?: pulumi.Input; /** * Id of target protection container to map to. Changing this forces a new resource to be created. */ recoveryTargetProtectionContainerId?: pulumi.Input; /** * The name of the vault that should be updated. Changing this forces a new resource to be created. */ recoveryVaultName?: pulumi.Input; /** * Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; } /** * The set of arguments for constructing a ProtectionContainerMapping resource. */ export interface ProtectionContainerMappingArgs { /** * a `automaticUpdate` block defined as below. */ automaticUpdate?: pulumi.Input; /** * The name of the protection container mapping. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * Name of fabric that should contains the protection container to map. Changing this forces a new resource to be created. */ recoveryFabricName: pulumi.Input; /** * Id of the policy to use for this mapping. Changing this forces a new resource to be created. */ recoveryReplicationPolicyId: pulumi.Input; /** * Name of the source protection container to map. Changing this forces a new resource to be created. */ recoverySourceProtectionContainerName: pulumi.Input; /** * Id of target protection container to map to. Changing this forces a new resource to be created. */ recoveryTargetProtectionContainerId: pulumi.Input; /** * The name of the vault that should be updated. Changing this forces a new resource to be created. */ recoveryVaultName: pulumi.Input; /** * Name of the resource group where the vault that should be updated is located. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; }