published on Saturday, Jul 18, 2026 by Pulumi
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Parameter
Group stringName - The name of the HorizonDB parameter group.
- Properties
Pulumi.
Azure Native. Horizon Db. Inputs. Horizon Db Parameter Group Properties - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Parameter
Group stringName - The name of the HorizonDB parameter group.
- Properties
Horizon
Db Parameter Group Properties Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- parameter_
group_ stringname - The name of the HorizonDB parameter group.
- properties object
- The resource-specific properties for this resource.
- map(string)
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- parameter
Group StringName - The name of the HorizonDB parameter group.
- properties
Horizon
Db Parameter Group Properties - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- parameter
Group stringName - The name of the HorizonDB parameter group.
- properties
Horizon
Db Parameter Group Properties - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- parameter_
group_ strname - The name of the HorizonDB parameter group.
- properties
Horizon
Db Parameter Group Properties Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- parameter
Group StringName - The name of the HorizonDB parameter group.
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the HorizonDbParameterGroup resource produces the following output properties:
- Azure
Api stringVersion - 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 Pulumi.Azure Native. Horizon Db. Outputs. System Data Response - 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 stringVersion - 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 SystemData Response - 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_ stringversion - 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"
- azure
Api StringVersion - 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 SystemData Response - 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 stringVersion - 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 SystemData Response - 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_ strversion - 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 SystemData Response - 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"
- azure
Api StringVersion - 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 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.- Apply
Immediately bool - Indicates whether the parameters should be applied immediately.
- Description string
- Description of the parameter group.
- Parameters
List<Pulumi.
Azure Native. Horizon Db. Inputs. Parameter Properties> - Parameters in the parameter group.
- Pg
Version 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
[]Parameter
Properties - Parameters in the parameter group.
- Pg
Version 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.
- apply
Immediately Boolean - Indicates whether the parameters should be applied immediately.
- description String
- Description of the parameter group.
- parameters
List<Parameter
Properties> - Parameters in the parameter group.
- pg
Version Integer - PostgreSQL version for the parameter group.
- apply
Immediately boolean - Indicates whether the parameters should be applied immediately.
- description string
- Description of the parameter group.
- parameters
Parameter
Properties[] - Parameters in the parameter group.
- pg
Version 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[Parameter
Properties] - Parameters in the parameter group.
- pg_
version int - PostgreSQL version for the parameter group.
- apply
Immediately 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.
- pg
Version Number - PostgreSQL version for the parameter group.
HorizonDbParameterGroupPropertiesResponse, HorizonDbParameterGroupPropertiesResponseArgs
Properties of a HorizonDB parameter group.- Provisioning
State string - 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 string
- Description of the parameter group.
- Parameters
List<Pulumi.
Azure Native. Horizon Db. Inputs. Parameter Properties Response> - Parameters in the parameter group.
- Pg
Version int - PostgreSQL version for the parameter group.
- Provisioning
State string - 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 string
- Description of the parameter group.
- Parameters
[]Parameter
Properties Response - Parameters in the parameter group.
- Pg
Version 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.
- provisioning
State String - The provisioning state of the parameter group.
- version Integer
- Current version of the parameter group.
- apply
Immediately Boolean - Indicates whether the parameters should be applied immediately.
- description String
- Description of the parameter group.
- parameters
List<Parameter
Properties Response> - Parameters in the parameter group.
- pg
Version Integer - 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 boolean - Indicates whether the parameters should be applied immediately.
- description string
- Description of the parameter group.
- parameters
Parameter
Properties Response[] - Parameters in the parameter group.
- pg
Version 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[Parameter
Properties Response] - Parameters in the parameter group.
- pg_
version 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 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.
- pg
Version Number - PostgreSQL version for the parameter group.
ParameterProperties, ParameterPropertiesArgs
Properties of a HorizonDB parameters.ParameterPropertiesResponse, ParameterPropertiesResponseArgs
Properties of a HorizonDB parameters.- 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 boolOnly - 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 boolOnly - 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_ boolonly - 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 Boolean - Whether the parameter can be changed dynamically.
- is
Read BooleanOnly - 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 boolean - Whether the parameter can be changed dynamically.
- is
Read booleanOnly - 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_ boolonly - 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.
- 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 Boolean - Whether the parameter can be changed dynamically.
- is
Read BooleanOnly - 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.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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 stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - 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_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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 stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - 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 StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
published on Saturday, Jul 18, 2026 by Pulumi