1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. CdwpgDbconfig
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

tencentcloud.CdwpgDbconfig

Explore with Pulumi AI

tencentcloud logo
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack

    Provides a resource to create a cdwpg cdwpg_dbconfig

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const cdwpgDbconfig = new tencentcloud.CdwpgDbconfig("cdwpgDbconfig", {
        instanceId: "cdwpg-ua8wkqrt",
        nodeConfigParams: [{
            nodeType: "cn",
            parameterName: "log_min_duration_statement",
            parameterValue: "10001",
        }],
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    cdwpg_dbconfig = tencentcloud.CdwpgDbconfig("cdwpgDbconfig",
        instance_id="cdwpg-ua8wkqrt",
        node_config_params=[{
            "node_type": "cn",
            "parameter_name": "log_min_duration_statement",
            "parameter_value": "10001",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := tencentcloud.NewCdwpgDbconfig(ctx, "cdwpgDbconfig", &tencentcloud.CdwpgDbconfigArgs{
    			InstanceId: pulumi.String("cdwpg-ua8wkqrt"),
    			NodeConfigParams: tencentcloud.CdwpgDbconfigNodeConfigParamArray{
    				&tencentcloud.CdwpgDbconfigNodeConfigParamArgs{
    					NodeType:       pulumi.String("cn"),
    					ParameterName:  pulumi.String("log_min_duration_statement"),
    					ParameterValue: pulumi.String("10001"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Tencentcloud = Pulumi.Tencentcloud;
    
    return await Deployment.RunAsync(() => 
    {
        var cdwpgDbconfig = new Tencentcloud.CdwpgDbconfig("cdwpgDbconfig", new()
        {
            InstanceId = "cdwpg-ua8wkqrt",
            NodeConfigParams = new[]
            {
                new Tencentcloud.Inputs.CdwpgDbconfigNodeConfigParamArgs
                {
                    NodeType = "cn",
                    ParameterName = "log_min_duration_statement",
                    ParameterValue = "10001",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CdwpgDbconfig;
    import com.pulumi.tencentcloud.CdwpgDbconfigArgs;
    import com.pulumi.tencentcloud.inputs.CdwpgDbconfigNodeConfigParamArgs;
    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 cdwpgDbconfig = new CdwpgDbconfig("cdwpgDbconfig", CdwpgDbconfigArgs.builder()
                .instanceId("cdwpg-ua8wkqrt")
                .nodeConfigParams(CdwpgDbconfigNodeConfigParamArgs.builder()
                    .nodeType("cn")
                    .parameterName("log_min_duration_statement")
                    .parameterValue("10001")
                    .build())
                .build());
    
        }
    }
    
    resources:
      cdwpgDbconfig:
        type: tencentcloud:CdwpgDbconfig
        properties:
          instanceId: cdwpg-ua8wkqrt
          nodeConfigParams:
            - nodeType: cn
              parameterName: log_min_duration_statement
              parameterValue: '10001'
    

    Create CdwpgDbconfig Resource

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

    Constructor syntax

    new CdwpgDbconfig(name: string, args: CdwpgDbconfigArgs, opts?: CustomResourceOptions);
    @overload
    def CdwpgDbconfig(resource_name: str,
                      args: CdwpgDbconfigArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def CdwpgDbconfig(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      instance_id: Optional[str] = None,
                      cdwpg_dbconfig_id: Optional[str] = None,
                      node_config_params: Optional[Sequence[CdwpgDbconfigNodeConfigParamArgs]] = None)
    func NewCdwpgDbconfig(ctx *Context, name string, args CdwpgDbconfigArgs, opts ...ResourceOption) (*CdwpgDbconfig, error)
    public CdwpgDbconfig(string name, CdwpgDbconfigArgs args, CustomResourceOptions? opts = null)
    public CdwpgDbconfig(String name, CdwpgDbconfigArgs args)
    public CdwpgDbconfig(String name, CdwpgDbconfigArgs args, CustomResourceOptions options)
    
    type: tencentcloud:CdwpgDbconfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CdwpgDbconfigArgs
    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 CdwpgDbconfigArgs
    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 CdwpgDbconfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CdwpgDbconfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CdwpgDbconfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    InstanceId string
    Instance id.
    CdwpgDbconfigId string
    ID of the resource.
    NodeConfigParams List<CdwpgDbconfigNodeConfigParam>
    Node config parameters.
    InstanceId string
    Instance id.
    CdwpgDbconfigId string
    ID of the resource.
    NodeConfigParams []CdwpgDbconfigNodeConfigParamArgs
    Node config parameters.
    instanceId String
    Instance id.
    cdwpgDbconfigId String
    ID of the resource.
    nodeConfigParams List<CdwpgDbconfigNodeConfigParam>
    Node config parameters.
    instanceId string
    Instance id.
    cdwpgDbconfigId string
    ID of the resource.
    nodeConfigParams CdwpgDbconfigNodeConfigParam[]
    Node config parameters.
    instance_id str
    Instance id.
    cdwpg_dbconfig_id str
    ID of the resource.
    node_config_params Sequence[CdwpgDbconfigNodeConfigParamArgs]
    Node config parameters.
    instanceId String
    Instance id.
    cdwpgDbconfigId String
    ID of the resource.
    nodeConfigParams List<Property Map>
    Node config parameters.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CdwpgDbconfig Resource

    Get an existing CdwpgDbconfig 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?: CdwpgDbconfigState, opts?: CustomResourceOptions): CdwpgDbconfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cdwpg_dbconfig_id: Optional[str] = None,
            instance_id: Optional[str] = None,
            node_config_params: Optional[Sequence[CdwpgDbconfigNodeConfigParamArgs]] = None) -> CdwpgDbconfig
    func GetCdwpgDbconfig(ctx *Context, name string, id IDInput, state *CdwpgDbconfigState, opts ...ResourceOption) (*CdwpgDbconfig, error)
    public static CdwpgDbconfig Get(string name, Input<string> id, CdwpgDbconfigState? state, CustomResourceOptions? opts = null)
    public static CdwpgDbconfig get(String name, Output<String> id, CdwpgDbconfigState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:CdwpgDbconfig    get:      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:
    CdwpgDbconfigId string
    ID of the resource.
    InstanceId string
    Instance id.
    NodeConfigParams List<CdwpgDbconfigNodeConfigParam>
    Node config parameters.
    CdwpgDbconfigId string
    ID of the resource.
    InstanceId string
    Instance id.
    NodeConfigParams []CdwpgDbconfigNodeConfigParamArgs
    Node config parameters.
    cdwpgDbconfigId String
    ID of the resource.
    instanceId String
    Instance id.
    nodeConfigParams List<CdwpgDbconfigNodeConfigParam>
    Node config parameters.
    cdwpgDbconfigId string
    ID of the resource.
    instanceId string
    Instance id.
    nodeConfigParams CdwpgDbconfigNodeConfigParam[]
    Node config parameters.
    cdwpg_dbconfig_id str
    ID of the resource.
    instance_id str
    Instance id.
    node_config_params Sequence[CdwpgDbconfigNodeConfigParamArgs]
    Node config parameters.
    cdwpgDbconfigId String
    ID of the resource.
    instanceId String
    Instance id.
    nodeConfigParams List<Property Map>
    Node config parameters.

    Supporting Types

    CdwpgDbconfigNodeConfigParam, CdwpgDbconfigNodeConfigParamArgs

    NodeType string
    Node type.
    ParameterName string
    Parameter name.
    ParameterValue string
    Parameter value.
    NodeType string
    Node type.
    ParameterName string
    Parameter name.
    ParameterValue string
    Parameter value.
    nodeType String
    Node type.
    parameterName String
    Parameter name.
    parameterValue String
    Parameter value.
    nodeType string
    Node type.
    parameterName string
    Parameter name.
    parameterValue string
    Parameter value.
    node_type str
    Node type.
    parameter_name str
    Parameter name.
    parameter_value str
    Parameter value.
    nodeType String
    Node type.
    parameterName String
    Parameter name.
    parameterValue String
    Parameter value.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack