tencentcloud-sdk-nodejs-teo 4.1.275 → 4.1.278

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-teo",
3
- "version": "4.1.275",
3
+ "version": "4.1.278",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -9247,46 +9247,43 @@ export interface CreatePlanForZoneResponse {
9247
9247
  */
9248
9248
  export interface ClientAttester {
9249
9249
  /**
9250
- * 认证选项 ID
9250
+ * <p>认证选项 ID。</p>
9251
9251
  */
9252
9252
  Id?: string;
9253
9253
  /**
9254
- * 认证选项名称。
9254
+ * <p>认证选项名称。</p>
9255
9255
  */
9256
9256
  Name?: string;
9257
9257
  /**
9258
- * 认证规则类型。仅出参返回,取值有:
9259
- <li>PRESET: 系统预置规则,仅允许修改 AttesterDuration;</li>
9260
- <li>CUSTOM: 用户自定义规则。</li>
9258
+ * <p>认证规则类型。仅出参返回,取值有:</p><li>PRESET: 系统预置规则,仅允许修改 AttesterDuration;</li><li>CUSTOM: 用户自定义规则。</li>
9261
9259
  */
9262
9260
  Type?: string;
9263
9261
  /**
9264
- * 认证方法。取值有:
9265
- <li>TC-RCE: 使用风险识别 RCE 进行认证;</li>
9266
- <li>TC-CAPTCHA: 使用天御验证码进行认证;</li>
9267
- <li>TC-EO-CAPTCHA: 使用 EdgeOne 人机校验进行认证。</li>
9262
+ * <p>认证方法。取值有:</p><li>TC-RCE: 使用风险识别 RCE 进行认证;</li><li>TC-CAPTCHA: 使用天御验证码进行认证;</li><li>TC-EO-CAPTCHA: 使用 EdgeOne 人机校验进行认证。</li>
9268
9263
  */
9269
9264
  AttesterSource?: string;
9270
9265
  /**
9271
- * 认证有效时间。默认为 60s,支持的单位有:
9272
- <li>s:秒,取值范围 60~43200;</li>
9273
- <li>m:分,取值范围 1~720;</li>
9274
- <li>h:小时,取值范围 1~12。</li>
9266
+ * <p>认证有效时间。默认为 60s,支持的单位有:</p><li>s:秒,取值范围 60~43200;</li><li>m:分,取值范围 1~720;</li><li>h:小时,取值范围 1~12。</li>
9275
9267
  */
9276
9268
  AttesterDuration?: string;
9277
9269
  /**
9278
- * TC-RCE 认证的配置信息。
9279
- <li>当 AttesterSource 参数值为 TC-RCE 时,此字段必填。</li>
9270
+ * <p>是否开启认证结果使用限制。 </p><p>枚举值:</p><ul><li>on: 开启</li><li>off: 关闭</li></ul><p>默认值:off</p>
9271
+ */
9272
+ UsageLimit?: string;
9273
+ /**
9274
+ * <p>认证结果最大使用次数。当 UsageLimit 为 on 时,此字段必填。</p><p>取值范围:[1, 100000]</p>
9275
+ */
9276
+ MaxUsageCount?: number;
9277
+ /**
9278
+ * <p>TC-RCE 认证的配置信息。</p><li>当 AttesterSource 参数值为 TC-RCE 时,此字段必填。</li>
9280
9279
  */
9281
9280
  TCRCEOption?: TCRCEOption;
9282
9281
  /**
9283
- * TC-CAPTCHA 认证的配置信息。
9284
- <li>当 AttesterSource 参数值为 TC-CAPTCHA 时,此字段必填。</li>
9282
+ * <p>TC-CAPTCHA 认证的配置信息。</p><li>当 AttesterSource 参数值为 TC-CAPTCHA 时,此字段必填。</li>
9285
9283
  */
9286
9284
  TCCaptchaOption?: TCCaptchaOption;
9287
9285
  /**
9288
- * TC-EO-CAPTCHA 认证的配置信息。
9289
- <li>当 AttesterSource 参数值为 TC-EO-CAPTCHA 时,此字段必填。</li>
9286
+ * <p>TC-EO-CAPTCHA 认证的配置信息。</p><li>当 AttesterSource 参数值为 TC-EO-CAPTCHA 时,此字段必填。</li>
9290
9287
  */
9291
9288
  TCEOCaptchaOption?: TCEOCaptchaOption;
9292
9289
  }