1. Packages
  2. Packages
  3. Bytepluscc Provider
  4. API Docs
  5. rdspostgresql
  6. ParameterTemplate
Viewing docs for bytepluscc v0.0.31
published on Monday, Jun 1, 2026 by Byteplus
bytepluscc logo
Viewing docs for bytepluscc v0.0.31
published on Monday, Jun 1, 2026 by Byteplus

    Volcano Engine Cloud Database PostgreSQL parameter template, used for managing and batch applying PostgreSQL instance parameter configurations

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
    
    const rDSPostgreSQLParameterTemplatDdemo = new bytepluscc.rdspostgresql.ParameterTemplate("RDSPostgreSQLParameterTemplatDdemo", {
        templateName: "全部测试参数模板",
        templateType: "PostgreSQL",
        templateTypeVersion: "PostgreSQL_13",
        templateDesc: "全部测试参数模板,描述场景",
        templateParams: [
            {
                name: "auto_explain.log_analyze",
                value: "on",
            },
            {
                name: "auto_explain.log_buffers",
                value: "off",
            },
        ],
    });
    
    import pulumi
    import pulumi_bytepluscc as bytepluscc
    
    r_ds_postgre_sql_parameter_templat_ddemo = bytepluscc.rdspostgresql.ParameterTemplate("RDSPostgreSQLParameterTemplatDdemo",
        template_name="全部测试参数模板",
        template_type="PostgreSQL",
        template_type_version="PostgreSQL_13",
        template_desc="全部测试参数模板,描述场景",
        template_params=[
            {
                "name": "auto_explain.log_analyze",
                "value": "on",
            },
            {
                "name": "auto_explain.log_buffers",
                "value": "off",
            },
        ])
    
    package main
    
    import (
    	"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/rdspostgresql"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rdspostgresql.NewParameterTemplate(ctx, "RDSPostgreSQLParameterTemplatDdemo", &rdspostgresql.ParameterTemplateArgs{
    			TemplateName:        pulumi.String("全部测试参数模板"),
    			TemplateType:        pulumi.String("PostgreSQL"),
    			TemplateTypeVersion: pulumi.String("PostgreSQL_13"),
    			TemplateDesc:        pulumi.String("全部测试参数模板,描述场景"),
    			TemplateParams: rdspostgresql.ParameterTemplateTemplateParamArray{
    				&rdspostgresql.ParameterTemplateTemplateParamArgs{
    					Name:  pulumi.String("auto_explain.log_analyze"),
    					Value: pulumi.String("on"),
    				},
    				&rdspostgresql.ParameterTemplateTemplateParamArgs{
    					Name:  pulumi.String("auto_explain.log_buffers"),
    					Value: pulumi.String("off"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Bytepluscc = Byteplus.Pulumi.Bytepluscc;
    
    return await Deployment.RunAsync(() => 
    {
        var rDSPostgreSQLParameterTemplatDdemo = new Bytepluscc.Rdspostgresql.ParameterTemplate("RDSPostgreSQLParameterTemplatDdemo", new()
        {
            TemplateName = "全部测试参数模板",
            TemplateType = "PostgreSQL",
            TemplateTypeVersion = "PostgreSQL_13",
            TemplateDesc = "全部测试参数模板,描述场景",
            TemplateParams = new[]
            {
                new Bytepluscc.Rdspostgresql.Inputs.ParameterTemplateTemplateParamArgs
                {
                    Name = "auto_explain.log_analyze",
                    Value = "on",
                },
                new Bytepluscc.Rdspostgresql.Inputs.ParameterTemplateTemplateParamArgs
                {
                    Name = "auto_explain.log_buffers",
                    Value = "off",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.byteplus.bytepluscc.rdspostgresql.ParameterTemplate;
    import com.byteplus.bytepluscc.rdspostgresql.ParameterTemplateArgs;
    import com.pulumi.bytepluscc.rdspostgresql.inputs.ParameterTemplateTemplateParamArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var rDSPostgreSQLParameterTemplatDdemo = new ParameterTemplate("rDSPostgreSQLParameterTemplatDdemo", ParameterTemplateArgs.builder()
                .templateName("全部测试参数模板")
                .templateType("PostgreSQL")
                .templateTypeVersion("PostgreSQL_13")
                .templateDesc("全部测试参数模板,描述场景")
                .templateParams(            
                    ParameterTemplateTemplateParamArgs.builder()
                        .name("auto_explain.log_analyze")
                        .value("on")
                        .build(),
                    ParameterTemplateTemplateParamArgs.builder()
                        .name("auto_explain.log_buffers")
                        .value("off")
                        .build())
                .build());
    
        }
    }
    
    resources:
      rDSPostgreSQLParameterTemplatDdemo:
        type: bytepluscc:rdspostgresql:ParameterTemplate
        name: RDSPostgreSQLParameterTemplatDdemo
        properties:
          templateName: 全部测试参数模板
          templateType: PostgreSQL
          templateTypeVersion: PostgreSQL_13
          templateDesc: 全部测试参数模板,描述场景
          templateParams:
            - name: auto_explain.log_analyze
              value: on
            - name: auto_explain.log_buffers
              value: off
    
    Example coming soon!
    

    Create ParameterTemplate Resource

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

    Constructor syntax

    new ParameterTemplate(name: string, args: ParameterTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def ParameterTemplate(resource_name: str,
                          args: ParameterTemplateArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def ParameterTemplate(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          template_name: Optional[str] = None,
                          template_params: Optional[Sequence[ParameterTemplateTemplateParamArgs]] = None,
                          template_type: Optional[str] = None,
                          template_type_version: Optional[str] = None,
                          template_desc: Optional[str] = None)
    func NewParameterTemplate(ctx *Context, name string, args ParameterTemplateArgs, opts ...ResourceOption) (*ParameterTemplate, error)
    public ParameterTemplate(string name, ParameterTemplateArgs args, CustomResourceOptions? opts = null)
    public ParameterTemplate(String name, ParameterTemplateArgs args)
    public ParameterTemplate(String name, ParameterTemplateArgs args, CustomResourceOptions options)
    
    type: bytepluscc:rdspostgresql:ParameterTemplate
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "bytepluscc_rdspostgresql_parametertemplate" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ParameterTemplateArgs
    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 ParameterTemplateArgs
    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 ParameterTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ParameterTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ParameterTemplateArgs
    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 byteplusccParameterTemplateResource = new Bytepluscc.Rdspostgresql.ParameterTemplate("byteplusccParameterTemplateResource", new()
    {
        TemplateName = "string",
        TemplateParams = new[]
        {
            new Bytepluscc.Rdspostgresql.Inputs.ParameterTemplateTemplateParamArgs
            {
                Name = "string",
                Value = "string",
            },
        },
        TemplateType = "string",
        TemplateTypeVersion = "string",
        TemplateDesc = "string",
    });
    
    example, err := rdspostgresql.NewParameterTemplate(ctx, "byteplusccParameterTemplateResource", &rdspostgresql.ParameterTemplateArgs{
    	TemplateName: pulumi.String("string"),
    	TemplateParams: rdspostgresql.ParameterTemplateTemplateParamArray{
    		&rdspostgresql.ParameterTemplateTemplateParamArgs{
    			Name:  pulumi.String("string"),
    			Value: pulumi.String("string"),
    		},
    	},
    	TemplateType:        pulumi.String("string"),
    	TemplateTypeVersion: pulumi.String("string"),
    	TemplateDesc:        pulumi.String("string"),
    })
    
    resource "bytepluscc_rdspostgresql_parametertemplate" "byteplusccParameterTemplateResource" {
      template_name = "string"
      template_params {
        name  = "string"
        value = "string"
      }
      template_type         = "string"
      template_type_version = "string"
      template_desc         = "string"
    }
    
    var byteplusccParameterTemplateResource = new com.byteplus.bytepluscc.rdspostgresql.ParameterTemplate("byteplusccParameterTemplateResource", com.byteplus.bytepluscc.rdspostgresql.ParameterTemplateArgs.builder()
        .templateName("string")
        .templateParams(ParameterTemplateTemplateParamArgs.builder()
            .name("string")
            .value("string")
            .build())
        .templateType("string")
        .templateTypeVersion("string")
        .templateDesc("string")
        .build());
    
    bytepluscc_parameter_template_resource = bytepluscc.rdspostgresql.ParameterTemplate("byteplusccParameterTemplateResource",
        template_name="string",
        template_params=[{
            "name": "string",
            "value": "string",
        }],
        template_type="string",
        template_type_version="string",
        template_desc="string")
    
    const byteplusccParameterTemplateResource = new bytepluscc.rdspostgresql.ParameterTemplate("byteplusccParameterTemplateResource", {
        templateName: "string",
        templateParams: [{
            name: "string",
            value: "string",
        }],
        templateType: "string",
        templateTypeVersion: "string",
        templateDesc: "string",
    });
    
    type: bytepluscc:rdspostgresql:ParameterTemplate
    properties:
        templateDesc: string
        templateName: string
        templateParams:
            - name: string
              value: string
        templateType: string
        templateTypeVersion: string
    

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

    TemplateName string
    Parameter template name
    TemplateParams List<Byteplus.ParameterTemplateTemplateParam>
    TemplateType string
    Database type of the parameter template. Value: PostgreSQL
    TemplateTypeVersion string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    TemplateDesc string
    Parameter template description information
    TemplateName string
    Parameter template name
    TemplateParams []ParameterTemplateTemplateParamArgs
    TemplateType string
    Database type of the parameter template. Value: PostgreSQL
    TemplateTypeVersion string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    TemplateDesc string
    Parameter template description information
    template_name string
    Parameter template name
    template_params list(object)
    template_type string
    Database type of the parameter template. Value: PostgreSQL
    template_type_version string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    template_desc string
    Parameter template description information
    templateName String
    Parameter template name
    templateParams List<ParameterTemplateTemplateParam>
    templateType String
    Database type of the parameter template. Value: PostgreSQL
    templateTypeVersion String
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    templateDesc String
    Parameter template description information
    templateName string
    Parameter template name
    templateParams ParameterTemplateTemplateParam[]
    templateType string
    Database type of the parameter template. Value: PostgreSQL
    templateTypeVersion string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    templateDesc string
    Parameter template description information
    template_name str
    Parameter template name
    template_params Sequence[ParameterTemplateTemplateParamArgs]
    template_type str
    Database type of the parameter template. Value: PostgreSQL
    template_type_version str
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    template_desc str
    Parameter template description information
    templateName String
    Parameter template name
    templateParams List<Property Map>
    templateType String
    Database type of the parameter template. Value: PostgreSQL
    templateTypeVersion String
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    templateDesc String
    Parameter template description information

    Outputs

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

    AccountId string
    Account ID
    CreateTime string
    Parameter template creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    NeedRestart bool
    Whether the template contains parameters that require a restart to take effect
    ParameterNum int
    Number of parameters included in the template
    TemplateCategory string
    Template category
    TemplateId string
    Parameter template ID, automatically generated by the system
    TemplateSource string
    Parameter template source type. Options: System (system template), User (user template)
    UpdateTime string
    Last modified time of the parameter template
    AccountId string
    Account ID
    CreateTime string
    Parameter template creation time
    Id string
    The provider-assigned unique ID for this managed resource.
    NeedRestart bool
    Whether the template contains parameters that require a restart to take effect
    ParameterNum int
    Number of parameters included in the template
    TemplateCategory string
    Template category
    TemplateId string
    Parameter template ID, automatically generated by the system
    TemplateSource string
    Parameter template source type. Options: System (system template), User (user template)
    UpdateTime string
    Last modified time of the parameter template
    account_id string
    Account ID
    create_time string
    Parameter template creation time
    id string
    The provider-assigned unique ID for this managed resource.
    need_restart bool
    Whether the template contains parameters that require a restart to take effect
    parameter_num number
    Number of parameters included in the template
    template_category string
    Template category
    template_id string
    Parameter template ID, automatically generated by the system
    template_source string
    Parameter template source type. Options: System (system template), User (user template)
    update_time string
    Last modified time of the parameter template
    accountId String
    Account ID
    createTime String
    Parameter template creation time
    id String
    The provider-assigned unique ID for this managed resource.
    needRestart Boolean
    Whether the template contains parameters that require a restart to take effect
    parameterNum Integer
    Number of parameters included in the template
    templateCategory String
    Template category
    templateId String
    Parameter template ID, automatically generated by the system
    templateSource String
    Parameter template source type. Options: System (system template), User (user template)
    updateTime String
    Last modified time of the parameter template
    accountId string
    Account ID
    createTime string
    Parameter template creation time
    id string
    The provider-assigned unique ID for this managed resource.
    needRestart boolean
    Whether the template contains parameters that require a restart to take effect
    parameterNum number
    Number of parameters included in the template
    templateCategory string
    Template category
    templateId string
    Parameter template ID, automatically generated by the system
    templateSource string
    Parameter template source type. Options: System (system template), User (user template)
    updateTime string
    Last modified time of the parameter template
    account_id str
    Account ID
    create_time str
    Parameter template creation time
    id str
    The provider-assigned unique ID for this managed resource.
    need_restart bool
    Whether the template contains parameters that require a restart to take effect
    parameter_num int
    Number of parameters included in the template
    template_category str
    Template category
    template_id str
    Parameter template ID, automatically generated by the system
    template_source str
    Parameter template source type. Options: System (system template), User (user template)
    update_time str
    Last modified time of the parameter template
    accountId String
    Account ID
    createTime String
    Parameter template creation time
    id String
    The provider-assigned unique ID for this managed resource.
    needRestart Boolean
    Whether the template contains parameters that require a restart to take effect
    parameterNum Number
    Number of parameters included in the template
    templateCategory String
    Template category
    templateId String
    Parameter template ID, automatically generated by the system
    templateSource String
    Parameter template source type. Options: System (system template), User (user template)
    updateTime String
    Last modified time of the parameter template

    Look up Existing ParameterTemplate Resource

    Get an existing ParameterTemplate resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ParameterTemplateState, opts?: CustomResourceOptions): ParameterTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            create_time: Optional[str] = None,
            need_restart: Optional[bool] = None,
            parameter_num: Optional[int] = None,
            template_category: Optional[str] = None,
            template_desc: Optional[str] = None,
            template_id: Optional[str] = None,
            template_name: Optional[str] = None,
            template_params: Optional[Sequence[ParameterTemplateTemplateParamArgs]] = None,
            template_source: Optional[str] = None,
            template_type: Optional[str] = None,
            template_type_version: Optional[str] = None,
            update_time: Optional[str] = None) -> ParameterTemplate
    func GetParameterTemplate(ctx *Context, name string, id IDInput, state *ParameterTemplateState, opts ...ResourceOption) (*ParameterTemplate, error)
    public static ParameterTemplate Get(string name, Input<string> id, ParameterTemplateState? state, CustomResourceOptions? opts = null)
    public static ParameterTemplate get(String name, Output<String> id, ParameterTemplateState state, CustomResourceOptions options)
    resources:  _:    type: bytepluscc:rdspostgresql:ParameterTemplate    get:      id: ${id}
    import {
      to = bytepluscc_rdspostgresql_parametertemplate.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountId string
    Account ID
    CreateTime string
    Parameter template creation time
    NeedRestart bool
    Whether the template contains parameters that require a restart to take effect
    ParameterNum int
    Number of parameters included in the template
    TemplateCategory string
    Template category
    TemplateDesc string
    Parameter template description information
    TemplateId string
    Parameter template ID, automatically generated by the system
    TemplateName string
    Parameter template name
    TemplateParams List<Byteplus.ParameterTemplateTemplateParam>
    TemplateSource string
    Parameter template source type. Options: System (system template), User (user template)
    TemplateType string
    Database type of the parameter template. Value: PostgreSQL
    TemplateTypeVersion string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    UpdateTime string
    Last modified time of the parameter template
    AccountId string
    Account ID
    CreateTime string
    Parameter template creation time
    NeedRestart bool
    Whether the template contains parameters that require a restart to take effect
    ParameterNum int
    Number of parameters included in the template
    TemplateCategory string
    Template category
    TemplateDesc string
    Parameter template description information
    TemplateId string
    Parameter template ID, automatically generated by the system
    TemplateName string
    Parameter template name
    TemplateParams []ParameterTemplateTemplateParamArgs
    TemplateSource string
    Parameter template source type. Options: System (system template), User (user template)
    TemplateType string
    Database type of the parameter template. Value: PostgreSQL
    TemplateTypeVersion string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    UpdateTime string
    Last modified time of the parameter template
    account_id string
    Account ID
    create_time string
    Parameter template creation time
    need_restart bool
    Whether the template contains parameters that require a restart to take effect
    parameter_num number
    Number of parameters included in the template
    template_category string
    Template category
    template_desc string
    Parameter template description information
    template_id string
    Parameter template ID, automatically generated by the system
    template_name string
    Parameter template name
    template_params list(object)
    template_source string
    Parameter template source type. Options: System (system template), User (user template)
    template_type string
    Database type of the parameter template. Value: PostgreSQL
    template_type_version string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    update_time string
    Last modified time of the parameter template
    accountId String
    Account ID
    createTime String
    Parameter template creation time
    needRestart Boolean
    Whether the template contains parameters that require a restart to take effect
    parameterNum Integer
    Number of parameters included in the template
    templateCategory String
    Template category
    templateDesc String
    Parameter template description information
    templateId String
    Parameter template ID, automatically generated by the system
    templateName String
    Parameter template name
    templateParams List<ParameterTemplateTemplateParam>
    templateSource String
    Parameter template source type. Options: System (system template), User (user template)
    templateType String
    Database type of the parameter template. Value: PostgreSQL
    templateTypeVersion String
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    updateTime String
    Last modified time of the parameter template
    accountId string
    Account ID
    createTime string
    Parameter template creation time
    needRestart boolean
    Whether the template contains parameters that require a restart to take effect
    parameterNum number
    Number of parameters included in the template
    templateCategory string
    Template category
    templateDesc string
    Parameter template description information
    templateId string
    Parameter template ID, automatically generated by the system
    templateName string
    Parameter template name
    templateParams ParameterTemplateTemplateParam[]
    templateSource string
    Parameter template source type. Options: System (system template), User (user template)
    templateType string
    Database type of the parameter template. Value: PostgreSQL
    templateTypeVersion string
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    updateTime string
    Last modified time of the parameter template
    account_id str
    Account ID
    create_time str
    Parameter template creation time
    need_restart bool
    Whether the template contains parameters that require a restart to take effect
    parameter_num int
    Number of parameters included in the template
    template_category str
    Template category
    template_desc str
    Parameter template description information
    template_id str
    Parameter template ID, automatically generated by the system
    template_name str
    Parameter template name
    template_params Sequence[ParameterTemplateTemplateParamArgs]
    template_source str
    Parameter template source type. Options: System (system template), User (user template)
    template_type str
    Database type of the parameter template. Value: PostgreSQL
    template_type_version str
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    update_time str
    Last modified time of the parameter template
    accountId String
    Account ID
    createTime String
    Parameter template creation time
    needRestart Boolean
    Whether the template contains parameters that require a restart to take effect
    parameterNum Number
    Number of parameters included in the template
    templateCategory String
    Template category
    templateDesc String
    Parameter template description information
    templateId String
    Parameter template ID, automatically generated by the system
    templateName String
    Parameter template name
    templateParams List<Property Map>
    templateSource String
    Parameter template source type. Options: System (system template), User (user template)
    templateType String
    Database type of the parameter template. Value: PostgreSQL
    templateTypeVersion String
    Database version of the parameter template, such as PostgreSQL13, PostgreSQL14, PostgreSQL_15, etc
    updateTime String
    Last modified time of the parameter template

    Supporting Types

    ParameterTemplateTemplateParam, ParameterTemplateTemplateParamArgs

    Name string
    Parameter name
    Value string
    Parameter value
    Name string
    Parameter name
    Value string
    Parameter value
    name string
    Parameter name
    value string
    Parameter value
    name String
    Parameter name
    value String
    Parameter value
    name string
    Parameter name
    value string
    Parameter value
    name str
    Parameter name
    value str
    Parameter value
    name String
    Parameter name
    value String
    Parameter value

    Import

    $ pulumi import bytepluscc:rdspostgresql/parameterTemplate:ParameterTemplate example "template_id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    bytepluscc byteplus-sdk/pulumi-bytepluscc
    License
    MPL-2.0
    Notes
    This Pulumi package is based on the bytepluscc Terraform Provider.
    bytepluscc logo
    Viewing docs for bytepluscc v0.0.31
    published on Monday, Jun 1, 2026 by Byteplus

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial