1. Registry
  2. Packages
  3. Tencentcloud Provider
  4. API Docs
  5. CaptchaInfoInternational
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.83.33
published on Monday, Sep 21, 2026 by tencentcloudstack

    Provides a resource to create a captcha info international.

    Example Usage

    If channel_info is web

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.CaptchaInfoInternational("example", {
        appName: "tf-example",
        channelInfo: "web",
        verifyRank: "1",
        userSetCapType: "2",
        defendMode: "block",
        disableInvisibleSwitch: "0",
        verifyDomain: "example.com",
        checkAppidSwitch: 1,
        checkIvSwitch: 1,
        checkBoxStyle: "2",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.CaptchaInfoInternational("example",
        app_name="tf-example",
        channel_info="web",
        verify_rank="1",
        user_set_cap_type="2",
        defend_mode="block",
        disable_invisible_switch="0",
        verify_domain="example.com",
        check_appid_switch=1,
        check_iv_switch=1,
        check_box_style="2")
    
    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.NewCaptchaInfoInternational(ctx, "example", &tencentcloud.CaptchaInfoInternationalArgs{
    			AppName:                pulumi.String("tf-example"),
    			ChannelInfo:            pulumi.String("web"),
    			VerifyRank:             pulumi.String("1"),
    			UserSetCapType:         pulumi.String("2"),
    			DefendMode:             pulumi.String("block"),
    			DisableInvisibleSwitch: pulumi.String("0"),
    			VerifyDomain:           pulumi.String("example.com"),
    			CheckAppidSwitch:       pulumi.Float64(1),
    			CheckIvSwitch:          pulumi.Float64(1),
    			CheckBoxStyle:          pulumi.String("2"),
    		})
    		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.CaptchaInfoInternational("example", new()
        {
            AppName = "tf-example",
            ChannelInfo = "web",
            VerifyRank = "1",
            UserSetCapType = "2",
            DefendMode = "block",
            DisableInvisibleSwitch = "0",
            VerifyDomain = "example.com",
            CheckAppidSwitch = 1,
            CheckIvSwitch = 1,
            CheckBoxStyle = "2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CaptchaInfoInternational;
    import com.pulumi.tencentcloud.CaptchaInfoInternationalArgs;
    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 CaptchaInfoInternational("example", CaptchaInfoInternationalArgs.builder()
                .appName("tf-example")
                .channelInfo("web")
                .verifyRank("1")
                .userSetCapType("2")
                .defendMode("block")
                .disableInvisibleSwitch("0")
                .verifyDomain("example.com")
                .checkAppidSwitch(1.0)
                .checkIvSwitch(1.0)
                .checkBoxStyle("2")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:CaptchaInfoInternational
        properties:
          appName: tf-example
          channelInfo: web
          verifyRank: '1'
          userSetCapType: '2'
          defendMode: block
          disableInvisibleSwitch: '0'
          verifyDomain: example.com
          checkAppidSwitch: 1
          checkIvSwitch: 1
          checkBoxStyle: '2'
    
    Example coming soon!
    

    If channel_info is ios

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.CaptchaInfoInternational("example", {
        appName: "tf-example",
        channelInfo: "ios",
        verifyRank: "3",
        userSetCapType: "1",
        defendMode: "notify",
        disableInvisibleSwitch: "2",
        verifyBundleId: "com.example.SampleApp",
        checkAppidSwitch: 0,
        checkIvSwitch: 0,
        checkBoxStyle: "2",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.CaptchaInfoInternational("example",
        app_name="tf-example",
        channel_info="ios",
        verify_rank="3",
        user_set_cap_type="1",
        defend_mode="notify",
        disable_invisible_switch="2",
        verify_bundle_id="com.example.SampleApp",
        check_appid_switch=0,
        check_iv_switch=0,
        check_box_style="2")
    
    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.NewCaptchaInfoInternational(ctx, "example", &tencentcloud.CaptchaInfoInternationalArgs{
    			AppName:                pulumi.String("tf-example"),
    			ChannelInfo:            pulumi.String("ios"),
    			VerifyRank:             pulumi.String("3"),
    			UserSetCapType:         pulumi.String("1"),
    			DefendMode:             pulumi.String("notify"),
    			DisableInvisibleSwitch: pulumi.String("2"),
    			VerifyBundleId:         pulumi.String("com.example.SampleApp"),
    			CheckAppidSwitch:       pulumi.Float64(0),
    			CheckIvSwitch:          pulumi.Float64(0),
    			CheckBoxStyle:          pulumi.String("2"),
    		})
    		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.CaptchaInfoInternational("example", new()
        {
            AppName = "tf-example",
            ChannelInfo = "ios",
            VerifyRank = "3",
            UserSetCapType = "1",
            DefendMode = "notify",
            DisableInvisibleSwitch = "2",
            VerifyBundleId = "com.example.SampleApp",
            CheckAppidSwitch = 0,
            CheckIvSwitch = 0,
            CheckBoxStyle = "2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CaptchaInfoInternational;
    import com.pulumi.tencentcloud.CaptchaInfoInternationalArgs;
    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 CaptchaInfoInternational("example", CaptchaInfoInternationalArgs.builder()
                .appName("tf-example")
                .channelInfo("ios")
                .verifyRank("3")
                .userSetCapType("1")
                .defendMode("notify")
                .disableInvisibleSwitch("2")
                .verifyBundleId("com.example.SampleApp")
                .checkAppidSwitch(0.0)
                .checkIvSwitch(0.0)
                .checkBoxStyle("2")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:CaptchaInfoInternational
        properties:
          appName: tf-example
          channelInfo: ios
          verifyRank: '3'
          userSetCapType: '1'
          defendMode: notify
          disableInvisibleSwitch: '2'
          verifyBundleId: com.example.SampleApp
          checkAppidSwitch: 0
          checkIvSwitch: 0
          checkBoxStyle: '2'
    
    Example coming soon!
    

    If channel_info is android

    import * as pulumi from "@pulumi/pulumi";
    import * as tencentcloud from "@pulumi/tencentcloud";
    
    const example = new tencentcloud.CaptchaInfoInternational("example", {
        appName: "tf-example",
        channelInfo: "android",
        verifyRank: "2",
        userSetCapType: "2",
        defendMode: "block",
        disableInvisibleSwitch: "1",
        verifyPackage: "com.example.myapp",
        checkAppidSwitch: 0,
        checkIvSwitch: 0,
        checkBoxStyle: "2",
    });
    
    import pulumi
    import pulumi_tencentcloud as tencentcloud
    
    example = tencentcloud.CaptchaInfoInternational("example",
        app_name="tf-example",
        channel_info="android",
        verify_rank="2",
        user_set_cap_type="2",
        defend_mode="block",
        disable_invisible_switch="1",
        verify_package="com.example.myapp",
        check_appid_switch=0,
        check_iv_switch=0,
        check_box_style="2")
    
    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.NewCaptchaInfoInternational(ctx, "example", &tencentcloud.CaptchaInfoInternationalArgs{
    			AppName:                pulumi.String("tf-example"),
    			ChannelInfo:            pulumi.String("android"),
    			VerifyRank:             pulumi.String("2"),
    			UserSetCapType:         pulumi.String("2"),
    			DefendMode:             pulumi.String("block"),
    			DisableInvisibleSwitch: pulumi.String("1"),
    			VerifyPackage:          pulumi.String("com.example.myapp"),
    			CheckAppidSwitch:       pulumi.Float64(0),
    			CheckIvSwitch:          pulumi.Float64(0),
    			CheckBoxStyle:          pulumi.String("2"),
    		})
    		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.CaptchaInfoInternational("example", new()
        {
            AppName = "tf-example",
            ChannelInfo = "android",
            VerifyRank = "2",
            UserSetCapType = "2",
            DefendMode = "block",
            DisableInvisibleSwitch = "1",
            VerifyPackage = "com.example.myapp",
            CheckAppidSwitch = 0,
            CheckIvSwitch = 0,
            CheckBoxStyle = "2",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.tencentcloud.CaptchaInfoInternational;
    import com.pulumi.tencentcloud.CaptchaInfoInternationalArgs;
    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 CaptchaInfoInternational("example", CaptchaInfoInternationalArgs.builder()
                .appName("tf-example")
                .channelInfo("android")
                .verifyRank("2")
                .userSetCapType("2")
                .defendMode("block")
                .disableInvisibleSwitch("1")
                .verifyPackage("com.example.myapp")
                .checkAppidSwitch(0.0)
                .checkIvSwitch(0.0)
                .checkBoxStyle("2")
                .build());
    
        }
    }
    
    resources:
      example:
        type: tencentcloud:CaptchaInfoInternational
        properties:
          appName: tf-example
          channelInfo: android
          verifyRank: '2'
          userSetCapType: '2'
          defendMode: block
          disableInvisibleSwitch: '1'
          verifyPackage: com.example.myapp
          checkAppidSwitch: 0
          checkIvSwitch: 0
          checkBoxStyle: '2'
    
    Example coming soon!
    

    Create CaptchaInfoInternational Resource

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

    Constructor syntax

    new CaptchaInfoInternational(name: string, args: CaptchaInfoInternationalArgs, opts?: CustomResourceOptions);
    @overload
    def CaptchaInfoInternational(resource_name: str,
                                 args: CaptchaInfoInternationalArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def CaptchaInfoInternational(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 channel_info: Optional[str] = None,
                                 app_name: Optional[str] = None,
                                 defend_mode: Optional[str] = None,
                                 check_appid_switch: Optional[float] = None,
                                 check_box_style: Optional[str] = None,
                                 check_iv_switch: Optional[float] = None,
                                 captcha_info_international_id: Optional[str] = None,
                                 disable_invisible_switch: Optional[str] = None,
                                 tags: Optional[Sequence[str]] = None,
                                 user_set_cap_type: Optional[str] = None,
                                 verify_bundle_id: Optional[str] = None,
                                 verify_domain: Optional[str] = None,
                                 verify_package: Optional[str] = None,
                                 verify_rank: Optional[str] = None)
    func NewCaptchaInfoInternational(ctx *Context, name string, args CaptchaInfoInternationalArgs, opts ...ResourceOption) (*CaptchaInfoInternational, error)
    public CaptchaInfoInternational(string name, CaptchaInfoInternationalArgs args, CustomResourceOptions? opts = null)
    public CaptchaInfoInternational(String name, CaptchaInfoInternationalArgs args)
    public CaptchaInfoInternational(String name, CaptchaInfoInternationalArgs args, CustomResourceOptions options)
    
    type: tencentcloud:CaptchaInfoInternational
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "tencentcloud_captcha_info_international" "name" {
        # resource properties
    }

    Parameters

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

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

    AppName string
    Captcha name.
    ChannelInfo string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    CaptchaInfoInternationalId string
    ID of the resource.
    CheckAppidSwitch double
    Whether to enable captcha encryption. 0: disable, 1: enable.
    CheckBoxStyle string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    CheckIvSwitch double
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    DefendMode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    DisableInvisibleSwitch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    Tags List<string>
    Resource tags, key&value format.
    UserSetCapType string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    VerifyBundleId string
    App BundleId. Only valid when channel_info is ios.
    VerifyDomain string
    Web domain. Only valid when channel_info is web.
    VerifyPackage string
    App package. Only valid when channel_info is android.
    VerifyRank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    AppName string
    Captcha name.
    ChannelInfo string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    CaptchaInfoInternationalId string
    ID of the resource.
    CheckAppidSwitch float64
    Whether to enable captcha encryption. 0: disable, 1: enable.
    CheckBoxStyle string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    CheckIvSwitch float64
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    DefendMode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    DisableInvisibleSwitch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    Tags []string
    Resource tags, key&value format.
    UserSetCapType string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    VerifyBundleId string
    App BundleId. Only valid when channel_info is ios.
    VerifyDomain string
    Web domain. Only valid when channel_info is web.
    VerifyPackage string
    App package. Only valid when channel_info is android.
    VerifyRank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    app_name string
    Captcha name.
    channel_info string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    captcha_info_international_id string
    ID of the resource.
    check_appid_switch number
    Whether to enable captcha encryption. 0: disable, 1: enable.
    check_box_style string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    check_iv_switch number
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defend_mode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disable_invisible_switch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags list(string)
    Resource tags, key&value format.
    user_set_cap_type string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verify_bundle_id string
    App BundleId. Only valid when channel_info is ios.
    verify_domain string
    Web domain. Only valid when channel_info is web.
    verify_package string
    App package. Only valid when channel_info is android.
    verify_rank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    appName String
    Captcha name.
    channelInfo String
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    captchaInfoInternationalId String
    ID of the resource.
    checkAppidSwitch Double
    Whether to enable captcha encryption. 0: disable, 1: enable.
    checkBoxStyle String
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    checkIvSwitch Double
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defendMode String
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disableInvisibleSwitch String
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags List<String>
    Resource tags, key&value format.
    userSetCapType String
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verifyBundleId String
    App BundleId. Only valid when channel_info is ios.
    verifyDomain String
    Web domain. Only valid when channel_info is web.
    verifyPackage String
    App package. Only valid when channel_info is android.
    verifyRank String
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    appName string
    Captcha name.
    channelInfo string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    captchaInfoInternationalId string
    ID of the resource.
    checkAppidSwitch number
    Whether to enable captcha encryption. 0: disable, 1: enable.
    checkBoxStyle string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    checkIvSwitch number
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defendMode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disableInvisibleSwitch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags string[]
    Resource tags, key&value format.
    userSetCapType string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verifyBundleId string
    App BundleId. Only valid when channel_info is ios.
    verifyDomain string
    Web domain. Only valid when channel_info is web.
    verifyPackage string
    App package. Only valid when channel_info is android.
    verifyRank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    app_name str
    Captcha name.
    channel_info str
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    captcha_info_international_id str
    ID of the resource.
    check_appid_switch float
    Whether to enable captcha encryption. 0: disable, 1: enable.
    check_box_style str
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    check_iv_switch float
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defend_mode str
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disable_invisible_switch str
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags Sequence[str]
    Resource tags, key&value format.
    user_set_cap_type str
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verify_bundle_id str
    App BundleId. Only valid when channel_info is ios.
    verify_domain str
    Web domain. Only valid when channel_info is web.
    verify_package str
    App package. Only valid when channel_info is android.
    verify_rank str
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    appName String
    Captcha name.
    channelInfo String
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    captchaInfoInternationalId String
    ID of the resource.
    checkAppidSwitch Number
    Whether to enable captcha encryption. 0: disable, 1: enable.
    checkBoxStyle String
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    checkIvSwitch Number
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defendMode String
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disableInvisibleSwitch String
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags List<String>
    Resource tags, key&value format.
    userSetCapType String
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verifyBundleId String
    App BundleId. Only valid when channel_info is ios.
    verifyDomain String
    Web domain. Only valid when channel_info is web.
    verifyPackage String
    App package. Only valid when channel_info is android.
    verifyRank String
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.

    Outputs

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

    Get an existing CaptchaInfoInternational 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?: CaptchaInfoInternationalState, opts?: CustomResourceOptions): CaptchaInfoInternational
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            app_name: Optional[str] = None,
            captcha_info_international_id: Optional[str] = None,
            channel_info: Optional[str] = None,
            check_appid_switch: Optional[float] = None,
            check_box_style: Optional[str] = None,
            check_iv_switch: Optional[float] = None,
            defend_mode: Optional[str] = None,
            disable_invisible_switch: Optional[str] = None,
            tags: Optional[Sequence[str]] = None,
            user_set_cap_type: Optional[str] = None,
            verify_bundle_id: Optional[str] = None,
            verify_domain: Optional[str] = None,
            verify_package: Optional[str] = None,
            verify_rank: Optional[str] = None) -> CaptchaInfoInternational
    func GetCaptchaInfoInternational(ctx *Context, name string, id IDInput, state *CaptchaInfoInternationalState, opts ...ResourceOption) (*CaptchaInfoInternational, error)
    public static CaptchaInfoInternational Get(string name, Input<string> id, CaptchaInfoInternationalState? state, CustomResourceOptions? opts = null)
    public static CaptchaInfoInternational get(String name, Output<String> id, CaptchaInfoInternationalState state, CustomResourceOptions options)
    resources:  _:    type: tencentcloud:CaptchaInfoInternational    get:      id: ${id}
    import {
      to = tencentcloud_captcha_info_international.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:
    AppName string
    Captcha name.
    CaptchaInfoInternationalId string
    ID of the resource.
    ChannelInfo string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    CheckAppidSwitch double
    Whether to enable captcha encryption. 0: disable, 1: enable.
    CheckBoxStyle string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    CheckIvSwitch double
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    DefendMode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    DisableInvisibleSwitch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    Tags List<string>
    Resource tags, key&value format.
    UserSetCapType string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    VerifyBundleId string
    App BundleId. Only valid when channel_info is ios.
    VerifyDomain string
    Web domain. Only valid when channel_info is web.
    VerifyPackage string
    App package. Only valid when channel_info is android.
    VerifyRank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    AppName string
    Captcha name.
    CaptchaInfoInternationalId string
    ID of the resource.
    ChannelInfo string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    CheckAppidSwitch float64
    Whether to enable captcha encryption. 0: disable, 1: enable.
    CheckBoxStyle string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    CheckIvSwitch float64
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    DefendMode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    DisableInvisibleSwitch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    Tags []string
    Resource tags, key&value format.
    UserSetCapType string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    VerifyBundleId string
    App BundleId. Only valid when channel_info is ios.
    VerifyDomain string
    Web domain. Only valid when channel_info is web.
    VerifyPackage string
    App package. Only valid when channel_info is android.
    VerifyRank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    app_name string
    Captcha name.
    captcha_info_international_id string
    ID of the resource.
    channel_info string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    check_appid_switch number
    Whether to enable captcha encryption. 0: disable, 1: enable.
    check_box_style string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    check_iv_switch number
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defend_mode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disable_invisible_switch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags list(string)
    Resource tags, key&value format.
    user_set_cap_type string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verify_bundle_id string
    App BundleId. Only valid when channel_info is ios.
    verify_domain string
    Web domain. Only valid when channel_info is web.
    verify_package string
    App package. Only valid when channel_info is android.
    verify_rank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    appName String
    Captcha name.
    captchaInfoInternationalId String
    ID of the resource.
    channelInfo String
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    checkAppidSwitch Double
    Whether to enable captcha encryption. 0: disable, 1: enable.
    checkBoxStyle String
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    checkIvSwitch Double
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defendMode String
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disableInvisibleSwitch String
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags List<String>
    Resource tags, key&value format.
    userSetCapType String
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verifyBundleId String
    App BundleId. Only valid when channel_info is ios.
    verifyDomain String
    Web domain. Only valid when channel_info is web.
    verifyPackage String
    App package. Only valid when channel_info is android.
    verifyRank String
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    appName string
    Captcha name.
    captchaInfoInternationalId string
    ID of the resource.
    channelInfo string
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    checkAppidSwitch number
    Whether to enable captcha encryption. 0: disable, 1: enable.
    checkBoxStyle string
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    checkIvSwitch number
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defendMode string
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disableInvisibleSwitch string
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags string[]
    Resource tags, key&value format.
    userSetCapType string
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verifyBundleId string
    App BundleId. Only valid when channel_info is ios.
    verifyDomain string
    Web domain. Only valid when channel_info is web.
    verifyPackage string
    App package. Only valid when channel_info is android.
    verifyRank string
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    app_name str
    Captcha name.
    captcha_info_international_id str
    ID of the resource.
    channel_info str
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    check_appid_switch float
    Whether to enable captcha encryption. 0: disable, 1: enable.
    check_box_style str
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    check_iv_switch float
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defend_mode str
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disable_invisible_switch str
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags Sequence[str]
    Resource tags, key&value format.
    user_set_cap_type str
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verify_bundle_id str
    App BundleId. Only valid when channel_info is ios.
    verify_domain str
    Web domain. Only valid when channel_info is web.
    verify_package str
    App package. Only valid when channel_info is android.
    verify_rank str
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.
    appName String
    Captcha name.
    captchaInfoInternationalId String
    ID of the resource.
    channelInfo String
    Client type. Valid values: web (web scenario), android (android client), ios (ios client). Default is web.
    checkAppidSwitch Number
    Whether to enable captcha encryption. 0: disable, 1: enable.
    checkBoxStyle String
    Checkbox style. Valid values: 0 (simple), 1 (basic), 2 (invisible).
    checkIvSwitch Number
    Whether to enable one-time pad. Valid values: 0 (disable), 1 (enable). Only allowed to be 1 when check_appid_switch is 1.
    defendMode String
    Defend mode. Valid values: block (block mode), notify (perceive mode). Default is notify.
    disableInvisibleSwitch String
    Verify mechanism. Valid values: 0 (one-click verify), 1 (always verify), 2 (invisible verify, UserSetCapType must be 1).
    tags List<String>
    Resource tags, key&value format.
    userSetCapType String
    Verify type. Valid values: 1 (invisible verify, DisableInvisibleSwitch must be 2), 2 (slider), 8 (image click), 9 (voice).
    verifyBundleId String
    App BundleId. Only valid when channel_info is ios.
    verifyDomain String
    Web domain. Only valid when channel_info is web.
    verifyPackage String
    App package. Only valid when channel_info is android.
    verifyRank String
    Verify rank. Valid values: 1 (experience first), 2 (balanced), 3 (security first). Default is 1.

    Import

    Captcha info international can be imported using the id, e.g.

    $ pulumi import tencentcloud:index/captchaInfoInternational:CaptchaInfoInternational example 189933256
    

    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.83.33
    published on Monday, Sep 21, 2026 by tencentcloudstack

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial