tccli 3.0.1106.1__py2.py3-none-any.whl → 3.0.1107.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/csip/v20221121/UpdateAlertStatusList.md +31 -0
- tccli/examples/cwp/v20180228/DescribeHostLoginList.md +18 -1
- tccli/examples/monitor/v20180724/CleanGrafanaInstance.md +1 -1
- tccli/examples/tcss/v20201101/DescribeEventEscapeImageList.md +41 -0
- tccli/services/ckafka/v20190819/api.json +643 -249
- tccli/services/cls/v20201016/api.json +1 -1
- tccli/services/csip/csip_client.py +53 -0
- tccli/services/csip/v20221121/api.json +150 -0
- tccli/services/csip/v20221121/examples.json +8 -0
- tccli/services/cwp/v20180228/api.json +3 -1
- tccli/services/cwp/v20180228/examples.json +1 -1
- tccli/services/dnspod/v20210323/api.json +1 -1
- tccli/services/ess/v20201111/api.json +9 -0
- tccli/services/essbasic/v20210526/api.json +1 -1
- tccli/services/monitor/v20180724/examples.json +1 -1
- tccli/services/tcss/tcss_client.py +57 -4
- tccli/services/tcss/v20201101/api.json +216 -0
- tccli/services/tcss/v20201101/examples.json +8 -0
- {tccli-3.0.1106.1.dist-info → tccli-3.0.1107.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1106.1.dist-info → tccli-3.0.1107.1.dist-info}/RECORD +24 -22
- {tccli-3.0.1106.1.dist-info → tccli-3.0.1107.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1106.1.dist-info → tccli-3.0.1107.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1106.1.dist-info → tccli-3.0.1107.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '3.0.
|
1
|
+
__version__ = '3.0.1107.1'
|
@@ -0,0 +1,31 @@
|
|
1
|
+
**Example 1: test**
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli csip UpdateAlertStatusList --cli-unfold-argument \
|
9
|
+
--OperatedMemberId abc \
|
10
|
+
--ID.0.AppId abc \
|
11
|
+
--ID.0.Type abc \
|
12
|
+
--ID.0.SubType abc \
|
13
|
+
--ID.0.Source abc \
|
14
|
+
--ID.0.Name abc \
|
15
|
+
--ID.0.Key abc \
|
16
|
+
--ID.0.Date abc \
|
17
|
+
--ID.0.Status 0 \
|
18
|
+
--OperateType 0
|
19
|
+
```
|
20
|
+
|
21
|
+
Output:
|
22
|
+
```
|
23
|
+
{
|
24
|
+
"Response": {
|
25
|
+
"Msg": "abc",
|
26
|
+
"Code": "abc",
|
27
|
+
"RequestId": "abc"
|
28
|
+
}
|
29
|
+
}
|
30
|
+
```
|
31
|
+
|
@@ -30,7 +30,24 @@ Output:
|
|
30
30
|
"City": 216,
|
31
31
|
"Province": 19,
|
32
32
|
"LoginTime": "2020-02-20 14:51:35",
|
33
|
-
"ModifyTime": "2020-02-20 14:51:35"
|
33
|
+
"ModifyTime": "2020-02-20 14:51:35",
|
34
|
+
"IsRiskUser": 0,
|
35
|
+
"Port": 22,
|
36
|
+
"Location": "中国:广东省:深圳市",
|
37
|
+
"Desc": "",
|
38
|
+
"IsRiskSrcIp": 1,
|
39
|
+
"IsRiskArea": 1,
|
40
|
+
"Quuid": "xxxx-xxxx-xxxxxx-xxxxxx-xxxx",
|
41
|
+
"RiskLevel": 0,
|
42
|
+
"IsRiskTime": 1,
|
43
|
+
"MachineExtraInfo": {
|
44
|
+
"WanIP": "111.111.111.111",
|
45
|
+
"InstanceID": "ins-12341234",
|
46
|
+
"NetworkName": "",
|
47
|
+
"PrivateIP": "1.1.1.1",
|
48
|
+
"NetworkType": 1,
|
49
|
+
"HostName": "abc"
|
50
|
+
}
|
34
51
|
}
|
35
52
|
],
|
36
53
|
"RequestId": "4234234",
|
@@ -0,0 +1,41 @@
|
|
1
|
+
**Example 1: 查询风险容器镜像列表**
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli tcss DescribeEventEscapeImageList --cli-unfold-argument \
|
9
|
+
--Limit 1 \
|
10
|
+
--Offset 1 \
|
11
|
+
--Filters.0.Name abc \
|
12
|
+
--Filters.0.Values abc \
|
13
|
+
--Filters.0.ExactMatch True \
|
14
|
+
--Order abc \
|
15
|
+
--By abc
|
16
|
+
```
|
17
|
+
|
18
|
+
Output:
|
19
|
+
```
|
20
|
+
{
|
21
|
+
"Response": {
|
22
|
+
"List": [
|
23
|
+
{
|
24
|
+
"EventType": "abc",
|
25
|
+
"OriginEventType": "abc",
|
26
|
+
"ImageName": "abc",
|
27
|
+
"ContainerCount": 0,
|
28
|
+
"FoundTime": "2020-09-22 00:00:00",
|
29
|
+
"LatestFoundTime": "2020-09-22 00:00:00",
|
30
|
+
"EventCount": 0,
|
31
|
+
"Status": "abc",
|
32
|
+
"Description": "abc",
|
33
|
+
"Solution": "abc"
|
34
|
+
}
|
35
|
+
],
|
36
|
+
"TotalCount": 1,
|
37
|
+
"RequestId": "abc"
|
38
|
+
}
|
39
|
+
}
|
40
|
+
```
|
41
|
+
|