tencentcloud.TsfBindApiGroup
Explore with Pulumi AI
Provides a resource to create a tsf bind_api_group
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const bindApiGroup = new tencentcloud.TsfBindApiGroup("bindApiGroup", {
gatewayDeployGroupId: "group-vzd97zpy",
groupId: "grp-qp0rj3zi",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
bind_api_group = tencentcloud.TsfBindApiGroup("bindApiGroup",
gateway_deploy_group_id="group-vzd97zpy",
group_id="grp-qp0rj3zi")
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.NewTsfBindApiGroup(ctx, "bindApiGroup", &tencentcloud.TsfBindApiGroupArgs{
GatewayDeployGroupId: pulumi.String("group-vzd97zpy"),
GroupId: pulumi.String("grp-qp0rj3zi"),
})
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 bindApiGroup = new Tencentcloud.TsfBindApiGroup("bindApiGroup", new()
{
GatewayDeployGroupId = "group-vzd97zpy",
GroupId = "grp-qp0rj3zi",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TsfBindApiGroup;
import com.pulumi.tencentcloud.TsfBindApiGroupArgs;
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 bindApiGroup = new TsfBindApiGroup("bindApiGroup", TsfBindApiGroupArgs.builder()
.gatewayDeployGroupId("group-vzd97zpy")
.groupId("grp-qp0rj3zi")
.build());
}
}
resources:
bindApiGroup:
type: tencentcloud:TsfBindApiGroup
properties:
gatewayDeployGroupId: group-vzd97zpy
groupId: grp-qp0rj3zi
Create TsfBindApiGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TsfBindApiGroup(name: string, args: TsfBindApiGroupArgs, opts?: CustomResourceOptions);
@overload
def TsfBindApiGroup(resource_name: str,
args: TsfBindApiGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TsfBindApiGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
gateway_deploy_group_id: Optional[str] = None,
group_id: Optional[str] = None,
tsf_bind_api_group_id: Optional[str] = None)
func NewTsfBindApiGroup(ctx *Context, name string, args TsfBindApiGroupArgs, opts ...ResourceOption) (*TsfBindApiGroup, error)
public TsfBindApiGroup(string name, TsfBindApiGroupArgs args, CustomResourceOptions? opts = null)
public TsfBindApiGroup(String name, TsfBindApiGroupArgs args)
public TsfBindApiGroup(String name, TsfBindApiGroupArgs args, CustomResourceOptions options)
type: tencentcloud:TsfBindApiGroup
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 TsfBindApiGroupArgs
- 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 TsfBindApiGroupArgs
- 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 TsfBindApiGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TsfBindApiGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TsfBindApiGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
TsfBindApiGroup 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 TsfBindApiGroup resource accepts the following input properties:
- Gateway
Deploy stringGroup Id - gateway group id.
- Group
Id string - group id.
- Tsf
Bind stringApi Group Id - ID of the resource.
- Gateway
Deploy stringGroup Id - gateway group id.
- Group
Id string - group id.
- Tsf
Bind stringApi Group Id - ID of the resource.
- gateway
Deploy StringGroup Id - gateway group id.
- group
Id String - group id.
- tsf
Bind StringApi Group Id - ID of the resource.
- gateway
Deploy stringGroup Id - gateway group id.
- group
Id string - group id.
- tsf
Bind stringApi Group Id - ID of the resource.
- gateway_
deploy_ strgroup_ id - gateway group id.
- group_
id str - group id.
- tsf_
bind_ strapi_ group_ id - ID of the resource.
- gateway
Deploy StringGroup Id - gateway group id.
- group
Id String - group id.
- tsf
Bind StringApi Group Id - ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the TsfBindApiGroup 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 TsfBindApiGroup Resource
Get an existing TsfBindApiGroup 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?: TsfBindApiGroupState, opts?: CustomResourceOptions): TsfBindApiGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
gateway_deploy_group_id: Optional[str] = None,
group_id: Optional[str] = None,
tsf_bind_api_group_id: Optional[str] = None) -> TsfBindApiGroup
func GetTsfBindApiGroup(ctx *Context, name string, id IDInput, state *TsfBindApiGroupState, opts ...ResourceOption) (*TsfBindApiGroup, error)
public static TsfBindApiGroup Get(string name, Input<string> id, TsfBindApiGroupState? state, CustomResourceOptions? opts = null)
public static TsfBindApiGroup get(String name, Output<String> id, TsfBindApiGroupState state, CustomResourceOptions options)
resources: _: type: tencentcloud:TsfBindApiGroup 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.
- Gateway
Deploy stringGroup Id - gateway group id.
- Group
Id string - group id.
- Tsf
Bind stringApi Group Id - ID of the resource.
- Gateway
Deploy stringGroup Id - gateway group id.
- Group
Id string - group id.
- Tsf
Bind stringApi Group Id - ID of the resource.
- gateway
Deploy StringGroup Id - gateway group id.
- group
Id String - group id.
- tsf
Bind StringApi Group Id - ID of the resource.
- gateway
Deploy stringGroup Id - gateway group id.
- group
Id string - group id.
- tsf
Bind stringApi Group Id - ID of the resource.
- gateway_
deploy_ strgroup_ id - gateway group id.
- group_
id str - group id.
- tsf_
bind_ strapi_ group_ id - ID of the resource.
- gateway
Deploy StringGroup Id - gateway group id.
- group
Id String - group id.
- tsf
Bind StringApi Group Id - ID of the resource.
Import
tsf bind_api_group can be imported using the id, e.g.
$ pulumi import tencentcloud:index/tsfBindApiGroup:TsfBindApiGroup bind_api_group bind_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.