1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. InviteOrganizationMemberOperation
tencentcloud 1.81.183 published on Wednesday, Apr 16, 2025 by tencentcloudstack

tencentcloud.InviteOrganizationMemberOperation

Explore with Pulumi AI

Provides a resource to create a invite organization member

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const example = new tencentcloud.InviteOrganizationMemberOperation("example", {
    isAllowQuit: "Allow",
    memberUin: 100040906211,
    nodeId: 2014419,
    permissionIds: [
        1,
        2,
        4,
    ],
    policyType: "Financial",
    remark: "Remarks.",
    tags: [{
        tagKey: "CreateBy",
        tagValue: "Terraform",
    }],
});
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

example = tencentcloud.InviteOrganizationMemberOperation("example",
    is_allow_quit="Allow",
    member_uin=100040906211,
    node_id=2014419,
    permission_ids=[
        1,
        2,
        4,
    ],
    policy_type="Financial",
    remark="Remarks.",
    tags=[{
        "tag_key": "CreateBy",
        "tag_value": "Terraform",
    }])
Copy
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.NewInviteOrganizationMemberOperation(ctx, "example", &tencentcloud.InviteOrganizationMemberOperationArgs{
			IsAllowQuit: pulumi.String("Allow"),
			MemberUin:   pulumi.Float64(100040906211),
			NodeId:      pulumi.Float64(2014419),
			PermissionIds: pulumi.Float64Array{
				pulumi.Float64(1),
				pulumi.Float64(2),
				pulumi.Float64(4),
			},
			PolicyType: pulumi.String("Financial"),
			Remark:     pulumi.String("Remarks."),
			Tags: tencentcloud.InviteOrganizationMemberOperationTagArray{
				&tencentcloud.InviteOrganizationMemberOperationTagArgs{
					TagKey:   pulumi.String("CreateBy"),
					TagValue: pulumi.String("Terraform"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var example = new Tencentcloud.InviteOrganizationMemberOperation("example", new()
    {
        IsAllowQuit = "Allow",
        MemberUin = 100040906211,
        NodeId = 2014419,
        PermissionIds = new[]
        {
            1,
            2,
            4,
        },
        PolicyType = "Financial",
        Remark = "Remarks.",
        Tags = new[]
        {
            new Tencentcloud.Inputs.InviteOrganizationMemberOperationTagArgs
            {
                TagKey = "CreateBy",
                TagValue = "Terraform",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.InviteOrganizationMemberOperation;
import com.pulumi.tencentcloud.InviteOrganizationMemberOperationArgs;
import com.pulumi.tencentcloud.inputs.InviteOrganizationMemberOperationTagArgs;
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 example = new InviteOrganizationMemberOperation("example", InviteOrganizationMemberOperationArgs.builder()
            .isAllowQuit("Allow")
            .memberUin("100040906211")
            .nodeId(2014419)
            .permissionIds(            
                1,
                2,
                4)
            .policyType("Financial")
            .remark("Remarks.")
            .tags(InviteOrganizationMemberOperationTagArgs.builder()
                .tagKey("CreateBy")
                .tagValue("Terraform")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: tencentcloud:InviteOrganizationMemberOperation
    properties:
      isAllowQuit: Allow
      memberUin: '100040906211'
      nodeId: 2.014419e+06
      permissionIds:
        - 1
        - 2
        - 4
      policyType: Financial
      remark: Remarks.
      tags:
        - tagKey: CreateBy
          tagValue: Terraform
Copy

Create InviteOrganizationMemberOperation Resource

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

Constructor syntax

new InviteOrganizationMemberOperation(name: string, args: InviteOrganizationMemberOperationArgs, opts?: CustomResourceOptions);
@overload
def InviteOrganizationMemberOperation(resource_name: str,
                                      args: InviteOrganizationMemberOperationArgs,
                                      opts: Optional[ResourceOptions] = None)

@overload
def InviteOrganizationMemberOperation(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      member_uin: Optional[float] = None,
                                      node_id: Optional[float] = None,
                                      permission_ids: Optional[Sequence[float]] = None,
                                      policy_type: Optional[str] = None,
                                      auth_files: Optional[Sequence[InviteOrganizationMemberOperationAuthFileArgs]] = None,
                                      invite_organization_member_operation_id: Optional[str] = None,
                                      is_allow_quit: Optional[str] = None,
                                      name: Optional[str] = None,
                                      pay_uin: Optional[str] = None,
                                      relation_auth_name: Optional[str] = None,
                                      remark: Optional[str] = None,
                                      tags: Optional[Sequence[InviteOrganizationMemberOperationTagArgs]] = None)
func NewInviteOrganizationMemberOperation(ctx *Context, name string, args InviteOrganizationMemberOperationArgs, opts ...ResourceOption) (*InviteOrganizationMemberOperation, error)
public InviteOrganizationMemberOperation(string name, InviteOrganizationMemberOperationArgs args, CustomResourceOptions? opts = null)
public InviteOrganizationMemberOperation(String name, InviteOrganizationMemberOperationArgs args)
public InviteOrganizationMemberOperation(String name, InviteOrganizationMemberOperationArgs args, CustomResourceOptions options)
type: tencentcloud:InviteOrganizationMemberOperation
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. InviteOrganizationMemberOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. InviteOrganizationMemberOperationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. InviteOrganizationMemberOperationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. InviteOrganizationMemberOperationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. InviteOrganizationMemberOperationArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

MemberUin This property is required. double
Invited account Uin.
NodeId This property is required. double
Node ID of the member's department.
PermissionIds This property is required. List<double>
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
PolicyType This property is required. string
Relationship strategies. Value taken: Financial.
AuthFiles List<InviteOrganizationMemberOperationAuthFile>
List of supporting documents of mutual trust entities.
InviteOrganizationMemberOperationId string
ID of the resource.
IsAllowQuit string
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
Name string
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
PayUin string
Payer Uin. Member needs to pay on behalf of.
RelationAuthName string
Name of the real-name subject of mutual trust.
Remark string
Remark.
Tags List<InviteOrganizationMemberOperationTag>
List of member tags. Maximum 10.
MemberUin This property is required. float64
Invited account Uin.
NodeId This property is required. float64
Node ID of the member's department.
PermissionIds This property is required. []float64
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
PolicyType This property is required. string
Relationship strategies. Value taken: Financial.
AuthFiles []InviteOrganizationMemberOperationAuthFileArgs
List of supporting documents of mutual trust entities.
InviteOrganizationMemberOperationId string
ID of the resource.
IsAllowQuit string
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
Name string
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
PayUin string
Payer Uin. Member needs to pay on behalf of.
RelationAuthName string
Name of the real-name subject of mutual trust.
Remark string
Remark.
Tags []InviteOrganizationMemberOperationTagArgs
List of member tags. Maximum 10.
memberUin This property is required. Double
Invited account Uin.
nodeId This property is required. Double
Node ID of the member's department.
permissionIds This property is required. List<Double>
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policyType This property is required. String
Relationship strategies. Value taken: Financial.
authFiles List<InviteOrganizationMemberOperationAuthFile>
List of supporting documents of mutual trust entities.
inviteOrganizationMemberOperationId String
ID of the resource.
isAllowQuit String
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
name String
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
payUin String
Payer Uin. Member needs to pay on behalf of.
relationAuthName String
Name of the real-name subject of mutual trust.
remark String
Remark.
tags List<InviteOrganizationMemberOperationTag>
List of member tags. Maximum 10.
memberUin This property is required. number
Invited account Uin.
nodeId This property is required. number
Node ID of the member's department.
permissionIds This property is required. number[]
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policyType This property is required. string
Relationship strategies. Value taken: Financial.
authFiles InviteOrganizationMemberOperationAuthFile[]
List of supporting documents of mutual trust entities.
inviteOrganizationMemberOperationId string
ID of the resource.
isAllowQuit string
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
name string
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
payUin string
Payer Uin. Member needs to pay on behalf of.
relationAuthName string
Name of the real-name subject of mutual trust.
remark string
Remark.
tags InviteOrganizationMemberOperationTag[]
List of member tags. Maximum 10.
member_uin This property is required. float
Invited account Uin.
node_id This property is required. float
Node ID of the member's department.
permission_ids This property is required. Sequence[float]
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policy_type This property is required. str
Relationship strategies. Value taken: Financial.
auth_files Sequence[InviteOrganizationMemberOperationAuthFileArgs]
List of supporting documents of mutual trust entities.
invite_organization_member_operation_id str
ID of the resource.
is_allow_quit str
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
name str
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
pay_uin str
Payer Uin. Member needs to pay on behalf of.
relation_auth_name str
Name of the real-name subject of mutual trust.
remark str
Remark.
tags Sequence[InviteOrganizationMemberOperationTagArgs]
List of member tags. Maximum 10.
memberUin This property is required. Number
Invited account Uin.
nodeId This property is required. Number
Node ID of the member's department.
permissionIds This property is required. List<Number>
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policyType This property is required. String
Relationship strategies. Value taken: Financial.
authFiles List<Property Map>
List of supporting documents of mutual trust entities.
inviteOrganizationMemberOperationId String
ID of the resource.
isAllowQuit String
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
name String
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
payUin String
Payer Uin. Member needs to pay on behalf of.
relationAuthName String
Name of the real-name subject of mutual trust.
remark String
Remark.
tags List<Property Map>
List of member tags. Maximum 10.

Outputs

All input properties are implicitly available as output properties. Additionally, the InviteOrganizationMemberOperation 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 InviteOrganizationMemberOperation Resource

Get an existing InviteOrganizationMemberOperation 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?: InviteOrganizationMemberOperationState, opts?: CustomResourceOptions): InviteOrganizationMemberOperation
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auth_files: Optional[Sequence[InviteOrganizationMemberOperationAuthFileArgs]] = None,
        invite_organization_member_operation_id: Optional[str] = None,
        is_allow_quit: Optional[str] = None,
        member_uin: Optional[float] = None,
        name: Optional[str] = None,
        node_id: Optional[float] = None,
        pay_uin: Optional[str] = None,
        permission_ids: Optional[Sequence[float]] = None,
        policy_type: Optional[str] = None,
        relation_auth_name: Optional[str] = None,
        remark: Optional[str] = None,
        tags: Optional[Sequence[InviteOrganizationMemberOperationTagArgs]] = None) -> InviteOrganizationMemberOperation
func GetInviteOrganizationMemberOperation(ctx *Context, name string, id IDInput, state *InviteOrganizationMemberOperationState, opts ...ResourceOption) (*InviteOrganizationMemberOperation, error)
public static InviteOrganizationMemberOperation Get(string name, Input<string> id, InviteOrganizationMemberOperationState? state, CustomResourceOptions? opts = null)
public static InviteOrganizationMemberOperation get(String name, Output<String> id, InviteOrganizationMemberOperationState state, CustomResourceOptions options)
resources:  _:    type: tencentcloud:InviteOrganizationMemberOperation    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
AuthFiles List<InviteOrganizationMemberOperationAuthFile>
List of supporting documents of mutual trust entities.
InviteOrganizationMemberOperationId string
ID of the resource.
IsAllowQuit string
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
MemberUin double
Invited account Uin.
Name string
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
NodeId double
Node ID of the member's department.
PayUin string
Payer Uin. Member needs to pay on behalf of.
PermissionIds List<double>
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
PolicyType string
Relationship strategies. Value taken: Financial.
RelationAuthName string
Name of the real-name subject of mutual trust.
Remark string
Remark.
Tags List<InviteOrganizationMemberOperationTag>
List of member tags. Maximum 10.
AuthFiles []InviteOrganizationMemberOperationAuthFileArgs
List of supporting documents of mutual trust entities.
InviteOrganizationMemberOperationId string
ID of the resource.
IsAllowQuit string
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
MemberUin float64
Invited account Uin.
Name string
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
NodeId float64
Node ID of the member's department.
PayUin string
Payer Uin. Member needs to pay on behalf of.
PermissionIds []float64
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
PolicyType string
Relationship strategies. Value taken: Financial.
RelationAuthName string
Name of the real-name subject of mutual trust.
Remark string
Remark.
Tags []InviteOrganizationMemberOperationTagArgs
List of member tags. Maximum 10.
authFiles List<InviteOrganizationMemberOperationAuthFile>
List of supporting documents of mutual trust entities.
inviteOrganizationMemberOperationId String
ID of the resource.
isAllowQuit String
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
memberUin Double
Invited account Uin.
name String
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
nodeId Double
Node ID of the member's department.
payUin String
Payer Uin. Member needs to pay on behalf of.
permissionIds List<Double>
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policyType String
Relationship strategies. Value taken: Financial.
relationAuthName String
Name of the real-name subject of mutual trust.
remark String
Remark.
tags List<InviteOrganizationMemberOperationTag>
List of member tags. Maximum 10.
authFiles InviteOrganizationMemberOperationAuthFile[]
List of supporting documents of mutual trust entities.
inviteOrganizationMemberOperationId string
ID of the resource.
isAllowQuit string
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
memberUin number
Invited account Uin.
name string
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
nodeId number
Node ID of the member's department.
payUin string
Payer Uin. Member needs to pay on behalf of.
permissionIds number[]
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policyType string
Relationship strategies. Value taken: Financial.
relationAuthName string
Name of the real-name subject of mutual trust.
remark string
Remark.
tags InviteOrganizationMemberOperationTag[]
List of member tags. Maximum 10.
auth_files Sequence[InviteOrganizationMemberOperationAuthFileArgs]
List of supporting documents of mutual trust entities.
invite_organization_member_operation_id str
ID of the resource.
is_allow_quit str
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
member_uin float
Invited account Uin.
name str
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
node_id float
Node ID of the member's department.
pay_uin str
Payer Uin. Member needs to pay on behalf of.
permission_ids Sequence[float]
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policy_type str
Relationship strategies. Value taken: Financial.
relation_auth_name str
Name of the real-name subject of mutual trust.
remark str
Remark.
tags Sequence[InviteOrganizationMemberOperationTagArgs]
List of member tags. Maximum 10.
authFiles List<Property Map>
List of supporting documents of mutual trust entities.
inviteOrganizationMemberOperationId String
ID of the resource.
isAllowQuit String
Whether to allow members to withdraw. Allow: Allow, Disallow: Denied.
memberUin Number
Invited account Uin.
name String
Member name. The maximum length is 25 characters and supports English letters, numbers, Chinese characters, symbols +, @, &, ., [, ], -, :, , and enumeration comma.
nodeId Number
Node ID of the member's department.
payUin String
Payer Uin. Member needs to pay on behalf of.
permissionIds List<Number>
List of member financial authority IDs. Values: 1-View bill, 2-View balance, 3-Fund transfer, 4-Consolidated disbursement, 5-Invoice, 6-Benefit inheritance, 7-Proxy payment, 1 and 2 must be default.
policyType String
Relationship strategies. Value taken: Financial.
relationAuthName String
Name of the real-name subject of mutual trust.
remark String
Remark.
tags List<Property Map>
List of member tags. Maximum 10.

Supporting Types

InviteOrganizationMemberOperationAuthFile
, InviteOrganizationMemberOperationAuthFileArgs

Name This property is required. string
File name.
Url This property is required. string
File path.
Name This property is required. string
File name.
Url This property is required. string
File path.
name This property is required. String
File name.
url This property is required. String
File path.
name This property is required. string
File name.
url This property is required. string
File path.
name This property is required. str
File name.
url This property is required. str
File path.
name This property is required. String
File name.
url This property is required. String
File path.

InviteOrganizationMemberOperationTag
, InviteOrganizationMemberOperationTagArgs

TagKey This property is required. string
Tag key.
TagValue This property is required. string
Tag value.
TagKey This property is required. string
Tag key.
TagValue This property is required. string
Tag value.
tagKey This property is required. String
Tag key.
tagValue This property is required. String
Tag value.
tagKey This property is required. string
Tag key.
tagValue This property is required. string
Tag value.
tag_key This property is required. str
Tag key.
tag_value This property is required. str
Tag value.
tagKey This property is required. String
Tag key.
tagValue This property is required. String
Tag value.

Package Details

Repository
tencentcloud tencentcloudstack/terraform-provider-tencentcloud
License
Notes
This Pulumi package is based on the tencentcloud Terraform Provider.