tccli 3.0.1106.1__py2.py3-none-any.whl → 3.0.1107.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 CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1106.1'
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",
@@ -13,7 +13,7 @@ Output:
13
13
  ```
14
14
  {
15
15
  "Response": {
16
- "RequestId": "xxx"
16
+ "RequestId": "3c140219-cfe9-470e-b241-907877d6fb03"
17
17
  }
18
18
  }
19
19
  ```
@@ -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
+