tccli 3.0.1407.1__py2.py3-none-any.whl → 3.0.1409.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.
Files changed (47) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/ccc/v20200210/api.json +9 -0
  3. tccli/services/cdb/cdb_client.py +53 -0
  4. tccli/services/cdb/v20170320/api.json +73 -1
  5. tccli/services/cdb/v20170320/examples.json +11 -3
  6. tccli/services/cfg/v20210820/api.json +11 -1
  7. tccli/services/cfw/v20190904/api.json +1 -1
  8. tccli/services/ckafka/v20190819/api.json +1 -1
  9. tccli/services/csip/v20221121/api.json +51 -1
  10. tccli/services/dbbrain/v20210527/api.json +7 -7
  11. tccli/services/dcdb/v20180411/api.json +1 -1
  12. tccli/services/dts/v20211206/api.json +144 -67
  13. tccli/services/dts/v20211206/examples.json +13 -7
  14. tccli/services/es/v20180416/api.json +99 -4
  15. tccli/services/essbasic/v20210526/api.json +3 -3
  16. tccli/services/essbasic/v20210526/examples.json +6 -6
  17. tccli/services/gaap/v20180529/api.json +13 -3
  18. tccli/services/ioa/ioa_client.py +61 -8
  19. tccli/services/ioa/v20220601/api.json +126 -0
  20. tccli/services/ioa/v20220601/examples.json +8 -0
  21. tccli/services/lighthouse/v20200324/api.json +36 -0
  22. tccli/services/lighthouse/v20200324/examples.json +1 -1
  23. tccli/services/live/v20180801/examples.json +6 -0
  24. tccli/services/mariadb/v20170312/api.json +1 -1
  25. tccli/services/monitor/monitor_client.py +53 -0
  26. tccli/services/monitor/v20180724/api.json +100 -3
  27. tccli/services/monitor/v20180724/examples.json +9 -1
  28. tccli/services/mps/v20190612/api.json +26 -4
  29. tccli/services/oceanus/v20190422/api.json +9 -12
  30. tccli/services/oceanus/v20190422/examples.json +2 -2
  31. tccli/services/ocr/v20181119/api.json +10 -10
  32. tccli/services/pts/v20210728/api.json +2 -2
  33. tccli/services/rum/v20210622/api.json +18 -0
  34. tccli/services/teo/v20220901/api.json +5 -5
  35. tccli/services/tke/v20180525/api.json +3 -3
  36. tccli/services/tmt/v20180321/api.json +78 -1
  37. tccli/services/tsf/v20180326/api.json +3 -0
  38. tccli/services/vcube/v20220410/api.json +1 -1
  39. tccli/services/vpc/v20170312/api.json +819 -0
  40. tccli/services/vpc/v20170312/examples.json +96 -0
  41. tccli/services/vpc/vpc_client.py +669 -33
  42. tccli/services/wedata/v20250806/api.json +43 -4
  43. {tccli-3.0.1407.1.dist-info → tccli-3.0.1409.1.dist-info}/METADATA +2 -2
  44. {tccli-3.0.1407.1.dist-info → tccli-3.0.1409.1.dist-info}/RECORD +47 -47
  45. {tccli-3.0.1407.1.dist-info → tccli-3.0.1409.1.dist-info}/WHEEL +0 -0
  46. {tccli-3.0.1407.1.dist-info → tccli-3.0.1409.1.dist-info}/entry_points.txt +0 -0
  47. {tccli-3.0.1407.1.dist-info → tccli-3.0.1409.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1407.1'
1
+ __version__ = '3.0.1409.1'
@@ -1268,6 +1268,15 @@
1268
1268
  "name": "CallInInterface",
1269
1269
  "required": false,
1270
1270
  "type": "object"
1271
+ },
1272
+ {
1273
+ "disabled": false,
1274
+ "document": "绑定号码类型: inner: 内线号码 | number: 正常线路号码",
1275
+ "example": "number",
1276
+ "member": "string",
1277
+ "name": "NumberType",
1278
+ "required": false,
1279
+ "type": "string"
1271
1280
  }
1272
1281
  ],
1273
1282
  "type": "object"
@@ -3553,6 +3553,58 @@ def doDescribeDBInstanceConfig(args, parsed_globals):
3553
3553
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3554
3554
 
3555
3555
 
3556
+ def doDescribeInstancePasswordComplexity(args, parsed_globals):
3557
+ g_param = parse_global_arg(parsed_globals)
3558
+
3559
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
3560
+ cred = credential.CVMRoleCredential()
3561
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
3562
+ cred = credential.STSAssumeRoleCredential(
3563
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
3564
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
3565
+ )
3566
+ 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):
3567
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
3568
+ else:
3569
+ cred = credential.Credential(
3570
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
3571
+ )
3572
+ http_profile = HttpProfile(
3573
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
3574
+ reqMethod="POST",
3575
+ endpoint=g_param[OptionsDefine.Endpoint],
3576
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
3577
+ )
3578
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
3579
+ if g_param[OptionsDefine.Language]:
3580
+ profile.language = g_param[OptionsDefine.Language]
3581
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
3582
+ client = mod.CdbClient(cred, g_param[OptionsDefine.Region], profile)
3583
+ client._sdkVersion += ("_CLI_" + __version__)
3584
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
3585
+ model = models.DescribeInstancePasswordComplexityRequest()
3586
+ model.from_json_string(json.dumps(args))
3587
+ start_time = time.time()
3588
+ while True:
3589
+ rsp = client.DescribeInstancePasswordComplexity(model)
3590
+ result = rsp.to_json_string()
3591
+ try:
3592
+ json_obj = json.loads(result)
3593
+ except TypeError as e:
3594
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
3595
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
3596
+ break
3597
+ cur_time = time.time()
3598
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
3599
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
3600
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
3601
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
3602
+ else:
3603
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
3604
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
3605
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3606
+
3607
+
3556
3608
  def doCreateCdbProxyAddress(args, parsed_globals):
3557
3609
  g_param = parse_global_arg(parsed_globals)
3558
3610
 
@@ -9196,6 +9248,7 @@ ACTION_MAP = {
9196
9248
  "CreateBackup": doCreateBackup,
9197
9249
  "ModifyDBInstanceVipVport": doModifyDBInstanceVipVport,
9198
9250
  "DescribeDBInstanceConfig": doDescribeDBInstanceConfig,
9251
+ "DescribeInstancePasswordComplexity": doDescribeInstancePasswordComplexity,
9199
9252
  "CreateCdbProxyAddress": doCreateCdbProxyAddress,
9200
9253
  "DeleteAuditPolicy": doDeleteAuditPolicy,
9201
9254
  "DescribeProjectSecurityGroups": doDescribeProjectSecurityGroups,
@@ -609,6 +609,13 @@
609
609
  "output": "DescribeInstanceParamsResponse",
610
610
  "status": "online"
611
611
  },
612
+ "DescribeInstancePasswordComplexity": {
613
+ "document": "该接口(DescribeInstancePasswordComplexity)用于查询实例的密码复杂度参数列表。",
614
+ "input": "DescribeInstancePasswordComplexityRequest",
615
+ "name": "查询实例的密码复杂度",
616
+ "output": "DescribeInstancePasswordComplexityResponse",
617
+ "status": "online"
618
+ },
612
619
  "DescribeInstanceUpgradeCheckJob": {
613
620
  "document": "该接口(DescribeInstanceUpgradeCheckJob)查询实例版本升级校验任务。",
614
621
  "input": "DescribeInstanceUpgradeCheckJobRequest",
@@ -7800,6 +7807,24 @@
7800
7807
  "name": "AccountRegexp",
7801
7808
  "required": false,
7802
7809
  "type": "string"
7810
+ },
7811
+ {
7812
+ "disabled": false,
7813
+ "document": "默认无排序,支持:ASC、DESC、asc、desc",
7814
+ "example": "desc",
7815
+ "member": "string",
7816
+ "name": "SortBy",
7817
+ "required": false,
7818
+ "type": "string"
7819
+ },
7820
+ {
7821
+ "disabled": false,
7822
+ "document": "待排序的时间字段,可选:CreateTime(账号创建时间)、ModifyTime(账号更新时间)、ModifyPasswordTime(密码修改时间)",
7823
+ "example": "CreateTime",
7824
+ "member": "string",
7825
+ "name": "OrderBy",
7826
+ "required": false,
7827
+ "type": "string"
7803
7828
  }
7804
7829
  ],
7805
7830
  "type": "object"
@@ -7820,7 +7845,7 @@
7820
7845
  {
7821
7846
  "disabled": false,
7822
7847
  "document": "符合查询条件的账号详细信息。",
7823
- "example": "[{\"Notes\": \"andy1\",\"Host\": \"localhost\",\"User\": \"andy_user\",\"ModifyTime\": \"2020-11-10 01:00:00\",\"ModifyPasswordTime\": \"2020-11-10 01:00:00\",\"CreateTime\": \"2020-11-10 01:00:00\",\"MaxUserConnections\": 20},{\"Notes\": \"andy2\",\"Host\": \"localhost\",\"User\": \"root\",\"ModifyTime\": \"2020-11-10 01:00:00\",\"ModifyPasswordTime\": \"2020-11-10 01:00:00\",\"CreateTime\": \"2020-11-10 01:00:00\",\"MaxUserConnections\": 20}]",
7848
+ "example": "",
7824
7849
  "member": "AccountInfo",
7825
7850
  "name": "Items",
7826
7851
  "output_required": true,
@@ -11814,6 +11839,53 @@
11814
11839
  ],
11815
11840
  "type": "object"
11816
11841
  },
11842
+ "DescribeInstancePasswordComplexityRequest": {
11843
+ "document": "DescribeInstancePasswordComplexity请求参数结构体",
11844
+ "members": [
11845
+ {
11846
+ "disabled": false,
11847
+ "document": "实例ID ",
11848
+ "example": "\"cdb-1urqrvpf\"",
11849
+ "member": "string",
11850
+ "name": "InstanceId",
11851
+ "required": true,
11852
+ "type": "string"
11853
+ }
11854
+ ],
11855
+ "type": "object"
11856
+ },
11857
+ "DescribeInstancePasswordComplexityResponse": {
11858
+ "document": "DescribeInstancePasswordComplexity返回参数结构体",
11859
+ "members": [
11860
+ {
11861
+ "disabled": false,
11862
+ "document": "实例的参数总数",
11863
+ "example": "72",
11864
+ "member": "int64",
11865
+ "name": "TotalCount",
11866
+ "output_required": true,
11867
+ "type": "int",
11868
+ "value_allowed_null": false
11869
+ },
11870
+ {
11871
+ "disabled": false,
11872
+ "document": "参数详情",
11873
+ "example": "[ ]",
11874
+ "member": "ParameterDetail",
11875
+ "name": "Items",
11876
+ "output_required": true,
11877
+ "type": "list",
11878
+ "value_allowed_null": false
11879
+ },
11880
+ {
11881
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
11882
+ "member": "string",
11883
+ "name": "RequestId",
11884
+ "type": "string"
11885
+ }
11886
+ ],
11887
+ "type": "object"
11888
+ },
11817
11889
  "DescribeInstanceUpgradeCheckJobRequest": {
11818
11890
  "document": "DescribeInstanceUpgradeCheckJob请求参数结构体",
11819
11891
  "members": [
@@ -367,9 +367,9 @@
367
367
  "DescribeAccounts": [
368
368
  {
369
369
  "document": "",
370
- "input": "https://cdb.tencentcloudapi.com/?Action=DescribeAccounts\n&InstanceId=cdb-f35wr6wj\n&<公共请求参数>",
371
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Items\": [\n {\n \"Notes\": \"andy1\",\n \"Host\": \"172.1.1.1\",\n \"User\": \"andy\",\n \"ModifyTime\": \"2020-09-22 00:00:00\",\n \"ModifyPasswordTime\": \"2020-09-22 00:00:00\",\n \"CreateTime\": \"2020-09-22 00:00:00\",\n \"MaxUserConnections\": 20,\n \"OpenCam\": true\n }\n ],\n \"MaxUserConnections\": 20,\n \"RequestId\": \"6EF60BEC-0242-43AF-BB20-270359FB54A7\"\n }\n}",
372
- "title": "查询云数据库的所有账号信息"
370
+ "input": "POST / HTTP/1.1\nHost: cdb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeAccounts\n<公共请求参数>\n\n{\n \"InstanceId\": \"cdb-b1airfvv\"\n}",
371
+ "output": "{\n \"Response\": {\n \"RequestId\": \"507f6863-2827-4c2c-9c3b-fbbcc32e1ed4\",\n \"Items\": [\n {\n \"CreateTime\": \"2025-09-04 14:56:31\",\n \"Host\": \"%\",\n \"MaxUserConnections\": 0,\n \"ModifyPasswordTime\": \"2025-09-04 14:56:31\",\n \"ModifyTime\": \"2025-09-04 14:59:10\",\n \"Notes\": \"\",\n \"OpenCam\": false,\n \"User\": \"ching\"\n },\n {\n \"CreateTime\": \"2025-09-02 16:18:42\",\n \"Host\": \"%\",\n \"MaxUserConnections\": 0,\n \"ModifyPasswordTime\": \"2025-09-02 16:18:42\",\n \"ModifyTime\": \"2025-09-02 16:18:42\",\n \"Notes\": \"\",\n \"OpenCam\": false,\n \"User\": \"root\"\n }\n ],\n \"MaxUserConnections\": 10240,\n \"TotalCount\": 2\n }\n}",
372
+ "title": "查询用户所有账号信息"
373
373
  }
374
374
  ],
375
375
  "DescribeAsyncRequestInfo": [
@@ -750,6 +750,14 @@
750
750
  "title": "查询实例的可设置参数列表"
751
751
  }
752
752
  ],
753
+ "DescribeInstancePasswordComplexity": [
754
+ {
755
+ "document": "查询实例的密码复杂度",
756
+ "input": "POST / HTTP/1.1\nHost: cdb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeInstancePasswordComplexity\n<公共请求参数>\n\n{\n \"InstanceId\": \"cdb-1urqrvpf\"\n}",
757
+ "output": "{\n \"Response\": {\n \"Items\": [\n {\n \"CurrentValue\": \"8\",\n \"Default\": \"0\",\n \"Description\": \"The minimum number of characters that validate_password requires passwords to have.\",\n \"EnumValue\": [],\n \"IsNotSupportEdit\": false,\n \"Max\": 64,\n \"MaxFunc\": \"\",\n \"Min\": 0,\n \"MinFunc\": \"\",\n \"Name\": \"validate_password_length\",\n \"NeedReboot\": 0,\n \"ParamType\": \"integer\"\n },\n {\n \"CurrentValue\": \"1\",\n \"Default\": \"0\",\n \"Description\": \"The minimum number of lowercase and uppercase characters that validate_password requires passwords to have if the password policy is MEDIUM or stronger.\",\n \"EnumValue\": [],\n \"IsNotSupportEdit\": false,\n \"Max\": 16,\n \"MaxFunc\": \"\",\n \"Min\": 0,\n \"MinFunc\": \"\",\n \"Name\": \"validate_password_mixed_case_count\",\n \"NeedReboot\": 0,\n \"ParamType\": \"integer\"\n },\n {\n \"CurrentValue\": \"2\",\n \"Default\": \"0\",\n \"Description\": \"The minimum number of numeric (digit) characters that validate_password requires passwords to have if the password policy is MEDIUM or stronger.\",\n \"EnumValue\": [],\n \"IsNotSupportEdit\": false,\n \"Max\": 16,\n \"MaxFunc\": \"\",\n \"Min\": 0,\n \"MinFunc\": \"\",\n \"Name\": \"validate_password_number_count\",\n \"NeedReboot\": 0,\n \"ParamType\": \"integer\"\n },\n {\n \"CurrentValue\": \"MEDIUM\",\n \"Default\": \"LOW\",\n \"Description\": \"The password policy enforced by validate_password. The validate_password.policy value can be specified using numeric values 0, 1, 2.\",\n \"EnumValue\": [\n \"LOW\",\n \"MEDIUM\",\n \"STRONG\"\n ],\n \"IsNotSupportEdit\": false,\n \"Max\": 0,\n \"MaxFunc\": \"\",\n \"Min\": 0,\n \"MinFunc\": \"\",\n \"Name\": \"validate_password_policy\",\n \"NeedReboot\": 0,\n \"ParamType\": \"enum\"\n },\n {\n \"CurrentValue\": \"3\",\n \"Default\": \"0\",\n \"Description\": \"The minimum number of nonalphanumeric characters that validate_password requires passwords to have if the password policy is MEDIUM or stronger.\",\n \"EnumValue\": [],\n \"IsNotSupportEdit\": false,\n \"Max\": 16,\n \"MaxFunc\": \"\",\n \"Min\": 0,\n \"MinFunc\": \"\",\n \"Name\": \"validate_password_special_char_count\",\n \"NeedReboot\": 0,\n \"ParamType\": \"integer\"\n }\n ],\n \"RequestId\": \"103be0cb-4ca7-400b-a6b1-4c3fc7b7227c\",\n \"TotalCount\": 5\n }\n}",
758
+ "title": "查询实例的密码复杂度"
759
+ }
760
+ ],
753
761
  "DescribeInstanceUpgradeCheckJob": [
754
762
  {
755
763
  "document": "无",
@@ -3233,7 +3233,7 @@
3233
3233
  {
3234
3234
  "disabled": false,
3235
3235
  "document": "任务ID",
3236
- "example": "1",
3236
+ "example": "329",
3237
3237
  "member": "int64",
3238
3238
  "name": "TaskId",
3239
3239
  "output_required": true,
@@ -3389,6 +3389,16 @@
3389
3389
  "output_required": false,
3390
3390
  "type": "string",
3391
3391
  "value_allowed_null": false
3392
+ },
3393
+ {
3394
+ "disabled": false,
3395
+ "document": "来源",
3396
+ "example": "1",
3397
+ "member": "int64",
3398
+ "name": "TaskSource",
3399
+ "output_required": false,
3400
+ "type": "int",
3401
+ "value_allowed_null": false
3392
3402
  }
3393
3403
  ],
3394
3404
  "usage": "out"
@@ -787,7 +787,7 @@
787
787
  },
788
788
  "metadata": {
789
789
  "apiVersion": "2019-09-04",
790
- "api_brief": "防火墙开放API接口可实现自动化创建、修改、删除访问控制规则;查询、开启或关闭互联网边界防火墙开关等",
790
+ "api_brief": "## 概述\n腾讯云防火墙(Cloud Firewall,CFW)是一款基于公有云环境下的 SaaS 化防火墙,目前主要为用户提供互联网边界防护,并用于解决云上访问控制的统一管理与日志审计问题,具备传统防火墙功能的同时也支持云上多租户及弹性扩容,是用户业务上云的网络安全基础设施。\n本章节介绍的腾讯云防火墙 API 接口均为 API 3.0接口。\n您可以调用 API 对腾讯云防火墙进行操作,例如切换防火墙状态、管理入侵防御、管理访问控制等。\n腾讯云防火墙支持的所有接口信息,请参见 [API 概览](https://cloud.tencent.com/document/product/1132/49080)。\n\n## 术语表\n腾讯云防火墙 API 接口的常见术语请参见下表:\n\n| 术语 | 描述 | \n|---------|---------|\n| 标签 | 标签(TagInfo)用于资源分类管理的元数据结构,包含 TagKey(标签键)和 TagValue(标签值),通过键值对实现资产精细化分类与管理。| \n| 访问控制列表 | 访问控制列表(ACL)用于定义网络流量过滤规则的安全策略集合,支持基于五元组(源/目的IP、端口、协议)的精细化流量管控。 | \n\n## 使用限制\n对于 API 接口的参数限制,请参考各接口文档中的参数说明。\n\n## API 快速入门\n您可以使用 API Explorer 工具在线调用 API。\n本文以创建访问控制规则为例,通过 API Explorer 工具调用 API 接口的步骤如下:\n1. 进入 [API Explorer](https://console.cloud.tencent.com/api/explorer) 工具页面。更多 API Explorer 工具使用信息,请参见 [使用 API Explorer](https://cloud.tencent.com/document/product/1278/46697)。",
791
791
  "serviceNameCN": "云防火墙",
792
792
  "serviceShortName": "cfw"
793
793
  },
@@ -17196,7 +17196,7 @@
17196
17196
  {
17197
17197
  "disabled": false,
17198
17198
  "document": "发送消息内容(单次请求最多500条)",
17199
- "example": "[{\"Body\":\"body-test\",\"Key\":\"key-test\"}]",
17199
+ "example": "",
17200
17200
  "member": "BatchContent",
17201
17201
  "name": "Message",
17202
17202
  "required": true,
@@ -850,6 +850,16 @@
850
850
  "output_required": false,
851
851
  "type": "string",
852
852
  "value_allowed_null": false
853
+ },
854
+ {
855
+ "disabled": false,
856
+ "document": "云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云",
857
+ "example": "",
858
+ "member": "int64",
859
+ "name": "CloudType",
860
+ "output_required": false,
861
+ "type": "int",
862
+ "value_allowed_null": false
853
863
  }
854
864
  ],
855
865
  "usage": "out"
@@ -1088,6 +1098,16 @@
1088
1098
  "output_required": true,
1089
1099
  "type": "int",
1090
1100
  "value_allowed_null": false
1101
+ },
1102
+ {
1103
+ "disabled": false,
1104
+ "document": "云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云",
1105
+ "example": "",
1106
+ "member": "int64",
1107
+ "name": "CloudType",
1108
+ "output_required": false,
1109
+ "type": "int",
1110
+ "value_allowed_null": false
1091
1111
  }
1092
1112
  ],
1093
1113
  "usage": "out"
@@ -1500,6 +1520,16 @@
1500
1520
  "output_required": true,
1501
1521
  "type": "int",
1502
1522
  "value_allowed_null": false
1523
+ },
1524
+ {
1525
+ "disabled": false,
1526
+ "document": "云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云",
1527
+ "example": "",
1528
+ "member": "int64",
1529
+ "name": "CloudType",
1530
+ "output_required": false,
1531
+ "type": "int",
1532
+ "value_allowed_null": false
1503
1533
  }
1504
1534
  ],
1505
1535
  "usage": "out"
@@ -19476,7 +19506,7 @@
19476
19506
  },
19477
19507
  {
19478
19508
  "disabled": false,
19479
- "document": "调用方式\n0:控制台调用\n1:API",
19509
+ "document": "调用方式\n-1:未统计\n0:控制台调用\n1:API",
19480
19510
  "example": "0",
19481
19511
  "member": "int64",
19482
19512
  "name": "EventType",
@@ -19593,6 +19623,26 @@
19593
19623
  "output_required": false,
19594
19624
  "type": "string",
19595
19625
  "value_allowed_null": false
19626
+ },
19627
+ {
19628
+ "disabled": false,
19629
+ "document": "账号外vpc信息",
19630
+ "example": "账号外vpc信息列表",
19631
+ "member": "SourceIPVpcInfo",
19632
+ "name": "VpcInfo",
19633
+ "output_required": false,
19634
+ "type": "list",
19635
+ "value_allowed_null": false
19636
+ },
19637
+ {
19638
+ "disabled": false,
19639
+ "document": "云类型\n0为腾讯云",
19640
+ "example": "",
19641
+ "member": "int64",
19642
+ "name": "CloudType",
19643
+ "output_required": false,
19644
+ "type": "int",
19645
+ "value_allowed_null": false
19596
19646
  }
19597
19647
  ],
19598
19648
  "usage": "out"
@@ -10950,7 +10950,7 @@
10950
10950
  "members": [
10951
10951
  {
10952
10952
  "disabled": false,
10953
- "document": "命令模版。",
10953
+ "document": "命令模板。",
10954
10954
  "example": "bgsave",
10955
10955
  "member": "string",
10956
10956
  "name": "Cmd",
@@ -10980,7 +10980,7 @@
10980
10980
  },
10981
10981
  {
10982
10982
  "disabled": false,
10983
- "document": "总耗时。",
10983
+ "document": "总耗时。单位:s",
10984
10984
  "example": "0.01",
10985
10985
  "member": "float",
10986
10986
  "name": "QueryTime",
@@ -10990,7 +10990,7 @@
10990
10990
  },
10991
10991
  {
10992
10992
  "disabled": false,
10993
- "document": "平均执行时间。",
10993
+ "document": "平均执行时间。单位:s",
10994
10994
  "example": "0.01",
10995
10995
  "member": "float",
10996
10996
  "name": "QueryTimeAvg",
@@ -11000,7 +11000,7 @@
11000
11000
  },
11001
11001
  {
11002
11002
  "disabled": false,
11003
- "document": "最大执行时间。",
11003
+ "document": "最大执行时间。单位:s",
11004
11004
  "example": "0.02",
11005
11005
  "member": "float",
11006
11006
  "name": "QueryTimeMax",
@@ -11010,7 +11010,7 @@
11010
11010
  },
11011
11011
  {
11012
11012
  "disabled": false,
11013
- "document": "最小执行时间。",
11013
+ "document": "最小执行时间。单位:s",
11014
11014
  "example": "0.001",
11015
11015
  "member": "float",
11016
11016
  "name": "QueryTimeMin",
@@ -11020,8 +11020,8 @@
11020
11020
  },
11021
11021
  {
11022
11022
  "disabled": false,
11023
- "document": "总耗时占比",
11024
- "example": "100",
11023
+ "document": "总耗时占比。单位:%",
11024
+ "example": "100.0",
11025
11025
  "member": "float",
11026
11026
  "name": "QueryTimeRatio",
11027
11027
  "output_required": false,
@@ -8132,7 +8132,7 @@
8132
8132
  {
8133
8133
  "disabled": false,
8134
8134
  "document": "要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:该入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。",
8135
- "example": "[\"sg-ajr1jzgj\\n\"]",
8135
+ "example": "[\"sg-ajr1jzgj\"]",
8136
8136
  "member": "string",
8137
8137
  "name": "SecurityGroupIds",
8138
8138
  "required": true,