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

tencentcloud.TsfApplicationReleaseConfig

Explore with Pulumi AI

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

    Provides a resource to create a tsf application_release_config

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const applicationReleaseConfig = new tencentcloud.TsfApplicationReleaseConfig("applicationReleaseConfig", {
        configId: "dcfg-nalqbqwv",
        groupId: "group-yxmz72gv",
        releaseDesc: "terraform-test",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    application_release_config = tencentcloud.TsfApplicationReleaseConfig("applicationReleaseConfig",
        config_id="dcfg-nalqbqwv",
        group_id="group-yxmz72gv",
        release_desc="terraform-test")
    
    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.NewTsfApplicationReleaseConfig(ctx, "applicationReleaseConfig", &tencentcloud.TsfApplicationReleaseConfigArgs{
    			ConfigId:    pulumi.String("dcfg-nalqbqwv"),
    			GroupId:     pulumi.String("group-yxmz72gv"),
    			ReleaseDesc: pulumi.String("terraform-test"),
    		})
    		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 applicationReleaseConfig = new Tencentcloud.TsfApplicationReleaseConfig("applicationReleaseConfig", new()
        {
            ConfigId = "dcfg-nalqbqwv",
            GroupId = "group-yxmz72gv",
            ReleaseDesc = "terraform-test",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TsfApplicationReleaseConfig;
    import com.pulumi.tencentcloud.TsfApplicationReleaseConfigArgs;
    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 applicationReleaseConfig = new TsfApplicationReleaseConfig("applicationReleaseConfig", TsfApplicationReleaseConfigArgs.builder()
                .configId("dcfg-nalqbqwv")
                .groupId("group-yxmz72gv")
                .releaseDesc("terraform-test")
                .build());
    
        }
    }
    
    resources:
      applicationReleaseConfig:
        type: tencentcloud:TsfApplicationReleaseConfig
        properties:
          configId: dcfg-nalqbqwv
          groupId: group-yxmz72gv
          releaseDesc: terraform-test
    

    Create TsfApplicationReleaseConfig Resource

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

    Constructor syntax

    new TsfApplicationReleaseConfig(name: string, args: TsfApplicationReleaseConfigArgs, opts?: CustomResourceOptions);
    @overload
    def TsfApplicationReleaseConfig(resource_name: str,
                                    args: TsfApplicationReleaseConfigArgs,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def TsfApplicationReleaseConfig(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    config_id: Optional[str] = None,
                                    group_id: Optional[str] = None,
                                    release_desc: Optional[str] = None,
                                    tsf_application_release_config_id: Optional[str] = None)
    func NewTsfApplicationReleaseConfig(ctx *Context, name string, args TsfApplicationReleaseConfigArgs, opts ...ResourceOption) (*TsfApplicationReleaseConfig, error)
    public TsfApplicationReleaseConfig(string name, TsfApplicationReleaseConfigArgs args, CustomResourceOptions? opts = null)
    public TsfApplicationReleaseConfig(String name, TsfApplicationReleaseConfigArgs args)
    public TsfApplicationReleaseConfig(String name, TsfApplicationReleaseConfigArgs args, CustomResourceOptions options)
    
    type: tencentcloud:TsfApplicationReleaseConfig
    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 TsfApplicationReleaseConfigArgs
    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 TsfApplicationReleaseConfigArgs
    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 TsfApplicationReleaseConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TsfApplicationReleaseConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TsfApplicationReleaseConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ConfigId string
    Configuration ID.
    GroupId string
    deployment group ID.
    ReleaseDesc string
    release description.
    TsfApplicationReleaseConfigId string
    ID of the resource.
    ConfigId string
    Configuration ID.
    GroupId string
    deployment group ID.
    ReleaseDesc string
    release description.
    TsfApplicationReleaseConfigId string
    ID of the resource.
    configId String
    Configuration ID.
    groupId String
    deployment group ID.
    releaseDesc String
    release description.
    tsfApplicationReleaseConfigId String
    ID of the resource.
    configId string
    Configuration ID.
    groupId string
    deployment group ID.
    releaseDesc string
    release description.
    tsfApplicationReleaseConfigId string
    ID of the resource.
    config_id str
    Configuration ID.
    group_id str
    deployment group ID.
    release_desc str
    release description.
    tsf_application_release_config_id str
    ID of the resource.
    configId String
    Configuration ID.
    groupId String
    deployment group ID.
    releaseDesc String
    release description.
    tsfApplicationReleaseConfigId String
    ID of the resource.

    Outputs

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

    ApplicationId string
    Application ID.
    ClusterId string
    cluster ID.
    ClusterName string
    cluster name.
    ConfigName string
    configuration item name.
    ConfigReleaseId string
    configuration item release ID.
    ConfigVersion string
    configuration item version.
    GroupName string
    deployment group name.
    Id string
    The provider-assigned unique ID for this managed resource.
    NamespaceId string
    Namespace ID.
    NamespaceName string
    namespace name.
    ReleaseTime string
    release time.
    ApplicationId string
    Application ID.
    ClusterId string
    cluster ID.
    ClusterName string
    cluster name.
    ConfigName string
    configuration item name.
    ConfigReleaseId string
    configuration item release ID.
    ConfigVersion string
    configuration item version.
    GroupName string
    deployment group name.
    Id string
    The provider-assigned unique ID for this managed resource.
    NamespaceId string
    Namespace ID.
    NamespaceName string
    namespace name.
    ReleaseTime string
    release time.
    applicationId String
    Application ID.
    clusterId String
    cluster ID.
    clusterName String
    cluster name.
    configName String
    configuration item name.
    configReleaseId String
    configuration item release ID.
    configVersion String
    configuration item version.
    groupName String
    deployment group name.
    id String
    The provider-assigned unique ID for this managed resource.
    namespaceId String
    Namespace ID.
    namespaceName String
    namespace name.
    releaseTime String
    release time.
    applicationId string
    Application ID.
    clusterId string
    cluster ID.
    clusterName string
    cluster name.
    configName string
    configuration item name.
    configReleaseId string
    configuration item release ID.
    configVersion string
    configuration item version.
    groupName string
    deployment group name.
    id string
    The provider-assigned unique ID for this managed resource.
    namespaceId string
    Namespace ID.
    namespaceName string
    namespace name.
    releaseTime string
    release time.
    application_id str
    Application ID.
    cluster_id str
    cluster ID.
    cluster_name str
    cluster name.
    config_name str
    configuration item name.
    config_release_id str
    configuration item release ID.
    config_version str
    configuration item version.
    group_name str
    deployment group name.
    id str
    The provider-assigned unique ID for this managed resource.
    namespace_id str
    Namespace ID.
    namespace_name str
    namespace name.
    release_time str
    release time.
    applicationId String
    Application ID.
    clusterId String
    cluster ID.
    clusterName String
    cluster name.
    configName String
    configuration item name.
    configReleaseId String
    configuration item release ID.
    configVersion String
    configuration item version.
    groupName String
    deployment group name.
    id String
    The provider-assigned unique ID for this managed resource.
    namespaceId String
    Namespace ID.
    namespaceName String
    namespace name.
    releaseTime String
    release time.

    Look up Existing TsfApplicationReleaseConfig Resource

    Get an existing TsfApplicationReleaseConfig 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?: TsfApplicationReleaseConfigState, opts?: CustomResourceOptions): TsfApplicationReleaseConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            application_id: Optional[str] = None,
            cluster_id: Optional[str] = None,
            cluster_name: Optional[str] = None,
            config_id: Optional[str] = None,
            config_name: Optional[str] = None,
            config_release_id: Optional[str] = None,
            config_version: Optional[str] = None,
            group_id: Optional[str] = None,
            group_name: Optional[str] = None,
            namespace_id: Optional[str] = None,
            namespace_name: Optional[str] = None,
            release_desc: Optional[str] = None,
            release_time: Optional[str] = None,
            tsf_application_release_config_id: Optional[str] = None) -> TsfApplicationReleaseConfig
    func GetTsfApplicationReleaseConfig(ctx *Context, name string, id IDInput, state *TsfApplicationReleaseConfigState, opts ...ResourceOption) (*TsfApplicationReleaseConfig, error)
    public static TsfApplicationReleaseConfig Get(string name, Input<string> id, TsfApplicationReleaseConfigState? state, CustomResourceOptions? opts = null)
    public static TsfApplicationReleaseConfig get(String name, Output<String> id, TsfApplicationReleaseConfigState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:TsfApplicationReleaseConfig    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:
    ApplicationId string
    Application ID.
    ClusterId string
    cluster ID.
    ClusterName string
    cluster name.
    ConfigId string
    Configuration ID.
    ConfigName string
    configuration item name.
    ConfigReleaseId string
    configuration item release ID.
    ConfigVersion string
    configuration item version.
    GroupId string
    deployment group ID.
    GroupName string
    deployment group name.
    NamespaceId string
    Namespace ID.
    NamespaceName string
    namespace name.
    ReleaseDesc string
    release description.
    ReleaseTime string
    release time.
    TsfApplicationReleaseConfigId string
    ID of the resource.
    ApplicationId string
    Application ID.
    ClusterId string
    cluster ID.
    ClusterName string
    cluster name.
    ConfigId string
    Configuration ID.
    ConfigName string
    configuration item name.
    ConfigReleaseId string
    configuration item release ID.
    ConfigVersion string
    configuration item version.
    GroupId string
    deployment group ID.
    GroupName string
    deployment group name.
    NamespaceId string
    Namespace ID.
    NamespaceName string
    namespace name.
    ReleaseDesc string
    release description.
    ReleaseTime string
    release time.
    TsfApplicationReleaseConfigId string
    ID of the resource.
    applicationId String
    Application ID.
    clusterId String
    cluster ID.
    clusterName String
    cluster name.
    configId String
    Configuration ID.
    configName String
    configuration item name.
    configReleaseId String
    configuration item release ID.
    configVersion String
    configuration item version.
    groupId String
    deployment group ID.
    groupName String
    deployment group name.
    namespaceId String
    Namespace ID.
    namespaceName String
    namespace name.
    releaseDesc String
    release description.
    releaseTime String
    release time.
    tsfApplicationReleaseConfigId String
    ID of the resource.
    applicationId string
    Application ID.
    clusterId string
    cluster ID.
    clusterName string
    cluster name.
    configId string
    Configuration ID.
    configName string
    configuration item name.
    configReleaseId string
    configuration item release ID.
    configVersion string
    configuration item version.
    groupId string
    deployment group ID.
    groupName string
    deployment group name.
    namespaceId string
    Namespace ID.
    namespaceName string
    namespace name.
    releaseDesc string
    release description.
    releaseTime string
    release time.
    tsfApplicationReleaseConfigId string
    ID of the resource.
    application_id str
    Application ID.
    cluster_id str
    cluster ID.
    cluster_name str
    cluster name.
    config_id str
    Configuration ID.
    config_name str
    configuration item name.
    config_release_id str
    configuration item release ID.
    config_version str
    configuration item version.
    group_id str
    deployment group ID.
    group_name str
    deployment group name.
    namespace_id str
    Namespace ID.
    namespace_name str
    namespace name.
    release_desc str
    release description.
    release_time str
    release time.
    tsf_application_release_config_id str
    ID of the resource.
    applicationId String
    Application ID.
    clusterId String
    cluster ID.
    clusterName String
    cluster name.
    configId String
    Configuration ID.
    configName String
    configuration item name.
    configReleaseId String
    configuration item release ID.
    configVersion String
    configuration item version.
    groupId String
    deployment group ID.
    groupName String
    deployment group name.
    namespaceId String
    Namespace ID.
    namespaceName String
    namespace name.
    releaseDesc String
    release description.
    releaseTime String
    release time.
    tsfApplicationReleaseConfigId String
    ID of the resource.

    Import

    tsf application_release_config can be imported using the configId#groupId#configReleaseId, e.g.

    $ pulumi import tencentcloud:index/tsfApplicationReleaseConfig:TsfApplicationReleaseConfig application_release_config dcfg-nalqbqwv#group-yxmz72gv#dcfgr-maeeq2ea
    

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

    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