tccli 3.0.1328.1__py2.py3-none-any.whl → 3.0.1329.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/cbs/v20170312/api.json +13 -13
- tccli/services/ccc/v20200210/api.json +36 -0
- tccli/services/cdn/v20180606/examples.json +1 -1
- tccli/services/cdwch/v20200915/api.json +3 -3
- tccli/services/cdwch/v20200915/examples.json +1 -1
- tccli/services/emr/v20190103/api.json +1 -1
- tccli/services/ess/v20201111/api.json +2 -2
- tccli/services/essbasic/v20210526/api.json +2 -2
- tccli/services/gs/gs_client.py +53 -0
- tccli/services/gs/v20191118/api.json +61 -8
- tccli/services/gs/v20191118/examples.json +8 -0
- tccli/services/hai/hai_client.py +53 -0
- tccli/services/hai/v20230812/api.json +62 -0
- tccli/services/hai/v20230812/examples.json +8 -0
- tccli/services/ioa/ioa_client.py +53 -0
- tccli/services/ioa/v20220601/api.json +263 -0
- tccli/services/ioa/v20220601/examples.json +8 -0
- tccli/services/iotexplorer/v20190423/api.json +52 -1
- tccli/services/lighthouse/v20200324/api.json +1 -1
- tccli/services/lke/v20231130/api.json +315 -4
- tccli/services/lke/v20231130/examples.json +4 -4
- tccli/services/ocr/v20181119/api.json +2 -2
- tccli/services/sqlserver/v20180328/api.json +29 -2
- tccli/services/ssl/v20191205/api.json +79 -0
- tccli/services/ssl/v20191205/examples.json +6 -6
- tccli/services/tke/tke_client.py +53 -0
- tccli/services/tke/v20220501/api.json +61 -0
- tccli/services/tke/v20220501/examples.json +8 -0
- tccli/services/trtc/trtc_client.py +216 -4
- tccli/services/trtc/v20190722/api.json +429 -0
- tccli/services/trtc/v20190722/examples.json +32 -0
- tccli/services/vm/v20210922/api.json +16 -20
- {tccli-3.0.1328.1.dist-info → tccli-3.0.1329.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1328.1.dist-info → tccli-3.0.1329.1.dist-info}/RECORD +38 -38
- {tccli-3.0.1328.1.dist-info → tccli-3.0.1329.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1328.1.dist-info → tccli-3.0.1329.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1328.1.dist-info → tccli-3.0.1329.1.dist-info}/license_files/LICENSE +0 -0
tccli/services/ioa/ioa_client.py
CHANGED
@@ -329,6 +329,58 @@ def doDescribeSoftCensusListByDevice(args, parsed_globals):
|
|
329
329
|
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
330
330
|
|
331
331
|
|
332
|
+
def doDescribeDeviceHardwareInfoList(args, parsed_globals):
|
333
|
+
g_param = parse_global_arg(parsed_globals)
|
334
|
+
|
335
|
+
if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
|
336
|
+
cred = credential.CVMRoleCredential()
|
337
|
+
elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
|
338
|
+
cred = credential.STSAssumeRoleCredential(
|
339
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
|
340
|
+
g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
|
341
|
+
)
|
342
|
+
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):
|
343
|
+
cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
|
344
|
+
else:
|
345
|
+
cred = credential.Credential(
|
346
|
+
g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
|
347
|
+
)
|
348
|
+
http_profile = HttpProfile(
|
349
|
+
reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
|
350
|
+
reqMethod="POST",
|
351
|
+
endpoint=g_param[OptionsDefine.Endpoint],
|
352
|
+
proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
|
353
|
+
)
|
354
|
+
profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
|
355
|
+
if g_param[OptionsDefine.Language]:
|
356
|
+
profile.language = g_param[OptionsDefine.Language]
|
357
|
+
mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
|
358
|
+
client = mod.IoaClient(cred, g_param[OptionsDefine.Region], profile)
|
359
|
+
client._sdkVersion += ("_CLI_" + __version__)
|
360
|
+
models = MODELS_MAP[g_param[OptionsDefine.Version]]
|
361
|
+
model = models.DescribeDeviceHardwareInfoListRequest()
|
362
|
+
model.from_json_string(json.dumps(args))
|
363
|
+
start_time = time.time()
|
364
|
+
while True:
|
365
|
+
rsp = client.DescribeDeviceHardwareInfoList(model)
|
366
|
+
result = rsp.to_json_string()
|
367
|
+
try:
|
368
|
+
json_obj = json.loads(result)
|
369
|
+
except TypeError as e:
|
370
|
+
json_obj = json.loads(result.decode('utf-8')) # python3.3
|
371
|
+
if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
|
372
|
+
break
|
373
|
+
cur_time = time.time()
|
374
|
+
if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
|
375
|
+
raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
|
376
|
+
(g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
|
377
|
+
search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
|
378
|
+
else:
|
379
|
+
print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
|
380
|
+
time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
|
381
|
+
FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
|
382
|
+
|
383
|
+
|
332
384
|
def doDescribeRootAccountGroup(args, parsed_globals):
|
333
385
|
g_param = parse_global_arg(parsed_globals)
|
334
386
|
|
@@ -502,6 +554,7 @@ ACTION_MAP = {
|
|
502
554
|
"DescribeDevices": doDescribeDevices,
|
503
555
|
"CreateDLPFileDetectionTask": doCreateDLPFileDetectionTask,
|
504
556
|
"DescribeSoftCensusListByDevice": doDescribeSoftCensusListByDevice,
|
557
|
+
"DescribeDeviceHardwareInfoList": doDescribeDeviceHardwareInfoList,
|
505
558
|
"DescribeRootAccountGroup": doDescribeRootAccountGroup,
|
506
559
|
"DescribeDLPFileDetectResult": doDescribeDLPFileDetectResult,
|
507
560
|
"DescribeAccountGroups": doDescribeAccountGroups,
|
@@ -35,6 +35,13 @@
|
|
35
35
|
"output": "DescribeDLPFileDetectResultResponse",
|
36
36
|
"status": "online"
|
37
37
|
},
|
38
|
+
"DescribeDeviceHardwareInfoList": {
|
39
|
+
"document": "查询满足条件的查询终端硬件信息列表,私有化调用path为:/capi/Assets/Device/DescribeDeviceHardwareInfoList",
|
40
|
+
"input": "DescribeDeviceHardwareInfoListRequest",
|
41
|
+
"name": "查询终端硬件信息列表",
|
42
|
+
"output": "DescribeDeviceHardwareInfoListResponse",
|
43
|
+
"status": "online"
|
44
|
+
},
|
38
45
|
"DescribeDevices": {
|
39
46
|
"document": "查询满足条件的终端数据详情,私有化调用path为:/capi/Assets/Device/DescribeDevices",
|
40
47
|
"input": "DescribeDevicesRequest",
|
@@ -810,6 +817,262 @@
|
|
810
817
|
],
|
811
818
|
"type": "object"
|
812
819
|
},
|
820
|
+
"DescribeDeviceHardwareInfoItem": {
|
821
|
+
"document": "终端硬件信息列表Item数据",
|
822
|
+
"members": [
|
823
|
+
{
|
824
|
+
"disabled": false,
|
825
|
+
"document": "设备ID",
|
826
|
+
"example": "1",
|
827
|
+
"member": "int64",
|
828
|
+
"name": "Id",
|
829
|
+
"output_required": true,
|
830
|
+
"type": "int",
|
831
|
+
"value_allowed_null": false
|
832
|
+
},
|
833
|
+
{
|
834
|
+
"disabled": false,
|
835
|
+
"document": "设备唯一标识符",
|
836
|
+
"example": "10527BB0BE025F40B5E8A7D00B5E13E268243DBB",
|
837
|
+
"member": "string",
|
838
|
+
"name": "Mid",
|
839
|
+
"output_required": true,
|
840
|
+
"type": "string",
|
841
|
+
"value_allowed_null": false
|
842
|
+
},
|
843
|
+
{
|
844
|
+
"disabled": false,
|
845
|
+
"document": "OS平台 0 Windows 1 Linux 2 macOS 4 Android 5 iOS",
|
846
|
+
"example": "0",
|
847
|
+
"member": "int64",
|
848
|
+
"name": "OsType",
|
849
|
+
"output_required": false,
|
850
|
+
"type": "int",
|
851
|
+
"value_allowed_null": false
|
852
|
+
},
|
853
|
+
{
|
854
|
+
"disabled": false,
|
855
|
+
"document": "终端名",
|
856
|
+
"example": "MAGICTONG-PC4",
|
857
|
+
"member": "string",
|
858
|
+
"name": "Name",
|
859
|
+
"output_required": false,
|
860
|
+
"type": "string",
|
861
|
+
"value_allowed_null": false
|
862
|
+
},
|
863
|
+
{
|
864
|
+
"disabled": false,
|
865
|
+
"document": "终端用户名",
|
866
|
+
"example": "magic",
|
867
|
+
"member": "string",
|
868
|
+
"name": "UserName",
|
869
|
+
"output_required": false,
|
870
|
+
"type": "string",
|
871
|
+
"value_allowed_null": false
|
872
|
+
},
|
873
|
+
{
|
874
|
+
"disabled": false,
|
875
|
+
"document": "授权状态( 4未授权 5已授权)",
|
876
|
+
"example": "5",
|
877
|
+
"member": "int64",
|
878
|
+
"name": "Status",
|
879
|
+
"output_required": false,
|
880
|
+
"type": "int",
|
881
|
+
"value_allowed_null": false
|
882
|
+
},
|
883
|
+
{
|
884
|
+
"disabled": false,
|
885
|
+
"document": "设备所属分组ID",
|
886
|
+
"example": "1578",
|
887
|
+
"member": "int64",
|
888
|
+
"name": "GroupId",
|
889
|
+
"output_required": false,
|
890
|
+
"type": "int",
|
891
|
+
"value_allowed_null": false
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"disabled": false,
|
895
|
+
"document": "设备所属分组名",
|
896
|
+
"example": "未分组终端",
|
897
|
+
"member": "string",
|
898
|
+
"name": "GroupName",
|
899
|
+
"output_required": false,
|
900
|
+
"type": "string",
|
901
|
+
"value_allowed_null": false
|
902
|
+
},
|
903
|
+
{
|
904
|
+
"disabled": false,
|
905
|
+
"document": "设备所属分组路径",
|
906
|
+
"example": "全网终端.未分组终端",
|
907
|
+
"member": "string",
|
908
|
+
"name": "GroupNamePath",
|
909
|
+
"output_required": false,
|
910
|
+
"type": "string",
|
911
|
+
"value_allowed_null": false
|
912
|
+
},
|
913
|
+
{
|
914
|
+
"disabled": false,
|
915
|
+
"document": "最近登录账户的姓名",
|
916
|
+
"example": "张三",
|
917
|
+
"member": "string",
|
918
|
+
"name": "AccountName",
|
919
|
+
"output_required": false,
|
920
|
+
"type": "string",
|
921
|
+
"value_allowed_null": false
|
922
|
+
},
|
923
|
+
{
|
924
|
+
"disabled": false,
|
925
|
+
"document": "出口IP",
|
926
|
+
"example": "113.108.77.50",
|
927
|
+
"member": "string",
|
928
|
+
"name": "Ip",
|
929
|
+
"output_required": false,
|
930
|
+
"type": "string",
|
931
|
+
"value_allowed_null": false
|
932
|
+
},
|
933
|
+
{
|
934
|
+
"disabled": false,
|
935
|
+
"document": "MAC地址",
|
936
|
+
"example": "00:0C:29:DD:00:06",
|
937
|
+
"member": "string",
|
938
|
+
"name": "MacAddr",
|
939
|
+
"output_required": false,
|
940
|
+
"type": "string",
|
941
|
+
"value_allowed_null": false
|
942
|
+
},
|
943
|
+
{
|
944
|
+
"disabled": false,
|
945
|
+
"document": "CPU品牌型号",
|
946
|
+
"example": "Intel(R) Core(TM) i7-10700 CPU @ 2.90GH",
|
947
|
+
"member": "string",
|
948
|
+
"name": "Cpu",
|
949
|
+
"output_required": false,
|
950
|
+
"type": "string",
|
951
|
+
"value_allowed_null": false
|
952
|
+
},
|
953
|
+
{
|
954
|
+
"disabled": false,
|
955
|
+
"document": "内存信息",
|
956
|
+
"example": "4 GB",
|
957
|
+
"member": "string",
|
958
|
+
"name": "Memory",
|
959
|
+
"output_required": false,
|
960
|
+
"type": "string",
|
961
|
+
"value_allowed_null": false
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"disabled": false,
|
965
|
+
"document": "硬盘信息",
|
966
|
+
"example": "VMware, VMware Virtual S SCSI Disk Device 1 GB",
|
967
|
+
"member": "string",
|
968
|
+
"name": "HardDiskSize",
|
969
|
+
"output_required": false,
|
970
|
+
"type": "string",
|
971
|
+
"value_allowed_null": false
|
972
|
+
},
|
973
|
+
{
|
974
|
+
"disabled": false,
|
975
|
+
"document": "显示器品牌型号",
|
976
|
+
"example": "Parallels Vu",
|
977
|
+
"member": "string",
|
978
|
+
"name": "Monitor",
|
979
|
+
"output_required": false,
|
980
|
+
"type": "string",
|
981
|
+
"value_allowed_null": false
|
982
|
+
}
|
983
|
+
],
|
984
|
+
"usage": "out"
|
985
|
+
},
|
986
|
+
"DescribeDeviceHardwareInfoListRequest": {
|
987
|
+
"document": "DescribeDeviceHardwareInfoList请求参数结构体",
|
988
|
+
"members": [
|
989
|
+
{
|
990
|
+
"disabled": false,
|
991
|
+
"document": "【必填】设备分组id(需要和OsType匹配),下面是私有化场景下默认id:id-名称-操作系统1\t全网终端\tWin2\t未分组终端\tWin30000000\t服务器\tWin40000101\t全网终端\tLinux40000102\t未分组终端\tLinux40000103\t服务器\tLinux40000201\t全网终端\tmacOS40000202\t未分组终端\tmacOS40000203\t服务器\tmacOS40000401\t全网终端\tAndroid40000402\t未分组终端\tAndroid40000501\t全网终端\tiOS40000502\t未分组终端\tiOSSaaS需要调用分组接口DescribeDeviceChildGroups获取对应分组id",
|
992
|
+
"example": "93",
|
993
|
+
"member": "int64",
|
994
|
+
"name": "GroupId",
|
995
|
+
"required": true,
|
996
|
+
"type": "int"
|
997
|
+
},
|
998
|
+
{
|
999
|
+
"disabled": false,
|
1000
|
+
"document": "【必填】操作系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0),需要和GroupId或者GroupIds匹配",
|
1001
|
+
"example": "0",
|
1002
|
+
"member": "int64",
|
1003
|
+
"name": "OsType",
|
1004
|
+
"required": true,
|
1005
|
+
"type": "int"
|
1006
|
+
},
|
1007
|
+
{
|
1008
|
+
"disabled": false,
|
1009
|
+
"document": "管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域\"1\",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。",
|
1010
|
+
"example": "1",
|
1011
|
+
"member": "string",
|
1012
|
+
"name": "DomainInstanceId",
|
1013
|
+
"required": false,
|
1014
|
+
"type": "string"
|
1015
|
+
},
|
1016
|
+
{
|
1017
|
+
"disabled": false,
|
1018
|
+
"document": "过滤条件参数(字段含义请参考接口返回值) - Name, 类型String,支持操作:【eq,like,ilike】,支持排序 - UserName, 类型String,支持操作:【eq,like,ilike】,支持排序 - IoaUserName,类型String,支持操作:【eq,like,ilike】,支持排序 - MacAddr, 类型String,支持操作:【eq,like,ilike】,支持排序 - Ip, 类型String,支持操作:【eq,like,ilike】,支持排序 ,支持排序分页参数- PageNum 从1开始,小于等于0时使用默认参数- PageSize 最大值5000,最好不超过100",
|
1019
|
+
"example": "\"Condition\":{\"Filters\":[],\"Sort\":{\"Field\":\"Id\",\"Order\":\"desc\"},\"PageSize\":10,\"PageNum\":1}",
|
1020
|
+
"member": "Condition",
|
1021
|
+
"name": "Condition",
|
1022
|
+
"required": false,
|
1023
|
+
"type": "object"
|
1024
|
+
}
|
1025
|
+
],
|
1026
|
+
"type": "object"
|
1027
|
+
},
|
1028
|
+
"DescribeDeviceHardwareInfoListResponse": {
|
1029
|
+
"document": "DescribeDeviceHardwareInfoList返回参数结构体",
|
1030
|
+
"members": [
|
1031
|
+
{
|
1032
|
+
"disabled": false,
|
1033
|
+
"document": "分页的data数据",
|
1034
|
+
"example": "无",
|
1035
|
+
"member": "DescribeDeviceHardwareInfoListRspData",
|
1036
|
+
"name": "Data",
|
1037
|
+
"output_required": true,
|
1038
|
+
"type": "object",
|
1039
|
+
"value_allowed_null": false
|
1040
|
+
},
|
1041
|
+
{
|
1042
|
+
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
1043
|
+
"member": "string",
|
1044
|
+
"name": "RequestId",
|
1045
|
+
"type": "string"
|
1046
|
+
}
|
1047
|
+
],
|
1048
|
+
"type": "object"
|
1049
|
+
},
|
1050
|
+
"DescribeDeviceHardwareInfoListRspData": {
|
1051
|
+
"document": "终端硬件信息列表响应详情",
|
1052
|
+
"members": [
|
1053
|
+
{
|
1054
|
+
"disabled": false,
|
1055
|
+
"document": "分页数据",
|
1056
|
+
"example": "无",
|
1057
|
+
"member": "Paging",
|
1058
|
+
"name": "Page",
|
1059
|
+
"output_required": true,
|
1060
|
+
"type": "object",
|
1061
|
+
"value_allowed_null": false
|
1062
|
+
},
|
1063
|
+
{
|
1064
|
+
"disabled": false,
|
1065
|
+
"document": "终端硬件信息数据数组",
|
1066
|
+
"example": "无",
|
1067
|
+
"member": "DescribeDeviceHardwareInfoItem",
|
1068
|
+
"name": "Items",
|
1069
|
+
"output_required": true,
|
1070
|
+
"type": "list",
|
1071
|
+
"value_allowed_null": false
|
1072
|
+
}
|
1073
|
+
],
|
1074
|
+
"usage": "out"
|
1075
|
+
},
|
813
1076
|
"DescribeDevicesPageRsp": {
|
814
1077
|
"document": "分页的data数据",
|
815
1078
|
"members": [
|
@@ -58,6 +58,14 @@
|
|
58
58
|
"title": "检测成功示例"
|
59
59
|
}
|
60
60
|
],
|
61
|
+
"DescribeDeviceHardwareInfoList": [
|
62
|
+
{
|
63
|
+
"document": "查询终端硬件信息列表",
|
64
|
+
"input": "POST / HTTP/1.1\nHost: ioa.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeDeviceHardwareInfoList\n<公共请求参数>\n\n{\n \"GroupId\": 11668614,\n \"OsType\": 0,\n \"DomainInstanceId\": \"1\"\n}",
|
65
|
+
"output": "{\n \"Response\": {\n \"Data\": {\n \"Items\": [\n {\n \"AccountName\": \"\",\n \"Cpu\": \"12th Gen Intel(R) Core(TM) i7-12700H\",\n \"GroupId\": 11668615,\n \"GroupName\": \"未分组终端\",\n \"GroupNamePath\": \"全网终端.未分组终端\",\n \"HardDiskSize\": \"VMware Virtual NVMe Disk 44 GB\",\n \"Id\": 288665,\n \"Ip\": \"113.108.77.52\",\n \"MacAddr\": \"00:0C:29:96:E6:DE\",\n \"Memory\": \"4 GB\",\n \"Mid\": \"0A811A6ECD8D6F4CA516AB56B1C2ECFC68104148\",\n \"Monitor\": \"\",\n \"Name\": \"PC-20240705KXXE\",\n \"OsType\": 0,\n \"Status\": 5,\n \"UserName\": \"Administrator\"\n },\n {\n \"AccountName\": \"\",\n \"Cpu\": \"Intel Pentium III Xeon 处理器\",\n \"GroupId\": 11668634,\n \"GroupName\": \"dddd\",\n \"GroupNamePath\": \"全网终端.dddd\",\n \"HardDiskSize\": \"VMware, VMware Virtual S SCSI Disk Device 14 GB\",\n \"Id\": 288664,\n \"Ip\": \"113.108.77.52\",\n \"MacAddr\": \"B0:DC:EF:E7:37:EE\",\n \"Memory\": \"1024 MB\",\n \"Mid\": \"489C698CAECC13B1B7C44E59443F5CBB676B7F33\",\n \"Monitor\": \"\",\n \"Name\": \"cs-207addad83ae\",\n \"OsType\": 0,\n \"Status\": 5,\n \"UserName\": \"Administrator\"\n },\n {\n \"AccountName\": \"\",\n \"Cpu\": \"12th Gen Intel(R) Core(TM) i7-12700H\",\n \"GroupId\": 11668637,\n \"GroupName\": \"本地ip\",\n \"GroupNamePath\": \"全网终端.本地ip\",\n \"HardDiskSize\": \"SAMSUNG MZVL41T0HBLB-00BL7 953 GB\",\n \"Id\": 288663,\n \"Ip\": \"119.147.10.192\",\n \"MacAddr\": \"B0:DC:EF:E7:37:EA\",\n \"Memory\": \"32 GB\",\n \"Mid\": \"8314BF3FD3FD738410C4FBB0DDDA48786800AB00\",\n \"Monitor\": \"\",\n \"Name\": \"STEVENSSHE-NBIR\",\n \"OsType\": 0,\n \"Status\": 5,\n \"UserName\": \"Administrator\"\n },\n {\n \"AccountName\": \"\",\n \"Cpu\": \"\",\n \"GroupId\": 11668634,\n \"GroupName\": \"dddd\",\n \"GroupNamePath\": \"全网终端.dddd\",\n \"HardDiskSize\": \"\",\n \"Id\": 288662,\n \"Ip\": \"119.147.10.202\",\n \"MacAddr\": \"\",\n \"Memory\": \"\",\n \"Mid\": \"7EBWA5184BEC838B96B29CE8105EC66167F8D1B2\",\n \"Monitor\": \"\",\n \"Name\": \"lucal_win-PC7\",\n \"OsType\": 0,\n \"Status\": 5,\n \"UserName\": \"lucal_win\"\n },\n {\n \"AccountName\": \"\",\n \"Cpu\": \"\",\n \"GroupId\": 11668634,\n \"GroupName\": \"dddd\",\n \"GroupNamePath\": \"全网终端.dddd\",\n \"HardDiskSize\": \"\",\n \"Id\": 288661,\n \"Ip\": \"119.147.10.202\",\n \"MacAddr\": \"\",\n \"Memory\": \"\",\n \"Mid\": \"1EBWA5184BEC838B96B29CE8105EC66167F8CFBD\",\n \"Monitor\": \"\",\n \"Name\": \"lucal_win-PC\",\n \"OsType\": 0,\n \"Status\": 5,\n \"UserName\": \"lucal_win\"\n }\n ],\n \"Page\": {\n \"PageCount\": 1,\n \"PageNum\": 1,\n \"PageSize\": 20,\n \"Total\": 5\n }\n },\n \"RequestId\": \"e00b7ba5-f534-4067-9fda-83012521919d\"\n }\n}",
|
66
|
+
"title": "查询终端硬件信息列表"
|
67
|
+
}
|
68
|
+
],
|
61
69
|
"DescribeDevices": [
|
62
70
|
{
|
63
71
|
"document": "获取租户满足条件:最近登录账号包含\\'cc\\'(不区分大小写)的设备列表详情",
|
@@ -9516,6 +9516,48 @@
|
|
9516
9516
|
],
|
9517
9517
|
"usage": "in"
|
9518
9518
|
},
|
9519
|
+
"DiarySHLConfig": {
|
9520
|
+
"document": "Diary Simple Highlight 配置",
|
9521
|
+
"members": [
|
9522
|
+
{
|
9523
|
+
"disabled": false,
|
9524
|
+
"document": "每个视频偏移时长,单位秒",
|
9525
|
+
"example": "2",
|
9526
|
+
"member": "uint64",
|
9527
|
+
"name": "StartOffset",
|
9528
|
+
"required": false,
|
9529
|
+
"type": "int"
|
9530
|
+
},
|
9531
|
+
{
|
9532
|
+
"disabled": false,
|
9533
|
+
"document": "视频浓缩倍数,支持1,2,4之间",
|
9534
|
+
"example": "1",
|
9535
|
+
"member": "uint64",
|
9536
|
+
"name": "PlaySpeed",
|
9537
|
+
"required": false,
|
9538
|
+
"type": "int"
|
9539
|
+
},
|
9540
|
+
{
|
9541
|
+
"disabled": false,
|
9542
|
+
"document": "单个视频最小提取时长,单位秒",
|
9543
|
+
"example": "2",
|
9544
|
+
"member": "uint64",
|
9545
|
+
"name": "MiniExtract",
|
9546
|
+
"required": false,
|
9547
|
+
"type": "int"
|
9548
|
+
},
|
9549
|
+
{
|
9550
|
+
"disabled": false,
|
9551
|
+
"document": "每天最终输出视频时长,单位秒\n注:免费版固定10s",
|
9552
|
+
"example": "10",
|
9553
|
+
"member": "uint64",
|
9554
|
+
"name": "OutDuration",
|
9555
|
+
"required": false,
|
9556
|
+
"type": "int"
|
9557
|
+
}
|
9558
|
+
],
|
9559
|
+
"usage": "in"
|
9560
|
+
},
|
9519
9561
|
"DirectBindDeviceInFamilyRequest": {
|
9520
9562
|
"document": "DirectBindDeviceInFamily请求参数结构体",
|
9521
9563
|
"members": [
|
@@ -13283,7 +13325,7 @@
|
|
13283
13325
|
},
|
13284
13326
|
{
|
13285
13327
|
"disabled": false,
|
13286
|
-
"document": "云存 AI 服务类型。可选值:\n- `RealtimeObjectDetect`:目标检测\n- `Highlight
|
13328
|
+
"document": "云存 AI 服务类型。可选值:\n- `RealtimeObjectDetect`:目标检测\n- `Highlight`:视频浓缩\n- `SimpleHighlight`:TrueX SimpleHighlight",
|
13287
13329
|
"example": "Highlight",
|
13288
13330
|
"member": "string",
|
13289
13331
|
"name": "ServiceType",
|
@@ -13316,6 +13358,15 @@
|
|
13316
13358
|
"name": "Config",
|
13317
13359
|
"required": false,
|
13318
13360
|
"type": "string"
|
13361
|
+
},
|
13362
|
+
{
|
13363
|
+
"disabled": false,
|
13364
|
+
"document": "SimpleHighlight 算法配置参数",
|
13365
|
+
"example": "无",
|
13366
|
+
"member": "DiarySHLConfig",
|
13367
|
+
"name": "SHLConfig",
|
13368
|
+
"required": false,
|
13369
|
+
"type": "object"
|
13319
13370
|
}
|
13320
13371
|
],
|
13321
13372
|
"type": "object"
|
@@ -1160,7 +1160,7 @@
|
|
1160
1160
|
},
|
1161
1161
|
{
|
1162
1162
|
"disabled": false,
|
1163
|
-
"document": "
|
1163
|
+
"document": "镜像状态。\n可选值:\nNORMAL(正常)、SYNCING(同步中)、OFFLINE(下线)、ISOLATED(已隔离)、CREATEFAILED(创建失败)、SYNCING_FAILED(目的地域同步失败)、ISOLATING(隔离中)、ISOLATED(已隔离)、DELETING(删除中)、DESTROYING(销毁中)。",
|
1164
1164
|
"example": "NORMAL",
|
1165
1165
|
"member": "string",
|
1166
1166
|
"name": "BlueprintState",
|