tccli 3.0.1098.1__py2.py3-none-any.whl → 3.0.1099.1__py2.py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- tccli/__init__.py +1 -1
- tccli/examples/cfw/v20190904/DescribeIPStatusList.md +4 -4
- tccli/examples/cls/v20201016/OpenKafkaConsumer.md +1 -1
- tccli/examples/cynosdb/v20190107/DescribeChangedParamsAfterUpgrade.md +31 -0
- tccli/examples/faceid/v20180301/GetFaceIdResult.md +3 -1
- tccli/examples/hunyuan/v20230901/ChatCompletions.md +43 -0
- tccli/examples/ims/v20200713/ImageModeration.md +4 -1
- tccli/examples/teo/v20220901/DescribeRealtimeLogDeliveryTasks.md +42 -21
- tccli/services/aiart/v20221229/api.json +1 -1
- tccli/services/ccc/v20200210/api.json +1 -1
- tccli/services/cfs/v20190719/api.json +27 -27
- tccli/services/cfw/v20190904/api.json +5 -5
- tccli/services/cfw/v20190904/examples.json +1 -1
- tccli/services/cloudstudio/v20230508/api.json +13 -4
- tccli/services/cls/v20201016/api.json +68 -44
- tccli/services/cls/v20201016/examples.json +1 -1
- tccli/services/cynosdb/cynosdb_client.py +53 -0
- tccli/services/cynosdb/v20190107/api.json +120 -2
- tccli/services/cynosdb/v20190107/examples.json +8 -0
- tccli/services/dcdb/v20180411/api.json +2 -2
- tccli/services/ess/v20201111/api.json +1 -1
- tccli/services/faceid/v20180301/api.json +21 -1
- tccli/services/faceid/v20180301/examples.json +1 -1
- tccli/services/hunyuan/hunyuan_client.py +53 -0
- tccli/services/hunyuan/v20230901/api.json +161 -22
- tccli/services/hunyuan/v20230901/examples.json +8 -0
- tccli/services/ims/v20200713/api.json +13 -0
- tccli/services/ims/v20200713/examples.json +1 -1
- tccli/services/lcic/v20220817/api.json +1 -1
- tccli/services/mariadb/v20170312/api.json +2 -2
- tccli/services/monitor/v20180724/api.json +1 -1
- tccli/services/mps/v20190612/api.json +46 -1
- tccli/services/rum/v20210622/api.json +2 -2
- tccli/services/teo/v20220901/api.json +128 -17
- tccli/services/teo/v20220901/examples.json +2 -2
- tccli/services/tmt/v20180321/api.json +1 -1
- tccli/services/waf/v20180125/api.json +2 -2
- {tccli-3.0.1098.1.dist-info → tccli-3.0.1099.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1098.1.dist-info → tccli-3.0.1099.1.dist-info}/RECORD +42 -40
- {tccli-3.0.1098.1.dist-info → tccli-3.0.1099.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1098.1.dist-info → tccli-3.0.1099.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1098.1.dist-info → tccli-3.0.1099.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '3.0.
|
1
|
+
__version__ = '3.0.1099.1'
|
@@ -15,13 +15,13 @@ Output:
|
|
15
15
|
"Response": {
|
16
16
|
"StatusList": [
|
17
17
|
{
|
18
|
-
"
|
19
|
-
"
|
18
|
+
"IP": "abc",
|
19
|
+
"Status": 0
|
20
20
|
}
|
21
21
|
],
|
22
22
|
"ReturnCode": 0,
|
23
|
-
"ReturnMsg": "
|
24
|
-
"RequestId": "
|
23
|
+
"ReturnMsg": "abc",
|
24
|
+
"RequestId": "abc"
|
25
25
|
}
|
26
26
|
}
|
27
27
|
```
|
@@ -0,0 +1,31 @@
|
|
1
|
+
**Example 1: 查询升降配运行参数对比**
|
2
|
+
|
3
|
+
查询升降配运行参数对比
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli cynosdb DescribeChangedParamsAfterUpgrade --cli-unfold-argument \
|
9
|
+
--InstanceId cynosdbmysql-ins-p8dst5v9 \
|
10
|
+
--DstCpu 1 \
|
11
|
+
--DstMem 1
|
12
|
+
```
|
13
|
+
|
14
|
+
Output:
|
15
|
+
```
|
16
|
+
{
|
17
|
+
"Response": {
|
18
|
+
"RequestId": "7613eed6-5eb5-4d17-ae69-dd93c44d7ad4",
|
19
|
+
"TotalCount": 1,
|
20
|
+
"Items": [
|
21
|
+
{
|
22
|
+
"ParamName": "demoString",
|
23
|
+
"NewValue": "demoString",
|
24
|
+
"OldValue": "demoString",
|
25
|
+
"ValueFunction": "demoString"
|
26
|
+
}
|
27
|
+
]
|
28
|
+
}
|
29
|
+
}
|
30
|
+
```
|
31
|
+
|
@@ -0,0 +1,43 @@
|
|
1
|
+
**Example 1: system参数示例**
|
2
|
+
|
3
|
+
system提示词
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli hunyuan ChatCompletions --cli-unfold-argument \
|
9
|
+
--TopP 1 \
|
10
|
+
--Temperature 1 \
|
11
|
+
--Model hunyuan-lite \
|
12
|
+
--Messages.0.Role system \
|
13
|
+
--Messages.0.Content 将英文单词转换为包括中文翻译、英文释义和一个例句的完整解释。请检查所有信息是否准确,并在回答时保持简洁,不需要任何其他反馈。 \
|
14
|
+
--Messages.1.Role user \
|
15
|
+
--Messages.1.Content nice
|
16
|
+
```
|
17
|
+
|
18
|
+
Output:
|
19
|
+
```
|
20
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"很好"}}],"Created":1705634813,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":1,"TotalTokens":37}}
|
21
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":":"}}],"Created":1705634813,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":2,"TotalTokens":38}}
|
22
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"nice"}}],"Created":1705634813,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":3,"TotalTokens":39}}
|
23
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"\n"}}],"Created":1705634813,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":4,"TotalTokens":40}}
|
24
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"英文"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":5,"TotalTokens":41}}
|
25
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"释义"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":6,"TotalTokens":42}}
|
26
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":":"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":7,"TotalTokens":43}}
|
27
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"ple"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":8,"TotalTokens":44}}
|
28
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"asing"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":9,"TotalTokens":45}}
|
29
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":" or"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":10,"TotalTokens":46}}
|
30
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":" acceptable"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":11,"TotalTokens":47}}
|
31
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"\n"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":12,"TotalTokens":48}}
|
32
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"例"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":13,"TotalTokens":49}}
|
33
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"句"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":14,"TotalTokens":50}}
|
34
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":":"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":15,"TotalTokens":51}}
|
35
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"She"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":16,"TotalTokens":52}}
|
36
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":" had"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":17,"TotalTokens":53}}
|
37
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":" a"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":18,"TotalTokens":54}}
|
38
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":" nice"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":19,"TotalTokens":55}}
|
39
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":" smile"}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":20,"TotalTokens":56}}
|
40
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"","Delta":{"Role":"assistant","Content":"."}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":21,"TotalTokens":57}}
|
41
|
+
{"Note":"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记","Choices":[{"FinishReason":"stop","Delta":{"Role":"assistant","Content":""}}],"Created":1705634814,"Id":"681ef57e-9f1e-4faa-a2d3-07b655a1fa1f","Usage":{"PromptTokens":36,"CompletionTokens":21,"TotalTokens":57}}
|
42
|
+
```
|
43
|
+
|
@@ -6,7 +6,7 @@ Input:
|
|
6
6
|
|
7
7
|
```
|
8
8
|
tccli teo DescribeRealtimeLogDeliveryTasks --cli-unfold-argument \
|
9
|
-
--ZoneId zone-
|
9
|
+
--ZoneId zone-2ur49nglp1a2 \
|
10
10
|
--Offset 0 \
|
11
11
|
--Limit 1000
|
12
12
|
```
|
@@ -15,38 +15,59 @@ Output:
|
|
15
15
|
```
|
16
16
|
{
|
17
17
|
"Response": {
|
18
|
-
"TotalCount": 1,
|
19
18
|
"RealtimeLogDeliveryTasks": [
|
20
19
|
{
|
21
|
-
"
|
22
|
-
"
|
20
|
+
"Area": "overseas",
|
21
|
+
"CLS": {
|
22
|
+
"LogSetId": "980611e5-3eb2-430f-a0cc-e1c4e84a9e40",
|
23
|
+
"LogSetRegion": "ap-guangzhou",
|
24
|
+
"TopicId": "d258c060-dc6e-4586-8b7c-6a951667fa7a"
|
25
|
+
},
|
26
|
+
"CreateTime": "2024-03-26T03:00:39+08:00",
|
27
|
+
"CustomEndpoint": null,
|
28
|
+
"CustomFields": [],
|
29
|
+
"DeliveryConditions": [],
|
23
30
|
"DeliveryStatus": "enabled",
|
24
|
-
"TaskType": "cls",
|
25
31
|
"EntityList": [
|
26
|
-
"
|
32
|
+
"qqqq.loliyu.com"
|
27
33
|
],
|
28
|
-
"LogType": "domain",
|
29
|
-
"Area": "overseas",
|
30
34
|
"Fields": [
|
31
35
|
"RequestID",
|
32
36
|
"ClientIP",
|
33
|
-
"ClientRegion"
|
37
|
+
"ClientRegion",
|
38
|
+
"RequestTime",
|
39
|
+
"RequestHost",
|
40
|
+
"RequestBytes",
|
41
|
+
"RequestMethod",
|
42
|
+
"RequestUrl",
|
43
|
+
"RequestUrlQueryString",
|
44
|
+
"RequestUA",
|
45
|
+
"RequestRange",
|
46
|
+
"RequestReferer",
|
47
|
+
"RequestProtocol",
|
48
|
+
"RemotePort",
|
49
|
+
"EdgeCacheStatus",
|
50
|
+
"EdgeResponseStatusCode",
|
51
|
+
"EdgeResponseBytes",
|
52
|
+
"EdgeResponseTime",
|
53
|
+
"EdgeInternalTime",
|
54
|
+
"ClientState",
|
55
|
+
"ClientISP",
|
56
|
+
"EdgeServerID",
|
57
|
+
"EdgeServerIP"
|
34
58
|
],
|
35
|
-
"
|
36
|
-
"
|
37
|
-
"Sample": 1000,
|
38
|
-
"CLS": {
|
39
|
-
"LogSetId": "288f187c-c3ef-4479-a086-b9465a1243cb",
|
40
|
-
"LogSetRegion": "ap-guangzhou",
|
41
|
-
"TopicId": "0e23008b-c0ed-4d98-a77c-bdc65dfe3731"
|
42
|
-
},
|
43
|
-
"CustomEndpoint": null,
|
59
|
+
"LogFormat": null,
|
60
|
+
"LogType": "domain",
|
44
61
|
"S3": null,
|
45
|
-
"
|
46
|
-
"
|
62
|
+
"Sample": 0,
|
63
|
+
"TaskId": "f0e1686a-1c4e-4f15-967b-5afb2a0803ea",
|
64
|
+
"TaskName": "ccc",
|
65
|
+
"TaskType": "cls",
|
66
|
+
"UpdateTime": "2024-03-26T03:10:13+08:00"
|
47
67
|
}
|
48
68
|
],
|
49
|
-
"RequestId": "
|
69
|
+
"RequestId": "05205d07-f582-444d-b558-b338a3f68857",
|
70
|
+
"TotalCount": 1
|
50
71
|
}
|
51
72
|
}
|
52
73
|
```
|
@@ -584,7 +584,7 @@
|
|
584
584
|
},
|
585
585
|
{
|
586
586
|
"disabled": false,
|
587
|
-
"document": "
|
587
|
+
"document": "写真风格模板,支持以下风格:\nzhengjian_female:证件照-长发(女)\nzhengjian_shouthair_female:证件照-短发(女)\nzhengjian_male:证件照(男)\ngrey_suit_male:灰色西装(男)\nbeige_suit_male:米色西装(男)\nwhite_sweater_male:白色毛衣(男)\nhanfu_female:汉服(女)\nhanfu2_female:汉服2(女)\ngreen_female:绿色毛衣(女)\nwhite_sweater_female:白色毛衣(女)\nsports_female:蓝色运动装(女)\nbow_female:蝴蝶结发饰(女)\nwreath_female:头戴花环(女)\nblack_dress1_female:小黑裙1(女)\nblack_dress2_female:小黑裙2(女)\nblack_dress3_female:小黑裙3(女)\nwedding_female:婚纱裙(女)\nwedding2_female:婚纱裙2(女)\nforest_female:树林(女)\nflower_female:花丛(女)\nqipao_female:旗袍(女)\nfeather_female:羽毛(女)\nlolita_female:洛丽塔(女)\nblue_shirt_female:蓝衬衣(女)\ngreen_shirt_female:绿衬衣(女)\npurple_shirt_female:紫衬衣(女)\nfire_female:火焰(女)\nchristmas1_female: 圣诞1(女)\nchristmas2_female: 圣诞2(女)\nchristmas3_female: 圣诞3(适用女性)\nnewyear1_female:新春1(女)\nnewyear2_female:新春2(女)\nnewyear3_female:新春3(女)\nnewyear5_female:新春5(女)\nelderly_female:中老年(女)\nelderly_male:中老年(男)\nlabour_female:田野劳作(女)\nsimple:简洁风格(通用),一般用于写真模型的封面示意图,每个 ModelId 的生成结果固定,多次生成将返回相同图片",
|
588
588
|
"example": "zhengjian_female",
|
589
589
|
"member": "string",
|
590
590
|
"name": "StyleId",
|
@@ -2799,7 +2799,7 @@
|
|
2799
2799
|
},
|
2800
2800
|
{
|
2801
2801
|
"disabled": false,
|
2802
|
-
"document": "应用 ID
|
2802
|
+
"document": "应用 ID,可以查看 https://console.cloud.tencent.com/ccc",
|
2803
2803
|
"example": "1400000000",
|
2804
2804
|
"member": "int64",
|
2805
2805
|
"name": "SdkAppId",
|
@@ -404,7 +404,7 @@
|
|
404
404
|
},
|
405
405
|
{
|
406
406
|
"disabled": false,
|
407
|
-
"document": "
|
407
|
+
"document": "账号ID",
|
408
408
|
"example": "122445",
|
409
409
|
"member": "uint64",
|
410
410
|
"name": "AppId",
|
@@ -1180,7 +1180,7 @@
|
|
1180
1180
|
},
|
1181
1181
|
{
|
1182
1182
|
"disabled": false,
|
1183
|
-
"document": "用户权限,值为 all_squash、no_all_squash、root_squash、no_root_squash
|
1183
|
+
"document": "用户权限,值为 all_squash、no_all_squash、root_squash、no_root_squash。\nall_squash:所有访问用户(含 root 用户)都会被映射为匿名用户或用户组。\nno_all_squash:所有访问用户(含 root 用户)均保持原有的 UID/GID 信息。\nroot_squash:将来访的 root 用户映射为匿名用户或用户组,非 root 用户保持原有的 UID/GID 信息。\nno_root_squash:与 no_all_squash 效果一致,所有访问用户(含 root 用户)均保持原有的 UID/GID 信息\n",
|
1184
1184
|
"example": "root_squash",
|
1185
1185
|
"member": "string",
|
1186
1186
|
"name": "UserPermission",
|
@@ -1199,7 +1199,7 @@
|
|
1199
1199
|
"example": "rule-12345",
|
1200
1200
|
"member": "string",
|
1201
1201
|
"name": "RuleId",
|
1202
|
-
"
|
1202
|
+
"output_required": true,
|
1203
1203
|
"type": "string",
|
1204
1204
|
"value_allowed_null": false
|
1205
1205
|
},
|
@@ -1209,7 +1209,7 @@
|
|
1209
1209
|
"example": "pgroup-12345",
|
1210
1210
|
"member": "string",
|
1211
1211
|
"name": "PGroupId",
|
1212
|
-
"
|
1212
|
+
"output_required": true,
|
1213
1213
|
"type": "string",
|
1214
1214
|
"value_allowed_null": false
|
1215
1215
|
},
|
@@ -1219,7 +1219,7 @@
|
|
1219
1219
|
"example": "10.1.1.10",
|
1220
1220
|
"member": "string",
|
1221
1221
|
"name": "AuthClientIp",
|
1222
|
-
"
|
1222
|
+
"output_required": true,
|
1223
1223
|
"type": "string",
|
1224
1224
|
"value_allowed_null": false
|
1225
1225
|
},
|
@@ -1229,7 +1229,7 @@
|
|
1229
1229
|
"example": "rw",
|
1230
1230
|
"member": "string",
|
1231
1231
|
"name": "RWPermission",
|
1232
|
-
"
|
1232
|
+
"output_required": true,
|
1233
1233
|
"type": "string",
|
1234
1234
|
"value_allowed_null": false
|
1235
1235
|
},
|
@@ -1239,7 +1239,7 @@
|
|
1239
1239
|
"example": "root_squash",
|
1240
1240
|
"member": "string",
|
1241
1241
|
"name": "UserPermission",
|
1242
|
-
"
|
1242
|
+
"output_required": true,
|
1243
1243
|
"type": "string",
|
1244
1244
|
"value_allowed_null": false
|
1245
1245
|
},
|
@@ -1249,7 +1249,7 @@
|
|
1249
1249
|
"example": "9",
|
1250
1250
|
"member": "int64",
|
1251
1251
|
"name": "Priority",
|
1252
|
-
"
|
1252
|
+
"output_required": true,
|
1253
1253
|
"type": "int",
|
1254
1254
|
"value_allowed_null": false
|
1255
1255
|
},
|
@@ -3578,50 +3578,50 @@
|
|
3578
3578
|
{
|
3579
3579
|
"disabled": false,
|
3580
3580
|
"document": "规则ID",
|
3581
|
-
"example": "",
|
3581
|
+
"example": "无",
|
3582
3582
|
"member": "string",
|
3583
3583
|
"name": "RuleId",
|
3584
|
-
"
|
3584
|
+
"output_required": true,
|
3585
3585
|
"type": "string",
|
3586
3586
|
"value_allowed_null": false
|
3587
3587
|
},
|
3588
3588
|
{
|
3589
3589
|
"disabled": false,
|
3590
3590
|
"document": "允许访问的客户端IP",
|
3591
|
-
"example": "",
|
3591
|
+
"example": "无",
|
3592
3592
|
"member": "string",
|
3593
3593
|
"name": "AuthClientIp",
|
3594
|
-
"
|
3594
|
+
"output_required": true,
|
3595
3595
|
"type": "string",
|
3596
3596
|
"value_allowed_null": false
|
3597
3597
|
},
|
3598
3598
|
{
|
3599
3599
|
"disabled": false,
|
3600
3600
|
"document": "读写权限, ro为只读,rw为读写",
|
3601
|
-
"example": "",
|
3601
|
+
"example": "无",
|
3602
3602
|
"member": "string",
|
3603
3603
|
"name": "RWPermission",
|
3604
|
-
"
|
3604
|
+
"output_required": true,
|
3605
3605
|
"type": "string",
|
3606
3606
|
"value_allowed_null": false
|
3607
3607
|
},
|
3608
3608
|
{
|
3609
3609
|
"disabled": false,
|
3610
|
-
"document": "
|
3611
|
-
"example": "",
|
3610
|
+
"document": "all_squash:所有访问用户(含 root 用户)都会被映射为匿名用户或用户组。\nno_all_squash:所有访问用户(含 root 用户)均保持原有的 UID/GID 信息。\nroot_squash:将来访的 root 用户映射为匿名用户或用户组,非 root 用户保持原有的 UID/GID 信息。\nno_root_squash:与 no_all_squash 效果一致,所有访问用户(含 root 用户)均保持原有的 UID/GID 信息\n",
|
3611
|
+
"example": "无",
|
3612
3612
|
"member": "string",
|
3613
3613
|
"name": "UserPermission",
|
3614
|
-
"
|
3614
|
+
"output_required": true,
|
3615
3615
|
"type": "string",
|
3616
3616
|
"value_allowed_null": false
|
3617
3617
|
},
|
3618
3618
|
{
|
3619
3619
|
"disabled": false,
|
3620
3620
|
"document": "规则优先级,1-100。 其中 1 为最高,100为最低",
|
3621
|
-
"example": "",
|
3621
|
+
"example": "无",
|
3622
3622
|
"member": "int64",
|
3623
3623
|
"name": "Priority",
|
3624
|
-
"
|
3624
|
+
"output_required": true,
|
3625
3625
|
"type": "int",
|
3626
3626
|
"value_allowed_null": false
|
3627
3627
|
}
|
@@ -3869,7 +3869,7 @@
|
|
3869
3869
|
},
|
3870
3870
|
{
|
3871
3871
|
"disabled": false,
|
3872
|
-
"document": "
|
3872
|
+
"document": "账号ID",
|
3873
3873
|
"example": "21211",
|
3874
3874
|
"member": "uint64",
|
3875
3875
|
"name": "AppId",
|
@@ -4533,7 +4533,7 @@
|
|
4533
4533
|
},
|
4534
4534
|
{
|
4535
4535
|
"disabled": false,
|
4536
|
-
"document": "用户权限,值为all_squash、no_all_squash、root_squash、no_root_squash
|
4536
|
+
"document": "用户权限,值为all_squash、no_all_squash、root_squash、no_root_squash。\nall_squash:所有访问用户(含 root 用户)都会被映射为匿名用户或用户组。\nno_all_squash:所有访问用户(含 root 用户)均保持原有的 UID/GID 信息。\nroot_squash:将来访的 root 用户映射为匿名用户或用户组,非 root 用户保持原有的 UID/GID 信息。\nno_root_squash:与 no_all_squash 效果一致,所有访问用户(含 root 用户)均保持原有的 UID/GID 信息\n",
|
4537
4537
|
"example": "no_root_squash",
|
4538
4538
|
"member": "string",
|
4539
4539
|
"name": "UserPermission",
|
@@ -4561,7 +4561,7 @@
|
|
4561
4561
|
"example": "pgroup-12345",
|
4562
4562
|
"member": "string",
|
4563
4563
|
"name": "PGroupId",
|
4564
|
-
"
|
4564
|
+
"output_required": true,
|
4565
4565
|
"type": "string",
|
4566
4566
|
"value_allowed_null": false
|
4567
4567
|
},
|
@@ -4571,7 +4571,7 @@
|
|
4571
4571
|
"example": "rule-12345",
|
4572
4572
|
"member": "string",
|
4573
4573
|
"name": "RuleId",
|
4574
|
-
"
|
4574
|
+
"output_required": true,
|
4575
4575
|
"type": "string",
|
4576
4576
|
"value_allowed_null": false
|
4577
4577
|
},
|
@@ -4581,7 +4581,7 @@
|
|
4581
4581
|
"example": "10.0.0.10",
|
4582
4582
|
"member": "string",
|
4583
4583
|
"name": "AuthClientIp",
|
4584
|
-
"
|
4584
|
+
"output_required": true,
|
4585
4585
|
"type": "string",
|
4586
4586
|
"value_allowed_null": false
|
4587
4587
|
},
|
@@ -4591,7 +4591,7 @@
|
|
4591
4591
|
"example": "rw",
|
4592
4592
|
"member": "string",
|
4593
4593
|
"name": "RWPermission",
|
4594
|
-
"
|
4594
|
+
"output_required": true,
|
4595
4595
|
"type": "string",
|
4596
4596
|
"value_allowed_null": false
|
4597
4597
|
},
|
@@ -4601,7 +4601,7 @@
|
|
4601
4601
|
"example": "no_root_squash",
|
4602
4602
|
"member": "string",
|
4603
4603
|
"name": "UserPermission",
|
4604
|
-
"
|
4604
|
+
"output_required": true,
|
4605
4605
|
"type": "string",
|
4606
4606
|
"value_allowed_null": false
|
4607
4607
|
},
|
@@ -4611,7 +4611,7 @@
|
|
4611
4611
|
"example": "7",
|
4612
4612
|
"member": "int64",
|
4613
4613
|
"name": "Priority",
|
4614
|
-
"
|
4614
|
+
"output_required": true,
|
4615
4615
|
"type": "int",
|
4616
4616
|
"value_allowed_null": false
|
4617
4617
|
},
|
@@ -323,9 +323,9 @@
|
|
323
323
|
"status": "online"
|
324
324
|
},
|
325
325
|
"DescribeIPStatusList": {
|
326
|
-
"document": "
|
326
|
+
"document": "IP防护状态查询",
|
327
327
|
"input": "DescribeIPStatusListRequest",
|
328
|
-
"name": "
|
328
|
+
"name": "IP防护状态查询",
|
329
329
|
"output": "DescribeIPStatusListResponse",
|
330
330
|
"status": "online"
|
331
331
|
},
|
@@ -5871,7 +5871,7 @@
|
|
5871
5871
|
"example": "无",
|
5872
5872
|
"member": "IPDefendStatus",
|
5873
5873
|
"name": "StatusList",
|
5874
|
-
"
|
5874
|
+
"output_required": true,
|
5875
5875
|
"type": "list",
|
5876
5876
|
"value_allowed_null": false
|
5877
5877
|
},
|
@@ -5881,7 +5881,7 @@
|
|
5881
5881
|
"example": "1",
|
5882
5882
|
"member": "int64",
|
5883
5883
|
"name": "ReturnCode",
|
5884
|
-
"
|
5884
|
+
"output_required": true,
|
5885
5885
|
"type": "int",
|
5886
5886
|
"value_allowed_null": false
|
5887
5887
|
},
|
@@ -5891,7 +5891,7 @@
|
|
5891
5891
|
"example": "Success",
|
5892
5892
|
"member": "string",
|
5893
5893
|
"name": "ReturnMsg",
|
5894
|
-
"
|
5894
|
+
"output_required": true,
|
5895
5895
|
"type": "string",
|
5896
5896
|
"value_allowed_null": false
|
5897
5897
|
},
|
@@ -390,7 +390,7 @@
|
|
390
390
|
{
|
391
391
|
"document": "",
|
392
392
|
"input": "POST / HTTP/1.1\nHost: cfw.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeIPStatusList\n<公共请求参数>\n\n{\n \"IPList\": [\n \"1.2.3.4\"\n ]\n}",
|
393
|
-
"output": "{\n \"Response\": {\n \"StatusList\": [\n {\n \"
|
393
|
+
"output": "{\n \"Response\": {\n \"StatusList\": [\n {\n \"IP\": \"abc\",\n \"Status\": 0\n }\n ],\n \"ReturnCode\": 0,\n \"ReturnMsg\": \"abc\",\n \"RequestId\": \"abc\"\n }\n}",
|
394
394
|
"title": "告警中心-资产安全事件统计-资产详情"
|
395
395
|
}
|
396
396
|
],
|
@@ -151,7 +151,7 @@
|
|
151
151
|
"document": "应用名称",
|
152
152
|
"example": "1303697168",
|
153
153
|
"member": "int64",
|
154
|
-
"name": "
|
154
|
+
"name": "TenantAppId",
|
155
155
|
"required": false,
|
156
156
|
"type": "int"
|
157
157
|
},
|
@@ -160,7 +160,7 @@
|
|
160
160
|
"document": "用户UIN",
|
161
161
|
"example": "100015915015",
|
162
162
|
"member": "string",
|
163
|
-
"name": "
|
163
|
+
"name": "TenantUin",
|
164
164
|
"required": false,
|
165
165
|
"type": "string"
|
166
166
|
},
|
@@ -169,7 +169,7 @@
|
|
169
169
|
"document": "VPCID",
|
170
170
|
"example": "vpc-rdfkabjj",
|
171
171
|
"member": "string",
|
172
|
-
"name": "
|
172
|
+
"name": "TenantUniqVpcId",
|
173
173
|
"required": false,
|
174
174
|
"type": "string"
|
175
175
|
},
|
@@ -178,7 +178,16 @@
|
|
178
178
|
"document": "子网ID",
|
179
179
|
"example": "subnet-bx88somq",
|
180
180
|
"member": "string",
|
181
|
-
"name": "
|
181
|
+
"name": "TenantSubnetId",
|
182
|
+
"required": false,
|
183
|
+
"type": "string"
|
184
|
+
},
|
185
|
+
{
|
186
|
+
"disabled": false,
|
187
|
+
"document": "地域",
|
188
|
+
"example": "ap-shanghai",
|
189
|
+
"member": "string",
|
190
|
+
"name": "Region",
|
182
191
|
"required": false,
|
183
192
|
"type": "string"
|
184
193
|
}
|