tencentcloud.TsfApiGroup
Explore with Pulumi AI
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:
- Group
Context string - grouping context.
- Group
Name string - group name, cannot contain Chinese.
- Auth
Type string - authentication type. secret: key authentication; none: no authentication.
- Description string
- remarks.
- Gateway
Instance stringId - gateway entity ID.
- Group
Type string - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- Namespace
Name stringKey - namespace parameter key value.
- Namespace
Name stringKey Position - namespace parameter position, path, header or query, the default is path.
- Service
Name stringKey - microservice name parameter key value.
- Service
Name stringKey Position - microservice name parameter position, path, header or query, the default is path.
- Tsf
Api stringGroup Id - ID of the resource.
- Group
Context string - grouping context.
- Group
Name string - group name, cannot contain Chinese.
- Auth
Type string - authentication type. secret: key authentication; none: no authentication.
- Description string
- remarks.
- Gateway
Instance stringId - gateway entity ID.
- Group
Type string - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- Namespace
Name stringKey - namespace parameter key value.
- Namespace
Name stringKey Position - namespace parameter position, path, header or query, the default is path.
- Service
Name stringKey - microservice name parameter key value.
- Service
Name stringKey Position - microservice name parameter position, path, header or query, the default is path.
- Tsf
Api stringGroup Id - ID of the resource.
- group
Context String - grouping context.
- group
Name String - group name, cannot contain Chinese.
- auth
Type String - authentication type. secret: key authentication; none: no authentication.
- description String
- remarks.
- gateway
Instance StringId - gateway entity ID.
- group
Type String - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- namespace
Name StringKey - namespace parameter key value.
- namespace
Name StringKey Position - namespace parameter position, path, header or query, the default is path.
- service
Name StringKey - microservice name parameter key value.
- service
Name StringKey Position - microservice name parameter position, path, header or query, the default is path.
- tsf
Api StringGroup Id - ID of the resource.
- group
Context string - grouping context.
- group
Name string - group name, cannot contain Chinese.
- auth
Type string - authentication type. secret: key authentication; none: no authentication.
- description string
- remarks.
- gateway
Instance stringId - gateway entity ID.
- group
Type string - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- namespace
Name stringKey - namespace parameter key value.
- namespace
Name stringKey Position - namespace parameter position, path, header or query, the default is path.
- service
Name stringKey - microservice name parameter key value.
- service
Name stringKey Position - microservice name parameter position, path, header or query, the default is path.
- tsf
Api stringGroup Id - 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_ strid - gateway entity ID.
- group_
type str - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- namespace_
name_ strkey - namespace parameter key value.
- namespace_
name_ strkey_ position - namespace parameter position, path, header or query, the default is path.
- service_
name_ strkey - microservice name parameter key value.
- service_
name_ strkey_ position - microservice name parameter position, path, header or query, the default is path.
- tsf_
api_ strgroup_ id - ID of the resource.
- group
Context String - grouping context.
- group
Name String - group name, cannot contain Chinese.
- auth
Type String - authentication type. secret: key authentication; none: no authentication.
- description String
- remarks.
- gateway
Instance StringId - gateway entity ID.
- group
Type String - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- namespace
Name StringKey - namespace parameter key value.
- namespace
Name StringKey Position - namespace parameter position, path, header or query, the default is path.
- service
Name StringKey - microservice name parameter key value.
- service
Name StringKey Position - microservice name parameter position, path, header or query, the default is path.
- tsf
Api StringGroup Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the TsfApiGroup resource produces the following output properties:
- Acl
Mode string - Access group ACL type.
- Api
Count double - number of APIs.
- Binded
Gateway List<TsfDeploy Groups Api Group Binded Gateway Deploy Group> - api group bound gateway deployment group.
- Created
Time string - Group creation time such as: 2019-06-20 15:51:28.
- Gateway
Instance stringType - Type of gateway instance.
- Group
Id string - Api Group Id.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Release status, drafted: Not published. released: released.
- Updated
Time string - Group update time such as: 2019-06-20 15:51:28.
- Acl
Mode string - Access group ACL type.
- Api
Count float64 - number of APIs.
- Binded
Gateway []TsfDeploy Groups Api Group Binded Gateway Deploy Group - api group bound gateway deployment group.
- Created
Time string - Group creation time such as: 2019-06-20 15:51:28.
- Gateway
Instance stringType - Type of gateway instance.
- Group
Id string - Api Group Id.
- Id string
- The provider-assigned unique ID for this managed resource.
- Status string
- Release status, drafted: Not published. released: released.
- Updated
Time string - Group update time such as: 2019-06-20 15:51:28.
- acl
Mode String - Access group ACL type.
- api
Count Double - number of APIs.
- binded
Gateway List<TsfDeploy Groups Api Group Binded Gateway Deploy Group> - api group bound gateway deployment group.
- created
Time String - Group creation time such as: 2019-06-20 15:51:28.
- gateway
Instance StringType - Type of gateway instance.
- group
Id String - Api Group Id.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Release status, drafted: Not published. released: released.
- updated
Time String - Group update time such as: 2019-06-20 15:51:28.
- acl
Mode string - Access group ACL type.
- api
Count number - number of APIs.
- binded
Gateway TsfDeploy Groups Api Group Binded Gateway Deploy Group[] - api group bound gateway deployment group.
- created
Time string - Group creation time such as: 2019-06-20 15:51:28.
- gateway
Instance stringType - Type of gateway instance.
- group
Id string - Api Group Id.
- id string
- The provider-assigned unique ID for this managed resource.
- status string
- Release status, drafted: Not published. released: released.
- updated
Time 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_ Sequence[Tsfdeploy_ groups Api Group Binded Gateway Deploy Group] - api group bound gateway deployment group.
- created_
time str - Group creation time such as: 2019-06-20 15:51:28.
- gateway_
instance_ strtype - 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.
- acl
Mode String - Access group ACL type.
- api
Count Number - number of APIs.
- binded
Gateway List<Property Map>Deploy Groups - api group bound gateway deployment group.
- created
Time String - Group creation time such as: 2019-06-20 15:51:28.
- gateway
Instance StringType - Type of gateway instance.
- group
Id String - Api Group Id.
- id String
- The provider-assigned unique ID for this managed resource.
- status String
- Release status, drafted: Not published. released: released.
- updated
Time 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.
- Acl
Mode string - Access group ACL type.
- Api
Count double - number of APIs.
- Auth
Type string - authentication type. secret: key authentication; none: no authentication.
- Binded
Gateway List<TsfDeploy Groups Api Group Binded Gateway Deploy Group> - api group bound gateway deployment group.
- Created
Time string - Group creation time such as: 2019-06-20 15:51:28.
- Description string
- remarks.
- Gateway
Instance stringId - gateway entity ID.
- Gateway
Instance stringType - Type of gateway instance.
- Group
Context string - grouping context.
- Group
Id string - Api Group Id.
- Group
Name string - group name, cannot contain Chinese.
- Group
Type string - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- Namespace
Name stringKey - namespace parameter key value.
- Namespace
Name stringKey Position - namespace parameter position, path, header or query, the default is path.
- Service
Name stringKey - microservice name parameter key value.
- Service
Name stringKey Position - microservice name parameter position, path, header or query, the default is path.
- Status string
- Release status, drafted: Not published. released: released.
- Tsf
Api stringGroup Id - ID of the resource.
- Updated
Time string - Group update time such as: 2019-06-20 15:51:28.
- Acl
Mode string - Access group ACL type.
- Api
Count float64 - number of APIs.
- Auth
Type string - authentication type. secret: key authentication; none: no authentication.
- Binded
Gateway []TsfDeploy Groups Api Group Binded Gateway Deploy Group Args - api group bound gateway deployment group.
- Created
Time string - Group creation time such as: 2019-06-20 15:51:28.
- Description string
- remarks.
- Gateway
Instance stringId - gateway entity ID.
- Gateway
Instance stringType - Type of gateway instance.
- Group
Context string - grouping context.
- Group
Id string - Api Group Id.
- Group
Name string - group name, cannot contain Chinese.
- Group
Type string - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- Namespace
Name stringKey - namespace parameter key value.
- Namespace
Name stringKey Position - namespace parameter position, path, header or query, the default is path.
- Service
Name stringKey - microservice name parameter key value.
- Service
Name stringKey Position - microservice name parameter position, path, header or query, the default is path.
- Status string
- Release status, drafted: Not published. released: released.
- Tsf
Api stringGroup Id - ID of the resource.
- Updated
Time string - Group update time such as: 2019-06-20 15:51:28.
- acl
Mode String - Access group ACL type.
- api
Count Double - number of APIs.
- auth
Type String - authentication type. secret: key authentication; none: no authentication.
- binded
Gateway List<TsfDeploy Groups Api Group Binded Gateway Deploy Group> - api group bound gateway deployment group.
- created
Time String - Group creation time such as: 2019-06-20 15:51:28.
- description String
- remarks.
- gateway
Instance StringId - gateway entity ID.
- gateway
Instance StringType - Type of gateway instance.
- group
Context String - grouping context.
- group
Id String - Api Group Id.
- group
Name String - group name, cannot contain Chinese.
- group
Type String - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- namespace
Name StringKey - namespace parameter key value.
- namespace
Name StringKey Position - namespace parameter position, path, header or query, the default is path.
- service
Name StringKey - microservice name parameter key value.
- service
Name StringKey Position - microservice name parameter position, path, header or query, the default is path.
- status String
- Release status, drafted: Not published. released: released.
- tsf
Api StringGroup Id - ID of the resource.
- updated
Time String - Group update time such as: 2019-06-20 15:51:28.
- acl
Mode string - Access group ACL type.
- api
Count number - number of APIs.
- auth
Type string - authentication type. secret: key authentication; none: no authentication.
- binded
Gateway TsfDeploy Groups Api Group Binded Gateway Deploy Group[] - api group bound gateway deployment group.
- created
Time string - Group creation time such as: 2019-06-20 15:51:28.
- description string
- remarks.
- gateway
Instance stringId - gateway entity ID.
- gateway
Instance stringType - Type of gateway instance.
- group
Context string - grouping context.
- group
Id string - Api Group Id.
- group
Name string - group name, cannot contain Chinese.
- group
Type string - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- namespace
Name stringKey - namespace parameter key value.
- namespace
Name stringKey Position - namespace parameter position, path, header or query, the default is path.
- service
Name stringKey - microservice name parameter key value.
- service
Name stringKey Position - microservice name parameter position, path, header or query, the default is path.
- status string
- Release status, drafted: Not published. released: released.
- tsf
Api stringGroup Id - ID of the resource.
- updated
Time 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_ Sequence[Tsfdeploy_ groups Api Group Binded Gateway Deploy Group Args] - 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_ strid - gateway entity ID.
- gateway_
instance_ strtype - 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_ strkey - namespace parameter key value.
- namespace_
name_ strkey_ position - namespace parameter position, path, header or query, the default is path.
- service_
name_ strkey - microservice name parameter key value.
- service_
name_ strkey_ position - microservice name parameter position, path, header or query, the default is path.
- status str
- Release status, drafted: Not published. released: released.
- tsf_
api_ strgroup_ id - ID of the resource.
- updated_
time str - Group update time such as: 2019-06-20 15:51:28.
- acl
Mode String - Access group ACL type.
- api
Count Number - number of APIs.
- auth
Type String - authentication type. secret: key authentication; none: no authentication.
- binded
Gateway List<Property Map>Deploy Groups - api group bound gateway deployment group.
- created
Time String - Group creation time such as: 2019-06-20 15:51:28.
- description String
- remarks.
- gateway
Instance StringId - gateway entity ID.
- gateway
Instance StringType - Type of gateway instance.
- group
Context String - grouping context.
- group
Id String - Api Group Id.
- group
Name String - group name, cannot contain Chinese.
- group
Type String - grouping type, default ms. ms: microservice grouping; external: external Api grouping.
- namespace
Name StringKey - namespace parameter key value.
- namespace
Name StringKey Position - namespace parameter position, path, header or query, the default is path.
- service
Name StringKey - microservice name parameter key value.
- service
Name StringKey Position - microservice name parameter position, path, header or query, the default is path.
- status String
- Release status, drafted: Not published. released: released.
- tsf
Api StringGroup Id - ID of the resource.
- updated
Time String - Group update time such as: 2019-06-20 15:51:28.
Supporting Types
TsfApiGroupBindedGatewayDeployGroup, TsfApiGroupBindedGatewayDeployGroupArgs
- Application
Id string - application ID.
- Application
Name string - Application Name.
- Application
Type string - Application classification: V: virtual machine application, C: container application.
- Cluster
Type string - Cluster type, C: container, V: virtual machine.
- Deploy
Group stringId - Gateway deployment group ID.
- Deploy
Group stringName - Gateway deployment group name.
- Group
Status string - Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
- Application
Id string - application ID.
- Application
Name string - Application Name.
- Application
Type string - Application classification: V: virtual machine application, C: container application.
- Cluster
Type string - Cluster type, C: container, V: virtual machine.
- Deploy
Group stringId - Gateway deployment group ID.
- Deploy
Group stringName - Gateway deployment group name.
- Group
Status string - Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
- application
Id String - application ID.
- application
Name String - Application Name.
- application
Type String - Application classification: V: virtual machine application, C: container application.
- cluster
Type String - Cluster type, C: container, V: virtual machine.
- deploy
Group StringId - Gateway deployment group ID.
- deploy
Group StringName - Gateway deployment group name.
- group
Status String - Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
- application
Id string - application ID.
- application
Name string - Application Name.
- application
Type string - Application classification: V: virtual machine application, C: container application.
- cluster
Type string - Cluster type, C: container, V: virtual machine.
- deploy
Group stringId - Gateway deployment group ID.
- deploy
Group stringName - Gateway deployment group name.
- group
Status 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_ strid - Gateway deployment group ID.
- deploy_
group_ strname - Gateway deployment group name.
- group_
status str - Deployment group application status, values: Running, Waiting, Paused, Updating, RollingBack, Abnormal, Unknown.
- application
Id String - application ID.
- application
Name String - Application Name.
- application
Type String - Application classification: V: virtual machine application, C: container application.
- cluster
Type String - Cluster type, C: container, V: virtual machine.
- deploy
Group StringId - Gateway deployment group ID.
- deploy
Group StringName - Gateway deployment group name.
- group
Status 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.