published on Monday, Sep 21, 2026 by tencentcloudstack
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:
- App
Name string - Captcha name.
- Channel
Info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - Captcha
Info stringInternational Id - ID of the resource.
- Check
Appid doubleSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - Check
Box stringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - Check
Iv doubleSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - Defend
Mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - Disable
Invisible stringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - List<string>
- Resource tags, key&value format.
- User
Set stringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - Verify
Bundle stringId - App BundleId. Only valid when
channel_infoisios. - Verify
Domain string - Web domain. Only valid when
channel_infoisweb. - Verify
Package string - App package. Only valid when
channel_infoisandroid. - Verify
Rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- App
Name string - Captcha name.
- Channel
Info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - Captcha
Info stringInternational Id - ID of the resource.
- Check
Appid float64Switch - Whether to enable captcha encryption.
0: disable,1: enable. - Check
Box stringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - Check
Iv float64Switch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - Defend
Mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - Disable
Invisible stringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - []string
- Resource tags, key&value format.
- User
Set stringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - Verify
Bundle stringId - App BundleId. Only valid when
channel_infoisios. - Verify
Domain string - Web domain. Only valid when
channel_infoisweb. - Verify
Package string - App package. Only valid when
channel_infoisandroid. - Verify
Rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app_
name string - Captcha name.
- channel_
info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - captcha_
info_ stringinternational_ id - ID of the resource.
- check_
appid_ numberswitch - Whether to enable captcha encryption.
0: disable,1: enable. - check_
box_ stringstyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check_
iv_ numberswitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend_
mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable_
invisible_ stringswitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - list(string)
- Resource tags, key&value format.
- user_
set_ stringcap_ type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify_
bundle_ stringid - App BundleId. Only valid when
channel_infoisios. - verify_
domain string - Web domain. Only valid when
channel_infoisweb. - verify_
package string - App package. Only valid when
channel_infoisandroid. - verify_
rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app
Name String - Captcha name.
- channel
Info String - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - captcha
Info StringInternational Id - ID of the resource.
- check
Appid DoubleSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - check
Box StringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check
Iv DoubleSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend
Mode String - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable
Invisible StringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - List<String>
- Resource tags, key&value format.
- user
Set StringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify
Bundle StringId - App BundleId. Only valid when
channel_infoisios. - verify
Domain String - Web domain. Only valid when
channel_infoisweb. - verify
Package String - App package. Only valid when
channel_infoisandroid. - verify
Rank String - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app
Name string - Captcha name.
- channel
Info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - captcha
Info stringInternational Id - ID of the resource.
- check
Appid numberSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - check
Box stringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check
Iv numberSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend
Mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable
Invisible stringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - string[]
- Resource tags, key&value format.
- user
Set stringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify
Bundle stringId - App BundleId. Only valid when
channel_infoisios. - verify
Domain string - Web domain. Only valid when
channel_infoisweb. - verify
Package string - App package. Only valid when
channel_infoisandroid. - verify
Rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app_
name str - Captcha name.
- channel_
info str - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - captcha_
info_ strinternational_ id - ID of the resource.
- check_
appid_ floatswitch - Whether to enable captcha encryption.
0: disable,1: enable. - check_
box_ strstyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check_
iv_ floatswitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend_
mode str - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable_
invisible_ strswitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - Sequence[str]
- Resource tags, key&value format.
- user_
set_ strcap_ type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify_
bundle_ strid - App BundleId. Only valid when
channel_infoisios. - verify_
domain str - Web domain. Only valid when
channel_infoisweb. - verify_
package str - App package. Only valid when
channel_infoisandroid. - verify_
rank str - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app
Name String - Captcha name.
- channel
Info String - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - captcha
Info StringInternational Id - ID of the resource.
- check
Appid NumberSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - check
Box StringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check
Iv NumberSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend
Mode String - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable
Invisible StringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - List<String>
- Resource tags, key&value format.
- user
Set StringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify
Bundle StringId - App BundleId. Only valid when
channel_infoisios. - verify
Domain String - Web domain. Only valid when
channel_infoisweb. - verify
Package String - App package. Only valid when
channel_infoisandroid. - verify
Rank String - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
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) -> CaptchaInfoInternationalfunc 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.
- App
Name string - Captcha name.
- Captcha
Info stringInternational Id - ID of the resource.
- Channel
Info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - Check
Appid doubleSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - Check
Box stringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - Check
Iv doubleSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - Defend
Mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - Disable
Invisible stringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - List<string>
- Resource tags, key&value format.
- User
Set stringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - Verify
Bundle stringId - App BundleId. Only valid when
channel_infoisios. - Verify
Domain string - Web domain. Only valid when
channel_infoisweb. - Verify
Package string - App package. Only valid when
channel_infoisandroid. - Verify
Rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- App
Name string - Captcha name.
- Captcha
Info stringInternational Id - ID of the resource.
- Channel
Info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - Check
Appid float64Switch - Whether to enable captcha encryption.
0: disable,1: enable. - Check
Box stringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - Check
Iv float64Switch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - Defend
Mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - Disable
Invisible stringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - []string
- Resource tags, key&value format.
- User
Set stringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - Verify
Bundle stringId - App BundleId. Only valid when
channel_infoisios. - Verify
Domain string - Web domain. Only valid when
channel_infoisweb. - Verify
Package string - App package. Only valid when
channel_infoisandroid. - Verify
Rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app_
name string - Captcha name.
- captcha_
info_ stringinternational_ id - ID of the resource.
- channel_
info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - check_
appid_ numberswitch - Whether to enable captcha encryption.
0: disable,1: enable. - check_
box_ stringstyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check_
iv_ numberswitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend_
mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable_
invisible_ stringswitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - list(string)
- Resource tags, key&value format.
- user_
set_ stringcap_ type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify_
bundle_ stringid - App BundleId. Only valid when
channel_infoisios. - verify_
domain string - Web domain. Only valid when
channel_infoisweb. - verify_
package string - App package. Only valid when
channel_infoisandroid. - verify_
rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app
Name String - Captcha name.
- captcha
Info StringInternational Id - ID of the resource.
- channel
Info String - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - check
Appid DoubleSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - check
Box StringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check
Iv DoubleSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend
Mode String - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable
Invisible StringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - List<String>
- Resource tags, key&value format.
- user
Set StringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify
Bundle StringId - App BundleId. Only valid when
channel_infoisios. - verify
Domain String - Web domain. Only valid when
channel_infoisweb. - verify
Package String - App package. Only valid when
channel_infoisandroid. - verify
Rank String - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app
Name string - Captcha name.
- captcha
Info stringInternational Id - ID of the resource.
- channel
Info string - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - check
Appid numberSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - check
Box stringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check
Iv numberSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend
Mode string - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable
Invisible stringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - string[]
- Resource tags, key&value format.
- user
Set stringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify
Bundle stringId - App BundleId. Only valid when
channel_infoisios. - verify
Domain string - Web domain. Only valid when
channel_infoisweb. - verify
Package string - App package. Only valid when
channel_infoisandroid. - verify
Rank string - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app_
name str - Captcha name.
- captcha_
info_ strinternational_ id - ID of the resource.
- channel_
info str - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - check_
appid_ floatswitch - Whether to enable captcha encryption.
0: disable,1: enable. - check_
box_ strstyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check_
iv_ floatswitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend_
mode str - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable_
invisible_ strswitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - Sequence[str]
- Resource tags, key&value format.
- user_
set_ strcap_ type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify_
bundle_ strid - App BundleId. Only valid when
channel_infoisios. - verify_
domain str - Web domain. Only valid when
channel_infoisweb. - verify_
package str - App package. Only valid when
channel_infoisandroid. - verify_
rank str - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
- app
Name String - Captcha name.
- captcha
Info StringInternational Id - ID of the resource.
- channel
Info String - Client type. Valid values:
web(web scenario),android(android client),ios(ios client). Default isweb. - check
Appid NumberSwitch - Whether to enable captcha encryption.
0: disable,1: enable. - check
Box StringStyle - Checkbox style. Valid values:
0(simple),1(basic),2(invisible). - check
Iv NumberSwitch - Whether to enable one-time pad. Valid values:
0(disable),1(enable). Only allowed to be1whencheck_appid_switchis1. - defend
Mode String - Defend mode. Valid values:
block(block mode),notify(perceive mode). Default isnotify. - disable
Invisible StringSwitch - Verify mechanism. Valid values:
0(one-click verify),1(always verify),2(invisible verify, UserSetCapType must be1). - List<String>
- Resource tags, key&value format.
- user
Set StringCap Type - Verify type. Valid values:
1(invisible verify, DisableInvisibleSwitch must be2),2(slider),8(image click),9(voice). - verify
Bundle StringId - App BundleId. Only valid when
channel_infoisios. - verify
Domain String - Web domain. Only valid when
channel_infoisweb. - verify
Package String - App package. Only valid when
channel_infoisandroid. - verify
Rank String - Verify rank. Valid values:
1(experience first),2(balanced),3(security first). Default is1.
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
tencentcloudTerraform Provider.
published on Monday, Sep 21, 2026 by tencentcloudstack