tccli 3.0.1187.1__py2.py3-none-any.whl → 3.0.1188.1__py2.py3-none-any.whl
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.
- tccli/__init__.py +1 -1
- tccli/services/cvm/cvm_client.py +53 -0
- tccli/services/cvm/v20170312/api.json +107 -0
- tccli/services/cvm/v20170312/examples.json +8 -0
- tccli/services/dc/v20180410/api.json +19 -19
- tccli/services/dc/v20180410/examples.json +5 -5
- tccli/services/dcdb/v20180411/api.json +20 -2
- tccli/services/dlc/dlc_client.py +106 -0
- tccli/services/dlc/v20210125/api.json +87 -0
- tccli/services/dlc/v20210125/examples.json +16 -0
- tccli/services/dts/v20211206/api.json +1 -0
- tccli/services/emr/emr_client.py +53 -0
- tccli/services/emr/v20190103/api.json +261 -0
- tccli/services/emr/v20190103/examples.json +8 -0
- tccli/services/es/v20180416/api.json +101 -0
- tccli/services/ess/ess_client.py +53 -0
- tccli/services/ess/v20201111/api.json +147 -0
- tccli/services/ess/v20201111/examples.json +8 -0
- tccli/services/mariadb/v20170312/api.json +21 -3
- tccli/services/rce/v20201103/api.json +2 -2
- tccli/services/sms/v20190711/api.json +2 -2
- tccli/services/sms/v20210111/api.json +2 -2
- tccli/services/trtc/v20190722/api.json +11 -0
- tccli/services/tse/v20201207/api.json +18 -18
- tccli/services/vclm/v20240523/api.json +2 -2
- tccli/services/vpc/v20170312/api.json +1 -1
- tccli/services/vtc/v20240223/api.json +2 -2
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/RECORD +32 -32
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1187.1.dist-info → tccli-3.0.1188.1.dist-info}/license_files/LICENSE +0 -0
    
        tccli/services/ess/ess_client.py
    CHANGED
    
    | @@ -1317,6 +1317,58 @@ def doCreateUserAutoSignSealUrl(args, parsed_globals): | |
| 1317 1317 | 
             
                FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
         | 
| 1318 1318 |  | 
| 1319 1319 |  | 
| 1320 | 
            +
            def doDescribeOrganizationAuthStatus(args, parsed_globals):
         | 
| 1321 | 
            +
                g_param = parse_global_arg(parsed_globals)
         | 
| 1322 | 
            +
             | 
| 1323 | 
            +
                if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
         | 
| 1324 | 
            +
                    cred = credential.CVMRoleCredential()
         | 
| 1325 | 
            +
                elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
         | 
| 1326 | 
            +
                    cred = credential.STSAssumeRoleCredential(
         | 
| 1327 | 
            +
                        g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
         | 
| 1328 | 
            +
                        g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
         | 
| 1329 | 
            +
                    )
         | 
| 1330 | 
            +
                elif os.getenv(OptionsDefine.ENV_TKE_REGION)             and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID)             and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE)             and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
         | 
| 1331 | 
            +
                    cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
         | 
| 1332 | 
            +
                else:
         | 
| 1333 | 
            +
                    cred = credential.Credential(
         | 
| 1334 | 
            +
                        g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
         | 
| 1335 | 
            +
                    )
         | 
| 1336 | 
            +
                http_profile = HttpProfile(
         | 
| 1337 | 
            +
                    reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
         | 
| 1338 | 
            +
                    reqMethod="POST",
         | 
| 1339 | 
            +
                    endpoint=g_param[OptionsDefine.Endpoint],
         | 
| 1340 | 
            +
                    proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
         | 
| 1341 | 
            +
                )
         | 
| 1342 | 
            +
                profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
         | 
| 1343 | 
            +
                if g_param[OptionsDefine.Language]:
         | 
| 1344 | 
            +
                    profile.language = g_param[OptionsDefine.Language]
         | 
| 1345 | 
            +
                mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
         | 
| 1346 | 
            +
                client = mod.EssClient(cred, g_param[OptionsDefine.Region], profile)
         | 
| 1347 | 
            +
                client._sdkVersion += ("_CLI_" + __version__)
         | 
| 1348 | 
            +
                models = MODELS_MAP[g_param[OptionsDefine.Version]]
         | 
| 1349 | 
            +
                model = models.DescribeOrganizationAuthStatusRequest()
         | 
| 1350 | 
            +
                model.from_json_string(json.dumps(args))
         | 
| 1351 | 
            +
                start_time = time.time()
         | 
| 1352 | 
            +
                while True:
         | 
| 1353 | 
            +
                    rsp = client.DescribeOrganizationAuthStatus(model)
         | 
| 1354 | 
            +
                    result = rsp.to_json_string()
         | 
| 1355 | 
            +
                    try:
         | 
| 1356 | 
            +
                        json_obj = json.loads(result)
         | 
| 1357 | 
            +
                    except TypeError as e:
         | 
| 1358 | 
            +
                        json_obj = json.loads(result.decode('utf-8'))  # python3.3
         | 
| 1359 | 
            +
                    if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
         | 
| 1360 | 
            +
                        break
         | 
| 1361 | 
            +
                    cur_time = time.time()
         | 
| 1362 | 
            +
                    if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
         | 
| 1363 | 
            +
                        raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
         | 
| 1364 | 
            +
                        (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
         | 
| 1365 | 
            +
                        search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
         | 
| 1366 | 
            +
                    else:
         | 
| 1367 | 
            +
                        print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
         | 
| 1368 | 
            +
                    time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
         | 
| 1369 | 
            +
                FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
         | 
| 1370 | 
            +
             | 
| 1371 | 
            +
             | 
| 1320 1372 | 
             
            def doRenewAutoSignLicense(args, parsed_globals):
         | 
| 1321 1373 | 
             
                g_param = parse_global_arg(parsed_globals)
         | 
| 1322 1374 |  | 
| @@ -4733,6 +4785,7 @@ ACTION_MAP = { | |
| 4733 4785 | 
             
                "DescribeFlowEvidenceReport": doDescribeFlowEvidenceReport,
         | 
| 4734 4786 | 
             
                "DeleteIntegrationEmployees": doDeleteIntegrationEmployees,
         | 
| 4735 4787 | 
             
                "CreateUserAutoSignSealUrl": doCreateUserAutoSignSealUrl,
         | 
| 4788 | 
            +
                "DescribeOrganizationAuthStatus": doDescribeOrganizationAuthStatus,
         | 
| 4736 4789 | 
             
                "RenewAutoSignLicense": doRenewAutoSignLicense,
         | 
| 4737 4790 | 
             
                "VerifyPdf": doVerifyPdf,
         | 
| 4738 4791 | 
             
                "BindEmployeeUserIdWithClientOpenId": doBindEmployeeUserIdWithClientOpenId,
         | 
| @@ -490,6 +490,13 @@ | |
| 490 490 | 
             
                  "output": "DescribeIntegrationRolesResponse",
         | 
| 491 491 | 
             
                  "status": "online"
         | 
| 492 492 | 
             
                },
         | 
| 493 | 
            +
                "DescribeOrganizationAuthStatus": {
         | 
| 494 | 
            +
                  "document": "查询企业认证状态",
         | 
| 495 | 
            +
                  "input": "DescribeOrganizationAuthStatusRequest",
         | 
| 496 | 
            +
                  "name": "查询企业认证状态",
         | 
| 497 | 
            +
                  "output": "DescribeOrganizationAuthStatusResponse",
         | 
| 498 | 
            +
                  "status": "online"
         | 
| 499 | 
            +
                },
         | 
| 493 500 | 
             
                "DescribeOrganizationGroupOrganizations": {
         | 
| 494 501 | 
             
                  "document": "此API接口用来查询加入集团的成员企业信息\n适用场景:子企业在加入集团后,主企业可能通过此接口获取到所有的子企业列表,方便进行展示和统计",
         | 
| 495 502 | 
             
                  "input": "DescribeOrganizationGroupOrganizationsRequest",
         | 
| @@ -1148,6 +1155,52 @@ | |
| 1148 1155 | 
             
                  ],
         | 
| 1149 1156 | 
             
                  "usage": "both"
         | 
| 1150 1157 | 
             
                },
         | 
| 1158 | 
            +
                "AuthRecord": {
         | 
| 1159 | 
            +
                  "document": "企业认证信息",
         | 
| 1160 | 
            +
                  "members": [
         | 
| 1161 | 
            +
                    {
         | 
| 1162 | 
            +
                      "disabled": false,
         | 
| 1163 | 
            +
                      "document": "经办人姓名。",
         | 
| 1164 | 
            +
                      "example": "典*谦",
         | 
| 1165 | 
            +
                      "member": "string",
         | 
| 1166 | 
            +
                      "name": "OperatorName",
         | 
| 1167 | 
            +
                      "output_required": false,
         | 
| 1168 | 
            +
                      "type": "string",
         | 
| 1169 | 
            +
                      "value_allowed_null": false
         | 
| 1170 | 
            +
                    },
         | 
| 1171 | 
            +
                    {
         | 
| 1172 | 
            +
                      "disabled": false,
         | 
| 1173 | 
            +
                      "document": "经办人手机号。",
         | 
| 1174 | 
            +
                      "example": "132****0000",
         | 
| 1175 | 
            +
                      "member": "string",
         | 
| 1176 | 
            +
                      "name": "OperatorMobile",
         | 
| 1177 | 
            +
                      "output_required": false,
         | 
| 1178 | 
            +
                      "type": "string",
         | 
| 1179 | 
            +
                      "value_allowed_null": false
         | 
| 1180 | 
            +
                    },
         | 
| 1181 | 
            +
                    {
         | 
| 1182 | 
            +
                      "disabled": false,
         | 
| 1183 | 
            +
                      "document": "认证授权方式:\n<ul><li> **0**:未选择授权方式(默认值)</li>\n<li> **1**:上传授权书</li>\n<li> **2**:法人授权</li>\n<li> **3**:法人认证</li></ul>",
         | 
| 1184 | 
            +
                      "example": "1",
         | 
| 1185 | 
            +
                      "member": "int64",
         | 
| 1186 | 
            +
                      "name": "AuthType",
         | 
| 1187 | 
            +
                      "output_required": false,
         | 
| 1188 | 
            +
                      "type": "int",
         | 
| 1189 | 
            +
                      "value_allowed_null": false
         | 
| 1190 | 
            +
                    },
         | 
| 1191 | 
            +
                    {
         | 
| 1192 | 
            +
                      "disabled": false,
         | 
| 1193 | 
            +
                      "document": "企业认证授权书审核状态:\n<ul><li> **0**:未提交授权书(默认值)</li>\n<li> **1**:审核通过</li>\n<li> **2**:审核驳回</li>\n<li> **3**:审核中</li>\n<li> **4**:AI识别中</li>\n<li> **5**:客户确认AI信息</li></ul>",
         | 
| 1194 | 
            +
                      "example": "1",
         | 
| 1195 | 
            +
                      "member": "int64",
         | 
| 1196 | 
            +
                      "name": "AuditStatus",
         | 
| 1197 | 
            +
                      "output_required": false,
         | 
| 1198 | 
            +
                      "type": "int",
         | 
| 1199 | 
            +
                      "value_allowed_null": false
         | 
| 1200 | 
            +
                    }
         | 
| 1201 | 
            +
                  ],
         | 
| 1202 | 
            +
                  "usage": "out"
         | 
| 1203 | 
            +
                },
         | 
| 1151 1204 | 
             
                "AuthorizedUser": {
         | 
| 1152 1205 | 
             
                  "document": "授权用户",
         | 
| 1153 1206 | 
             
                  "members": [
         | 
| @@ -8782,6 +8835,100 @@ | |
| 8782 8835 | 
             
                  ],
         | 
| 8783 8836 | 
             
                  "type": "object"
         | 
| 8784 8837 | 
             
                },
         | 
| 8838 | 
            +
                "DescribeOrganizationAuthStatusRequest": {
         | 
| 8839 | 
            +
                  "document": "DescribeOrganizationAuthStatus请求参数结构体",
         | 
| 8840 | 
            +
                  "members": [
         | 
| 8841 | 
            +
                    {
         | 
| 8842 | 
            +
                      "disabled": false,
         | 
| 8843 | 
            +
                      "document": "执行本接口操作的员工信息。使用此接口时,必须填写userId。 支持填入集团子公司经办人 userId 代发合同。  注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`",
         | 
| 8844 | 
            +
                      "example": "无",
         | 
| 8845 | 
            +
                      "member": "UserInfo",
         | 
| 8846 | 
            +
                      "name": "Operator",
         | 
| 8847 | 
            +
                      "required": true,
         | 
| 8848 | 
            +
                      "type": "object"
         | 
| 8849 | 
            +
                    },
         | 
| 8850 | 
            +
                    {
         | 
| 8851 | 
            +
                      "disabled": false,
         | 
| 8852 | 
            +
                      "document": "组织机构名称。 请确认该名称与企业营业执照中注册的名称一致。 如果名称中包含英文括号(),请使用中文括号()代替。",
         | 
| 8853 | 
            +
                      "example": "无",
         | 
| 8854 | 
            +
                      "member": "string",
         | 
| 8855 | 
            +
                      "name": "OrganizationName",
         | 
| 8856 | 
            +
                      "required": false,
         | 
| 8857 | 
            +
                      "type": "string"
         | 
| 8858 | 
            +
                    },
         | 
| 8859 | 
            +
                    {
         | 
| 8860 | 
            +
                      "disabled": false,
         | 
| 8861 | 
            +
                      "document": "企业统一社会信用代码\n注意:OrganizationName和UniformSocialCreditCode不能同时为空",
         | 
| 8862 | 
            +
                      "example": "无",
         | 
| 8863 | 
            +
                      "member": "string",
         | 
| 8864 | 
            +
                      "name": "UniformSocialCreditCode",
         | 
| 8865 | 
            +
                      "required": false,
         | 
| 8866 | 
            +
                      "type": "string"
         | 
| 8867 | 
            +
                    },
         | 
| 8868 | 
            +
                    {
         | 
| 8869 | 
            +
                      "disabled": false,
         | 
| 8870 | 
            +
                      "document": "法人姓名",
         | 
| 8871 | 
            +
                      "example": "无",
         | 
| 8872 | 
            +
                      "member": "string",
         | 
| 8873 | 
            +
                      "name": "LegalName",
         | 
| 8874 | 
            +
                      "required": false,
         | 
| 8875 | 
            +
                      "type": "string"
         | 
| 8876 | 
            +
                    }
         | 
| 8877 | 
            +
                  ],
         | 
| 8878 | 
            +
                  "type": "object"
         | 
| 8879 | 
            +
                },
         | 
| 8880 | 
            +
                "DescribeOrganizationAuthStatusResponse": {
         | 
| 8881 | 
            +
                  "document": "DescribeOrganizationAuthStatus返回参数结构体",
         | 
| 8882 | 
            +
                  "members": [
         | 
| 8883 | 
            +
                    {
         | 
| 8884 | 
            +
                      "disabled": false,
         | 
| 8885 | 
            +
                      "document": "企业是否已认证",
         | 
| 8886 | 
            +
                      "example": "无",
         | 
| 8887 | 
            +
                      "member": "bool",
         | 
| 8888 | 
            +
                      "name": "IsVerified",
         | 
| 8889 | 
            +
                      "output_required": true,
         | 
| 8890 | 
            +
                      "type": "bool",
         | 
| 8891 | 
            +
                      "value_allowed_null": false
         | 
| 8892 | 
            +
                    },
         | 
| 8893 | 
            +
                    {
         | 
| 8894 | 
            +
                      "disabled": false,
         | 
| 8895 | 
            +
                      "document": "企业认证状态 0-未认证 1-认证中 2-已认证",
         | 
| 8896 | 
            +
                      "example": "无",
         | 
| 8897 | 
            +
                      "member": "int64",
         | 
| 8898 | 
            +
                      "name": "AuthStatus",
         | 
| 8899 | 
            +
                      "output_required": true,
         | 
| 8900 | 
            +
                      "type": "int",
         | 
| 8901 | 
            +
                      "value_allowed_null": false
         | 
| 8902 | 
            +
                    },
         | 
| 8903 | 
            +
                    {
         | 
| 8904 | 
            +
                      "disabled": false,
         | 
| 8905 | 
            +
                      "document": "企业认证信息",
         | 
| 8906 | 
            +
                      "example": "无",
         | 
| 8907 | 
            +
                      "member": "AuthRecord",
         | 
| 8908 | 
            +
                      "name": "AuthRecords",
         | 
| 8909 | 
            +
                      "output_required": false,
         | 
| 8910 | 
            +
                      "type": "list",
         | 
| 8911 | 
            +
                      "value_allowed_null": false
         | 
| 8912 | 
            +
                    },
         | 
| 8913 | 
            +
                    {
         | 
| 8914 | 
            +
                      "disabled": false,
         | 
| 8915 | 
            +
                      "document": "企业在腾讯电子签平台的唯一身份标识,为32位字符串。\n可登录腾讯电子签控制台,在 \"更多\"->\"企业设置\"->\"企业中心\"- 中查看企业电子签账号。\np.s. 只有当前企业认证成功的时候返回",
         | 
| 8916 | 
            +
                      "example": "无",
         | 
| 8917 | 
            +
                      "member": "string",
         | 
| 8918 | 
            +
                      "name": "OrganizationId",
         | 
| 8919 | 
            +
                      "output_required": false,
         | 
| 8920 | 
            +
                      "type": "string",
         | 
| 8921 | 
            +
                      "value_allowed_null": false
         | 
| 8922 | 
            +
                    },
         | 
| 8923 | 
            +
                    {
         | 
| 8924 | 
            +
                      "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
         | 
| 8925 | 
            +
                      "member": "string",
         | 
| 8926 | 
            +
                      "name": "RequestId",
         | 
| 8927 | 
            +
                      "type": "string"
         | 
| 8928 | 
            +
                    }
         | 
| 8929 | 
            +
                  ],
         | 
| 8930 | 
            +
                  "type": "object"
         | 
| 8931 | 
            +
                },
         | 
| 8785 8932 | 
             
                "DescribeOrganizationGroupOrganizationsRequest": {
         | 
| 8786 8933 | 
             
                  "document": "DescribeOrganizationGroupOrganizations请求参数结构体",
         | 
| 8787 8934 | 
             
                  "members": [
         | 
| @@ -1436,6 +1436,14 @@ | |
| 1436 1436 | 
             
                    "title": "示例-查询企业角色列表(返回角色对应的权限树)"
         | 
| 1437 1437 | 
             
                  }
         | 
| 1438 1438 | 
             
                ],
         | 
| 1439 | 
            +
                "DescribeOrganizationAuthStatus": [
         | 
| 1440 | 
            +
                  {
         | 
| 1441 | 
            +
                    "document": "查询企业认证状态",
         | 
| 1442 | 
            +
                    "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeOrganizationAuthStatus\n<公共请求参数>\n\n{\n    \"Operator\": {\n        \"UserId\": \"xxxxxx\"\n    },\n    \"UniformSocialCreditCode\": \"\",\n    \"LegalName\": \"\",\n    \"OrganizationName\": \"测试企业\"\n}",
         | 
| 1443 | 
            +
                    "output": "{\n    \"Response\": {\n        \"AuthRecords\": [\n            {\n                \"AuditStatus\": 0,\n                \"AuthType\": 3,\n                \"OperatorMobile\": \"132****0000\",\n                \"OperatorName\": \"典*谦\"\n            }\n        ],\n        \"AuthStatus\": 2,\n        \"IsVerified\": true,\n        \"RequestId\": \"s1687254031099376002\"\n    }\n}",
         | 
| 1444 | 
            +
                    "title": "查询企业认证状态"
         | 
| 1445 | 
            +
                  }
         | 
| 1446 | 
            +
                ],
         | 
| 1439 1447 | 
             
                "DescribeOrganizationGroupOrganizations": [
         | 
| 1440 1448 | 
             
                  {
         | 
| 1441 1449 | 
             
                    "document": "查询集团下所有成员企业",
         | 
| @@ -994,12 +994,12 @@ | |
| 994 994 | 
             
                      "example": "1234qweri#",
         | 
| 995 995 | 
             
                      "member": "string",
         | 
| 996 996 | 
             
                      "name": "Password",
         | 
| 997 | 
            -
                      "required":  | 
| 997 | 
            +
                      "required": false,
         | 
| 998 998 | 
             
                      "type": "string"
         | 
| 999 999 | 
             
                    },
         | 
| 1000 1000 | 
             
                    {
         | 
| 1001 1001 | 
             
                      "disabled": false,
         | 
| 1002 | 
            -
                      "document": "是否创建为只读账号,0 | 
| 1002 | 
            +
                      "document": "是否创建为只读账号,0:否; 1:只读账号,该账号的sql请求优先选择备机执行,备机延迟时选择主机执行;2:只读账号,优先选择备机执行,备机延迟时操作报错;3:只读账号,优先选择备机执行,忽略备机延迟只读备机;",
         | 
| 1003 1003 | 
             
                      "example": "0",
         | 
| 1004 1004 | 
             
                      "member": "int64",
         | 
| 1005 1005 | 
             
                      "name": "ReadOnly",
         | 
| @@ -1041,6 +1041,15 @@ | |
| 1041 1041 | 
             
                      "name": "MaxUserConnections",
         | 
| 1042 1042 | 
             
                      "required": false,
         | 
| 1043 1043 | 
             
                      "type": "int"
         | 
| 1044 | 
            +
                    },
         | 
| 1045 | 
            +
                    {
         | 
| 1046 | 
            +
                      "disabled": false,
         | 
| 1047 | 
            +
                      "document": "使用GetPublicKey返回的RSA2048公钥加密后的密码",
         | 
| 1048 | 
            +
                      "example": "+5DzNPbJ5s6e/SkAFgMKQ4ezgmIyKqwHR/TtkwCQP5oFzYTpXJC6iEYVkAmlbreL8XX2I/YdNsqfy184B5sKt7LcfcvTCDspbQrDlRawvcWU0lLxvSpBgL4zXlixxOIR5UmC6lvSJFHOdMzoeK2UKGuV2EG3BMuvVthHAKaFDEQh5C5UP5FsN8G+Zsf27tofNm6KRFrQksNcYvFqMEnnGWV4luXISbJI0yK0m6kyKJSAgtHtDvsGBbJ1fA3RO1p5K/usvARNPB1jzjK5TJtG5eFDsPLXDHwiHh8clQpSLhYj531Ba1uXi9yL1Zkhoc0lf4y2xoJU3N+ce+6IAfJiaw==",
         | 
| 1049 | 
            +
                      "member": "string",
         | 
| 1050 | 
            +
                      "name": "EncryptedPassword",
         | 
| 1051 | 
            +
                      "required": false,
         | 
| 1052 | 
            +
                      "type": "string"
         | 
| 1044 1053 | 
             
                    }
         | 
| 1045 1054 | 
             
                  ],
         | 
| 1046 1055 | 
             
                  "type": "object"
         | 
| @@ -7646,7 +7655,16 @@ | |
| 7646 7655 | 
             
                      "example": "abcd8765_.",
         | 
| 7647 7656 | 
             
                      "member": "string",
         | 
| 7648 7657 | 
             
                      "name": "Password",
         | 
| 7649 | 
            -
                      "required":  | 
| 7658 | 
            +
                      "required": false,
         | 
| 7659 | 
            +
                      "type": "string"
         | 
| 7660 | 
            +
                    },
         | 
| 7661 | 
            +
                    {
         | 
| 7662 | 
            +
                      "disabled": false,
         | 
| 7663 | 
            +
                      "document": "使用GetPublicKey返回的RSA2048公钥加密后的密码",
         | 
| 7664 | 
            +
                      "example": "+5DzNPbJ5s6e/SkAFgMKQ4ezgmIyKqwHR/TtkwCQP5oFzYTpXJC6iEYVkAmlbreL8XX2I/YdNsqfy184B5sKt7LcfcvTCDspbQrDlRawvcWU0lLxvSpBgL4zXlixxOIR5UmC6lvSJFHOdMzoeK2UKGuV2EG3BMuvVthHAKaFDEQh5C5UP5FsN8G+Zsf27tofNm6KRFrQksNcYvFqMEnnGWV4luXISbJI0yK0m6kyKJSAgtHtDvsGBbJ1fA3RO1p5K/usvARNPB1jzjK5TJtG5eFDsPLXDHwiHh8clQpSLhYj531Ba1uXi9yL1Zkhoc0lf4y2xoJU3N+ce+6IAfJiaw==",
         | 
| 7665 | 
            +
                      "member": "string",
         | 
| 7666 | 
            +
                      "name": "EncryptedPassword",
         | 
| 7667 | 
            +
                      "required": false,
         | 
| 7650 7668 | 
             
                      "type": "string"
         | 
| 7651 7669 | 
             
                    }
         | 
| 7652 7670 | 
             
                  ],
         | 
| @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            {
         | 
| 2 2 | 
             
              "actions": {
         | 
| 3 3 | 
             
                "CreateNameList": {
         | 
| 4 | 
            -
                  "document": " | 
| 4 | 
            +
                  "document": "创建黑白名单,黑白名单数量上限为100",
         | 
| 5 5 | 
             
                  "input": "CreateNameListRequest",
         | 
| 6 6 | 
             
                  "name": "创建黑白名单",
         | 
| 7 7 | 
             
                  "output": "CreateNameListResponse",
         | 
| @@ -43,7 +43,7 @@ | |
| 43 43 | 
             
                  "status": "online"
         | 
| 44 44 | 
             
                },
         | 
| 45 45 | 
             
                "ImportNameListData": {
         | 
| 46 | 
            -
                  "document": " | 
| 46 | 
            +
                  "document": "新增黑白名单数据,所有黑白名单数据总量上限为10000",
         | 
| 47 47 | 
             
                  "input": "ImportNameListDataRequest",
         | 
| 48 48 | 
             
                  "name": "添加黑白名单数据",
         | 
| 49 49 | 
             
                  "output": "ImportNameListDataResponse",
         | 
| @@ -269,7 +269,7 @@ | |
| 269 269 | 
             
                    },
         | 
| 270 270 | 
             
                    {
         | 
| 271 271 | 
             
                      "disabled": false,
         | 
| 272 | 
            -
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n | 
| 272 | 
            +
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。",
         | 
| 273 273 | 
             
                      "example": "3",
         | 
| 274 274 | 
             
                      "member": "uint64",
         | 
| 275 275 | 
             
                      "name": "SmsType",
         | 
| @@ -1023,7 +1023,7 @@ | |
| 1023 1023 | 
             
                    },
         | 
| 1024 1024 | 
             
                    {
         | 
| 1025 1025 | 
             
                      "disabled": false,
         | 
| 1026 | 
            -
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n | 
| 1026 | 
            +
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。",
         | 
| 1027 1027 | 
             
                      "example": "3",
         | 
| 1028 1028 | 
             
                      "member": "uint64",
         | 
| 1029 1029 | 
             
                      "name": "SmsType",
         | 
| @@ -273,7 +273,7 @@ | |
| 273 273 | 
             
                    },
         | 
| 274 274 | 
             
                    {
         | 
| 275 275 | 
             
                      "disabled": false,
         | 
| 276 | 
            -
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n | 
| 276 | 
            +
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。",
         | 
| 277 277 | 
             
                      "example": "3",
         | 
| 278 278 | 
             
                      "member": "uint64",
         | 
| 279 279 | 
             
                      "name": "SmsType",
         | 
| @@ -1082,7 +1082,7 @@ | |
| 1082 1082 | 
             
                    },
         | 
| 1083 1083 | 
             
                    {
         | 
| 1084 1084 | 
             
                      "disabled": false,
         | 
| 1085 | 
            -
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n | 
| 1085 | 
            +
                      "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n注:为进一步提升短信发送质量、提高短信模板审核通过率,从2024年5月16日起,腾讯云短信模板类型优化为“验证码短信”、“通知短信”、“营销短信”,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。新开通短信服务的客户需严格参考新的短信类型申请短信模板。",
         | 
| 1086 1086 | 
             
                      "example": "3",
         | 
| 1087 1087 | 
             
                      "member": "uint64",
         | 
| 1088 1088 | 
             
                      "name": "SmsType",
         | 
| @@ -5350,6 +5350,17 @@ | |
| 5350 5350 | 
             
                      "required": false,
         | 
| 5351 5351 | 
             
                      "type": "list",
         | 
| 5352 5352 | 
             
                      "value_allowed_null": true
         | 
| 5353 | 
            +
                    },
         | 
| 5354 | 
            +
                    {
         | 
| 5355 | 
            +
                      "disabled": false,
         | 
| 5356 | 
            +
                      "document": "语音识别vad的时间,范围为240-2000,默认为1000,单位为ms。更小的值会让语音识别分句更快。\n注意:此字段可能返回 null,表示取不到有效值。",
         | 
| 5357 | 
            +
                      "example": "无",
         | 
| 5358 | 
            +
                      "member": "uint64",
         | 
| 5359 | 
            +
                      "name": "VadSilenceTime",
         | 
| 5360 | 
            +
                      "output_required": false,
         | 
| 5361 | 
            +
                      "required": false,
         | 
| 5362 | 
            +
                      "type": "int",
         | 
| 5363 | 
            +
                      "value_allowed_null": true
         | 
| 5353 5364 | 
             
                    }
         | 
| 5354 5365 | 
             
                  ],
         | 
| 5355 5366 | 
             
                  "usage": "both"
         | 
| @@ -4282,15 +4282,6 @@ | |
| 4282 4282 | 
             
                      "required": true,
         | 
| 4283 4283 | 
             
                      "type": "string"
         | 
| 4284 4284 | 
             
                    },
         | 
| 4285 | 
            -
                    {
         | 
| 4286 | 
            -
                      "disabled": false,
         | 
| 4287 | 
            -
                      "document": "请求路径",
         | 
| 4288 | 
            -
                      "example": "/",
         | 
| 4289 | 
            -
                      "member": "string",
         | 
| 4290 | 
            -
                      "name": "Path",
         | 
| 4291 | 
            -
                      "required": true,
         | 
| 4292 | 
            -
                      "type": "string"
         | 
| 4293 | 
            -
                    },
         | 
| 4294 4285 | 
             
                    {
         | 
| 4295 4286 | 
             
                      "disabled": false,
         | 
| 4296 4287 | 
             
                      "document": "超时时间,单位ms",
         | 
| @@ -4326,6 +4317,15 @@ | |
| 4326 4317 | 
             
                      "name": "UpstreamInfo",
         | 
| 4327 4318 | 
             
                      "required": true,
         | 
| 4328 4319 | 
             
                      "type": "object"
         | 
| 4320 | 
            +
                    },
         | 
| 4321 | 
            +
                    {
         | 
| 4322 | 
            +
                      "disabled": false,
         | 
| 4323 | 
            +
                      "document": "请求路径",
         | 
| 4324 | 
            +
                      "example": "/",
         | 
| 4325 | 
            +
                      "member": "string",
         | 
| 4326 | 
            +
                      "name": "Path",
         | 
| 4327 | 
            +
                      "required": false,
         | 
| 4328 | 
            +
                      "type": "string"
         | 
| 4329 4329 | 
             
                    }
         | 
| 4330 4330 | 
             
                  ],
         | 
| 4331 4331 | 
             
                  "type": "object"
         | 
| @@ -13505,15 +13505,6 @@ | |
| 13505 13505 | 
             
                      "required": true,
         | 
| 13506 13506 | 
             
                      "type": "string"
         | 
| 13507 13507 | 
             
                    },
         | 
| 13508 | 
            -
                    {
         | 
| 13509 | 
            -
                      "disabled": false,
         | 
| 13510 | 
            -
                      "document": "请求路径",
         | 
| 13511 | 
            -
                      "example": "/",
         | 
| 13512 | 
            -
                      "member": "string",
         | 
| 13513 | 
            -
                      "name": "Path",
         | 
| 13514 | 
            -
                      "required": true,
         | 
| 13515 | 
            -
                      "type": "string"
         | 
| 13516 | 
            -
                    },
         | 
| 13517 13508 | 
             
                    {
         | 
| 13518 13509 | 
             
                      "disabled": false,
         | 
| 13519 13510 | 
             
                      "document": "超时时间,单位ms",
         | 
| @@ -13558,6 +13549,15 @@ | |
| 13558 13549 | 
             
                      "name": "ID",
         | 
| 13559 13550 | 
             
                      "required": true,
         | 
| 13560 13551 | 
             
                      "type": "string"
         | 
| 13552 | 
            +
                    },
         | 
| 13553 | 
            +
                    {
         | 
| 13554 | 
            +
                      "disabled": false,
         | 
| 13555 | 
            +
                      "document": "请求路径",
         | 
| 13556 | 
            +
                      "example": "/",
         | 
| 13557 | 
            +
                      "member": "string",
         | 
| 13558 | 
            +
                      "name": "Path",
         | 
| 13559 | 
            +
                      "required": false,
         | 
| 13560 | 
            +
                      "type": "string"
         | 
| 13561 13561 | 
             
                    }
         | 
| 13562 13562 | 
             
                  ],
         | 
| 13563 13563 | 
             
                  "type": "object"
         | 
| @@ -811,8 +811,8 @@ | |
| 811 811 | 
             
                  "members": [
         | 
| 812 812 | 
             
                    {
         | 
| 813 813 | 
             
                      "disabled": false,
         | 
| 814 | 
            -
                      "document": " | 
| 815 | 
            -
                      "example": " | 
| 814 | 
            +
                      "document": "视频转译任务的Job id",
         | 
| 815 | 
            +
                      "example": "vlSYvQkMM0KwPuoakawm0tPrREwc2p7c",
         | 
| 816 816 | 
             
                      "member": "string",
         | 
| 817 817 | 
             
                      "name": "JobId",
         | 
| 818 818 | 
             
                      "output_required": false,
         | 
| @@ -85,7 +85,7 @@ | |
| 85 85 | 
             
                  "status": "online"
         | 
| 86 86 | 
             
                },
         | 
| 87 87 | 
             
                "AssociateAddress": {
         | 
| 88 | 
            -
                  "document": "本接口 (AssociateAddress) 用于将[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)绑定到实例或弹性网卡的指定内网 IP 上。\n* 将 EIP 绑定到实例(CVM)上,其本质是将 EIP 绑定到实例上主网卡的主内网 IP 上。\n* 将 EIP 绑定到主网卡的主内网IP | 
| 88 | 
            +
                  "document": "本接口 (AssociateAddress) 用于将[弹性公网IP](https://cloud.tencent.com/document/product/213/1941)(简称 EIP)绑定到实例或弹性网卡的指定内网 IP 上。\n* 将 EIP 绑定到实例(CVM)上,其本质是将 EIP 绑定到实例上主网卡的主内网 IP 上。\n* 将 EIP 绑定到主网卡的主内网IP时,如主内网IP已绑定普通公网IP,必须先退还才能绑定EIP。\n* 将 EIP 绑定到指定网卡的内网 IP上(非主网卡的主内网IP),则必须先解绑该 EIP,才能再绑定新的。\n* 将 EIP 绑定到内网型CLB实例的功能处于内测阶段,如需使用,请提交[内测申请](https://cloud.tencent.com/apply/p/4kxj7picqci)。\n* 将 EIP 绑定到NAT网关,请使用接口[AssociateNatGatewayAddress](https://cloud.tencent.com/document/product/215/36722)\n* EIP 如果欠费或被封堵,则不能被绑定。\n* 只有状态为 UNBIND 的 EIP 才能够被绑定。",
         | 
| 89 89 | 
             
                  "input": "AssociateAddressRequest",
         | 
| 90 90 | 
             
                  "name": "绑定弹性公网IP",
         | 
| 91 91 | 
             
                  "output": "AssociateAddressResponse",
         | 
| @@ -406,8 +406,8 @@ | |
| 406 406 | 
             
                  "members": [
         | 
| 407 407 | 
             
                    {
         | 
| 408 408 | 
             
                      "disabled": false,
         | 
| 409 | 
            -
                      "document": " | 
| 410 | 
            -
                      "example": " | 
| 409 | 
            +
                      "document": "视频转译任务的Job id",
         | 
| 410 | 
            +
                      "example": "vlSYvQkMM0KwPuoakawm0tPrREwc2p7c",
         | 
| 411 411 | 
             
                      "member": "string",
         | 
| 412 412 | 
             
                      "name": "JobId",
         | 
| 413 413 | 
             
                      "output_required": false,
         | 
| @@ -1,6 +1,6 @@ | |
| 1 1 | 
             
            Metadata-Version: 2.1
         | 
| 2 2 | 
             
            Name: tccli
         | 
| 3 | 
            -
            Version: 3.0. | 
| 3 | 
            +
            Version: 3.0.1188.1
         | 
| 4 4 | 
             
            Summary: Universal Command Line Environment for Tencent Cloud
         | 
| 5 5 | 
             
            Project-URL: Bug Tracker, https://github.com/TencentCloud/tencentcloud-cli/issues
         | 
| 6 6 | 
             
            Project-URL: Homepage, https://github.com/TencentCloud/tencentcloud-cli
         | 
| @@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 2.7 | |
| 13 13 | 
             
            Classifier: Programming Language :: Python :: 3
         | 
| 14 14 | 
             
            Requires-Dist: jmespath==0.10.0
         | 
| 15 15 | 
             
            Requires-Dist: six==1.16.0
         | 
| 16 | 
            -
            Requires-Dist: tencentcloud-sdk-python>=3.0. | 
| 16 | 
            +
            Requires-Dist: tencentcloud-sdk-python>=3.0.1188
         | 
| 17 17 | 
             
            Description-Content-Type: text/markdown
         | 
| 18 18 |  | 
| 19 19 | 
             
            # 命令行工具简介
         |