1. Packages
  2. Packages
  3. Azure Native
  4. API Docs
  5. horizondb
  6. HorizonDbParameterGroup
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 parameter group.

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

    Example Usage

    Create or update a HorizonDB parameter group

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var horizonDbParameterGroup = new AzureNative.HorizonDb.HorizonDbParameterGroup("horizonDbParameterGroup", new()
        {
            Location = "westus2",
            ParameterGroupName = "exampleparametergroup",
            Properties = new AzureNative.HorizonDb.Inputs.HorizonDbParameterGroupPropertiesArgs
            {
                ApplyImmediately = true,
                Description = "Parameter group for high-throughput workloads",
                Parameters = new[]
                {
                    new AzureNative.HorizonDb.Inputs.ParameterPropertiesArgs
                    {
                        Name = "max_connections",
                        Value = "200",
                    },
                    new AzureNative.HorizonDb.Inputs.ParameterPropertiesArgs
                    {
                        Name = "log_min_error_statement",
                        Value = "error",
                    },
                    new AzureNative.HorizonDb.Inputs.ParameterPropertiesArgs
                    {
                        Name = "shared_buffers",
                        Value = "2000",
                    },
                },
                PgVersion = 17,
            },
            ResourceGroupName = "exampleresourcegroup",
            Tags = 
            {
                { "env", "dev" },
                { "team", "data-platform" },
            },
        });
    
    });
    
    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.NewHorizonDbParameterGroup(ctx, "horizonDbParameterGroup", &horizondb.HorizonDbParameterGroupArgs{
    			Location:           pulumi.String("westus2"),
    			ParameterGroupName: pulumi.String("exampleparametergroup"),
    			Properties: &horizondb.HorizonDbParameterGroupPropertiesArgs{
    				ApplyImmediately: pulumi.Bool(true),
    				Description:      pulumi.String("Parameter group for high-throughput workloads"),
    				Parameters: horizondb.ParameterPropertiesArray{
    					&horizondb.ParameterPropertiesArgs{
    						Name:  pulumi.String("max_connections"),
    						Value: pulumi.String("200"),
    					},
    					&horizondb.ParameterPropertiesArgs{
    						Name:  pulumi.String("log_min_error_statement"),
    						Value: pulumi.String("error"),
    					},
    					&horizondb.ParameterPropertiesArgs{
    						Name:  pulumi.String("shared_buffers"),
    						Value: pulumi.String("2000"),
    					},
    				},
    				PgVersion: pulumi.Int(17),
    			},
    			ResourceGroupName: pulumi.String("exampleresourcegroup"),
    			Tags: pulumi.StringMap{
    				"env":  pulumi.String("dev"),
    				"team": pulumi.String("data-platform"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_horizondb_horizondbparametergroup" "horizonDbParameterGroup" {
      location             = "westus2"
      parameter_group_name = "exampleparametergroup"
      properties = {
        apply_immediately = true
        description       = "Parameter group for high-throughput workloads"
        parameters = [{
          "name"  = "max_connections"
          "value" = "200"
          }, {
          "name"  = "log_min_error_statement"
          "value" = "error"
          }, {
          "name"  = "shared_buffers"
          "value" = "2000"
        }]
        pg_version = 17
      }
      resource_group_name = "exampleresourcegroup"
      tags = {
        "env"  = "dev"
        "team" = "data-platform"
      }
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.horizondb.HorizonDbParameterGroup;
    import com.pulumi.azurenative.horizondb.HorizonDbParameterGroupArgs;
    import com.pulumi.azurenative.horizondb.inputs.HorizonDbParameterGroupPropertiesArgs;
    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 horizonDbParameterGroup = new HorizonDbParameterGroup("horizonDbParameterGroup", HorizonDbParameterGroupArgs.builder()
                .location("westus2")
                .parameterGroupName("exampleparametergroup")
                .properties(HorizonDbParameterGroupPropertiesArgs.builder()
                    .applyImmediately(true)
                    .description("Parameter group for high-throughput workloads")
                    .parameters(                
                        ParameterPropertiesArgs.builder()
                            .name("max_connections")
                            .value("200")
                            .build(),
                        ParameterPropertiesArgs.builder()
                            .name("log_min_error_statement")
                            .value("error")
                            .build(),
                        ParameterPropertiesArgs.builder()
                            .name("shared_buffers")
                            .value("2000")
                            .build())
                    .pgVersion(17)
                    .build())
                .resourceGroupName("exampleresourcegroup")
                .tags(Map.ofEntries(
                    Map.entry("env", "dev"),
                    Map.entry("team", "data-platform")
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const horizonDbParameterGroup = new azure_native.horizondb.HorizonDbParameterGroup("horizonDbParameterGroup", {
        location: "westus2",
        parameterGroupName: "exampleparametergroup",
        properties: {
            applyImmediately: true,
            description: "Parameter group for high-throughput workloads",
            parameters: [
                {
                    name: "max_connections",
                    value: "200",
                },
                {
                    name: "log_min_error_statement",
                    value: "error",
                },
                {
                    name: "shared_buffers",
                    value: "2000",
                },
            ],
            pgVersion: 17,
        },
        resourceGroupName: "exampleresourcegroup",
        tags: {
            env: "dev",
            team: "data-platform",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    horizon_db_parameter_group = azure_native.horizondb.HorizonDbParameterGroup("horizonDbParameterGroup",
        location="westus2",
        parameter_group_name="exampleparametergroup",
        properties={
            "apply_immediately": True,
            "description": "Parameter group for high-throughput workloads",
            "parameters": [
                {
                    "name": "max_connections",
                    "value": "200",
                },
                {
                    "name": "log_min_error_statement",
                    "value": "error",
                },
                {
                    "name": "shared_buffers",
                    "value": "2000",
                },
            ],
            "pg_version": 17,
        },
        resource_group_name="exampleresourcegroup",
        tags={
            "env": "dev",
            "team": "data-platform",
        })
    
    resources:
      horizonDbParameterGroup:
        type: azure-native:horizondb:HorizonDbParameterGroup
        properties:
          location: westus2
          parameterGroupName: exampleparametergroup
          properties:
            applyImmediately: true
            description: Parameter group for high-throughput workloads
            parameters:
              - name: max_connections
                value: '200'
              - name: log_min_error_statement
                value: error
              - name: shared_buffers
                value: '2000'
            pgVersion: 17
          resourceGroupName: exampleresourcegroup
          tags:
            env: dev
            team: data-platform
    

    Create HorizonDbParameterGroup Resource

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

    Constructor syntax

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

    Parameters

    name string
    The unique name of the resource.
    args HorizonDbParameterGroupArgs
    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 HorizonDbParameterGroupArgs
    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 HorizonDbParameterGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args HorizonDbParameterGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args HorizonDbParameterGroupArgs
    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 horizonDbParameterGroupResource = new AzureNative.HorizonDb.HorizonDbParameterGroup("horizonDbParameterGroupResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        ParameterGroupName = "string",
        Properties = new AzureNative.HorizonDb.Inputs.HorizonDbParameterGroupPropertiesArgs
        {
            ApplyImmediately = false,
            Description = "string",
            Parameters = new[]
            {
                new AzureNative.HorizonDb.Inputs.ParameterPropertiesArgs
                {
                    Name = "string",
                    Value = "string",
                },
            },
            PgVersion = 0,
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := horizondb.NewHorizonDbParameterGroup(ctx, "horizonDbParameterGroupResource", &horizondb.HorizonDbParameterGroupArgs{
    	ResourceGroupName:  pulumi.String("string"),
    	Location:           pulumi.String("string"),
    	ParameterGroupName: pulumi.String("string"),
    	Properties: &horizondb.HorizonDbParameterGroupPropertiesArgs{
    		ApplyImmediately: pulumi.Bool(false),
    		Description:      pulumi.String("string"),
    		Parameters: horizondb.ParameterPropertiesArray{
    			&horizondb.ParameterPropertiesArgs{
    				Name:  pulumi.String("string"),
    				Value: pulumi.String("string"),
    			},
    		},
    		PgVersion: pulumi.Int(0),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_horizondb_horizon_db_parameter_group" "horizonDbParameterGroupResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name  = "string"
      location             = "string"
      parameter_group_name = "string"
      properties = {
        apply_immediately = false
        description       = "string"
        parameters = [{
          name  = "string"
          value = "string"
        }]
        pg_version = 0
      }
      tags = {
        "string" = "string"
      }
    }
    
    var horizonDbParameterGroupResource = new HorizonDbParameterGroup("horizonDbParameterGroupResource", HorizonDbParameterGroupArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .parameterGroupName("string")
        .properties(HorizonDbParameterGroupPropertiesArgs.builder()
            .applyImmediately(false)
            .description("string")
            .parameters(ParameterPropertiesArgs.builder()
                .name("string")
                .value("string")
                .build())
            .pgVersion(0)
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    horizon_db_parameter_group_resource = azure_native.horizondb.HorizonDbParameterGroup("horizonDbParameterGroupResource",
        resource_group_name="string",
        location="string",
        parameter_group_name="string",
        properties={
            "apply_immediately": False,
            "description": "string",
            "parameters": [{
                "name": "string",
                "value": "string",
            }],
            "pg_version": 0,
        },
        tags={
            "string": "string",
        })
    
    const horizonDbParameterGroupResource = new azure_native.horizondb.HorizonDbParameterGroup("horizonDbParameterGroupResource", {
        resourceGroupName: "string",
        location: "string",
        parameterGroupName: "string",
        properties: {
            applyImmediately: false,
            description: "string",
            parameters: [{
                name: "string",
                value: "string",
            }],
            pgVersion: 0,
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:horizondb:HorizonDbParameterGroup
    properties:
        location: string
        parameterGroupName: string
        properties:
            applyImmediately: false
            description: string
            parameters:
                - name: string
                  value: string
            pgVersion: 0
        resourceGroupName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    ParameterGroupName string
    The name of the HorizonDB parameter group.
    Properties Pulumi.AzureNative.HorizonDb.Inputs.HorizonDbParameterGroupProperties
    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.
    Location string
    The geo-location where the resource lives
    ParameterGroupName string
    The name of the HorizonDB parameter group.
    Properties HorizonDbParameterGroupPropertiesArgs
    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.
    location string
    The geo-location where the resource lives
    parameter_group_name string
    The name of the HorizonDB parameter group.
    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.
    location String
    The geo-location where the resource lives
    parameterGroupName String
    The name of the HorizonDB parameter group.
    properties HorizonDbParameterGroupProperties
    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.
    location string
    The geo-location where the resource lives
    parameterGroupName string
    The name of the HorizonDB parameter group.
    properties HorizonDbParameterGroupProperties
    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.
    location str
    The geo-location where the resource lives
    parameter_group_name str
    The name of the HorizonDB parameter group.
    properties HorizonDbParameterGroupPropertiesArgs
    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.
    location String
    The geo-location where the resource lives
    parameterGroupName String
    The name of the HorizonDB parameter group.
    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 HorizonDbParameterGroup 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

    HorizonDbParameterGroupProperties, HorizonDbParameterGroupPropertiesArgs

    Properties of a HorizonDB parameter group.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Description string
    Description of the parameter group.
    Parameters List<Pulumi.AzureNative.HorizonDb.Inputs.ParameterProperties>
    Parameters in the parameter group.
    PgVersion int
    PostgreSQL version for the parameter group.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Description string
    Description of the parameter group.
    Parameters []ParameterProperties
    Parameters in the parameter group.
    PgVersion int
    PostgreSQL version for the parameter group.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    description string
    Description of the parameter group.
    parameters list(object)
    Parameters in the parameter group.
    pg_version number
    PostgreSQL version for the parameter group.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    description String
    Description of the parameter group.
    parameters List<ParameterProperties>
    Parameters in the parameter group.
    pgVersion Integer
    PostgreSQL version for the parameter group.
    applyImmediately boolean
    Indicates whether the parameters should be applied immediately.
    description string
    Description of the parameter group.
    parameters ParameterProperties[]
    Parameters in the parameter group.
    pgVersion number
    PostgreSQL version for the parameter group.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    description str
    Description of the parameter group.
    parameters Sequence[ParameterProperties]
    Parameters in the parameter group.
    pg_version int
    PostgreSQL version for the parameter group.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    description String
    Description of the parameter group.
    parameters List<Property Map>
    Parameters in the parameter group.
    pgVersion Number
    PostgreSQL version for the parameter group.

    HorizonDbParameterGroupPropertiesResponse, HorizonDbParameterGroupPropertiesResponseArgs

    Properties of a HorizonDB parameter group.
    ProvisioningState string
    The provisioning state of the parameter group.
    Version int
    Current version of the parameter group.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Description string
    Description of the parameter group.
    Parameters List<Pulumi.AzureNative.HorizonDb.Inputs.ParameterPropertiesResponse>
    Parameters in the parameter group.
    PgVersion int
    PostgreSQL version for the parameter group.
    ProvisioningState string
    The provisioning state of the parameter group.
    Version int
    Current version of the parameter group.
    ApplyImmediately bool
    Indicates whether the parameters should be applied immediately.
    Description string
    Description of the parameter group.
    Parameters []ParameterPropertiesResponse
    Parameters in the parameter group.
    PgVersion int
    PostgreSQL version for the parameter group.
    provisioning_state string
    The provisioning state of the parameter group.
    version number
    Current version of the parameter group.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    description string
    Description of the parameter group.
    parameters list(object)
    Parameters in the parameter group.
    pg_version number
    PostgreSQL version for the parameter group.
    provisioningState String
    The provisioning state of the parameter group.
    version Integer
    Current version of the parameter group.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    description String
    Description of the parameter group.
    parameters List<ParameterPropertiesResponse>
    Parameters in the parameter group.
    pgVersion Integer
    PostgreSQL version for the parameter group.
    provisioningState string
    The provisioning state of the parameter group.
    version number
    Current version of the parameter group.
    applyImmediately boolean
    Indicates whether the parameters should be applied immediately.
    description string
    Description of the parameter group.
    parameters ParameterPropertiesResponse[]
    Parameters in the parameter group.
    pgVersion number
    PostgreSQL version for the parameter group.
    provisioning_state str
    The provisioning state of the parameter group.
    version int
    Current version of the parameter group.
    apply_immediately bool
    Indicates whether the parameters should be applied immediately.
    description str
    Description of the parameter group.
    parameters Sequence[ParameterPropertiesResponse]
    Parameters in the parameter group.
    pg_version int
    PostgreSQL version for the parameter group.
    provisioningState String
    The provisioning state of the parameter group.
    version Number
    Current version of the parameter group.
    applyImmediately Boolean
    Indicates whether the parameters should be applied immediately.
    description String
    Description of the parameter group.
    parameters List<Property Map>
    Parameters in the parameter group.
    pgVersion Number
    PostgreSQL version for the parameter group.

    ParameterProperties, ParameterPropertiesArgs

    Properties of a HorizonDB parameters.
    Name string
    The name of the parameter.
    Value string
    The value of the configuration.
    Name string
    The name of the parameter.
    Value string
    The value of the configuration.
    name string
    The name of the parameter.
    value string
    The value of the configuration.
    name String
    The name of the parameter.
    value String
    The value of the configuration.
    name string
    The name of the parameter.
    value string
    The value of the configuration.
    name str
    The name of the parameter.
    value str
    The value of the configuration.
    name String
    The name of the parameter.
    value String
    The value of the configuration.

    ParameterPropertiesResponse, ParameterPropertiesResponseArgs

    Properties of a HorizonDB parameters.
    AllowedValues string
    The allowed values for the parameter.
    DataType string
    The data type of the parameter.
    Description string
    The description of the parameter.
    DocumentationLink string
    Link to parameter documentation.
    IsDynamic bool
    Whether the parameter can be changed dynamically.
    IsReadOnly bool
    Whether the parameter is a read-only parameter.
    Unit string
    The unit of measurement for the parameter.
    Name string
    The name of the parameter.
    Value string
    The value of the configuration.
    AllowedValues string
    The allowed values for the parameter.
    DataType string
    The data type of the parameter.
    Description string
    The description of the parameter.
    DocumentationLink string
    Link to parameter documentation.
    IsDynamic bool
    Whether the parameter can be changed dynamically.
    IsReadOnly bool
    Whether the parameter is a read-only parameter.
    Unit string
    The unit of measurement for the parameter.
    Name string
    The name of the parameter.
    Value string
    The value of the configuration.
    allowed_values string
    The allowed values for the parameter.
    data_type string
    The data type of the parameter.
    description string
    The description of the parameter.
    documentation_link string
    Link to parameter documentation.
    is_dynamic bool
    Whether the parameter can be changed dynamically.
    is_read_only bool
    Whether the parameter is a read-only parameter.
    unit string
    The unit of measurement for the parameter.
    name string
    The name of the parameter.
    value string
    The value of the configuration.
    allowedValues String
    The allowed values for the parameter.
    dataType String
    The data type of the parameter.
    description String
    The description of the parameter.
    documentationLink String
    Link to parameter documentation.
    isDynamic Boolean
    Whether the parameter can be changed dynamically.
    isReadOnly Boolean
    Whether the parameter is a read-only parameter.
    unit String
    The unit of measurement for the parameter.
    name String
    The name of the parameter.
    value String
    The value of the configuration.
    allowedValues string
    The allowed values for the parameter.
    dataType string
    The data type of the parameter.
    description string
    The description of the parameter.
    documentationLink string
    Link to parameter documentation.
    isDynamic boolean
    Whether the parameter can be changed dynamically.
    isReadOnly boolean
    Whether the parameter is a read-only parameter.
    unit string
    The unit of measurement for the parameter.
    name string
    The name of the parameter.
    value string
    The value of the configuration.
    allowed_values str
    The allowed values for the parameter.
    data_type str
    The data type of the parameter.
    description str
    The description of the parameter.
    documentation_link str
    Link to parameter documentation.
    is_dynamic bool
    Whether the parameter can be changed dynamically.
    is_read_only bool
    Whether the parameter is a read-only parameter.
    unit str
    The unit of measurement for the parameter.
    name str
    The name of the parameter.
    value str
    The value of the configuration.
    allowedValues String
    The allowed values for the parameter.
    dataType String
    The data type of the parameter.
    description String
    The description of the parameter.
    documentationLink String
    Link to parameter documentation.
    isDynamic Boolean
    Whether the parameter can be changed dynamically.
    isReadOnly Boolean
    Whether the parameter is a read-only parameter.
    unit String
    The unit of measurement for the parameter.
    name String
    The name of the parameter.
    value String
    The value of the configuration.

    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.

    Import

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

    $ pulumi import azure-native:horizondb:HorizonDbParameterGroup exampleparametergroup /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HorizonDb/parameterGroups/{parameterGroupName} 
    

    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