1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. horizondb
  6. HorizonDbCluster
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.23.0
published on Saturday, Jul 18, 2026 by Pulumi

    Represents the HorizonDB cluster.

    Uses Azure REST API version 2026-01-20-preview.

    Example Usage

    Create or update a HorizonDB cluster

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var horizonDbCluster = new AzureNative.HorizonDb.HorizonDbCluster("horizonDbCluster", new()
        {
            ClusterName = "examplecluster",
            Location = "westus2",
            Properties = new AzureNative.HorizonDb.Inputs.HorizonDbClusterPropertiesArgs
            {
                AdministratorLogin = "exampleadministratorlogin",
                AdministratorLoginPassword = "examplepassword",
                CreateMode = AzureNative.HorizonDb.CreateModeCluster.Create,
                ReplicaCount = 2,
                VCores = 4,
                Version = "17",
                ZonePlacementPolicy = AzureNative.HorizonDb.ZonePlacementPolicy.BestEffort,
            },
            ResourceGroupName = "exampleresourcegroup",
            Tags = 
            {
                { "env", "dev" },
            },
        });
    
    });
    
    package main
    
    import (
    	horizondb "github.com/pulumi/pulumi-azure-native-sdk/horizondb/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := horizondb.NewHorizonDbCluster(ctx, "horizonDbCluster", &horizondb.HorizonDbClusterArgs{
    			ClusterName: pulumi.String("examplecluster"),
    			Location:    pulumi.String("westus2"),
    			Properties: &horizondb.HorizonDbClusterPropertiesArgs{
    				AdministratorLogin:         pulumi.String("exampleadministratorlogin"),
    				AdministratorLoginPassword: pulumi.String("examplepassword"),
    				CreateMode:                 pulumi.String(horizondb.CreateModeClusterCreate),
    				ReplicaCount:               pulumi.Int(2),
    				VCores:                     pulumi.Int(4),
    				Version:                    pulumi.String("17"),
    				ZonePlacementPolicy:        pulumi.String(horizondb.ZonePlacementPolicyBestEffort),
    			},
    			ResourceGroupName: pulumi.String("exampleresourcegroup"),
    			Tags: pulumi.StringMap{
    				"env": pulumi.String("dev"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_horizondb_horizondbcluster" "horizonDbCluster" {
      cluster_name = "examplecluster"
      location     = "westus2"
      properties = {
        administrator_login          = "exampleadministratorlogin"
        administrator_login_password = "examplepassword"
        create_mode                  = "Create"
        replica_count                = 2
        v_cores                      = 4
        version                      = "17"
        zone_placement_policy        = "BestEffort"
      }
      resource_group_name = "exampleresourcegroup"
      tags = {
        "env" = "dev"
      }
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.horizondb.HorizonDbCluster;
    import com.pulumi.azurenative.horizondb.HorizonDbClusterArgs;
    import com.pulumi.azurenative.horizondb.inputs.HorizonDbClusterPropertiesArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 horizonDbCluster = new HorizonDbCluster("horizonDbCluster", HorizonDbClusterArgs.builder()
                .clusterName("examplecluster")
                .location("westus2")
                .properties(HorizonDbClusterPropertiesArgs.builder()
                    .administratorLogin("exampleadministratorlogin")
                    .administratorLoginPassword("examplepassword")
                    .createMode("Create")
                    .replicaCount(2)
                    .vCores(4)
                    .version("17")
                    .zonePlacementPolicy("BestEffort")
                    .build())
                .resourceGroupName("exampleresourcegroup")
                .tags(Map.of("env", "dev"))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const horizonDbCluster = new azure_native.horizondb.HorizonDbCluster("horizonDbCluster", {
        clusterName: "examplecluster",
        location: "westus2",
        properties: {
            administratorLogin: "exampleadministratorlogin",
            administratorLoginPassword: "examplepassword",
            createMode: azure_native.horizondb.CreateModeCluster.Create,
            replicaCount: 2,
            vCores: 4,
            version: "17",
            zonePlacementPolicy: azure_native.horizondb.ZonePlacementPolicy.BestEffort,
        },
        resourceGroupName: "exampleresourcegroup",
        tags: {
            env: "dev",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    horizon_db_cluster = azure_native.horizondb.HorizonDbCluster("horizonDbCluster",
        cluster_name="examplecluster",
        location="westus2",
        properties={
            "administrator_login": "exampleadministratorlogin",
            "administrator_login_password": "examplepassword",
            "create_mode": azure_native.horizondb.CreateModeCluster.CREATE,
            "replica_count": 2,
            "v_cores": 4,
            "version": "17",
            "zone_placement_policy": azure_native.horizondb.ZonePlacementPolicy.BEST_EFFORT,
        },
        resource_group_name="exampleresourcegroup",
        tags={
            "env": "dev",
        })
    
    resources:
      horizonDbCluster:
        type: azure-native:horizondb:HorizonDbCluster
        properties:
          clusterName: examplecluster
          location: westus2
          properties:
            administratorLogin: exampleadministratorlogin
            administratorLoginPassword: examplepassword
            createMode: Create
            replicaCount: 2
            vCores: 4
            version: '17'
            zonePlacementPolicy: BestEffort
          resourceGroupName: exampleresourcegroup
          tags:
            env: dev
    

    Create HorizonDbCluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new HorizonDbCluster(name: string, args: HorizonDbClusterArgs, opts?: CustomResourceOptions);
    @overload
    def HorizonDbCluster(resource_name: str,
                         args: HorizonDbClusterArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def HorizonDbCluster(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         resource_group_name: Optional[str] = None,
                         cluster_name: Optional[str] = None,
                         location: Optional[str] = None,
                         properties: Optional[HorizonDbClusterPropertiesArgs] = None,
                         tags: Optional[Mapping[str, str]] = None)
    func NewHorizonDbCluster(ctx *Context, name string, args HorizonDbClusterArgs, opts ...ResourceOption) (*HorizonDbCluster, error)
    public HorizonDbCluster(string name, HorizonDbClusterArgs args, CustomResourceOptions? opts = null)
    public HorizonDbCluster(String name, HorizonDbClusterArgs args)
    public HorizonDbCluster(String name, HorizonDbClusterArgs args, CustomResourceOptions options)
    
    type: azure-native:horizondb:HorizonDbCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_horizondb_horizon_db_cluster" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args HorizonDbClusterArgs
    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 HorizonDbClusterArgs
    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 HorizonDbClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HorizonDbClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HorizonDbClusterArgs
    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 horizonDbClusterResource = new AzureNative.HorizonDb.HorizonDbCluster("horizonDbClusterResource", new()
    {
        ResourceGroupName = "string",
        ClusterName = "string",
        Location = "string",
        Properties = new AzureNative.HorizonDb.Inputs.HorizonDbClusterPropertiesArgs
        {
            AdministratorLogin = "string",
            AdministratorLoginPassword = "string",
            CreateMode = "string",
            ParameterGroup = new AzureNative.HorizonDb.Inputs.HorizonDbClusterParameterGroupConnectionPropertiesArgs
            {
                ApplyImmediately = false,
                Id = "string",
            },
            PointInTimeUTC = "string",
            PoolName = "string",
            ProcessorType = "string",
            ReplicaCount = 0,
            SourceClusterResourceId = "string",
            VCores = 0,
            Version = "string",
            ZonePlacementPolicy = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := horizondb.NewHorizonDbCluster(ctx, "horizonDbClusterResource", &horizondb.HorizonDbClusterArgs{
    	ResourceGroupName: pulumi.String("string"),
    	ClusterName:       pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &horizondb.HorizonDbClusterPropertiesArgs{
    		AdministratorLogin:         pulumi.String("string"),
    		AdministratorLoginPassword: pulumi.String("string"),
    		CreateMode:                 pulumi.String("string"),
    		ParameterGroup: &horizondb.HorizonDbClusterParameterGroupConnectionPropertiesArgs{
    			ApplyImmediately: pulumi.Bool(false),
    			Id:               pulumi.String("string"),
    		},
    		PointInTimeUTC:          pulumi.String("string"),
    		PoolName:                pulumi.String("string"),
    		ProcessorType:           pulumi.String("string"),
    		ReplicaCount:            pulumi.Int(0),
    		SourceClusterResourceId: pulumi.String("string"),
    		VCores:                  pulumi.Int(0),
    		Version:                 pulumi.String("string"),
    		ZonePlacementPolicy:     pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_horizondb_horizon_db_cluster" "horizonDbClusterResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name = "string"
      cluster_name        = "string"
      location            = "string"
      properties = {
        administrator_login          = "string"
        administrator_login_password = "string"
        create_mode                  = "string"
        parameter_group = {
          apply_immediately = false
          id                = "string"
        }
        point_in_time_utc          = "string"
        pool_name                  = "string"
        processor_type             = "string"
        replica_count              = 0
        source_cluster_resource_id = "string"
        v_cores                    = 0
        version                    = "string"
        zone_placement_policy      = "string"
      }
      tags = {
        "string" = "string"
      }
    }
    
    var horizonDbClusterResource = new HorizonDbCluster("horizonDbClusterResource", HorizonDbClusterArgs.builder()
        .resourceGroupName("string")
        .clusterName("string")
        .location("string")
        .properties(HorizonDbClusterPropertiesArgs.builder()
            .administratorLogin("string")
            .administratorLoginPassword("string")
            .createMode("string")
            .parameterGroup(HorizonDbClusterParameterGroupConnectionPropertiesArgs.builder()
                .applyImmediately(false)
                .id("string")
                .build())
            .pointInTimeUTC("string")
            .poolName("string")
            .processorType("string")
            .replicaCount(0)
            .sourceClusterResourceId("string")
            .vCores(0)
            .version("string")
            .zonePlacementPolicy("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    horizon_db_cluster_resource = azure_native.horizondb.HorizonDbCluster("horizonDbClusterResource",
        resource_group_name="string",
        cluster_name="string",
        location="string",
        properties={
            "administrator_login": "string",
            "administrator_login_password": "string",
            "create_mode": "string",
            "parameter_group": {
                "apply_immediately": False,
                "id": "string",
            },
            "point_in_time_utc": "string",
            "pool_name": "string",
            "processor_type": "string",
            "replica_count": 0,
            "source_cluster_resource_id": "string",
            "v_cores": 0,
            "version": "string",
            "zone_placement_policy": "string",
        },
        tags={
            "string": "string",
        })
    
    const horizonDbClusterResource = new azure_native.horizondb.HorizonDbCluster("horizonDbClusterResource", {
        resourceGroupName: "string",
        clusterName: "string",
        location: "string",
        properties: {
            administratorLogin: "string",
            administratorLoginPassword: "string",
            createMode: "string",
            parameterGroup: {
                applyImmediately: false,
                id: "string",
            },
            pointInTimeUTC: "string",
            poolName: "string",
            processorType: "string",
            replicaCount: 0,
            sourceClusterResourceId: "string",
            vCores: 0,
            version: "string",
            zonePlacementPolicy: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:horizondb:HorizonDbCluster
    properties:
        clusterName: string
        location: string
        properties:
            administratorLogin: string
            administratorLoginPassword: string
            createMode: string
            parameterGroup:
                applyImmediately: false
                id: string
            pointInTimeUTC: string
            poolName: string
            processorType: string
            replicaCount: 0
            sourceClusterResourceId: string
            vCores: 0
            version: string
            zonePlacementPolicy: string
        resourceGroupName: string
        tags:
            string: string
    

    HorizonDbCluster 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 HorizonDbCluster resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterName string
    The name of the HorizonDB cluster.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.HorizonDb.Inputs.HorizonDbClusterProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterName string
    The name of the HorizonDB cluster.
    Location string
    The geo-location where the resource lives
    Properties HorizonDbClusterPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    cluster_name string
    The name of the HorizonDB cluster.
    location string
    The geo-location where the resource lives
    properties object
    The resource-specific properties for this resource.
    tags map(string)
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterName String
    The name of the HorizonDB cluster.
    location String
    The geo-location where the resource lives
    properties HorizonDbClusterProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    clusterName string
    The name of the HorizonDB cluster.
    location string
    The geo-location where the resource lives
    properties HorizonDbClusterProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    cluster_name str
    The name of the HorizonDB cluster.
    location str
    The geo-location where the resource lives
    properties HorizonDbClusterPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterName String
    The name of the HorizonDB cluster.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the HorizonDbCluster resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.HorizonDb.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    CreateModeCluster, CreateModeClusterArgs

    Create
    Create Create a new cluster
    Update
    Update Update an existing cluster
    PointInTimeRestore
    PointInTimeRestore Create cluster from point-in-time restore
    CreateModeClusterCreate
    Create Create a new cluster
    CreateModeClusterUpdate
    Update Update an existing cluster
    CreateModeClusterPointInTimeRestore
    PointInTimeRestore Create cluster from point-in-time restore
    "Create"
    Create Create a new cluster
    "Update"
    Update Update an existing cluster
    "PointInTimeRestore"
    PointInTimeRestore Create cluster from point-in-time restore
    Create
    Create Create a new cluster
    Update
    Update Update an existing cluster
    PointInTimeRestore
    PointInTimeRestore Create cluster from point-in-time restore
    Create
    Create Create a new cluster
    Update
    Update Update an existing cluster
    PointInTimeRestore
    PointInTimeRestore Create cluster from point-in-time restore
    CREATE
    Create Create a new cluster
    UPDATE
    Update Update an existing cluster
    POINT_IN_TIME_RESTORE
    PointInTimeRestore Create cluster from point-in-time restore
    "Create"
    Create Create a new cluster
    "Update"
    Update Update an existing cluster
    "PointInTimeRestore"
    PointInTimeRestore Create cluster from point-in-time restore

    HorizonDbClusterParameterGroupConnectionProperties, HorizonDbClusterParameterGroupConnectionPropertiesArgs

    Connection information for HorizonDB parameter group.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Id string
    The resource ID of the connected parameter group.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Id string
    The resource ID of the connected parameter group.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    id string
    The resource ID of the connected parameter group.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    id String
    The resource ID of the connected parameter group.
    applyImmediately boolean
    Indicates whether the parameters should be applied immediately.
    id string
    The resource ID of the connected parameter group.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    id str
    The resource ID of the connected parameter group.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    id String
    The resource ID of the connected parameter group.

    HorizonDbClusterParameterGroupConnectionPropertiesResponse, HorizonDbClusterParameterGroupConnectionPropertiesResponseArgs

    Connection information for HorizonDB parameter group.
    SyncStatus string
    Indication of if parameter group is applied on HorizonDB resource.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Id string
    The resource ID of the connected parameter group.
    SyncStatus string
    Indication of if parameter group is applied on HorizonDB resource.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Id string
    The resource ID of the connected parameter group.
    sync_status string
    Indication of if parameter group is applied on HorizonDB resource.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    id string
    The resource ID of the connected parameter group.
    syncStatus String
    Indication of if parameter group is applied on HorizonDB resource.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    id String
    The resource ID of the connected parameter group.
    syncStatus string
    Indication of if parameter group is applied on HorizonDB resource.
    applyImmediately boolean
    Indicates whether the parameters should be applied immediately.
    id string
    The resource ID of the connected parameter group.
    sync_status str
    Indication of if parameter group is applied on HorizonDB resource.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    id str
    The resource ID of the connected parameter group.
    syncStatus String
    Indication of if parameter group is applied on HorizonDB resource.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    id String
    The resource ID of the connected parameter group.

    HorizonDbClusterProperties, HorizonDbClusterPropertiesArgs

    Properties of a HorizonDB cluster.
    AdministratorLogin string
    The administrator login name.
    AdministratorLoginPassword string
    The administrator login password.
    CreateMode string | Pulumi.AzureNative.HorizonDb.CreateModeCluster
    The mode to create a new HorizonDB cluster.
    ParameterGroup Pulumi.AzureNative.HorizonDb.Inputs.HorizonDbClusterParameterGroupConnectionProperties
    Defines connection to a parameter group.
    PointInTimeUTC string
    Restore point creation time specifying the time to restore from.
    PoolName string
    The pool name for restore or replica operations.
    ProcessorType string
    The processor type for the HorizonDB cluster.
    ReplicaCount int
    Number of replicas.
    SourceClusterResourceId string
    The source cluster resource ID for restore or replica creation.
    VCores int
    Number of vCores.
    Version string
    The version of the HorizonDB cluster.
    ZonePlacementPolicy string | Pulumi.AzureNative.HorizonDb.ZonePlacementPolicy
    Defines how replicas are placed across availability zones.
    AdministratorLogin string
    The administrator login name.
    AdministratorLoginPassword string
    The administrator login password.
    CreateMode string | CreateModeCluster
    The mode to create a new HorizonDB cluster.
    ParameterGroup HorizonDbClusterParameterGroupConnectionProperties
    Defines connection to a parameter group.
    PointInTimeUTC string
    Restore point creation time specifying the time to restore from.
    PoolName string
    The pool name for restore or replica operations.
    ProcessorType string
    The processor type for the HorizonDB cluster.
    ReplicaCount int
    Number of replicas.
    SourceClusterResourceId string
    The source cluster resource ID for restore or replica creation.
    VCores int
    Number of vCores.
    Version string
    The version of the HorizonDB cluster.
    ZonePlacementPolicy string | ZonePlacementPolicy
    Defines how replicas are placed across availability zones.
    administrator_login string
    The administrator login name.
    administrator_login_password string
    The administrator login password.
    create_mode string | "Create" | "Update" | "PointInTimeRestore"
    The mode to create a new HorizonDB cluster.
    parameter_group object
    Defines connection to a parameter group.
    point_in_time_utc string
    Restore point creation time specifying the time to restore from.
    pool_name string
    The pool name for restore or replica operations.
    processor_type string
    The processor type for the HorizonDB cluster.
    replica_count number
    Number of replicas.
    source_cluster_resource_id string
    The source cluster resource ID for restore or replica creation.
    v_cores number
    Number of vCores.
    version string
    The version of the HorizonDB cluster.
    zone_placement_policy string | "Strict" | "BestEffort"
    Defines how replicas are placed across availability zones.
    administratorLogin String
    The administrator login name.
    administratorLoginPassword String
    The administrator login password.
    createMode String | CreateModeCluster
    The mode to create a new HorizonDB cluster.
    parameterGroup HorizonDbClusterParameterGroupConnectionProperties
    Defines connection to a parameter group.
    pointInTimeUTC String
    Restore point creation time specifying the time to restore from.
    poolName String
    The pool name for restore or replica operations.
    processorType String
    The processor type for the HorizonDB cluster.
    replicaCount Integer
    Number of replicas.
    sourceClusterResourceId String
    The source cluster resource ID for restore or replica creation.
    vCores Integer
    Number of vCores.
    version String
    The version of the HorizonDB cluster.
    zonePlacementPolicy String | ZonePlacementPolicy
    Defines how replicas are placed across availability zones.
    administratorLogin string
    The administrator login name.
    administratorLoginPassword string
    The administrator login password.
    createMode string | CreateModeCluster
    The mode to create a new HorizonDB cluster.
    parameterGroup HorizonDbClusterParameterGroupConnectionProperties
    Defines connection to a parameter group.
    pointInTimeUTC string
    Restore point creation time specifying the time to restore from.
    poolName string
    The pool name for restore or replica operations.
    processorType string
    The processor type for the HorizonDB cluster.
    replicaCount number
    Number of replicas.
    sourceClusterResourceId string
    The source cluster resource ID for restore or replica creation.
    vCores number
    Number of vCores.
    version string
    The version of the HorizonDB cluster.
    zonePlacementPolicy string | ZonePlacementPolicy
    Defines how replicas are placed across availability zones.
    administrator_login str
    The administrator login name.
    administrator_login_password str
    The administrator login password.
    create_mode str | CreateModeCluster
    The mode to create a new HorizonDB cluster.
    parameter_group HorizonDbClusterParameterGroupConnectionProperties
    Defines connection to a parameter group.
    point_in_time_utc str
    Restore point creation time specifying the time to restore from.
    pool_name str
    The pool name for restore or replica operations.
    processor_type str
    The processor type for the HorizonDB cluster.
    replica_count int
    Number of replicas.
    source_cluster_resource_id str
    The source cluster resource ID for restore or replica creation.
    v_cores int
    Number of vCores.
    version str
    The version of the HorizonDB cluster.
    zone_placement_policy str | ZonePlacementPolicy
    Defines how replicas are placed across availability zones.
    administratorLogin String
    The administrator login name.
    administratorLoginPassword String
    The administrator login password.
    createMode String | "Create" | "Update" | "PointInTimeRestore"
    The mode to create a new HorizonDB cluster.
    parameterGroup Property Map
    Defines connection to a parameter group.
    pointInTimeUTC String
    Restore point creation time specifying the time to restore from.
    poolName String
    The pool name for restore or replica operations.
    processorType String
    The processor type for the HorizonDB cluster.
    replicaCount Number
    Number of replicas.
    sourceClusterResourceId String
    The source cluster resource ID for restore or replica creation.
    vCores Number
    Number of vCores.
    version String
    The version of the HorizonDB cluster.
    zonePlacementPolicy String | "Strict" | "BestEffort"
    Defines how replicas are placed across availability zones.

    HorizonDbClusterPropertiesResponse, HorizonDbClusterPropertiesResponseArgs

    Properties of a HorizonDB cluster.
    AdministratorLogin string
    The administrator login name.
    FullyQualifiedDomainName string
    The fully qualified domain name of the cluster.
    ProvisioningState string
    The provisioning state of the cluster.
    ReadonlyEndpoint string
    The fully qualified domain name used for readonly endpoint for the cluster.
    State string
    Current state of the cluster.
    CreateMode string
    The mode to create a new HorizonDB cluster.
    Network Pulumi.AzureNative.HorizonDb.Inputs.NetworkResponse
    The network related info.
    ParameterGroup Pulumi.AzureNative.HorizonDb.Inputs.HorizonDbClusterParameterGroupConnectionPropertiesResponse
    Defines connection to a parameter group.
    PointInTimeUTC string
    Restore point creation time specifying the time to restore from.
    PoolName string
    The pool name for restore or replica operations.
    ProcessorType string
    The processor type for the HorizonDB cluster.
    ReplicaCount int
    Number of replicas.
    SourceClusterResourceId string
    The source cluster resource ID for restore or replica creation.
    VCores int
    Number of vCores.
    Version string
    The version of the HorizonDB cluster.
    ZonePlacementPolicy string
    Defines how replicas are placed across availability zones.
    AdministratorLogin string
    The administrator login name.
    FullyQualifiedDomainName string
    The fully qualified domain name of the cluster.
    ProvisioningState string
    The provisioning state of the cluster.
    ReadonlyEndpoint string
    The fully qualified domain name used for readonly endpoint for the cluster.
    State string
    Current state of the cluster.
    CreateMode string
    The mode to create a new HorizonDB cluster.
    Network NetworkResponse
    The network related info.
    ParameterGroup HorizonDbClusterParameterGroupConnectionPropertiesResponse
    Defines connection to a parameter group.
    PointInTimeUTC string
    Restore point creation time specifying the time to restore from.
    PoolName string
    The pool name for restore or replica operations.
    ProcessorType string
    The processor type for the HorizonDB cluster.
    ReplicaCount int
    Number of replicas.
    SourceClusterResourceId string
    The source cluster resource ID for restore or replica creation.
    VCores int
    Number of vCores.
    Version string
    The version of the HorizonDB cluster.
    ZonePlacementPolicy string
    Defines how replicas are placed across availability zones.
    administrator_login string
    The administrator login name.
    fully_qualified_domain_name string
    The fully qualified domain name of the cluster.
    provisioning_state string
    The provisioning state of the cluster.
    readonly_endpoint string
    The fully qualified domain name used for readonly endpoint for the cluster.
    state string
    Current state of the cluster.
    create_mode string
    The mode to create a new HorizonDB cluster.
    network object
    The network related info.
    parameter_group object
    Defines connection to a parameter group.
    point_in_time_utc string
    Restore point creation time specifying the time to restore from.
    pool_name string
    The pool name for restore or replica operations.
    processor_type string
    The processor type for the HorizonDB cluster.
    replica_count number
    Number of replicas.
    source_cluster_resource_id string
    The source cluster resource ID for restore or replica creation.
    v_cores number
    Number of vCores.
    version string
    The version of the HorizonDB cluster.
    zone_placement_policy string
    Defines how replicas are placed across availability zones.
    administratorLogin String
    The administrator login name.
    fullyQualifiedDomainName String
    The fully qualified domain name of the cluster.
    provisioningState String
    The provisioning state of the cluster.
    readonlyEndpoint String
    The fully qualified domain name used for readonly endpoint for the cluster.
    state String
    Current state of the cluster.
    createMode String
    The mode to create a new HorizonDB cluster.
    network NetworkResponse
    The network related info.
    parameterGroup HorizonDbClusterParameterGroupConnectionPropertiesResponse
    Defines connection to a parameter group.
    pointInTimeUTC String
    Restore point creation time specifying the time to restore from.
    poolName String
    The pool name for restore or replica operations.
    processorType String
    The processor type for the HorizonDB cluster.
    replicaCount Integer
    Number of replicas.
    sourceClusterResourceId String
    The source cluster resource ID for restore or replica creation.
    vCores Integer
    Number of vCores.
    version String
    The version of the HorizonDB cluster.
    zonePlacementPolicy String
    Defines how replicas are placed across availability zones.
    administratorLogin string
    The administrator login name.
    fullyQualifiedDomainName string
    The fully qualified domain name of the cluster.
    provisioningState string
    The provisioning state of the cluster.
    readonlyEndpoint string
    The fully qualified domain name used for readonly endpoint for the cluster.
    state string
    Current state of the cluster.
    createMode string
    The mode to create a new HorizonDB cluster.
    network NetworkResponse
    The network related info.
    parameterGroup HorizonDbClusterParameterGroupConnectionPropertiesResponse
    Defines connection to a parameter group.
    pointInTimeUTC string
    Restore point creation time specifying the time to restore from.
    poolName string
    The pool name for restore or replica operations.
    processorType string
    The processor type for the HorizonDB cluster.
    replicaCount number
    Number of replicas.
    sourceClusterResourceId string
    The source cluster resource ID for restore or replica creation.
    vCores number
    Number of vCores.
    version string
    The version of the HorizonDB cluster.
    zonePlacementPolicy string
    Defines how replicas are placed across availability zones.
    administrator_login str
    The administrator login name.
    fully_qualified_domain_name str
    The fully qualified domain name of the cluster.
    provisioning_state str
    The provisioning state of the cluster.
    readonly_endpoint str
    The fully qualified domain name used for readonly endpoint for the cluster.
    state str
    Current state of the cluster.
    create_mode str
    The mode to create a new HorizonDB cluster.
    network NetworkResponse
    The network related info.
    parameter_group HorizonDbClusterParameterGroupConnectionPropertiesResponse
    Defines connection to a parameter group.
    point_in_time_utc str
    Restore point creation time specifying the time to restore from.
    pool_name str
    The pool name for restore or replica operations.
    processor_type str
    The processor type for the HorizonDB cluster.
    replica_count int
    Number of replicas.
    source_cluster_resource_id str
    The source cluster resource ID for restore or replica creation.
    v_cores int
    Number of vCores.
    version str
    The version of the HorizonDB cluster.
    zone_placement_policy str
    Defines how replicas are placed across availability zones.
    administratorLogin String
    The administrator login name.
    fullyQualifiedDomainName String
    The fully qualified domain name of the cluster.
    provisioningState String
    The provisioning state of the cluster.
    readonlyEndpoint String
    The fully qualified domain name used for readonly endpoint for the cluster.
    state String
    Current state of the cluster.
    createMode String
    The mode to create a new HorizonDB cluster.
    network Property Map
    The network related info.
    parameterGroup Property Map
    Defines connection to a parameter group.
    pointInTimeUTC String
    Restore point creation time specifying the time to restore from.
    poolName String
    The pool name for restore or replica operations.
    processorType String
    The processor type for the HorizonDB cluster.
    replicaCount Number
    Number of replicas.
    sourceClusterResourceId String
    The source cluster resource ID for restore or replica creation.
    vCores Number
    Number of vCores.
    version String
    The version of the HorizonDB cluster.
    zonePlacementPolicy String
    Defines how replicas are placed across availability zones.

    NetworkResponse, NetworkResponseArgs

    Network properties.
    PublicNetworkAccess string
    The flag indicating whether public ip is requested.
    PublicNetworkAccess string
    The flag indicating whether public ip is requested.
    public_network_access string
    The flag indicating whether public ip is requested.
    publicNetworkAccess String
    The flag indicating whether public ip is requested.
    publicNetworkAccess string
    The flag indicating whether public ip is requested.
    public_network_access str
    The flag indicating whether public ip is requested.
    publicNetworkAccess String
    The flag indicating whether public ip is requested.

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    created_at string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    ZonePlacementPolicy, ZonePlacementPolicyArgs

    Strict
    Strict Enforce zonal redundancy
    BestEffort
    BestEffort Best-effort placement (default)
    ZonePlacementPolicyStrict
    Strict Enforce zonal redundancy
    ZonePlacementPolicyBestEffort
    BestEffort Best-effort placement (default)
    "Strict"
    Strict Enforce zonal redundancy
    "BestEffort"
    BestEffort Best-effort placement (default)
    Strict
    Strict Enforce zonal redundancy
    BestEffort
    BestEffort Best-effort placement (default)
    Strict
    Strict Enforce zonal redundancy
    BestEffort
    BestEffort Best-effort placement (default)
    STRICT
    Strict Enforce zonal redundancy
    BEST_EFFORT
    BestEffort Best-effort placement (default)
    "Strict"
    Strict Enforce zonal redundancy
    "BestEffort"
    BestEffort Best-effort placement (default)

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:horizondb:HorizonDbCluster examplecluster /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HorizonDb/clusters/{clusterName} 
    

    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 v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.23.0
    published on Saturday, Jul 18, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial