tccli 3.0.1369.1__py2.py3-none-any.whl → 3.0.1370.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 (30) hide show
  1. tccli/__init__.py +1 -1
  2. tccli/services/autoscaling/v20180419/api.json +4 -3
  3. tccli/services/cfs/cfs_client.py +61 -8
  4. tccli/services/cfs/v20190719/api.json +71 -0
  5. tccli/services/cfs/v20190719/examples.json +8 -0
  6. tccli/services/dcdb/v20180411/api.json +31 -2
  7. tccli/services/dcdb/v20180411/examples.json +1 -1
  8. tccli/services/dlc/v20210125/api.json +14 -4
  9. tccli/services/dsgc/v20190723/api.json +8 -8
  10. tccli/services/dsgc/v20190723/examples.json +1 -1
  11. tccli/services/es/v20180416/examples.json +3 -3
  12. tccli/services/ess/v20201111/api.json +4 -4
  13. tccli/services/ess/v20201111/examples.json +1 -1
  14. tccli/services/lighthouse/v20200324/api.json +1 -1
  15. tccli/services/mariadb/v20170312/api.json +30 -1
  16. tccli/services/mariadb/v20170312/examples.json +1 -1
  17. tccli/services/mongodb/v20180408/api.json +1 -1
  18. tccli/services/mongodb/v20190725/api.json +1 -1
  19. tccli/services/organization/organization_client.py +53 -0
  20. tccli/services/organization/v20210331/api.json +175 -0
  21. tccli/services/organization/v20210331/examples.json +8 -0
  22. tccli/services/privatedns/v20201028/api.json +7 -7
  23. tccli/services/tione/v20211111/api.json +1 -1
  24. tccli/services/trocket/v20230308/api.json +9 -0
  25. tccli/services/tsf/v20180326/api.json +6 -6
  26. {tccli-3.0.1369.1.dist-info → tccli-3.0.1370.1.dist-info}/METADATA +2 -2
  27. {tccli-3.0.1369.1.dist-info → tccli-3.0.1370.1.dist-info}/RECORD +30 -30
  28. {tccli-3.0.1369.1.dist-info → tccli-3.0.1370.1.dist-info}/WHEEL +0 -0
  29. {tccli-3.0.1369.1.dist-info → tccli-3.0.1370.1.dist-info}/entry_points.txt +0 -0
  30. {tccli-3.0.1369.1.dist-info → tccli-3.0.1370.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1369.1'
1
+ __version__ = '3.0.1370.1'
@@ -6967,7 +6967,7 @@
6967
6967
  "members": [
6968
6968
  {
6969
6969
  "disabled": false,
6970
- "document": "伸缩组ID",
6970
+ "document": "伸缩组ID。可以通过如下方式获取可用的伸缩组ID:\n<li>通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 查询伸缩组ID。</li>\n<li>通过调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。</li>",
6971
6971
  "example": "asg-12yqet78",
6972
6972
  "member": "string",
6973
6973
  "name": "AutoScalingGroupId",
@@ -6976,7 +6976,7 @@
6976
6976
  },
6977
6977
  {
6978
6978
  "disabled": false,
6979
- "document": "希望扩容的实例数量。",
6979
+ "document": "希望扩容的实例数量。该参数的静态取值范围是 [1,2000],同时该参数不得大于期望数与最大值的差值。例如伸缩组期望数为 20,最大值为 100,此时可取值范围为 [1,80]。",
6980
6980
  "example": "1",
6981
6981
  "member": "uint64",
6982
6982
  "name": "ScaleOutNumber",
@@ -6995,6 +6995,7 @@
6995
6995
  "example": "asa-n6w01f6m",
6996
6996
  "member": "string",
6997
6997
  "name": "ActivityId",
6998
+ "output_required": true,
6998
6999
  "type": "string",
6999
7000
  "value_allowed_null": false
7000
7001
  },
@@ -7511,7 +7512,7 @@
7511
7512
  "members": [
7512
7513
  {
7513
7514
  "disabled": false,
7514
- "document": "伸缩组ID。",
7515
+ "document": "伸缩组ID。可通过登录 [控制台](https://console.cloud.tencent.com/autoscaling/group) 或调用接口 [DescribeAutoScalingGroups](https://cloud.tencent.com/document/api/377/20438) ,取返回信息中的 AutoScalingGroupId 获取伸缩组ID。",
7515
7516
  "example": "asg-12yqet78",
7516
7517
  "member": "string",
7517
7518
  "name": "AutoScalingGroupId",
@@ -17,6 +17,58 @@ from tencentcloud.cfs.v20190719 import models as models_v20190719
17
17
  from jmespath import search
18
18
  import time
19
19
 
20
+ def doDoDirectoryOperation(args, parsed_globals):
21
+ g_param = parse_global_arg(parsed_globals)
22
+
23
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
24
+ cred = credential.CVMRoleCredential()
25
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
26
+ cred = credential.STSAssumeRoleCredential(
27
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
28
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
29
+ )
30
+ 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):
31
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
32
+ else:
33
+ cred = credential.Credential(
34
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
35
+ )
36
+ http_profile = HttpProfile(
37
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
38
+ reqMethod="POST",
39
+ endpoint=g_param[OptionsDefine.Endpoint],
40
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
41
+ )
42
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
43
+ if g_param[OptionsDefine.Language]:
44
+ profile.language = g_param[OptionsDefine.Language]
45
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
46
+ client = mod.CfsClient(cred, g_param[OptionsDefine.Region], profile)
47
+ client._sdkVersion += ("_CLI_" + __version__)
48
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
49
+ model = models.DoDirectoryOperationRequest()
50
+ model.from_json_string(json.dumps(args))
51
+ start_time = time.time()
52
+ while True:
53
+ rsp = client.DoDirectoryOperation(model)
54
+ result = rsp.to_json_string()
55
+ try:
56
+ json_obj = json.loads(result)
57
+ except TypeError as e:
58
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
59
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
60
+ break
61
+ cur_time = time.time()
62
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
63
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
64
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
65
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
66
+ else:
67
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
68
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
69
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
70
+
71
+
20
72
  def doDescribeCfsRules(args, parsed_globals):
21
73
  g_param = parse_global_arg(parsed_globals)
22
74
 
@@ -2513,7 +2565,7 @@ def doStopLifecycleDataTask(args, parsed_globals):
2513
2565
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2514
2566
 
2515
2567
 
2516
- def doCreateCfsSnapshot(args, parsed_globals):
2568
+ def doUnbindAutoSnapshotPolicy(args, parsed_globals):
2517
2569
  g_param = parse_global_arg(parsed_globals)
2518
2570
 
2519
2571
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -2542,11 +2594,11 @@ def doCreateCfsSnapshot(args, parsed_globals):
2542
2594
  client = mod.CfsClient(cred, g_param[OptionsDefine.Region], profile)
2543
2595
  client._sdkVersion += ("_CLI_" + __version__)
2544
2596
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
2545
- model = models.CreateCfsSnapshotRequest()
2597
+ model = models.UnbindAutoSnapshotPolicyRequest()
2546
2598
  model.from_json_string(json.dumps(args))
2547
2599
  start_time = time.time()
2548
2600
  while True:
2549
- rsp = client.CreateCfsSnapshot(model)
2601
+ rsp = client.UnbindAutoSnapshotPolicy(model)
2550
2602
  result = rsp.to_json_string()
2551
2603
  try:
2552
2604
  json_obj = json.loads(result)
@@ -2617,7 +2669,7 @@ def doUpdateAutoSnapshotPolicy(args, parsed_globals):
2617
2669
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
2618
2670
 
2619
2671
 
2620
- def doUnbindAutoSnapshotPolicy(args, parsed_globals):
2672
+ def doCreateCfsSnapshot(args, parsed_globals):
2621
2673
  g_param = parse_global_arg(parsed_globals)
2622
2674
 
2623
2675
  if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
@@ -2646,11 +2698,11 @@ def doUnbindAutoSnapshotPolicy(args, parsed_globals):
2646
2698
  client = mod.CfsClient(cred, g_param[OptionsDefine.Region], profile)
2647
2699
  client._sdkVersion += ("_CLI_" + __version__)
2648
2700
  models = MODELS_MAP[g_param[OptionsDefine.Version]]
2649
- model = models.UnbindAutoSnapshotPolicyRequest()
2701
+ model = models.CreateCfsSnapshotRequest()
2650
2702
  model.from_json_string(json.dumps(args))
2651
2703
  start_time = time.time()
2652
2704
  while True:
2653
- rsp = client.UnbindAutoSnapshotPolicy(model)
2705
+ rsp = client.CreateCfsSnapshot(model)
2654
2706
  result = rsp.to_json_string()
2655
2707
  try:
2656
2708
  json_obj = json.loads(result)
@@ -2992,6 +3044,7 @@ MODELS_MAP = {
2992
3044
  }
2993
3045
 
2994
3046
  ACTION_MAP = {
3047
+ "DoDirectoryOperation": doDoDirectoryOperation,
2995
3048
  "DescribeCfsRules": doDescribeCfsRules,
2996
3049
  "UpdateCfsFileSystemPGroup": doUpdateCfsFileSystemPGroup,
2997
3050
  "DescribeLifecycleDataTask": doDescribeLifecycleDataTask,
@@ -3040,9 +3093,9 @@ ACTION_MAP = {
3040
3093
  "DescribeAutoSnapshotPolicies": doDescribeAutoSnapshotPolicies,
3041
3094
  "DeleteAutoSnapshotPolicy": doDeleteAutoSnapshotPolicy,
3042
3095
  "StopLifecycleDataTask": doStopLifecycleDataTask,
3043
- "CreateCfsSnapshot": doCreateCfsSnapshot,
3044
- "UpdateAutoSnapshotPolicy": doUpdateAutoSnapshotPolicy,
3045
3096
  "UnbindAutoSnapshotPolicy": doUnbindAutoSnapshotPolicy,
3097
+ "UpdateAutoSnapshotPolicy": doUpdateAutoSnapshotPolicy,
3098
+ "CreateCfsSnapshot": doCreateCfsSnapshot,
3046
3099
  "DescribeSnapshotOperationLogs": doDescribeSnapshotOperationLogs,
3047
3100
  "UpdateCfsFileSystemName": doUpdateCfsFileSystemName,
3048
3101
  "DescribeDataFlow": doDescribeDataFlow,
@@ -280,6 +280,13 @@
280
280
  "output": "DescribeUserQuotaResponse",
281
281
  "status": "online"
282
282
  },
283
+ "DoDirectoryOperation": {
284
+ "document": "文件系统目录操作接口",
285
+ "input": "DoDirectoryOperationRequest",
286
+ "name": "目录操作接口",
287
+ "output": "DoDirectoryOperationResponse",
288
+ "status": "online"
289
+ },
283
290
  "ModifyDataFlow": {
284
291
  "document": "修改数据流动相关参数",
285
292
  "input": "ModifyDataFlowRequest",
@@ -3637,6 +3644,70 @@
3637
3644
  ],
3638
3645
  "type": "object"
3639
3646
  },
3647
+ "DoDirectoryOperationRequest": {
3648
+ "document": "DoDirectoryOperation请求参数结构体",
3649
+ "members": [
3650
+ {
3651
+ "disabled": false,
3652
+ "document": "文件系统Id",
3653
+ "example": "cfs-5xxxyyyzz",
3654
+ "member": "string",
3655
+ "name": "FileSystemId",
3656
+ "required": true,
3657
+ "type": "string"
3658
+ },
3659
+ {
3660
+ "disabled": false,
3661
+ "document": "create:创建目录 check:确认目录是否存在",
3662
+ "example": "check",
3663
+ "member": "string",
3664
+ "name": "OpetationType",
3665
+ "required": true,
3666
+ "type": "string"
3667
+ },
3668
+ {
3669
+ "disabled": false,
3670
+ "document": "目录的绝对路径 默认递归创建(即如果目录中有子目录不存在,则先创建出对应子目录)",
3671
+ "example": "/user1/dir2/",
3672
+ "member": "string",
3673
+ "name": "DirectoryPath",
3674
+ "required": true,
3675
+ "type": "string"
3676
+ },
3677
+ {
3678
+ "disabled": false,
3679
+ "document": "创建目录的权限,若不传,默认为0755 若Operation Type为check,此值无实际意义",
3680
+ "example": "0777",
3681
+ "member": "string",
3682
+ "name": "Mode",
3683
+ "required": false,
3684
+ "type": "string"
3685
+ }
3686
+ ],
3687
+ "type": "object"
3688
+ },
3689
+ "DoDirectoryOperationResponse": {
3690
+ "document": "DoDirectoryOperation返回参数结构体",
3691
+ "members": [
3692
+ {
3693
+ "disabled": false,
3694
+ "document": "1:成功 0:失败 创建目录的操作,1表示创建成功,0表示创建失败。 确认目录是否存在的操作,1表示目录存在,0表示目录不存在。 说明:创建目录操作若目录已存在,也会返回创建成功。",
3695
+ "example": "1",
3696
+ "member": "int64",
3697
+ "name": "Result",
3698
+ "output_required": false,
3699
+ "type": "int",
3700
+ "value_allowed_null": false
3701
+ },
3702
+ {
3703
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
3704
+ "member": "string",
3705
+ "name": "RequestId",
3706
+ "type": "string"
3707
+ }
3708
+ ],
3709
+ "type": "object"
3710
+ },
3640
3711
  "ExstraPerformanceInfo": {
3641
3712
  "document": "购买完额外性能之后的值",
3642
3713
  "members": [
@@ -320,6 +320,14 @@
320
320
  "title": "查询文件系统配额"
321
321
  }
322
322
  ],
323
+ "DoDirectoryOperation": [
324
+ {
325
+ "document": "用于部分类型的文件系统目录操作",
326
+ "input": "POST / HTTP/1.1\nHost: cfs.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SetUserQuota\n<公共请求参数>\n\n{\n \"FileSystemId\": \"cfs-12345\",\n \"OpetationType\": \"create\",\n \"DirectoryPath\": \"/user1/dir1/\",\n \"Mode\": \"0644\"\n}",
327
+ "output": "{\n \"Response\": {\n \"RequestId\": \"fjo8aejo-fjei-32eu-2je9-fhue83nd81\",\n \"Result\": 1\n }\n}",
328
+ "title": "文件系统目录操作接口"
329
+ }
330
+ ],
323
331
  "ModifyDataFlow": [
324
332
  {
325
333
  "document": "",
@@ -2960,6 +2960,16 @@
2960
2960
  "output_required": true,
2961
2961
  "type": "string",
2962
2962
  "value_allowed_null": false
2963
+ },
2964
+ {
2965
+ "disabled": false,
2966
+ "document": "实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护",
2967
+ "example": "1",
2968
+ "member": "int64",
2969
+ "name": "ProtectedProperty",
2970
+ "output_required": true,
2971
+ "type": "int",
2972
+ "value_allowed_null": false
2963
2973
  }
2964
2974
  ],
2965
2975
  "usage": "out"
@@ -5363,6 +5373,16 @@
5363
5373
  "type": "string",
5364
5374
  "value_allowed_null": false
5365
5375
  },
5376
+ {
5377
+ "disabled": false,
5378
+ "document": "实例删除保护标签,1: 已开启删除保护,0: 未开启删除保护",
5379
+ "example": "1",
5380
+ "member": "int64",
5381
+ "name": "ProtectedProperty",
5382
+ "output_required": true,
5383
+ "type": "int",
5384
+ "value_allowed_null": false
5385
+ },
5366
5386
  {
5367
5387
  "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
5368
5388
  "member": "string",
@@ -7465,6 +7485,15 @@
7465
7485
  "name": "ShardSerialId",
7466
7486
  "required": false,
7467
7487
  "type": "string"
7488
+ },
7489
+ {
7490
+ "disabled": false,
7491
+ "document": "节点ID,可指定主节点或者备节点进行kill。可选参数,不传默认为主节点。",
7492
+ "example": "681390887981",
7493
+ "member": "string",
7494
+ "name": "NodeId",
7495
+ "required": false,
7496
+ "type": "string"
7468
7497
  }
7469
7498
  ],
7470
7499
  "type": "object"
@@ -7922,7 +7951,7 @@
7922
7951
  },
7923
7952
  {
7924
7953
  "disabled": false,
7925
- "document": "要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。",
7954
+ "document": "要修改的安全组 ID 列表,一个或者多个安全组 ID 组成的数组。<br>注意:该入参会全量替换存量已有安全组集合,并非增量更新。修改需传入全量的预期集合。",
7926
7955
  "example": "[\"sg-ajr1jzgj\\n\"]",
7927
7956
  "member": "string",
7928
7957
  "name": "SecurityGroupIds",
@@ -8234,7 +8263,7 @@
8234
8263
  {
8235
8264
  "disabled": false,
8236
8265
  "document": "实例ID",
8237
- "example": "tdsql-xxx",
8266
+ "example": "tdsqlshard-xxx",
8238
8267
  "member": "string",
8239
8268
  "name": "InstanceId",
8240
8269
  "required": true,
@@ -242,7 +242,7 @@
242
242
  {
243
243
  "document": "本接口用于查询实例详细信息",
244
244
  "input": "POST / HTTP/1.1\nHost: dcdb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDCDBInstanceDetail\n<公共请求参数>\n\n{\n \"InstanceId\": \"tdsqlshard-hn35cf0n\"\n}",
245
- "output": "{\n \"Response\": {\n \"AutoRenewFlag\": 0,\n \"Cpu\": 2,\n \"CpuType\": \"Intel/AMD\",\n \"CreateTime\": \"2025-03-22 17:01:11\",\n \"DbEngine\": \"MySQL\",\n \"DbVersion\": \"8.0.30\",\n \"DbVersionId\": \"8.0\",\n \"DcnDstNum\": 0,\n \"DcnFlag\": 0,\n \"DcnStatus\": 0,\n \"EncryptStatus\": 0,\n \"ExclusterId\": \"dbdc-00wb5kz5\",\n \"ExclusterType\": 0,\n \"InstanceId\": \"tdsqlshard-hn35cf0n\",\n \"InstanceName\": \"QT4st6gv8.0\",\n \"InstanceType\": 1,\n \"Ipv6Flag\": 0,\n \"IsAuditSupported\": 1,\n \"IsDcnStrongSyncSupported\": 0,\n \"IsDcnSwitchSupported\": 1,\n \"IsEncryptSupported\": 1,\n \"IsMaxUserConnectionsSupported\": true,\n \"IsPhysicalReplicationSupported\": false,\n \"LogStorage\": 16,\n \"Machine\": \"SH12\",\n \"MasterZone\": \"ap-guangzhou-2\",\n \"Memory\": 4,\n \"NodeCount\": 2,\n \"PayMode\": \"prepaid\",\n \"PeriodEndTime\": \"2025-03-28 15:33:44\",\n \"Pid\": 11128,\n \"ProjectId\": 0,\n \"Qps\": 2100,\n \"Region\": \"ap-guangzhou\",\n \"RequestId\": \"37f48ae6-6e19-421c-bc3d-9e5215bce840\",\n \"ReservedNetResources\": [],\n \"ResourceTags\": [],\n \"RsAccessStrategy\": 0,\n \"Shards\": [\n {\n \"Cpu\": 1,\n \"CreateTime\": \"2025-03-22 17:01:12\",\n \"LogDisk\": 8,\n \"Memory\": 2,\n \"NodeCount\": 2,\n \"NodesInfo\": [\n {\n \"NodeId\": \"412f4810600c\",\n \"Role\": \"master\",\n \"Zone\": \"ap-guangzhou-2\"\n },\n {\n \"NodeId\": \"a0872cc18e43\",\n \"Role\": \"slave\",\n \"Zone\": \"ap-guangzhou-2\"\n }\n ],\n \"ProxyVersion\": \"\",\n \"ShardInstanceId\": \"shard-alt5mizl\",\n \"ShardMasterZone\": \"ap-guangzhou-2\",\n \"ShardSerialId\": \"set_1742635118_5\",\n \"ShardSlaveZones\": [\n \"ap-guangzhou-2\"\n ],\n \"Status\": 2,\n \"StatusDesc\": \"运行中\",\n \"Storage\": 10,\n \"StorageUsage\": 0.01\n },\n {\n \"Cpu\": 1,\n \"CreateTime\": \"2025-03-22 17:01:12\",\n \"LogDisk\": 8,\n \"Memory\": 2,\n \"NodeCount\": 2,\n \"NodesInfo\": [\n {\n \"NodeId\": \"557c152b5be8\",\n \"Role\": \"master\",\n \"Zone\": \"ap-guangzhou-2\"\n },\n {\n \"NodeId\": \"5fa1b08b00e8\",\n \"Role\": \"slave\",\n \"Zone\": \"ap-guangzhou-2\"\n }\n ],\n \"ProxyVersion\": \"\",\n \"ShardInstanceId\": \"shard-l4vjg0a3\",\n \"ShardMasterZone\": \"ap-guangzhou-2\",\n \"ShardSerialId\": \"set_1742635315_7\",\n \"ShardSlaveZones\": [\n \"ap-guangzhou-2\"\n ],\n \"Status\": 2,\n \"StatusDesc\": \"运行中\",\n \"Storage\": 10,\n \"StorageUsage\": 0.01\n }\n ],\n \"SlaveZones\": [\n \"ap-guangzhou-2\"\n ],\n \"Status\": 2,\n \"StatusDesc\": \"运行中\",\n \"Storage\": 20,\n \"StorageUsage\": 0.01,\n \"SubnetId\": \"subnet-6rq8ehaq\",\n \"Vip\": \"10.0.0.50\",\n \"Vip6\": \"\",\n \"VpcId\": \"vpc-ilhphh7v\",\n \"Vport\": 3306,\n \"WanDomain\": \"\",\n \"WanPort\": 0,\n \"WanPortIpv6\": 0,\n \"WanStatus\": 0,\n \"WanStatusIpv6\": 0,\n \"WanVip\": \"\",\n \"WanVipv6\": \"\"\n }\n}",
245
+ "output": "{\n \"Response\": {\n \"AutoRenewFlag\": 0,\n \"Cpu\": 2,\n \"CpuType\": \"Intel/AMD\",\n \"CreateTime\": \"2025-03-22 17:01:11\",\n \"DbEngine\": \"MySQL\",\n \"DbVersion\": \"8.0.30\",\n \"DbVersionId\": \"8.0\",\n \"DcnDstNum\": 0,\n \"DcnFlag\": 0,\n \"DcnStatus\": 0,\n \"EncryptStatus\": 0,\n \"ExclusterId\": \"dbdc-00wb5kz5\",\n \"ExclusterType\": 0,\n \"InstanceId\": \"tdsqlshard-hn35cf0n\",\n \"InstanceName\": \"QT4st6gv8.0\",\n \"InstanceType\": 1,\n \"Ipv6Flag\": 0,\n \"IsAuditSupported\": 1,\n \"IsDcnStrongSyncSupported\": 0,\n \"IsDcnSwitchSupported\": 1,\n \"IsEncryptSupported\": 1,\n \"IsMaxUserConnectionsSupported\": true,\n \"IsPhysicalReplicationSupported\": false,\n \"LogStorage\": 16,\n \"Machine\": \"SH12\",\n \"MasterZone\": \"ap-guangzhou-2\",\n \"Memory\": 4,\n \"NodeCount\": 2,\n \"PayMode\": \"prepaid\",\n \"PeriodEndTime\": \"2025-03-28 15:33:44\",\n \"Pid\": 11128,\n \"ProjectId\": 0,\n \"Qps\": 2100,\n \"Region\": \"ap-guangzhou\",\n \"RequestId\": \"37f48ae6-6e19-421c-bc3d-9e5215bce840\",\n \"ReservedNetResources\": [],\n \"ResourceTags\": [],\n \"RsAccessStrategy\": 0,\n \"Shards\": [\n {\n \"Cpu\": 1,\n \"CreateTime\": \"2025-03-22 17:01:12\",\n \"LogDisk\": 8,\n \"Memory\": 2,\n \"NodeCount\": 2,\n \"NodesInfo\": [\n {\n \"NodeId\": \"412f4810600c\",\n \"Role\": \"master\",\n \"Zone\": \"ap-guangzhou-2\"\n },\n {\n \"NodeId\": \"a0872cc18e43\",\n \"Role\": \"slave\",\n \"Zone\": \"ap-guangzhou-2\"\n }\n ],\n \"ProxyVersion\": \"\",\n \"ShardInstanceId\": \"shard-alt5mizl\",\n \"ShardMasterZone\": \"ap-guangzhou-2\",\n \"ShardSerialId\": \"set_1742635118_5\",\n \"ShardSlaveZones\": [\n \"ap-guangzhou-2\"\n ],\n \"Status\": 2,\n \"StatusDesc\": \"运行中\",\n \"Storage\": 10,\n \"StorageUsage\": 0.01\n },\n {\n \"Cpu\": 1,\n \"CreateTime\": \"2025-03-22 17:01:12\",\n \"LogDisk\": 8,\n \"Memory\": 2,\n \"NodeCount\": 2,\n \"NodesInfo\": [\n {\n \"NodeId\": \"557c152b5be8\",\n \"Role\": \"master\",\n \"Zone\": \"ap-guangzhou-2\"\n },\n {\n \"NodeId\": \"5fa1b08b00e8\",\n \"Role\": \"slave\",\n \"Zone\": \"ap-guangzhou-2\"\n }\n ],\n \"ProxyVersion\": \"\",\n \"ShardInstanceId\": \"shard-l4vjg0a3\",\n \"ShardMasterZone\": \"ap-guangzhou-2\",\n \"ShardSerialId\": \"set_1742635315_7\",\n \"ShardSlaveZones\": [\n \"ap-guangzhou-2\"\n ],\n \"Status\": 2,\n \"StatusDesc\": \"运行中\",\n \"Storage\": 10,\n \"StorageUsage\": 0.01\n }\n ],\n \"SlaveZones\": [\n \"ap-guangzhou-2\"\n ],\n \"Status\": 2,\n \"StatusDesc\": \"运行中\",\n \"Storage\": 20,\n \"StorageUsage\": 0.01,\n \"SubnetId\": \"subnet-6rq8ehaq\",\n \"Vip\": \"10.0.0.50\",\n \"Vip6\": \"\",\n \"VpcId\": \"vpc-ilhphh7v\",\n \"Vport\": 3306,\n \"WanDomain\": \"\",\n \"WanPort\": 0,\n \"WanPortIpv6\": 0,\n \"WanStatus\": 0,\n \"WanStatusIpv6\": 0,\n \"WanVip\": \"\",\n \"WanVipv6\": \"\",\n \"ProtectedProperty\": 1\n }\n}",
246
246
  "title": "获取实例详情"
247
247
  }
248
248
  ],
@@ -21988,7 +21988,7 @@
21988
21988
  {
21989
21989
  "disabled": false,
21990
21990
  "document": "任务输出路径。",
21991
- "example": "cosn://test-bucket-123434324234/result/",
21991
+ "example": "cosn://test-bucket-1/result/",
21992
21992
  "member": "string",
21993
21993
  "name": "OutputPath",
21994
21994
  "output_required": true,
@@ -22088,7 +22088,7 @@
22088
22088
  {
22089
22089
  "disabled": false,
22090
22090
  "document": "任务执行输出信息。",
22091
- "example": "Invalid compression codec: ,Available codecs are none,bzip2,gzip,deflate.",
22091
+ "example": "Invalid compression codec: ,Available codecs are none,bzip2",
22092
22092
  "member": "string",
22093
22093
  "name": "OutputMessage",
22094
22094
  "output_required": true,
@@ -22318,7 +22318,7 @@
22318
22318
  {
22319
22319
  "disabled": false,
22320
22320
  "document": "任务公共指标数据\n注意:此字段可能返回 null,表示取不到有效值。",
22321
- "example": "0",
22321
+ "example": "",
22322
22322
  "member": "CommonMetrics",
22323
22323
  "name": "CommonMetrics",
22324
22324
  "output_required": true,
@@ -22328,7 +22328,7 @@
22328
22328
  {
22329
22329
  "disabled": false,
22330
22330
  "document": "spark任务指标数据\n注意:此字段可能返回 null,表示取不到有效值。",
22331
- "example": "0",
22331
+ "example": "",
22332
22332
  "member": "SparkMonitorMetrics",
22333
22333
  "name": "SparkMonitorMetrics",
22334
22334
  "output_required": true,
@@ -22374,6 +22374,16 @@
22374
22374
  "output_required": false,
22375
22375
  "type": "string",
22376
22376
  "value_allowed_null": false
22377
+ },
22378
+ {
22379
+ "disabled": false,
22380
+ "document": "任务执行耗时",
22381
+ "example": "1206",
22382
+ "member": "int64",
22383
+ "name": "JobTimeSum",
22384
+ "output_required": false,
22385
+ "type": "int",
22386
+ "value_allowed_null": false
22377
22387
  }
22378
22388
  ],
22379
22389
  "usage": "out"
@@ -400,7 +400,7 @@
400
400
  "status": "online"
401
401
  },
402
402
  "DescribeDSPAAssessmentTemplateControlItems": {
403
- "document": "获取DSPA评估模版关联的评估控制项列表",
403
+ "document": "获取DSPA评估模板关联的评估控制项列表",
404
404
  "input": "DescribeDSPAAssessmentTemplateControlItemsRequest",
405
405
  "name": "获取DSPA评估模板关联控制项列表",
406
406
  "output": "DescribeDSPAAssessmentTemplateControlItemsResponse",
@@ -1397,7 +1397,7 @@
1397
1397
  {
1398
1398
  "disabled": false,
1399
1399
  "document": "关联模板列表",
1400
- "example": "[{\"TemplateId\":10,\"TemplateName\":\"风险模版\"}]",
1400
+ "example": "[{\"TemplateId\":10,\"TemplateName\":\"风险模板\"}]",
1401
1401
  "member": "TemplateInfo",
1402
1402
  "name": "ReferTemplateList",
1403
1403
  "output_required": true,
@@ -3431,7 +3431,7 @@
3431
3431
  },
3432
3432
  {
3433
3433
  "disabled": false,
3434
- "document": "1代表模版开启,0代表模版关闭",
3434
+ "document": "1代表模板开启,0代表模板关闭",
3435
3435
  "example": "1",
3436
3436
  "member": "int64",
3437
3437
  "name": "Status",
@@ -8689,7 +8689,7 @@
8689
8689
  },
8690
8690
  {
8691
8691
  "disabled": false,
8692
- "document": "是否仅显示已开启模版",
8692
+ "document": "是否仅显示已开启模板",
8693
8693
  "example": "false",
8694
8694
  "member": "bool",
8695
8695
  "name": "IsFilterCloseComplianceGroup",
@@ -8705,7 +8705,7 @@
8705
8705
  {
8706
8706
  "disabled": false,
8707
8707
  "document": "合规组列表",
8708
- "example": "[{ \"ComplianceGroupId\": 15114, \"Name\": \"模板1\", \"Description\": \"\", \"ComplianceGroupType\": 2, \"ComplianceGroupRules\": null, \"LevelGroupId\": 1198, \"Disabled\": false, \"IsAlias\": false }]",
8708
+ "example": "[{\"ComplianceGroupId\": 15114, \"Name\": \"模板1\", \"Description\": \"\", \"ComplianceGroupType\": 2, \"ComplianceGroupRules\": null, \"LevelGroupId\": 1198, \"Disabled\": false, \"IsAlias\": false}]",
8709
8709
  "member": "DspaDiscoveryComplianceGroupInfo",
8710
8710
  "name": "Items",
8711
8711
  "output_required": true,
@@ -12269,7 +12269,7 @@
12269
12269
  },
12270
12270
  {
12271
12271
  "disabled": false,
12272
- "document": "1代表模版开启,0代表模版关闭",
12272
+ "document": "1代表模板开启,0代表模板关闭",
12273
12273
  "example": "1",
12274
12274
  "member": "int64",
12275
12275
  "name": "Status",
@@ -12279,7 +12279,7 @@
12279
12279
  },
12280
12280
  {
12281
12281
  "disabled": false,
12282
- "document": "模版最后修改时间",
12282
+ "document": "模板最后修改时间",
12283
12283
  "example": "2024-10-08 16:11:44",
12284
12284
  "member": "string",
12285
12285
  "name": "ModifyTime",
@@ -17632,7 +17632,7 @@
17632
17632
  },
17633
17633
  {
17634
17634
  "disabled": false,
17635
- "document": "报告模版名称",
17635
+ "document": "报告模板名称",
17636
17636
  "example": "数据资产报告",
17637
17637
  "member": "string",
17638
17638
  "name": "ReportTemplateName",
@@ -99,7 +99,7 @@
99
99
  "CreateDSPAComplianceGroup": [
100
100
  {
101
101
  "document": "",
102
- "input": "POST / HTTP/1.1\nHost: dsgc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDSPAComplianceGroup\n<公共请求参数>\n\n{\n \"LevelGroupId\": \"1\",\n \"DspaId\": \"dspa-001\",\n \"ComplianceGroupRules\": [\n {\n \"RuleId\": 2,\n \"CategoryId\": 3,\n \"LevelId\": 2\n }\n ],\n \"Name\": \"task\",\n \"Description\": \"分类分级模版描述\"\n}",
102
+ "input": "POST / HTTP/1.1\nHost: dsgc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDSPAComplianceGroup\n<公共请求参数>\n\n{\n \"LevelGroupId\": \"1\",\n \"DspaId\": \"dspa-001\",\n \"ComplianceGroupRules\": [\n {\n \"RuleId\": 2,\n \"CategoryId\": 3,\n \"LevelId\": 2\n }\n ],\n \"Name\": \"task\",\n \"Description\": \"分类分级模板描述\"\n}",
103
103
  "output": "{\n \"Response\": {\n \"RequestId\": \"20569756-56ba-4a13-b545-e1528d5cb239\",\n \"ComplianceGroupId\": 1\n }\n}",
104
104
  "title": "新增分类分级模板"
105
105
  }
@@ -12,8 +12,8 @@
12
12
  {
13
13
  "document": "",
14
14
  "input": "POST / HTTP/1.1\nHost: es.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateClusterSnapshot\n<公共请求参数>\n\n{\n \"InstanceId\": \"es-xxx\",\n \"SnapshotName\": \"es-xxx-test_20240912\",\n \"Indices\": \"kibana_sample_data_flights\"\n}",
15
- "output": "{\n \"Response\": {\n \"InstanceId\": \"es-xxx\",\n \"RequestId\": \"abc\"\n }\n}",
16
- "title": "demo"
15
+ "output": "{\n \"Response\": {\n \"InstanceId\": \"es-xxx\",\n \"RequestId\": \"16eaxxxx-xxxx-xxxx-xxxx-xxxxxe45ae3c\"\n }\n}",
16
+ "title": "集群快照手动创建"
17
17
  }
18
18
  ],
19
19
  "CreateCosMigrateToServerlessInstance": [
@@ -356,7 +356,7 @@
356
356
  {
357
357
  "document": "",
358
358
  "input": "POST / HTTP/1.1\nHost: es.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: RestoreClusterSnapshot\n<公共请求参数>\n\n{\n \"InstanceId\": \"es-qpzizjym\",\n \"Password\": \"pass\",\n \"RepositoryName\": \"ES_AUTO_BACKUP\",\n \"SnapshotName\": \"test1\",\n \"Indices\": \"testnew\",\n \"Partial\": \"true\",\n \"TargetInstanceId\": \"es-qpzizjym\"\n}",
359
- "output": "{\n \"Response\": {\n \"InstanceId\": \"es-qpzizjym\",\n \"RequestId\": \"test\"\n }\n}",
359
+ "output": "{\n \"Response\": {\n \"InstanceId\": \"es-qpzizjym\",\n \"RequestId\": \"test1\"\n }\n}",
360
360
  "title": "RestoreClusterSnapshot 恢复快照数据到集群"
361
361
  }
362
362
  ],
@@ -337,7 +337,7 @@
337
337
  "status": "online"
338
338
  },
339
339
  "CreatePartnerAutoSignAuthUrl": {
340
- "document": "创建一个用于他方自动签授权的链接(可选择他方授权或我方授权)。通过这个链接,合作方企业可以直接进入小程序,进行自动签授权操作。\n\n如果授权企业尚未开通企业自动签功能,该链接还将引导他们首先开通本企业的自动签服务\n\n注: \n1. <font color='red'>所在企业的超管、法人才有权限调用此接口</font>(Operator.UserId 需要传递超管或者法人的UserId)\n2. 已经在授权中或者授权成功的企业,无法重复授权\n3. 授权企业和被授权企业必须都是已认证企业\n4. <font color='red'>需要授权企业或被授权企业的超管或者法人打开链接</font>走开通逻辑。\n\n\n**该接口效果同控制台: 企业设置-> 扩展服务 -> 企业自动签署 -> 合作企业方授权**\n![image](https://qcloudimg.tencent-cloud.cn/raw/489aa0bf74941469b5e740f428f17c3a.png)",
340
+ "document": "创建一个用于他方自动签授权的链接(可选择他方授权或我方授权)。通过这个链接,合作方企业可以直接进入小程序,进行自动签授权操作。\n\n如果授权企业尚未开通企业自动签功能,该链接还将引导他们首先开通本企业的自动签服务\n\n注: \n1. <font color='red'>所在企业的超管、法人才有权限调用此接口</font>(Operator.UserId 需要传递超管或者法人的UserId)\n2. 已经在授权中或者授权成功的企业,无法重复授权\n3. 授权企业和被授权企业必须都是已认证企业\n4. <font color='red'>需要授权企业或被授权企业的超管或者法人打开链接</font>走开通逻辑。\n\n\n**该接口效果同控制台: 企业设置-> 扩展服务 -> 企业自动签署 -> 合作企业方授权**\n![image](https://qcloudimg.tencent-cloud.cn/raw/4f89c8d5ccc1397db964257fd73dd5e1.png)",
341
341
  "input": "CreatePartnerAutoSignAuthUrlRequest",
342
342
  "name": "创建他方自动签授权链接",
343
343
  "output": "CreatePartnerAutoSignAuthUrlResponse",
@@ -617,7 +617,7 @@
617
617
  "status": "online"
618
618
  },
619
619
  "DescribeIntegrationRoles": {
620
- "document": "此接口(DescribeIntegrationRoles)用于分页查询企业角色列表,列表按照角色创建时间升序排列。",
620
+ "document": "此接口(DescribeIntegrationRoles)用于分页查询企业角色列表,列表按照角色创建时间升序排列。\n\n角色分为系统默认角色与企业自定义角色,其中系统默认角色不可以禁用、删除、编辑权限项,只可往默认角色中添加成员。企业自定义角色为企业根据自身需要新增的角色,可根据企业具体情况设置各个角色的权限,例如新增财务岗、销售岗等角色。\n\n企业版的系统默认角色包含如下角色:\n\n| 角色名称 | 角色描述 |\n|------------------------------|--------------------------------------------------------------------------|\n| 超级管理员(电子签业务最高权限,e.g.法务/业务负责人) | 所有功能和数据管理权限,只能设置一位超管。 |\n| IT信息管理员(IT系统负责人,e.g. CTO) | 组织员工、计费模块、应用模块等权限能力。 |\n| 企业合同管理员(企业法务负责人) | 企业全部合同管理、可申请出证等权限能力。 |\n| 企业模板管理员 | 企业全部模板管理权限能力。 |\n| 企业印章管理员(企业行政负责人) | 管理企业的所有电子印章,如添加印章、启用停用印章、印章授权等。 |\n| 用印审批岗(各部门的印章管理岗) | 可对被授权的印章进行日常使用管理,如合同盖章用印的审核及登记。 |\n| 部门管理员(部门的合同+印章+模板管理) | 部门级(含子部门)所有合同管理权限能力。 |\n| 业务员(销售员、采购员) | 发起合同、签署合同(含填写、拒签)、撤销合同、持有印章等权限能力。 |",
621
621
  "input": "DescribeIntegrationRolesRequest",
622
622
  "name": "查询企业角色列表",
623
623
  "output": "DescribeIntegrationRolesResponse",
@@ -6955,7 +6955,7 @@
6955
6955
  {
6956
6956
  "disabled": false,
6957
6957
  "document": "在设置印章授权时,可以指定特定的印章类型,以确保在授权过程中只使用相应类型的印章。支持的印章类型包括:\n\n<ul>\n<li><strong>OFFICIAL</strong>:企业公章,用于代表企业对外的正式文件和重要事务的认证。</li>\n<li><strong>CONTRACT</strong>:合同专用章,专门用于签署各类合同。</li>\n<li><strong>FINANCE</strong>:财务专用章,用于企业的财务相关文件,如发票、收据等财务凭证的认证。</li>\n<li><strong>PERSONNEL</strong>:人事专用章,用于人事管理相关文件,如劳动合同、人事任命等。</li>\n</ul>",
6958
- "example": "OFFICIAL",
6958
+ "example": "[\"OFFICIAL\"]",
6959
6959
  "member": "string",
6960
6960
  "name": "SealTypes",
6961
6961
  "required": false,
@@ -6989,7 +6989,7 @@
6989
6989
  {
6990
6990
  "disabled": false,
6991
6991
  "document": "从客户小程序或者客户APP跳转至腾讯电子签小程序进行批量签署的跳转路径",
6992
- "example": "pages/guide?from=default&where=mini& to=CONTRACT_DETAIL& id=yDwiBUUc*duRvquCSX8wd& shortKey=yDwivUA**W1yRsTre3",
6992
+ "example": "pages/guide?where=mini&shortKey=yDwivUAW1",
6993
6993
  "member": "string",
6994
6994
  "name": "MiniAppPath",
6995
6995
  "output_required": false,
@@ -1696,7 +1696,7 @@
1696
1696
  {
1697
1697
  "document": "查询已实名员工列表\n1. Filter参数Key设置为\"Status\";\n2. Filter参数Values设置为\"IsVerified\",表示查询已实名员工;\n3. 设置Limit和Offset参数,从首页开始,每页查询20条数据返回。",
1698
1698
  "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeIntegrationEmployees\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"11234********************678901\"\n },\n \"Filters\": [\n {\n \"Key\": \"Status\",\n \"Values\": [\n \"IsVerified\"\n ]\n }\n ],\n \"Limit\": 20,\n \"Offset\": 0\n}",
1699
- "output": "{\n \"Response\": {\n \"Employees\": [\n {\n \"CreatedOn\": 1658114069,\n \"Department\": {\n \"DepartmentId\": \"dp**********************155f2\",\n \"DepartmentName\": \"测试企业\"\n },\n \"DisplayName\": \"张三\",\n \"Email\": \"\",\n \"Mobile\": \"13300001233\",\n \"OpenId\": \"\",\n \"QuiteJob\": 0,\n \"ReceiveOpenId\": \"\",\n \"ReceiveUserId\": \"\",\n \"Roles\": [\n {\n \"RoleId\": \"ea4ab3******************a6902\",\n \"RoleName\": \"法人\"\n },\n {\n \"RoleId\": \"9b7d******************cf8e9\",\n \"RoleName\": \"业务员\"\n },\n {\n \"RoleId\": \"4dff1******************10b\",\n \"RoleName\": \"企业员工\"\n }\n ],\n \"UserId\": \"yDRt******************BKpnZs\",\n \"Verified\": true,\n \"VerifiedOn\": 1658114065,\n \"WeworkOpenId\": \"\"\n },\n {\n \"CreatedOn\": 1658114000,\n \"Department\": {\n \"DepartmentId\": \"dp**********************155f2\",\n \"DepartmentName\": \"测试企业\"\n },\n \"DisplayName\": \"李四\",\n \"Email\": \"\",\n \"Mobile\": \"13500001234\",\n \"OpenId\": \"\",\n \"QuiteJob\": 0,\n \"ReceiveOpenId\": \"\",\n \"ReceiveUserId\": \"\",\n \"Roles\": [\n {\n \"RoleId\": \"4fcbf3******************ea6c63\",\n \"RoleName\": \"超级管理员\"\n }\n ],\n \"UserId\": \"yDwJ******************BGQyov\",\n \"Verified\": true,\n \"VerifiedOn\": 1658114066,\n \"WeworkOpenId\": \"\"\n }\n ],\n \"Limit\": 20,\n \"Offset\": 0,\n \"RequestId\": \"s1663******************195\",\n \"TotalCount\": 2\n }\n}",
1699
+ "output": "{\n \"Response\": {\n \"Employees\": [\n {\n \"CreatedOn\": 1658114069,\n \"Department\": {\n \"DepartmentId\": \"dp**********************155f2\",\n \"DepartmentName\": \"测试企业\"\n },\n \"DisplayName\": \"张三\",\n \"Email\": \"\",\n \"Mobile\": \"133****1233\",\n \"OpenId\": \"\",\n \"QuiteJob\": 0,\n \"ReceiveOpenId\": \"\",\n \"ReceiveUserId\": \"\",\n \"Roles\": [\n {\n \"RoleId\": \"ea4ab3******************a6902\",\n \"RoleName\": \"法人\"\n },\n {\n \"RoleId\": \"9b7d******************cf8e9\",\n \"RoleName\": \"业务员\"\n },\n {\n \"RoleId\": \"4dff1******************10b\",\n \"RoleName\": \"企业员工\"\n }\n ],\n \"UserId\": \"yDRt******************BKpnZs\",\n \"Verified\": true,\n \"VerifiedOn\": 1658114065,\n \"WeworkOpenId\": \"\"\n },\n {\n \"CreatedOn\": 1658114000,\n \"Department\": {\n \"DepartmentId\": \"dp**********************155f2\",\n \"DepartmentName\": \"测试企业\"\n },\n \"DisplayName\": \"李四\",\n \"Email\": \"\",\n \"Mobile\": \"135****1234\",\n \"OpenId\": \"\",\n \"QuiteJob\": 0,\n \"ReceiveOpenId\": \"\",\n \"ReceiveUserId\": \"\",\n \"Roles\": [\n {\n \"RoleId\": \"4fcbf3******************ea6c63\",\n \"RoleName\": \"超级管理员\"\n }\n ],\n \"UserId\": \"yDwJ******************BGQyov\",\n \"Verified\": true,\n \"VerifiedOn\": 1658114066,\n \"WeworkOpenId\": \"\"\n }\n ],\n \"Limit\": 20,\n \"Offset\": 0,\n \"RequestId\": \"s1663******************195\",\n \"TotalCount\": 2\n }\n}",
1700
1700
  "title": "查询员工列表(查询已实名员工列表)"
1701
1701
  }
1702
1702
  ],
@@ -759,7 +759,7 @@
759
759
  },
760
760
  "metadata": {
761
761
  "apiVersion": "2020-03-24",
762
- "api_brief": "介绍如何使用API对 lighthouse 实例资源进行相关操作,如启动实例、关闭实例、重启实例、查询实例列表等。",
762
+ "api_brief": "介绍如何使用API对 Lighthouse 资源和服务进行相关操作,如启动实例、关闭实例、重启实例、查询实例列表等。",
763
763
  "serviceNameCN": "轻量应用服务器",
764
764
  "serviceShortName": "lighthouse"
765
765
  },