1. Packages
  2. Azure Native
  3. API Docs
  4. datareplication
  5. Policy
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.44.1 published on Thursday, Jun 6, 2024 by Pulumi

azure-native.datareplication.Policy

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.44.1 published on Thursday, Jun 6, 2024 by Pulumi

    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 (
    	"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: interface{}{
    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=azure_native.datareplication.PolicyModelPropertiesArgs(
            custom_properties={
                "instanceType": "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.

    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=azure_native.datareplication.PolicyModelPropertiesArgs(
            custom_properties=azure_native.datareplication.HyperVToAzStackHCIPolicyModelCustomPropertiesArgs(
                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

    The Policy resource accepts the following input properties:

    Properties Pulumi.AzureNative.DataReplication.Inputs.PolicyModelProperties
    Policy model properties.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VaultName string
    The vault name.
    PolicyName string
    The policy name.
    Properties PolicyModelPropertiesArgs
    Policy model properties.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VaultName string
    The vault name.
    PolicyName string
    The policy name.
    properties PolicyModelProperties
    Policy model properties.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    vaultName String
    The vault name.
    policyName String
    The policy name.
    properties PolicyModelProperties
    Policy model properties.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    vaultName string
    The vault name.
    policyName string
    The policy name.
    properties PolicyModelPropertiesArgs
    Policy model properties.
    resource_group_name str
    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.
    resourceGroupName String
    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.AzureNative.DataReplication.Outputs.PolicyModelResponseSystemData
    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 PolicyModelResponseSystemData
    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 PolicyModelResponseSystemData
    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 PolicyModelResponseSystemData
    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 PolicyModelResponseSystemData
    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

    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Integer
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Integer
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Integer
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes number
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    app_consistent_frequency_in_minutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    crash_consistent_frequency_in_minutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recovery_point_history_in_minutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Number
    Gets or sets the duration in minutes until which the recovery points need to be stored.

    HyperVToAzStackHCIPolicyModelCustomPropertiesResponse, HyperVToAzStackHCIPolicyModelCustomPropertiesResponseArgs

    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Integer
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Integer
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Integer
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes number
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    app_consistent_frequency_in_minutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    crash_consistent_frequency_in_minutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recovery_point_history_in_minutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Number
    Gets or sets the duration in minutes until which the recovery points need to be stored.

    PolicyModelProperties, PolicyModelPropertiesArgs

    customProperties Property Map | Property Map
    Policy model custom properties.

    PolicyModelPropertiesResponse, PolicyModelPropertiesResponseArgs

    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.
    CreatedByType string
    Gets or sets the type of identity that created the resource: user, application, managedIdentity.
    LastModifiedAt string
    Gets or sets the timestamp of resource last modification (UTC).
    LastModifiedBy string
    Gets or sets the identity that last modified the resource.
    LastModifiedByType string
    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.
    CreatedByType string
    Gets or sets the type of identity that created the resource: user, application, managedIdentity.
    LastModifiedAt string
    Gets or sets the timestamp of resource last modification (UTC).
    LastModifiedBy string
    Gets or sets the identity that last modified the resource.
    LastModifiedByType string
    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.
    createdByType String
    Gets or sets the type of identity that created the resource: user, application, managedIdentity.
    lastModifiedAt String
    Gets or sets the timestamp of resource last modification (UTC).
    lastModifiedBy String
    Gets or sets the identity that last modified the resource.
    lastModifiedByType String
    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.
    createdByType string
    Gets or sets the type of identity that created the resource: user, application, managedIdentity.
    lastModifiedAt string
    Gets or sets the timestamp of resource last modification (UTC).
    lastModifiedBy string
    Gets or sets the identity that last modified the resource.
    lastModifiedByType string
    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_type str
    Gets or sets the type of identity that created the resource: user, application, managedIdentity.
    last_modified_at str
    Gets or sets the timestamp of resource last modification (UTC).
    last_modified_by str
    Gets or sets the identity that last modified the resource.
    last_modified_by_type str
    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.
    createdByType String
    Gets or sets the type of identity that created the resource: user, application, managedIdentity.
    lastModifiedAt String
    Gets or sets the timestamp of resource last modification (UTC).
    lastModifiedBy String
    Gets or sets the identity that last modified the resource.
    lastModifiedByType String
    Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.

    VMwareToAzStackHCIPolicyModelCustomProperties, VMwareToAzStackHCIPolicyModelCustomPropertiesArgs

    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Integer
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Integer
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Integer
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes number
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    app_consistent_frequency_in_minutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    crash_consistent_frequency_in_minutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recovery_point_history_in_minutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Number
    Gets or sets the duration in minutes until which the recovery points need to be stored.

    VMwareToAzStackHCIPolicyModelCustomPropertiesResponse, VMwareToAzStackHCIPolicyModelCustomPropertiesResponseArgs

    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    AppConsistentFrequencyInMinutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    CrashConsistentFrequencyInMinutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    RecoveryPointHistoryInMinutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Integer
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Integer
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Integer
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes number
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    app_consistent_frequency_in_minutes int
    Gets or sets the app consistent snapshot frequency (in minutes).
    crash_consistent_frequency_in_minutes int
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recovery_point_history_in_minutes int
    Gets or sets the duration in minutes until which the recovery points need to be stored.
    appConsistentFrequencyInMinutes Number
    Gets or sets the app consistent snapshot frequency (in minutes).
    crashConsistentFrequencyInMinutes Number
    Gets or sets the crash consistent snapshot frequency (in minutes).
    recoveryPointHistoryInMinutes Number
    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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.44.1 published on Thursday, Jun 6, 2024 by Pulumi