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

tencentcloud.TsfApiGroup

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 api_group

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const apiGroup = new tencentcloud.TsfApiGroup("apiGroup", {
        authType: "none",
        description: "terraform-test",
        gatewayInstanceId: "gw-ins-i6mjpgm8",
        groupContext: "/terraform-test",
        groupName: "terraform_test_group",
        groupType: "ms",
        namespaceNameKeyPosition: "path",
        serviceNameKeyPosition: "path",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    api_group = tencentcloud.TsfApiGroup("apiGroup",
        auth_type="none",
        description="terraform-test",
        gateway_instance_id="gw-ins-i6mjpgm8",
        group_context="/terraform-test",
        group_name="terraform_test_group",
        group_type="ms",
        namespace_name_key_position="path",
        service_name_key_position="path")
    
    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.NewTsfApiGroup(ctx, "apiGroup", &tencentcloud.TsfApiGroupArgs{
    			AuthType:                 pulumi.String("none"),
    			Description:              pulumi.String("terraform-test"),
    			GatewayInstanceId:        pulumi.String("gw-ins-i6mjpgm8"),
    			GroupContext:             pulumi.String("/terraform-test"),
    			GroupName:                pulumi.String("terraform_test_group"),
    			GroupType:                pulumi.String("ms"),
    			NamespaceNameKeyPosition: pulumi.String("path"),
    			ServiceNameKeyPosition:   pulumi.String("path"),
    		})
    		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 apiGroup = new Tencentcloud.TsfApiGroup("apiGroup", new()
        {
            AuthType = "none",
            Description = "terraform-test",
            GatewayInstanceId = "gw-ins-i6mjpgm8",
            GroupContext = "/terraform-test",
            GroupName = "terraform_test_group",
            GroupType = "ms",
            NamespaceNameKeyPosition = "path",
            ServiceNameKeyPosition = "path",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TsfApiGroup;
    import com.pulumi.tencentcloud.TsfApiGroupArgs;
    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 apiGroup = new TsfApiGroup("apiGroup", TsfApiGroupArgs.builder()
                .authType("none")
                .description("terraform-test")
                .gatewayInstanceId("gw-ins-i6mjpgm8")
                .groupContext("/terraform-test")
                .groupName("terraform_test_group")
                .groupType("ms")
                .namespaceNameKeyPosition("path")
                .serviceNameKeyPosition("path")
                .build());
    
        }
    }
    
    resources:
      apiGroup:
        type: tencentcloud:TsfApiGroup
        properties:
          authType: none
          description: terraform-test
          gatewayInstanceId: gw-ins-i6mjpgm8
          groupContext: /terraform-test
          groupName: terraform_test_group
          groupType: ms
          # namespace_name_key = "path"
          #     // service_name_key = "path"
          namespaceNameKeyPosition: path
          serviceNameKeyPosition: path
    

    Create TsfApiGroup Resource

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

    Constructor syntax

    new TsfApiGroup(name: string, args: TsfApiGroupArgs, opts?: CustomResourceOptions);
    @overload
    def TsfApiGroup(resource_name: str,
                    args: TsfApiGroupArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def TsfApiGroup(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    group_context: Optional[str] = None,
                    group_name: Optional[str] = None,
                    auth_type: Optional[str] = None,
                    description: Optional[str] = None,
                    gateway_instance_id: Optional[str] = None,
                    group_type: Optional[str] = None,
                    namespace_name_key: Optional[str] = None,
                    namespace_name_key_position: Optional[str] = None,
                    service_name_key: Optional[str] = None,
                    service_name_key_position: Optional[str] = None,
                    tsf_api_group_id: Optional[str] = None)
    func NewTsfApiGroup(ctx *Context, name string, args TsfApiGroupArgs, opts ...ResourceOption) (*TsfApiGroup, error)
    public TsfApiGroup(string name, TsfApiGroupArgs args, CustomResourceOptions? opts = null)
    public TsfApiGroup(String name, TsfApiGroupArgs args)
    public TsfApiGroup(String name, TsfApiGroupArgs args, CustomResourceOptions options)
    
    type: tencentcloud:TsfApiGroup
    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 TsfApiGroupArgs
    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 TsfApiGroupArgs
    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 TsfApiGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TsfApiGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TsfApiGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    GroupContext string
    grouping context.
    GroupName string
    group name, cannot contain Chinese.
    AuthType string
    authentication type. secret: key authentication; none: no authentication.
    Description string
    remarks.
    GatewayInstanceId string
    gateway entity ID.
    GroupType string
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    NamespaceNameKey string
    namespace parameter key value.
    NamespaceNameKeyPosition string
    namespace parameter position, path, header or query, the default is path.
    ServiceNameKey string
    microservice name parameter key value.
    ServiceNameKeyPosition string
    microservice name parameter position, path, header or query, the default is path.
    TsfApiGroupId string
    ID of the resource.
    GroupContext string
    grouping context.
    GroupName string
    group name, cannot contain Chinese.
    AuthType string
    authentication type. secret: key authentication; none: no authentication.
    Description string
    remarks.
    GatewayInstanceId string
    gateway entity ID.
    GroupType string
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    NamespaceNameKey string
    namespace parameter key value.
    NamespaceNameKeyPosition string
    namespace parameter position, path, header or query, the default is path.
    ServiceNameKey string
    microservice name parameter key value.
    ServiceNameKeyPosition string
    microservice name parameter position, path, header or query, the default is path.
    TsfApiGroupId string
    ID of the resource.
    groupContext String
    grouping context.
    groupName String
    group name, cannot contain Chinese.
    authType String
    authentication type. secret: key authentication; none: no authentication.
    description String
    remarks.
    gatewayInstanceId String
    gateway entity ID.
    groupType String
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespaceNameKey String
    namespace parameter key value.
    namespaceNameKeyPosition String
    namespace parameter position, path, header or query, the default is path.
    serviceNameKey String
    microservice name parameter key value.
    serviceNameKeyPosition String
    microservice name parameter position, path, header or query, the default is path.
    tsfApiGroupId String
    ID of the resource.
    groupContext string
    grouping context.
    groupName string
    group name, cannot contain Chinese.
    authType string
    authentication type. secret: key authentication; none: no authentication.
    description string
    remarks.
    gatewayInstanceId string
    gateway entity ID.
    groupType string
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespaceNameKey string
    namespace parameter key value.
    namespaceNameKeyPosition string
    namespace parameter position, path, header or query, the default is path.
    serviceNameKey string
    microservice name parameter key value.
    serviceNameKeyPosition string
    microservice name parameter position, path, header or query, the default is path.
    tsfApiGroupId string
    ID of the resource.
    group_context str
    grouping context.
    group_name str
    group name, cannot contain Chinese.
    auth_type str
    authentication type. secret: key authentication; none: no authentication.
    description str
    remarks.
    gateway_instance_id str
    gateway entity ID.
    group_type str
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespace_name_key str
    namespace parameter key value.
    namespace_name_key_position str
    namespace parameter position, path, header or query, the default is path.
    service_name_key str
    microservice name parameter key value.
    service_name_key_position str
    microservice name parameter position, path, header or query, the default is path.
    tsf_api_group_id str
    ID of the resource.
    groupContext String
    grouping context.
    groupName String
    group name, cannot contain Chinese.
    authType String
    authentication type. secret: key authentication; none: no authentication.
    description String
    remarks.
    gatewayInstanceId String
    gateway entity ID.
    groupType String
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespaceNameKey String
    namespace parameter key value.
    namespaceNameKeyPosition String
    namespace parameter position, path, header or query, the default is path.
    serviceNameKey String
    microservice name parameter key value.
    serviceNameKeyPosition String
    microservice name parameter position, path, header or query, the default is path.
    tsfApiGroupId String
    ID of the resource.

    Outputs

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

    AclMode string
    Access group ACL type.
    ApiCount double
    number of APIs.
    BindedGatewayDeployGroups List<TsfApiGroupBindedGatewayDeployGroup>
    api group bound gateway deployment group.
    CreatedTime string
    Group creation time such as: 2019-06-20 15:51:28.
    GatewayInstanceType string
    Type of gateway instance.
    GroupId string
    Api Group Id.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Release status, drafted: Not published. released: released.
    UpdatedTime string
    Group update time such as: 2019-06-20 15:51:28.
    AclMode string
    Access group ACL type.
    ApiCount float64
    number of APIs.
    BindedGatewayDeployGroups []TsfApiGroupBindedGatewayDeployGroup
    api group bound gateway deployment group.
    CreatedTime string
    Group creation time such as: 2019-06-20 15:51:28.
    GatewayInstanceType string
    Type of gateway instance.
    GroupId string
    Api Group Id.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Release status, drafted: Not published. released: released.
    UpdatedTime string
    Group update time such as: 2019-06-20 15:51:28.
    aclMode String
    Access group ACL type.
    apiCount Double
    number of APIs.
    bindedGatewayDeployGroups List<TsfApiGroupBindedGatewayDeployGroup>
    api group bound gateway deployment group.
    createdTime String
    Group creation time such as: 2019-06-20 15:51:28.
    gatewayInstanceType String
    Type of gateway instance.
    groupId String
    Api Group Id.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Release status, drafted: Not published. released: released.
    updatedTime String
    Group update time such as: 2019-06-20 15:51:28.
    aclMode string
    Access group ACL type.
    apiCount number
    number of APIs.
    bindedGatewayDeployGroups TsfApiGroupBindedGatewayDeployGroup[]
    api group bound gateway deployment group.
    createdTime string
    Group creation time such as: 2019-06-20 15:51:28.
    gatewayInstanceType string
    Type of gateway instance.
    groupId string
    Api Group Id.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Release status, drafted: Not published. released: released.
    updatedTime string
    Group update time such as: 2019-06-20 15:51:28.
    acl_mode str
    Access group ACL type.
    api_count float
    number of APIs.
    binded_gateway_deploy_groups Sequence[TsfApiGroupBindedGatewayDeployGroup]
    api group bound gateway deployment group.
    created_time str
    Group creation time such as: 2019-06-20 15:51:28.
    gateway_instance_type str
    Type of gateway instance.
    group_id str
    Api Group Id.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Release status, drafted: Not published. released: released.
    updated_time str
    Group update time such as: 2019-06-20 15:51:28.
    aclMode String
    Access group ACL type.
    apiCount Number
    number of APIs.
    bindedGatewayDeployGroups List<Property Map>
    api group bound gateway deployment group.
    createdTime String
    Group creation time such as: 2019-06-20 15:51:28.
    gatewayInstanceType String
    Type of gateway instance.
    groupId String
    Api Group Id.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Release status, drafted: Not published. released: released.
    updatedTime String
    Group update time such as: 2019-06-20 15:51:28.

    Look up Existing TsfApiGroup Resource

    Get an existing TsfApiGroup 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?: TsfApiGroupState, opts?: CustomResourceOptions): TsfApiGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            acl_mode: Optional[str] = None,
            api_count: Optional[float] = None,
            auth_type: Optional[str] = None,
            binded_gateway_deploy_groups: Optional[Sequence[TsfApiGroupBindedGatewayDeployGroupArgs]] = None,
            created_time: Optional[str] = None,
            description: Optional[str] = None,
            gateway_instance_id: Optional[str] = None,
            gateway_instance_type: Optional[str] = None,
            group_context: Optional[str] = None,
            group_id: Optional[str] = None,
            group_name: Optional[str] = None,
            group_type: Optional[str] = None,
            namespace_name_key: Optional[str] = None,
            namespace_name_key_position: Optional[str] = None,
            service_name_key: Optional[str] = None,
            service_name_key_position: Optional[str] = None,
            status: Optional[str] = None,
            tsf_api_group_id: Optional[str] = None,
            updated_time: Optional[str] = None) -> TsfApiGroup
    func GetTsfApiGroup(ctx *Context, name string, id IDInput, state *TsfApiGroupState, opts ...ResourceOption) (*TsfApiGroup, error)
    public static TsfApiGroup Get(string name, Input<string> id, TsfApiGroupState? state, CustomResourceOptions? opts = null)
    public static TsfApiGroup get(String name, Output<String> id, TsfApiGroupState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:TsfApiGroup    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:
    AclMode string
    Access group ACL type.
    ApiCount double
    number of APIs.
    AuthType string
    authentication type. secret: key authentication; none: no authentication.
    BindedGatewayDeployGroups List<TsfApiGroupBindedGatewayDeployGroup>
    api group bound gateway deployment group.
    CreatedTime string
    Group creation time such as: 2019-06-20 15:51:28.
    Description string
    remarks.
    GatewayInstanceId string
    gateway entity ID.
    GatewayInstanceType string
    Type of gateway instance.
    GroupContext string
    grouping context.
    GroupId string
    Api Group Id.
    GroupName string
    group name, cannot contain Chinese.
    GroupType string
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    NamespaceNameKey string
    namespace parameter key value.
    NamespaceNameKeyPosition string
    namespace parameter position, path, header or query, the default is path.
    ServiceNameKey string
    microservice name parameter key value.
    ServiceNameKeyPosition string
    microservice name parameter position, path, header or query, the default is path.
    Status string
    Release status, drafted: Not published. released: released.
    TsfApiGroupId string
    ID of the resource.
    UpdatedTime string
    Group update time such as: 2019-06-20 15:51:28.
    AclMode string
    Access group ACL type.
    ApiCount float64
    number of APIs.
    AuthType string
    authentication type. secret: key authentication; none: no authentication.
    BindedGatewayDeployGroups []TsfApiGroupBindedGatewayDeployGroupArgs
    api group bound gateway deployment group.
    CreatedTime string
    Group creation time such as: 2019-06-20 15:51:28.
    Description string
    remarks.
    GatewayInstanceId string
    gateway entity ID.
    GatewayInstanceType string
    Type of gateway instance.
    GroupContext string
    grouping context.
    GroupId string
    Api Group Id.
    GroupName string
    group name, cannot contain Chinese.
    GroupType string
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    NamespaceNameKey string
    namespace parameter key value.
    NamespaceNameKeyPosition string
    namespace parameter position, path, header or query, the default is path.
    ServiceNameKey string
    microservice name parameter key value.
    ServiceNameKeyPosition string
    microservice name parameter position, path, header or query, the default is path.
    Status string
    Release status, drafted: Not published. released: released.
    TsfApiGroupId string
    ID of the resource.
    UpdatedTime string
    Group update time such as: 2019-06-20 15:51:28.
    aclMode String
    Access group ACL type.
    apiCount Double
    number of APIs.
    authType String
    authentication type. secret: key authentication; none: no authentication.
    bindedGatewayDeployGroups List<TsfApiGroupBindedGatewayDeployGroup>
    api group bound gateway deployment group.
    createdTime String
    Group creation time such as: 2019-06-20 15:51:28.
    description String
    remarks.
    gatewayInstanceId String
    gateway entity ID.
    gatewayInstanceType String
    Type of gateway instance.
    groupContext String
    grouping context.
    groupId String
    Api Group Id.
    groupName String
    group name, cannot contain Chinese.
    groupType String
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespaceNameKey String
    namespace parameter key value.
    namespaceNameKeyPosition String
    namespace parameter position, path, header or query, the default is path.
    serviceNameKey String
    microservice name parameter key value.
    serviceNameKeyPosition String
    microservice name parameter position, path, header or query, the default is path.
    status String
    Release status, drafted: Not published. released: released.
    tsfApiGroupId String
    ID of the resource.
    updatedTime String
    Group update time such as: 2019-06-20 15:51:28.
    aclMode string
    Access group ACL type.
    apiCount number
    number of APIs.
    authType string
    authentication type. secret: key authentication; none: no authentication.
    bindedGatewayDeployGroups TsfApiGroupBindedGatewayDeployGroup[]
    api group bound gateway deployment group.
    createdTime string
    Group creation time such as: 2019-06-20 15:51:28.
    description string
    remarks.
    gatewayInstanceId string
    gateway entity ID.
    gatewayInstanceType string
    Type of gateway instance.
    groupContext string
    grouping context.
    groupId string
    Api Group Id.
    groupName string
    group name, cannot contain Chinese.
    groupType string
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespaceNameKey string
    namespace parameter key value.
    namespaceNameKeyPosition string
    namespace parameter position, path, header or query, the default is path.
    serviceNameKey string
    microservice name parameter key value.
    serviceNameKeyPosition string
    microservice name parameter position, path, header or query, the default is path.
    status string
    Release status, drafted: Not published. released: released.
    tsfApiGroupId string
    ID of the resource.
    updatedTime string
    Group update time such as: 2019-06-20 15:51:28.
    acl_mode str
    Access group ACL type.
    api_count float
    number of APIs.
    auth_type str
    authentication type. secret: key authentication; none: no authentication.
    binded_gateway_deploy_groups Sequence[TsfApiGroupBindedGatewayDeployGroupArgs]
    api group bound gateway deployment group.
    created_time str
    Group creation time such as: 2019-06-20 15:51:28.
    description str
    remarks.
    gateway_instance_id str
    gateway entity ID.
    gateway_instance_type str
    Type of gateway instance.
    group_context str
    grouping context.
    group_id str
    Api Group Id.
    group_name str
    group name, cannot contain Chinese.
    group_type str
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespace_name_key str
    namespace parameter key value.
    namespace_name_key_position str
    namespace parameter position, path, header or query, the default is path.
    service_name_key str
    microservice name parameter key value.
    service_name_key_position str
    microservice name parameter position, path, header or query, the default is path.
    status str
    Release status, drafted: Not published. released: released.
    tsf_api_group_id str
    ID of the resource.
    updated_time str
    Group update time such as: 2019-06-20 15:51:28.
    aclMode String
    Access group ACL type.
    apiCount Number
    number of APIs.
    authType String
    authentication type. secret: key authentication; none: no authentication.
    bindedGatewayDeployGroups List<Property Map>
    api group bound gateway deployment group.
    createdTime String
    Group creation time such as: 2019-06-20 15:51:28.
    description String
    remarks.
    gatewayInstanceId String
    gateway entity ID.
    gatewayInstanceType String
    Type of gateway instance.
    groupContext String
    grouping context.
    groupId String
    Api Group Id.
    groupName String
    group name, cannot contain Chinese.
    groupType String
    grouping type, default ms. ms: microservice grouping; external: external Api grouping.
    namespaceNameKey String
    namespace parameter key value.
    namespaceNameKeyPosition String
    namespace parameter position, path, header or query, the default is path.
    serviceNameKey String
    microservice name parameter key value.
    serviceNameKeyPosition String
    microservice name parameter position, path, header or query, the default is path.
    status String
    Release status, drafted: Not published. released: released.
    tsfApiGroupId String
    ID of the resource.
    updatedTime String
    Group update time such as: 2019-06-20 15:51:28.

    Supporting Types

    TsfApiGroupBindedGatewayDeployGroup, TsfApiGroupBindedGatewayDeployGroupArgs

    ApplicationId string
    application ID.
    ApplicationName string
    Application Name.
    ApplicationType string
    Application classification: V: virtual machine application, C: container application.
    ClusterType string
    Cluster type, C: container, V: virtual machine.
    DeployGroupId string
    Gateway deployment group ID.
    DeployGroupName string
    Gateway deployment group name.
    GroupStatus string
    Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
    ApplicationId string
    application ID.
    ApplicationName string
    Application Name.
    ApplicationType string
    Application classification: V: virtual machine application, C: container application.
    ClusterType string
    Cluster type, C: container, V: virtual machine.
    DeployGroupId string
    Gateway deployment group ID.
    DeployGroupName string
    Gateway deployment group name.
    GroupStatus string
    Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
    applicationId String
    application ID.
    applicationName String
    Application Name.
    applicationType String
    Application classification: V: virtual machine application, C: container application.
    clusterType String
    Cluster type, C: container, V: virtual machine.
    deployGroupId String
    Gateway deployment group ID.
    deployGroupName String
    Gateway deployment group name.
    groupStatus String
    Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
    applicationId string
    application ID.
    applicationName string
    Application Name.
    applicationType string
    Application classification: V: virtual machine application, C: container application.
    clusterType string
    Cluster type, C: container, V: virtual machine.
    deployGroupId string
    Gateway deployment group ID.
    deployGroupName string
    Gateway deployment group name.
    groupStatus string
    Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
    application_id str
    application ID.
    application_name str
    Application Name.
    application_type str
    Application classification: V: virtual machine application, C: container application.
    cluster_type str
    Cluster type, C: container, V: virtual machine.
    deploy_group_id str
    Gateway deployment group ID.
    deploy_group_name str
    Gateway deployment group name.
    group_status str
    Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
    applicationId String
    application ID.
    applicationName String
    Application Name.
    applicationType String
    Application classification: V: virtual machine application, C: container application.
    clusterType String
    Cluster type, C: container, V: virtual machine.
    deployGroupId String
    Gateway deployment group ID.
    deployGroupName String
    Gateway deployment group name.
    groupStatus String
    Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.

    Import

    tsf api_group can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/tsfApiGroup:TsfApiGroup api_group api_group_id
    

    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