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

tencentcloud.MpsContentReviewTemplate

Explore with Pulumi AI

Provides a resource to create a mps content_review_template

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.MpsContentReviewTemplate;
import com.pulumi.tencentcloud.MpsContentReviewTemplateArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePoliticalConfigureArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePoliticalConfigureAsrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePoliticalConfigureImgReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePoliticalConfigureOcrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePornConfigureArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePornConfigureAsrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePornConfigureImgReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplatePornConfigureOcrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateProhibitedConfigureArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateProhibitedConfigureAsrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateProhibitedConfigureOcrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateTerrorismConfigureArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateTerrorismConfigureImgReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateTerrorismConfigureOcrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateUserDefineConfigureArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateUserDefineConfigureAsrReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateUserDefineConfigureFaceReviewInfoArgs;
import com.pulumi.tencentcloud.inputs.MpsContentReviewTemplateUserDefineConfigureOcrReviewInfoArgs;
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 template = new MpsContentReviewTemplate("template", MpsContentReviewTemplateArgs.builder()
            .comment("tf test content review temp")
            .politicalConfigure(MpsContentReviewTemplatePoliticalConfigureArgs.builder()
                .asrReviewInfo(MpsContentReviewTemplatePoliticalConfigureAsrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .imgReviewInfo(MpsContentReviewTemplatePoliticalConfigureImgReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .labelSet(                    
                        "violation_photo",
                        "politician")
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .ocrReviewInfo(MpsContentReviewTemplatePoliticalConfigureOcrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .build())
            .pornConfigure(MpsContentReviewTemplatePornConfigureArgs.builder()
                .asrReviewInfo(MpsContentReviewTemplatePornConfigureAsrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .imgReviewInfo(MpsContentReviewTemplatePornConfigureImgReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .labelSet(                    
                        "porn",
                        "vulgar")
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .ocrReviewInfo(MpsContentReviewTemplatePornConfigureOcrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .build())
            .prohibitedConfigure(MpsContentReviewTemplateProhibitedConfigureArgs.builder()
                .asrReviewInfo(MpsContentReviewTemplateProhibitedConfigureAsrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .ocrReviewInfo(MpsContentReviewTemplateProhibitedConfigureOcrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .build())
            .terrorismConfigure(MpsContentReviewTemplateTerrorismConfigureArgs.builder()
                .imgReviewInfo(MpsContentReviewTemplateTerrorismConfigureImgReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .labelSet(                    
                        "guns",
                        "crowd")
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .ocrReviewInfo(MpsContentReviewTemplateTerrorismConfigureOcrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .build())
            .userDefineConfigure(MpsContentReviewTemplateUserDefineConfigureArgs.builder()
                .asrReviewInfo(MpsContentReviewTemplateUserDefineConfigureAsrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .labelSet(                    
                        "VOICE_1",
                        "VOICE_2")
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .faceReviewInfo(MpsContentReviewTemplateUserDefineConfigureFaceReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .labelSet(                    
                        "FACE_1",
                        "FACE_2")
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .ocrReviewInfo(MpsContentReviewTemplateUserDefineConfigureOcrReviewInfoArgs.builder()
                    .blockConfidence(60)
                    .labelSet(                    
                        "VIDEO_1",
                        "VIDEO_2")
                    .reviewConfidence(100)
                    .switch_("ON")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  template:
    type: tencentcloud:MpsContentReviewTemplate
    properties:
      comment: tf test content review temp
      politicalConfigure:
        asrReviewInfo:
          blockConfidence: 60
          reviewConfidence: 100
          switch: ON
        imgReviewInfo:
          blockConfidence: 60
          labelSet:
            - violation_photo
            - politician
          reviewConfidence: 100
          switch: ON
        ocrReviewInfo:
          blockConfidence: 60
          reviewConfidence: 100
          switch: ON
      pornConfigure:
        asrReviewInfo:
          blockConfidence: 60
          reviewConfidence: 100
          switch: ON
        imgReviewInfo:
          blockConfidence: 60
          labelSet:
            - porn
            - vulgar
          reviewConfidence: 100
          switch: ON
        ocrReviewInfo:
          blockConfidence: 60
          reviewConfidence: 100
          switch: ON
      prohibitedConfigure:
        asrReviewInfo:
          blockConfidence: 60
          reviewConfidence: 100
          switch: ON
        ocrReviewInfo:
          blockConfidence: 60
          reviewConfidence: 100
          switch: ON
      terrorismConfigure:
        imgReviewInfo:
          blockConfidence: 60
          labelSet:
            - guns
            - crowd
          reviewConfidence: 100
          switch: ON
        ocrReviewInfo:
          blockConfidence: 60
          reviewConfidence: 100
          switch: ON
      userDefineConfigure:
        asrReviewInfo:
          blockConfidence: 60
          labelSet:
            - VOICE_1
            - VOICE_2
          reviewConfidence: 100
          switch: ON
        faceReviewInfo:
          blockConfidence: 60
          labelSet:
            - FACE_1
            - FACE_2
          reviewConfidence: 100
          switch: ON
        ocrReviewInfo:
          blockConfidence: 60
          labelSet:
            - VIDEO_1
            - VIDEO_2
          reviewConfidence: 100
          switch: ON
Copy

Create MpsContentReviewTemplate Resource

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

Constructor syntax

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

@overload
def MpsContentReviewTemplate(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             comment: Optional[str] = None,
                             mps_content_review_template_id: Optional[str] = None,
                             name: Optional[str] = None,
                             political_configure: Optional[MpsContentReviewTemplatePoliticalConfigureArgs] = None,
                             porn_configure: Optional[MpsContentReviewTemplatePornConfigureArgs] = None,
                             prohibited_configure: Optional[MpsContentReviewTemplateProhibitedConfigureArgs] = None,
                             terrorism_configure: Optional[MpsContentReviewTemplateTerrorismConfigureArgs] = None,
                             user_define_configure: Optional[MpsContentReviewTemplateUserDefineConfigureArgs] = None)
func NewMpsContentReviewTemplate(ctx *Context, name string, args *MpsContentReviewTemplateArgs, opts ...ResourceOption) (*MpsContentReviewTemplate, error)
public MpsContentReviewTemplate(string name, MpsContentReviewTemplateArgs? args = null, CustomResourceOptions? opts = null)
public MpsContentReviewTemplate(String name, MpsContentReviewTemplateArgs args)
public MpsContentReviewTemplate(String name, MpsContentReviewTemplateArgs args, CustomResourceOptions options)
type: tencentcloud:MpsContentReviewTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

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

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

Comment string
Content review template description information, length limit: 256 characters.
MpsContentReviewTemplateId string
ID of the resource.
Name string
Content review template name, length limit: 64 characters.
PoliticalConfigure MpsContentReviewTemplatePoliticalConfigure
Political control parameters.
PornConfigure MpsContentReviewTemplatePornConfigure
Control parameters for porn image.
ProhibitedConfigure MpsContentReviewTemplateProhibitedConfigure
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
TerrorismConfigure MpsContentReviewTemplateTerrorismConfigure
Control parameters for unsafe information.
UserDefineConfigure MpsContentReviewTemplateUserDefineConfigure
User-Defined Content Moderation Control Parameters.
Comment string
Content review template description information, length limit: 256 characters.
MpsContentReviewTemplateId string
ID of the resource.
Name string
Content review template name, length limit: 64 characters.
PoliticalConfigure MpsContentReviewTemplatePoliticalConfigureArgs
Political control parameters.
PornConfigure MpsContentReviewTemplatePornConfigureArgs
Control parameters for porn image.
ProhibitedConfigure MpsContentReviewTemplateProhibitedConfigureArgs
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
TerrorismConfigure MpsContentReviewTemplateTerrorismConfigureArgs
Control parameters for unsafe information.
UserDefineConfigure MpsContentReviewTemplateUserDefineConfigureArgs
User-Defined Content Moderation Control Parameters.
comment String
Content review template description information, length limit: 256 characters.
mpsContentReviewTemplateId String
ID of the resource.
name String
Content review template name, length limit: 64 characters.
politicalConfigure MpsContentReviewTemplatePoliticalConfigure
Political control parameters.
pornConfigure MpsContentReviewTemplatePornConfigure
Control parameters for porn image.
prohibitedConfigure MpsContentReviewTemplateProhibitedConfigure
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorismConfigure MpsContentReviewTemplateTerrorismConfigure
Control parameters for unsafe information.
userDefineConfigure MpsContentReviewTemplateUserDefineConfigure
User-Defined Content Moderation Control Parameters.
comment string
Content review template description information, length limit: 256 characters.
mpsContentReviewTemplateId string
ID of the resource.
name string
Content review template name, length limit: 64 characters.
politicalConfigure MpsContentReviewTemplatePoliticalConfigure
Political control parameters.
pornConfigure MpsContentReviewTemplatePornConfigure
Control parameters for porn image.
prohibitedConfigure MpsContentReviewTemplateProhibitedConfigure
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorismConfigure MpsContentReviewTemplateTerrorismConfigure
Control parameters for unsafe information.
userDefineConfigure MpsContentReviewTemplateUserDefineConfigure
User-Defined Content Moderation Control Parameters.
comment str
Content review template description information, length limit: 256 characters.
mps_content_review_template_id str
ID of the resource.
name str
Content review template name, length limit: 64 characters.
political_configure MpsContentReviewTemplatePoliticalConfigureArgs
Political control parameters.
porn_configure MpsContentReviewTemplatePornConfigureArgs
Control parameters for porn image.
prohibited_configure MpsContentReviewTemplateProhibitedConfigureArgs
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorism_configure MpsContentReviewTemplateTerrorismConfigureArgs
Control parameters for unsafe information.
user_define_configure MpsContentReviewTemplateUserDefineConfigureArgs
User-Defined Content Moderation Control Parameters.
comment String
Content review template description information, length limit: 256 characters.
mpsContentReviewTemplateId String
ID of the resource.
name String
Content review template name, length limit: 64 characters.
politicalConfigure Property Map
Political control parameters.
pornConfigure Property Map
Control parameters for porn image.
prohibitedConfigure Property Map
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorismConfigure Property Map
Control parameters for unsafe information.
userDefineConfigure Property Map
User-Defined Content Moderation Control Parameters.

Outputs

All input properties are implicitly available as output properties. Additionally, the MpsContentReviewTemplate resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing MpsContentReviewTemplate Resource

Get an existing MpsContentReviewTemplate 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?: MpsContentReviewTemplateState, opts?: CustomResourceOptions): MpsContentReviewTemplate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        comment: Optional[str] = None,
        mps_content_review_template_id: Optional[str] = None,
        name: Optional[str] = None,
        political_configure: Optional[MpsContentReviewTemplatePoliticalConfigureArgs] = None,
        porn_configure: Optional[MpsContentReviewTemplatePornConfigureArgs] = None,
        prohibited_configure: Optional[MpsContentReviewTemplateProhibitedConfigureArgs] = None,
        terrorism_configure: Optional[MpsContentReviewTemplateTerrorismConfigureArgs] = None,
        user_define_configure: Optional[MpsContentReviewTemplateUserDefineConfigureArgs] = None) -> MpsContentReviewTemplate
func GetMpsContentReviewTemplate(ctx *Context, name string, id IDInput, state *MpsContentReviewTemplateState, opts ...ResourceOption) (*MpsContentReviewTemplate, error)
public static MpsContentReviewTemplate Get(string name, Input<string> id, MpsContentReviewTemplateState? state, CustomResourceOptions? opts = null)
public static MpsContentReviewTemplate get(String name, Output<String> id, MpsContentReviewTemplateState state, CustomResourceOptions options)
resources:  _:    type: tencentcloud:MpsContentReviewTemplate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Comment string
Content review template description information, length limit: 256 characters.
MpsContentReviewTemplateId string
ID of the resource.
Name string
Content review template name, length limit: 64 characters.
PoliticalConfigure MpsContentReviewTemplatePoliticalConfigure
Political control parameters.
PornConfigure MpsContentReviewTemplatePornConfigure
Control parameters for porn image.
ProhibitedConfigure MpsContentReviewTemplateProhibitedConfigure
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
TerrorismConfigure MpsContentReviewTemplateTerrorismConfigure
Control parameters for unsafe information.
UserDefineConfigure MpsContentReviewTemplateUserDefineConfigure
User-Defined Content Moderation Control Parameters.
Comment string
Content review template description information, length limit: 256 characters.
MpsContentReviewTemplateId string
ID of the resource.
Name string
Content review template name, length limit: 64 characters.
PoliticalConfigure MpsContentReviewTemplatePoliticalConfigureArgs
Political control parameters.
PornConfigure MpsContentReviewTemplatePornConfigureArgs
Control parameters for porn image.
ProhibitedConfigure MpsContentReviewTemplateProhibitedConfigureArgs
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
TerrorismConfigure MpsContentReviewTemplateTerrorismConfigureArgs
Control parameters for unsafe information.
UserDefineConfigure MpsContentReviewTemplateUserDefineConfigureArgs
User-Defined Content Moderation Control Parameters.
comment String
Content review template description information, length limit: 256 characters.
mpsContentReviewTemplateId String
ID of the resource.
name String
Content review template name, length limit: 64 characters.
politicalConfigure MpsContentReviewTemplatePoliticalConfigure
Political control parameters.
pornConfigure MpsContentReviewTemplatePornConfigure
Control parameters for porn image.
prohibitedConfigure MpsContentReviewTemplateProhibitedConfigure
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorismConfigure MpsContentReviewTemplateTerrorismConfigure
Control parameters for unsafe information.
userDefineConfigure MpsContentReviewTemplateUserDefineConfigure
User-Defined Content Moderation Control Parameters.
comment string
Content review template description information, length limit: 256 characters.
mpsContentReviewTemplateId string
ID of the resource.
name string
Content review template name, length limit: 64 characters.
politicalConfigure MpsContentReviewTemplatePoliticalConfigure
Political control parameters.
pornConfigure MpsContentReviewTemplatePornConfigure
Control parameters for porn image.
prohibitedConfigure MpsContentReviewTemplateProhibitedConfigure
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorismConfigure MpsContentReviewTemplateTerrorismConfigure
Control parameters for unsafe information.
userDefineConfigure MpsContentReviewTemplateUserDefineConfigure
User-Defined Content Moderation Control Parameters.
comment str
Content review template description information, length limit: 256 characters.
mps_content_review_template_id str
ID of the resource.
name str
Content review template name, length limit: 64 characters.
political_configure MpsContentReviewTemplatePoliticalConfigureArgs
Political control parameters.
porn_configure MpsContentReviewTemplatePornConfigureArgs
Control parameters for porn image.
prohibited_configure MpsContentReviewTemplateProhibitedConfigureArgs
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorism_configure MpsContentReviewTemplateTerrorismConfigureArgs
Control parameters for unsafe information.
user_define_configure MpsContentReviewTemplateUserDefineConfigureArgs
User-Defined Content Moderation Control Parameters.
comment String
Content review template description information, length limit: 256 characters.
mpsContentReviewTemplateId String
ID of the resource.
name String
Content review template name, length limit: 64 characters.
politicalConfigure Property Map
Political control parameters.
pornConfigure Property Map
Control parameters for porn image.
prohibitedConfigure Property Map
Prohibited control parameters. Prohibited content includes:abuse, drug-related violations.Note: this parameter is not yet supported.
terrorismConfigure Property Map
Control parameters for unsafe information.
userDefineConfigure Property Map
User-Defined Content Moderation Control Parameters.

Supporting Types

MpsContentReviewTemplatePoliticalConfigure
, MpsContentReviewTemplatePoliticalConfigureArgs

asrReviewInfo Property Map
Political asr control parameters.
imgReviewInfo Property Map
Political image control parameters.
ocrReviewInfo Property Map
Political ocr control parameters.

MpsContentReviewTemplatePoliticalConfigureAsrReviewInfo
, MpsContentReviewTemplatePoliticalConfigureAsrReviewInfoArgs

Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined asr review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplatePoliticalConfigureImgReviewInfo
, MpsContentReviewTemplatePoliticalConfigureImgReviewInfoArgs

Switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
LabelSets List<string>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
Switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
LabelSets []string
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch_ This property is required. String
Terrorism image task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets List<String>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets string[]
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. str
Terrorism image task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
label_sets Sequence[str]
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. String
Terrorism image task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets List<String>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.

MpsContentReviewTemplatePoliticalConfigureOcrReviewInfo
, MpsContentReviewTemplatePoliticalConfigureOcrReviewInfoArgs

Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined ocr text review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplatePornConfigure
, MpsContentReviewTemplatePornConfigureArgs

asrReviewInfo Property Map
Voice pornography control parameters.
imgReviewInfo Property Map
Porn image Identification Control Parameters.
ocrReviewInfo Property Map
Ocr pornography control parameters.

MpsContentReviewTemplatePornConfigureAsrReviewInfo
, MpsContentReviewTemplatePornConfigureAsrReviewInfoArgs

Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined asr review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplatePornConfigureImgReviewInfo
, MpsContentReviewTemplatePornConfigureImgReviewInfoArgs

Switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
LabelSets List<string>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
Switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
LabelSets []string
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch_ This property is required. String
Terrorism image task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets List<String>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets string[]
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. str
Terrorism image task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
label_sets Sequence[str]
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. String
Terrorism image task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets List<String>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.

MpsContentReviewTemplatePornConfigureOcrReviewInfo
, MpsContentReviewTemplatePornConfigureOcrReviewInfoArgs

Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined ocr text review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplateProhibitedConfigure
, MpsContentReviewTemplateProhibitedConfigureArgs

AsrReviewInfo MpsContentReviewTemplateProhibitedConfigureAsrReviewInfo
Voice Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
OcrReviewInfo MpsContentReviewTemplateProhibitedConfigureOcrReviewInfo
Ocr Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
AsrReviewInfo MpsContentReviewTemplateProhibitedConfigureAsrReviewInfo
Voice Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
OcrReviewInfo MpsContentReviewTemplateProhibitedConfigureOcrReviewInfo
Ocr Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
asrReviewInfo MpsContentReviewTemplateProhibitedConfigureAsrReviewInfo
Voice Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
ocrReviewInfo MpsContentReviewTemplateProhibitedConfigureOcrReviewInfo
Ocr Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
asrReviewInfo MpsContentReviewTemplateProhibitedConfigureAsrReviewInfo
Voice Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
ocrReviewInfo MpsContentReviewTemplateProhibitedConfigureOcrReviewInfo
Ocr Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
asr_review_info MpsContentReviewTemplateProhibitedConfigureAsrReviewInfo
Voice Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
ocr_review_info MpsContentReviewTemplateProhibitedConfigureOcrReviewInfo
Ocr Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
asrReviewInfo Property Map
Voice Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.
ocrReviewInfo Property Map
Ocr Prohibition Control Parameters.Note: This field may return null, indicating that no valid value can be obtained.

MpsContentReviewTemplateProhibitedConfigureAsrReviewInfo
, MpsContentReviewTemplateProhibitedConfigureAsrReviewInfoArgs

Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined asr review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplateProhibitedConfigureOcrReviewInfo
, MpsContentReviewTemplateProhibitedConfigureOcrReviewInfoArgs

Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined ocr text review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplateTerrorismConfigure
, MpsContentReviewTemplateTerrorismConfigureArgs

OcrReviewInfo This property is required. MpsContentReviewTemplateTerrorismConfigureOcrReviewInfo
Ocr terrorism task Control Parameters.
ImgReviewInfo MpsContentReviewTemplateTerrorismConfigureImgReviewInfo
Terrorism image task control parameters.
OcrReviewInfo This property is required. MpsContentReviewTemplateTerrorismConfigureOcrReviewInfo
Ocr terrorism task Control Parameters.
ImgReviewInfo MpsContentReviewTemplateTerrorismConfigureImgReviewInfo
Terrorism image task control parameters.
ocrReviewInfo This property is required. MpsContentReviewTemplateTerrorismConfigureOcrReviewInfo
Ocr terrorism task Control Parameters.
imgReviewInfo MpsContentReviewTemplateTerrorismConfigureImgReviewInfo
Terrorism image task control parameters.
ocrReviewInfo This property is required. MpsContentReviewTemplateTerrorismConfigureOcrReviewInfo
Ocr terrorism task Control Parameters.
imgReviewInfo MpsContentReviewTemplateTerrorismConfigureImgReviewInfo
Terrorism image task control parameters.
ocr_review_info This property is required. MpsContentReviewTemplateTerrorismConfigureOcrReviewInfo
Ocr terrorism task Control Parameters.
img_review_info MpsContentReviewTemplateTerrorismConfigureImgReviewInfo
Terrorism image task control parameters.
ocrReviewInfo This property is required. Property Map
Ocr terrorism task Control Parameters.
imgReviewInfo Property Map
Terrorism image task control parameters.

MpsContentReviewTemplateTerrorismConfigureImgReviewInfo
, MpsContentReviewTemplateTerrorismConfigureImgReviewInfoArgs

Switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
LabelSets List<string>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
Switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
LabelSets []string
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch_ This property is required. String
Terrorism image task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets List<String>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. string
Terrorism image task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets string[]
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. str
Terrorism image task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
label_sets Sequence[str]
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.
switch This property is required. String
Terrorism image task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 90 points. Value range: 0~100.
labelSets List<String>
Terrorism image filter tag, if the review result contains the selected tag, the result will be returned, if the filter tag is empty, all the review results will be returned, the optional value is:guns, crowd, bloody, police, banners, militant, explosion, terrorists, scenario.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 80 points. Value range: 0~100.

MpsContentReviewTemplateTerrorismConfigureOcrReviewInfo
, MpsContentReviewTemplateTerrorismConfigureOcrReviewInfoArgs

Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined ocr text review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplateUserDefineConfigure
, MpsContentReviewTemplateUserDefineConfigureArgs

AsrReviewInfo MpsContentReviewTemplateUserDefineConfigureAsrReviewInfo
User-defined asr text review control parameters.
FaceReviewInfo MpsContentReviewTemplateUserDefineConfigureFaceReviewInfo
User-defined face review control parameters.
OcrReviewInfo MpsContentReviewTemplateUserDefineConfigureOcrReviewInfo
User-defined ocr text review control parameters.
AsrReviewInfo MpsContentReviewTemplateUserDefineConfigureAsrReviewInfo
User-defined asr text review control parameters.
FaceReviewInfo MpsContentReviewTemplateUserDefineConfigureFaceReviewInfo
User-defined face review control parameters.
OcrReviewInfo MpsContentReviewTemplateUserDefineConfigureOcrReviewInfo
User-defined ocr text review control parameters.
asrReviewInfo MpsContentReviewTemplateUserDefineConfigureAsrReviewInfo
User-defined asr text review control parameters.
faceReviewInfo MpsContentReviewTemplateUserDefineConfigureFaceReviewInfo
User-defined face review control parameters.
ocrReviewInfo MpsContentReviewTemplateUserDefineConfigureOcrReviewInfo
User-defined ocr text review control parameters.
asrReviewInfo MpsContentReviewTemplateUserDefineConfigureAsrReviewInfo
User-defined asr text review control parameters.
faceReviewInfo MpsContentReviewTemplateUserDefineConfigureFaceReviewInfo
User-defined face review control parameters.
ocrReviewInfo MpsContentReviewTemplateUserDefineConfigureOcrReviewInfo
User-defined ocr text review control parameters.
asrReviewInfo Property Map
User-defined asr text review control parameters.
faceReviewInfo Property Map
User-defined face review control parameters.
ocrReviewInfo Property Map
User-defined ocr text review control parameters.

MpsContentReviewTemplateUserDefineConfigureAsrReviewInfo
, MpsContentReviewTemplateUserDefineConfigureAsrReviewInfoArgs

Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
LabelSets List<string>
User-defined asr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a asr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
LabelSets []string
User-defined asr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a asr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets List<String>
User-defined asr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a asr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets string[]
User-defined asr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a asr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined asr review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
label_sets Sequence[str]
User-defined asr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a asr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined asr review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets List<String>
User-defined asr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a asr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplateUserDefineConfigureFaceReviewInfo
, MpsContentReviewTemplateUserDefineConfigureFaceReviewInfoArgs

Switch This property is required. string
User-defined face review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
LabelSets List<string>
User-defined face review tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a face library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined face review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
LabelSets []string
User-defined face review tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a face library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined face review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets List<String>
User-defined face review tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a face library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined face review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets string[]
User-defined face review tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a face library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined face review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
label_sets Sequence[str]
User-defined face review tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a face library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined face review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets List<String>
User-defined face review tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a face library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

MpsContentReviewTemplateUserDefineConfigureOcrReviewInfo
, MpsContentReviewTemplateUserDefineConfigureOcrReviewInfoArgs

Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
LabelSets List<string>
User-defined ocr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a ocr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
ReviewConfidence double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
Switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
BlockConfidence float64
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
LabelSets []string
User-defined ocr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a ocr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
ReviewConfidence float64
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch_ This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Double
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets List<String>
User-defined ocr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a ocr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence Double
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. string
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets string[]
User-defined ocr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a ocr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. str
User-defined ocr text review task switch, optional value:ON/OFF.
block_confidence float
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
label_sets Sequence[str]
User-defined ocr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a ocr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
review_confidence float
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.
switch This property is required. String
User-defined ocr text review task switch, optional value:ON/OFF.
blockConfidence Number
The score threshold for judging suspected violations. When the smart review reaches the score above, it is considered suspected violations. If it is not filled, the default is 100 points. Value range: 0~100.
labelSets List<String>
User-defined ocr tags, the review result contains the selected tag and returns the result, if the filter tag is empty, all review results are returned. If you want to use the tag filtering function, when adding a ocr library, you need to add the corresponding character tag.The maximum number of tags is 10, and the length of each tag is up to 16 characters.
reviewConfidence Number
The score threshold for judging whether manual review is required for violations. When the intelligent review reaches the score above, it is considered that manual review is required. If it is not filled, the default is 75 points. Value range: 0~100.

Import

mps content_review_template can be imported using the id, e.g.

$ pulumi import tencentcloud:index/mpsContentReviewTemplate:MpsContentReviewTemplate content_review_template definition
Copy

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.