1. Packages
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. TeoSecurityClientAttester
Viewing docs for tencentcloud 1.82.93
published on Monday, May 11, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.93
published on Monday, May 11, 2026 by tencentcloudstack

    Provides a resource to create a TEO security client attester.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.TeoSecurityClientAttester("example", {
        zoneId: "zone-3fkff38fyw8s",
        clientAttesters: {
            name: "tf-example",
            attesterSource: "TC-RCE",
            attesterDuration: "300s",
            tcRceOption: {
                channel: "12399223",
                region: "ap-beijing",
            },
        },
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.TeoSecurityClientAttester("example",
        zone_id="zone-3fkff38fyw8s",
        client_attesters={
            "name": "tf-example",
            "attester_source": "TC-RCE",
            "attester_duration": "300s",
            "tc_rce_option": {
                "channel": "12399223",
                "region": "ap-beijing",
            },
        })
    
    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.NewTeoSecurityClientAttester(ctx, "example", &tencentcloud.TeoSecurityClientAttesterArgs{
    			ZoneId: pulumi.String("zone-3fkff38fyw8s"),
    			ClientAttesters: &tencentcloud.TeoSecurityClientAttesterClientAttestersArgs{
    				Name:             pulumi.String("tf-example"),
    				AttesterSource:   pulumi.String("TC-RCE"),
    				AttesterDuration: pulumi.String("300s"),
    				TcRceOption: &tencentcloud.TeoSecurityClientAttesterClientAttestersTcRceOptionArgs{
    					Channel: pulumi.String("12399223"),
    					Region:  pulumi.String("ap-beijing"),
    				},
    			},
    		})
    		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 example = new Tencentcloud.TeoSecurityClientAttester("example", new()
        {
            ZoneId = "zone-3fkff38fyw8s",
            ClientAttesters = new Tencentcloud.Inputs.TeoSecurityClientAttesterClientAttestersArgs
            {
                Name = "tf-example",
                AttesterSource = "TC-RCE",
                AttesterDuration = "300s",
                TcRceOption = new Tencentcloud.Inputs.TeoSecurityClientAttesterClientAttestersTcRceOptionArgs
                {
                    Channel = "12399223",
                    Region = "ap-beijing",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.TeoSecurityClientAttester;
    import com.pulumi.tencentcloud.TeoSecurityClientAttesterArgs;
    import com.pulumi.tencentcloud.inputs.TeoSecurityClientAttesterClientAttestersArgs;
    import com.pulumi.tencentcloud.inputs.TeoSecurityClientAttesterClientAttestersTcRceOptionArgs;
    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 TeoSecurityClientAttester("example", TeoSecurityClientAttesterArgs.builder()
                .zoneId("zone-3fkff38fyw8s")
                .clientAttesters(TeoSecurityClientAttesterClientAttestersArgs.builder()
                    .name("tf-example")
                    .attesterSource("TC-RCE")
                    .attesterDuration("300s")
                    .tcRceOption(TeoSecurityClientAttesterClientAttestersTcRceOptionArgs.builder()
                        .channel("12399223")
                        .region("ap-beijing")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:TeoSecurityClientAttester
        properties:
          zoneId: zone-3fkff38fyw8s
          clientAttesters:
            name: tf-example
            attesterSource: TC-RCE
            attesterDuration: 300s
            tcRceOption:
              channel: '12399223'
              region: ap-beijing
    
    Example coming soon!
    

    Create TeoSecurityClientAttester Resource

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

    Constructor syntax

    new TeoSecurityClientAttester(name: string, args: TeoSecurityClientAttesterArgs, opts?: CustomResourceOptions);
    @overload
    def TeoSecurityClientAttester(resource_name: str,
                                  args: TeoSecurityClientAttesterArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def TeoSecurityClientAttester(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  client_attesters: Optional[TeoSecurityClientAttesterClientAttestersArgs] = None,
                                  zone_id: Optional[str] = None,
                                  teo_security_client_attester_id: Optional[str] = None)
    func NewTeoSecurityClientAttester(ctx *Context, name string, args TeoSecurityClientAttesterArgs, opts ...ResourceOption) (*TeoSecurityClientAttester, error)
    public TeoSecurityClientAttester(string name, TeoSecurityClientAttesterArgs args, CustomResourceOptions? opts = null)
    public TeoSecurityClientAttester(String name, TeoSecurityClientAttesterArgs args)
    public TeoSecurityClientAttester(String name, TeoSecurityClientAttesterArgs args, CustomResourceOptions options)
    
    type: tencentcloud:TeoSecurityClientAttester
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "tencentcloud_teosecurityclientattester" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args TeoSecurityClientAttesterArgs
    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 TeoSecurityClientAttesterArgs
    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 TeoSecurityClientAttesterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TeoSecurityClientAttesterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TeoSecurityClientAttesterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    ClientAttesters TeoSecurityClientAttesterClientAttesters
    Client attester configuration. Only one attester is allowed per request.
    ZoneId string
    Site ID.
    TeoSecurityClientAttesterId string
    ID of the resource.
    ClientAttesters TeoSecurityClientAttesterClientAttestersArgs
    Client attester configuration. Only one attester is allowed per request.
    ZoneId string
    Site ID.
    TeoSecurityClientAttesterId string
    ID of the resource.
    client_attesters object
    Client attester configuration. Only one attester is allowed per request.
    zone_id string
    Site ID.
    teo_security_client_attester_id string
    ID of the resource.
    clientAttesters TeoSecurityClientAttesterClientAttesters
    Client attester configuration. Only one attester is allowed per request.
    zoneId String
    Site ID.
    teoSecurityClientAttesterId String
    ID of the resource.
    clientAttesters TeoSecurityClientAttesterClientAttesters
    Client attester configuration. Only one attester is allowed per request.
    zoneId string
    Site ID.
    teoSecurityClientAttesterId string
    ID of the resource.
    client_attesters TeoSecurityClientAttesterClientAttestersArgs
    Client attester configuration. Only one attester is allowed per request.
    zone_id str
    Site ID.
    teo_security_client_attester_id str
    ID of the resource.
    clientAttesters Property Map
    Client attester configuration. Only one attester is allowed per request.
    zoneId String
    Site ID.
    teoSecurityClientAttesterId String
    ID of the resource.

    Outputs

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

    Get an existing TeoSecurityClientAttester 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?: TeoSecurityClientAttesterState, opts?: CustomResourceOptions): TeoSecurityClientAttester
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            client_attesters: Optional[TeoSecurityClientAttesterClientAttestersArgs] = None,
            teo_security_client_attester_id: Optional[str] = None,
            zone_id: Optional[str] = None) -> TeoSecurityClientAttester
    func GetTeoSecurityClientAttester(ctx *Context, name string, id IDInput, state *TeoSecurityClientAttesterState, opts ...ResourceOption) (*TeoSecurityClientAttester, error)
    public static TeoSecurityClientAttester Get(string name, Input<string> id, TeoSecurityClientAttesterState? state, CustomResourceOptions? opts = null)
    public static TeoSecurityClientAttester get(String name, Output<String> id, TeoSecurityClientAttesterState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:TeoSecurityClientAttester    get:      id: ${id}
    import {
      to = tencentcloud_teosecurityclientattester.example
      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:
    ClientAttesters TeoSecurityClientAttesterClientAttesters
    Client attester configuration. Only one attester is allowed per request.
    TeoSecurityClientAttesterId string
    ID of the resource.
    ZoneId string
    Site ID.
    ClientAttesters TeoSecurityClientAttesterClientAttestersArgs
    Client attester configuration. Only one attester is allowed per request.
    TeoSecurityClientAttesterId string
    ID of the resource.
    ZoneId string
    Site ID.
    client_attesters object
    Client attester configuration. Only one attester is allowed per request.
    teo_security_client_attester_id string
    ID of the resource.
    zone_id string
    Site ID.
    clientAttesters TeoSecurityClientAttesterClientAttesters
    Client attester configuration. Only one attester is allowed per request.
    teoSecurityClientAttesterId String
    ID of the resource.
    zoneId String
    Site ID.
    clientAttesters TeoSecurityClientAttesterClientAttesters
    Client attester configuration. Only one attester is allowed per request.
    teoSecurityClientAttesterId string
    ID of the resource.
    zoneId string
    Site ID.
    client_attesters TeoSecurityClientAttesterClientAttestersArgs
    Client attester configuration. Only one attester is allowed per request.
    teo_security_client_attester_id str
    ID of the resource.
    zone_id str
    Site ID.
    clientAttesters Property Map
    Client attester configuration. Only one attester is allowed per request.
    teoSecurityClientAttesterId String
    ID of the resource.
    zoneId String
    Site ID.

    Supporting Types

    TeoSecurityClientAttesterClientAttesters, TeoSecurityClientAttesterClientAttestersArgs

    AttesterSource string
    Authentication method. Valid values: TC-RCE (Tencent Cloud RCE), TC-CAPTCHA (Tencent CAPTCHA), TC-EO-CAPTCHA (EdgeOne CAPTCHA).
    Name string
    Attester name.
    AttesterDuration string
    Authentication validity duration. Default 60s. Supported units: s (60-43200), m (1-720), h (1-12). e.g. 300s, 5m, 1h.
    Id string
    ID of the resource.
    TcCaptchaOption TeoSecurityClientAttesterClientAttestersTcCaptchaOption
    TC-CAPTCHA authentication configuration. Required when attester_source is TC-CAPTCHA.
    TcEoCaptchaOption TeoSecurityClientAttesterClientAttestersTcEoCaptchaOption
    TC-EO-CAPTCHA authentication configuration. Required when attester_source is TC-EO-CAPTCHA.
    TcRceOption TeoSecurityClientAttesterClientAttestersTcRceOption
    TC-RCE authentication configuration. Required when attester_source is TC-RCE.
    Type string
    Attester rule type (read-only). Valid values: PRESET (system preset), CUSTOM (user defined).
    AttesterSource string
    Authentication method. Valid values: TC-RCE (Tencent Cloud RCE), TC-CAPTCHA (Tencent CAPTCHA), TC-EO-CAPTCHA (EdgeOne CAPTCHA).
    Name string
    Attester name.
    AttesterDuration string
    Authentication validity duration. Default 60s. Supported units: s (60-43200), m (1-720), h (1-12). e.g. 300s, 5m, 1h.
    Id string
    ID of the resource.
    TcCaptchaOption TeoSecurityClientAttesterClientAttestersTcCaptchaOption
    TC-CAPTCHA authentication configuration. Required when attester_source is TC-CAPTCHA.
    TcEoCaptchaOption TeoSecurityClientAttesterClientAttestersTcEoCaptchaOption
    TC-EO-CAPTCHA authentication configuration. Required when attester_source is TC-EO-CAPTCHA.
    TcRceOption TeoSecurityClientAttesterClientAttestersTcRceOption
    TC-RCE authentication configuration. Required when attester_source is TC-RCE.
    Type string
    Attester rule type (read-only). Valid values: PRESET (system preset), CUSTOM (user defined).
    attester_source string
    Authentication method. Valid values: TC-RCE (Tencent Cloud RCE), TC-CAPTCHA (Tencent CAPTCHA), TC-EO-CAPTCHA (EdgeOne CAPTCHA).
    name string
    Attester name.
    attester_duration string
    Authentication validity duration. Default 60s. Supported units: s (60-43200), m (1-720), h (1-12). e.g. 300s, 5m, 1h.
    id string
    ID of the resource.
    tc_captcha_option object
    TC-CAPTCHA authentication configuration. Required when attester_source is TC-CAPTCHA.
    tc_eo_captcha_option object
    TC-EO-CAPTCHA authentication configuration. Required when attester_source is TC-EO-CAPTCHA.
    tc_rce_option object
    TC-RCE authentication configuration. Required when attester_source is TC-RCE.
    type string
    Attester rule type (read-only). Valid values: PRESET (system preset), CUSTOM (user defined).
    attesterSource String
    Authentication method. Valid values: TC-RCE (Tencent Cloud RCE), TC-CAPTCHA (Tencent CAPTCHA), TC-EO-CAPTCHA (EdgeOne CAPTCHA).
    name String
    Attester name.
    attesterDuration String
    Authentication validity duration. Default 60s. Supported units: s (60-43200), m (1-720), h (1-12). e.g. 300s, 5m, 1h.
    id String
    ID of the resource.
    tcCaptchaOption TeoSecurityClientAttesterClientAttestersTcCaptchaOption
    TC-CAPTCHA authentication configuration. Required when attester_source is TC-CAPTCHA.
    tcEoCaptchaOption TeoSecurityClientAttesterClientAttestersTcEoCaptchaOption
    TC-EO-CAPTCHA authentication configuration. Required when attester_source is TC-EO-CAPTCHA.
    tcRceOption TeoSecurityClientAttesterClientAttestersTcRceOption
    TC-RCE authentication configuration. Required when attester_source is TC-RCE.
    type String
    Attester rule type (read-only). Valid values: PRESET (system preset), CUSTOM (user defined).
    attesterSource string
    Authentication method. Valid values: TC-RCE (Tencent Cloud RCE), TC-CAPTCHA (Tencent CAPTCHA), TC-EO-CAPTCHA (EdgeOne CAPTCHA).
    name string
    Attester name.
    attesterDuration string
    Authentication validity duration. Default 60s. Supported units: s (60-43200), m (1-720), h (1-12). e.g. 300s, 5m, 1h.
    id string
    ID of the resource.
    tcCaptchaOption TeoSecurityClientAttesterClientAttestersTcCaptchaOption
    TC-CAPTCHA authentication configuration. Required when attester_source is TC-CAPTCHA.
    tcEoCaptchaOption TeoSecurityClientAttesterClientAttestersTcEoCaptchaOption
    TC-EO-CAPTCHA authentication configuration. Required when attester_source is TC-EO-CAPTCHA.
    tcRceOption TeoSecurityClientAttesterClientAttestersTcRceOption
    TC-RCE authentication configuration. Required when attester_source is TC-RCE.
    type string
    Attester rule type (read-only). Valid values: PRESET (system preset), CUSTOM (user defined).
    attester_source str
    Authentication method. Valid values: TC-RCE (Tencent Cloud RCE), TC-CAPTCHA (Tencent CAPTCHA), TC-EO-CAPTCHA (EdgeOne CAPTCHA).
    name str
    Attester name.
    attester_duration str
    Authentication validity duration. Default 60s. Supported units: s (60-43200), m (1-720), h (1-12). e.g. 300s, 5m, 1h.
    id str
    ID of the resource.
    tc_captcha_option TeoSecurityClientAttesterClientAttestersTcCaptchaOption
    TC-CAPTCHA authentication configuration. Required when attester_source is TC-CAPTCHA.
    tc_eo_captcha_option TeoSecurityClientAttesterClientAttestersTcEoCaptchaOption
    TC-EO-CAPTCHA authentication configuration. Required when attester_source is TC-EO-CAPTCHA.
    tc_rce_option TeoSecurityClientAttesterClientAttestersTcRceOption
    TC-RCE authentication configuration. Required when attester_source is TC-RCE.
    type str
    Attester rule type (read-only). Valid values: PRESET (system preset), CUSTOM (user defined).
    attesterSource String
    Authentication method. Valid values: TC-RCE (Tencent Cloud RCE), TC-CAPTCHA (Tencent CAPTCHA), TC-EO-CAPTCHA (EdgeOne CAPTCHA).
    name String
    Attester name.
    attesterDuration String
    Authentication validity duration. Default 60s. Supported units: s (60-43200), m (1-720), h (1-12). e.g. 300s, 5m, 1h.
    id String
    ID of the resource.
    tcCaptchaOption Property Map
    TC-CAPTCHA authentication configuration. Required when attester_source is TC-CAPTCHA.
    tcEoCaptchaOption Property Map
    TC-EO-CAPTCHA authentication configuration. Required when attester_source is TC-EO-CAPTCHA.
    tcRceOption Property Map
    TC-RCE authentication configuration. Required when attester_source is TC-RCE.
    type String
    Attester rule type (read-only). Valid values: PRESET (system preset), CUSTOM (user defined).

    TeoSecurityClientAttesterClientAttestersTcCaptchaOption, TeoSecurityClientAttesterClientAttestersTcCaptchaOptionArgs

    AppSecretKey string
    AppSecretKey.
    CaptchaAppId string
    CaptchaAppId.
    AppSecretKey string
    AppSecretKey.
    CaptchaAppId string
    CaptchaAppId.
    app_secret_key string
    AppSecretKey.
    captcha_app_id string
    CaptchaAppId.
    appSecretKey String
    AppSecretKey.
    captchaAppId String
    CaptchaAppId.
    appSecretKey string
    AppSecretKey.
    captchaAppId string
    CaptchaAppId.
    app_secret_key str
    AppSecretKey.
    captcha_app_id str
    CaptchaAppId.
    appSecretKey String
    AppSecretKey.
    captchaAppId String
    CaptchaAppId.

    TeoSecurityClientAttesterClientAttestersTcEoCaptchaOption, TeoSecurityClientAttesterClientAttestersTcEoCaptchaOptionArgs

    CaptchaMode string
    EdgeOne CAPTCHA mode. Valid values: Invisible, Adaptive.
    CaptchaMode string
    EdgeOne CAPTCHA mode. Valid values: Invisible, Adaptive.
    captcha_mode string
    EdgeOne CAPTCHA mode. Valid values: Invisible, Adaptive.
    captchaMode String
    EdgeOne CAPTCHA mode. Valid values: Invisible, Adaptive.
    captchaMode string
    EdgeOne CAPTCHA mode. Valid values: Invisible, Adaptive.
    captcha_mode str
    EdgeOne CAPTCHA mode. Valid values: Invisible, Adaptive.
    captchaMode String
    EdgeOne CAPTCHA mode. Valid values: Invisible, Adaptive.

    TeoSecurityClientAttesterClientAttestersTcRceOption, TeoSecurityClientAttesterClientAttestersTcRceOptionArgs

    Channel string
    TC-RCE channel ID.
    Region string
    TC-RCE channel region. Valid values: ap-beijing, ap-jakarta, ap-singapore, eu-frankfurt, na-siliconvalley.
    Channel string
    TC-RCE channel ID.
    Region string
    TC-RCE channel region. Valid values: ap-beijing, ap-jakarta, ap-singapore, eu-frankfurt, na-siliconvalley.
    channel string
    TC-RCE channel ID.
    region string
    TC-RCE channel region. Valid values: ap-beijing, ap-jakarta, ap-singapore, eu-frankfurt, na-siliconvalley.
    channel String
    TC-RCE channel ID.
    region String
    TC-RCE channel region. Valid values: ap-beijing, ap-jakarta, ap-singapore, eu-frankfurt, na-siliconvalley.
    channel string
    TC-RCE channel ID.
    region string
    TC-RCE channel region. Valid values: ap-beijing, ap-jakarta, ap-singapore, eu-frankfurt, na-siliconvalley.
    channel str
    TC-RCE channel ID.
    region str
    TC-RCE channel region. Valid values: ap-beijing, ap-jakarta, ap-singapore, eu-frankfurt, na-siliconvalley.
    channel String
    TC-RCE channel ID.
    region String
    TC-RCE channel region. Valid values: ap-beijing, ap-jakarta, ap-singapore, eu-frankfurt, na-siliconvalley.

    Import

    TEO security client attester can be imported using the zoneId#clientAttesterId, e.g.

    $ pulumi import tencentcloud:index/teoSecurityClientAttester:TeoSecurityClientAttester example zone-3fkff38fyw8s#attest-0000361666
    

    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.
    Viewing docs for tencentcloud 1.82.93
    published on Monday, May 11, 2026 by tencentcloudstack
      Try Pulumi Cloud free. Your team will thank you.