tccli 3.0.923.1__py2.py3-none-any.whl → 3.0.924.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/apigateway/v20180808/DescribeServicesStatus.md +33 -19
- tccli/examples/clb/v20180317/CloneLoadBalancer.md +3 -3
- tccli/examples/clb/v20180317/DescribeListeners.md +49 -127
- tccli/examples/clb/v20180317/DescribeLoadBalancers.md +578 -158
- tccli/examples/cls/v20201016/DescribeConfigs.md +2 -1
- tccli/examples/cls/v20201016/DescribeKafkaConsumer.md +23 -0
- tccli/examples/cls/v20201016/ModifyKafkaConsumer.md +21 -0
- tccli/examples/cynosdb/v20190107/DescribeAccounts.md +10 -10
- tccli/examples/cynosdb/v20190107/DescribeClusterDetail.md +77 -65
- tccli/examples/essbasic/v20210526/DescribeTemplates.md +13 -4
- tccli/examples/essbasic/v20210526/OperateChannelTemplate.md +2 -2
- tccli/examples/mna/v20210119/GetDevices.md +9 -16
- tccli/examples/mna/v20210119/UpdateDevice.md +7 -10
- tccli/examples/ms/v20180408/CreateEncryptInstance.md +30 -30
- tccli/examples/ms/v20180408/CreateOrderInstance.md +2 -2
- tccli/examples/ms/v20180408/DescribeEncryptInstances.md +73 -65
- tccli/examples/ms/v20180408/DescribeEncryptPlan.md +34 -34
- tccli/examples/ms/v20180408/DescribeOrderInstances.md +1 -1
- tccli/examples/oceanus/v20190422/CreateJobConfig.md +1 -1
- tccli/examples/tdmq/v20200217/CreateRocketMQVipInstance.md +28 -0
- tccli/examples/vpc/v20170312/CreateVpnGateway.md +20 -26
- tccli/services/apigateway/v20180808/api.json +119 -12
- tccli/services/apigateway/v20180808/examples.json +4 -4
- tccli/services/asr/v20190614/api.json +1 -1
- tccli/services/clb/v20180317/api.json +190 -60
- tccli/services/clb/v20180317/examples.json +10 -10
- tccli/services/cls/cls_client.py +110 -4
- tccli/services/cls/v20201016/api.json +277 -55
- tccli/services/cls/v20201016/examples.json +17 -1
- tccli/services/cynosdb/v20190107/api.json +82 -31
- tccli/services/cynosdb/v20190107/examples.json +3 -3
- tccli/services/dlc/v20210125/api.json +11 -11
- tccli/services/emr/v20190103/api.json +10 -0
- tccli/services/ess/v20201111/api.json +416 -91
- tccli/services/essbasic/v20210526/api.json +113 -78
- tccli/services/essbasic/v20210526/examples.json +5 -5
- tccli/services/faceid/v20180301/api.json +21 -16
- tccli/services/live/v20180801/api.json +42 -22
- tccli/services/mna/v20210119/api.json +11 -12
- tccli/services/mna/v20210119/examples.json +4 -4
- tccli/services/mps/v20190612/api.json +142 -61
- tccli/services/ms/v20180408/api.json +92 -19
- tccli/services/ms/v20180408/examples.json +31 -31
- tccli/services/oceanus/v20190422/api.json +355 -41
- tccli/services/oceanus/v20190422/examples.json +1 -1
- tccli/services/tdmq/tdmq_client.py +53 -0
- tccli/services/tdmq/v20200217/api.json +126 -0
- tccli/services/tdmq/v20200217/examples.json +8 -0
- tccli/services/tts/v20190823/api.json +1 -1
- tccli/services/vpc/v20170312/api.json +45 -65
- tccli/services/vpc/v20170312/examples.json +3 -3
- {tccli-3.0.923.1.dist-info → tccli-3.0.924.1.dist-info}/METADATA +2 -2
- {tccli-3.0.923.1.dist-info → tccli-3.0.924.1.dist-info}/RECORD +57 -54
- {tccli-3.0.923.1.dist-info → tccli-3.0.924.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.923.1.dist-info → tccli-3.0.924.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.923.1.dist-info → tccli-3.0.924.1.dist-info}/license_files/LICENSE +0 -0
@@ -0,0 +1,23 @@
|
|
1
|
+
**Example 1: 获取Kakfa协议消费信息**
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli cls DescribeKafkaConsumer --cli-unfold-argument \
|
9
|
+
--FromTopicId a5ce0c9c-0690-44a5-bc79-5f2190626bd0
|
10
|
+
```
|
11
|
+
|
12
|
+
Output:
|
13
|
+
```
|
14
|
+
{
|
15
|
+
"Response": {
|
16
|
+
"Status": true,
|
17
|
+
"TopicID": "out-a5ce0c9c-0690-44a5-bc79-5f2190626bd0",
|
18
|
+
"RequestId": "6ef60bec-0242-43af-bb20-270359fb54a7",
|
19
|
+
"Compression": 1
|
20
|
+
}
|
21
|
+
}
|
22
|
+
```
|
23
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
**Example 1: 修改Kafka协议消费信息**
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli cls ModifyKafkaConsumer --cli-unfold-argument \
|
9
|
+
--FromTopicId a5ce0c9c-0690-44a5-bc79-5f2190626bd0 \
|
10
|
+
--Compression 1
|
11
|
+
```
|
12
|
+
|
13
|
+
Output:
|
14
|
+
```
|
15
|
+
{
|
16
|
+
"Response": {
|
17
|
+
"RequestId": "6ef60bec-0242-43af-bb20-270359fb54a7"
|
18
|
+
}
|
19
|
+
}
|
20
|
+
```
|
21
|
+
|
@@ -1,6 +1,6 @@
|
|
1
1
|
**Example 1: 查询数据库管理账号**
|
2
2
|
|
3
|
-
|
3
|
+
查询数据库管理账号
|
4
4
|
|
5
5
|
Input:
|
6
6
|
|
@@ -13,18 +13,18 @@ Output:
|
|
13
13
|
```
|
14
14
|
{
|
15
15
|
"Response": {
|
16
|
-
"RequestId": "150918",
|
17
|
-
"TotalCount": 1,
|
18
16
|
"AccountSet": [
|
19
17
|
{
|
20
|
-
"
|
21
|
-
"
|
22
|
-
"CreateTime": "
|
23
|
-
"
|
24
|
-
"
|
25
|
-
"
|
18
|
+
"AccountName": "abc",
|
19
|
+
"Description": "abc",
|
20
|
+
"CreateTime": "2020-09-22 00:00:00",
|
21
|
+
"UpdateTime": "2020-09-22 00:00:00",
|
22
|
+
"Host": "abc",
|
23
|
+
"MaxUserConnections": 0
|
26
24
|
}
|
27
|
-
]
|
25
|
+
],
|
26
|
+
"TotalCount": 0,
|
27
|
+
"RequestId": "abc"
|
28
28
|
}
|
29
29
|
}
|
30
30
|
```
|
@@ -14,91 +14,103 @@ Output:
|
|
14
14
|
{
|
15
15
|
"Response": {
|
16
16
|
"Detail": {
|
17
|
-
"
|
18
|
-
"
|
19
|
-
"
|
20
|
-
"
|
21
|
-
"
|
17
|
+
"ClusterId": "abc",
|
18
|
+
"ClusterName": "abc",
|
19
|
+
"Region": "abc",
|
20
|
+
"Zone": "abc",
|
21
|
+
"PhysicalZone": "abc",
|
22
|
+
"Status": "abc",
|
23
|
+
"StatusDesc": "abc",
|
24
|
+
"ServerlessStatus": "abc",
|
25
|
+
"StorageId": "abc",
|
22
26
|
"Storage": 0,
|
23
|
-
"
|
24
|
-
"
|
27
|
+
"MaxStorageSize": 0,
|
28
|
+
"MinStorageSize": 0,
|
29
|
+
"StoragePayMode": 0,
|
30
|
+
"VpcName": "abc",
|
31
|
+
"VpcId": "abc",
|
32
|
+
"SubnetName": "abc",
|
33
|
+
"SubnetId": "abc",
|
34
|
+
"Charset": "abc",
|
35
|
+
"CreateTime": "abc",
|
36
|
+
"DbType": "abc",
|
37
|
+
"DbMode": "abc",
|
38
|
+
"DbVersion": "abc",
|
39
|
+
"StorageLimit": 0,
|
40
|
+
"UsedStorage": 0,
|
41
|
+
"Vip": "abc",
|
42
|
+
"Vport": 0,
|
43
|
+
"RoAddr": [
|
25
44
|
{
|
26
|
-
"
|
27
|
-
"
|
28
|
-
"ObjectId": "xx",
|
29
|
-
"TaskId": 0,
|
30
|
-
"TaskType": "xx"
|
45
|
+
"IP": "abc",
|
46
|
+
"Port": 0
|
31
47
|
}
|
32
48
|
],
|
33
|
-
"SubnetName": "xx",
|
34
|
-
"ProxyStatus": "xx",
|
35
|
-
"Status": "xx",
|
36
|
-
"PhysicalZone": "xx",
|
37
|
-
"MasterZone": "xx",
|
38
|
-
"VpcId": "xx",
|
39
49
|
"Ability": {
|
40
|
-
"
|
41
|
-
"
|
42
|
-
"IsSupportRo": "
|
43
|
-
"NonsupportRoReason": "
|
50
|
+
"IsSupportSlaveZone": "abc",
|
51
|
+
"NonsupportSlaveZoneReason": "abc",
|
52
|
+
"IsSupportRo": "abc",
|
53
|
+
"NonsupportRoReason": "abc"
|
44
54
|
},
|
45
|
-
"
|
55
|
+
"CynosVersion": "abc",
|
56
|
+
"BusinessType": "abc",
|
57
|
+
"HasSlaveZone": "abc",
|
58
|
+
"IsFreeze": "abc",
|
59
|
+
"Tasks": [
|
46
60
|
{
|
47
|
-
"
|
48
|
-
"
|
61
|
+
"TaskId": 0,
|
62
|
+
"TaskType": "abc",
|
63
|
+
"TaskStatus": "abc",
|
64
|
+
"ObjectId": "abc",
|
65
|
+
"ObjectType": "abc"
|
49
66
|
}
|
50
67
|
],
|
51
|
-
"
|
68
|
+
"MasterZone": "abc",
|
52
69
|
"SlaveZones": [
|
53
|
-
"
|
70
|
+
"abc"
|
71
|
+
],
|
72
|
+
"InstanceSet": [
|
73
|
+
{
|
74
|
+
"InstanceId": "abc",
|
75
|
+
"InstanceName": "abc",
|
76
|
+
"InstanceType": "abc",
|
77
|
+
"InstanceStatus": "abc",
|
78
|
+
"InstanceStatusDesc": "abc",
|
79
|
+
"InstanceCpu": 0,
|
80
|
+
"InstanceMemory": 0,
|
81
|
+
"InstanceStorage": 0,
|
82
|
+
"InstanceRole": "abc",
|
83
|
+
"MaintainStartTime": 0,
|
84
|
+
"MaintainDuration": 0,
|
85
|
+
"MaintainWeekDays": [
|
86
|
+
"abc"
|
87
|
+
]
|
88
|
+
}
|
54
89
|
],
|
55
|
-
"VpcName": "xx",
|
56
|
-
"PeriodEndTime": "xx",
|
57
|
-
"MinStorageSize": 0,
|
58
|
-
"MaxStorageSize": 0,
|
59
|
-
"Charset": "xx",
|
60
|
-
"IsFreeze": "xx",
|
61
|
-
"Region": "xx",
|
62
|
-
"IsOpenPasswordComplexity": "xx",
|
63
90
|
"PayMode": 0,
|
64
|
-
"
|
91
|
+
"PeriodEndTime": "abc",
|
92
|
+
"ProjectID": 0,
|
65
93
|
"ResourceTags": [
|
66
94
|
{
|
67
|
-
"TagKey": "
|
68
|
-
"TagValue": "
|
95
|
+
"TagKey": "abc",
|
96
|
+
"TagValue": "abc"
|
69
97
|
}
|
70
98
|
],
|
71
|
-
"
|
72
|
-
"
|
73
|
-
"
|
74
|
-
"
|
75
|
-
"
|
76
|
-
"
|
77
|
-
"
|
78
|
-
"UsedStorage": 129417216,
|
79
|
-
"IsSkipTrade": "xx",
|
80
|
-
"CreateTime": "xx",
|
81
|
-
"DbType": "xx",
|
82
|
-
"Vip": "xx",
|
83
|
-
"ProjectID": 0,
|
84
|
-
"InstanceSet": [
|
99
|
+
"ProxyStatus": "abc",
|
100
|
+
"LogBin": "abc",
|
101
|
+
"IsSkipTrade": "abc",
|
102
|
+
"PitrType": "abc",
|
103
|
+
"IsOpenPasswordComplexity": "abc",
|
104
|
+
"NetworkStatus": "abc",
|
105
|
+
"ResourcePackages": [
|
85
106
|
{
|
86
|
-
"
|
87
|
-
"
|
88
|
-
"InstanceId": "xx",
|
89
|
-
"InstanceRole": "xx",
|
90
|
-
"InstanceStatusDesc": "xx",
|
91
|
-
"InstanceMemory": 4,
|
92
|
-
"InstanceStorage": 100,
|
93
|
-
"InstanceName": "xx",
|
94
|
-
"InstanceType": "xx"
|
107
|
+
"PackageId": "abc",
|
108
|
+
"PackageType": "abc"
|
95
109
|
}
|
96
110
|
],
|
97
|
-
"
|
98
|
-
"DbMode": "xx",
|
99
|
-
"PitrType": "xx"
|
111
|
+
"RenewFlag": 0
|
100
112
|
},
|
101
|
-
"RequestId": "
|
113
|
+
"RequestId": "abc"
|
102
114
|
}
|
103
115
|
}
|
104
116
|
```
|
@@ -41,12 +41,13 @@ Output:
|
|
41
41
|
"CreatedOn": 1234567890,
|
42
42
|
"Creator": "test",
|
43
43
|
"ChannelTemplateName": "test",
|
44
|
+
"Available": 2,
|
44
45
|
"SignComponents": [
|
45
46
|
{
|
46
47
|
"ComponentValue": "test",
|
47
48
|
"FileIndex": 0,
|
48
|
-
"OffsetX": 0
|
49
|
-
"OffsetY": 0
|
49
|
+
"OffsetX": 0,
|
50
|
+
"OffsetY": 0,
|
50
51
|
"ComponentType": "test",
|
51
52
|
"ComponentPosX": 1241.15,
|
52
53
|
"ComponentPosY": 125.12,
|
@@ -68,6 +69,7 @@ Output:
|
|
68
69
|
"ComponentExtra": "test",
|
69
70
|
"ComponentPage": 1,
|
70
71
|
"KeywordOrder": "test",
|
72
|
+
"Placeholder": "",
|
71
73
|
"DocumentId": "test"
|
72
74
|
}
|
73
75
|
],
|
@@ -78,8 +80,8 @@ Output:
|
|
78
80
|
{
|
79
81
|
"ComponentValue": "test",
|
80
82
|
"FileIndex": 0,
|
81
|
-
"OffsetX": 0
|
82
|
-
"OffsetY": 0
|
83
|
+
"OffsetX": 0,
|
84
|
+
"OffsetY": 0,
|
83
85
|
"ComponentType": "test",
|
84
86
|
"ComponentPosX": 1241.15,
|
85
87
|
"ComponentPosY": 125.12,
|
@@ -101,6 +103,7 @@ Output:
|
|
101
103
|
"ComponentExtra": "test",
|
102
104
|
"ComponentPage": 1,
|
103
105
|
"KeywordOrder": "test",
|
106
|
+
"Placeholder": "",
|
104
107
|
"DocumentId": "test"
|
105
108
|
}
|
106
109
|
],
|
@@ -141,6 +144,7 @@ Output:
|
|
141
144
|
"TemplateId": "test",
|
142
145
|
"TemplateName": "test",
|
143
146
|
"Description": "test",
|
147
|
+
"Available": 2,
|
144
148
|
"Components": [
|
145
149
|
{
|
146
150
|
"ComponentId": "test",
|
@@ -166,6 +170,7 @@ Output:
|
|
166
170
|
"KeywordOrder": "test",
|
167
171
|
"KeywordPage": 0,
|
168
172
|
"RelativeLocation": "test",
|
173
|
+
"Placeholder": "",
|
169
174
|
"KeywordIndexes": [
|
170
175
|
0
|
171
176
|
]
|
@@ -209,6 +214,7 @@ Output:
|
|
209
214
|
"KeywordOrder": "test",
|
210
215
|
"KeywordPage": 0,
|
211
216
|
"RelativeLocation": "test",
|
217
|
+
"Placeholder": "",
|
212
218
|
"KeywordIndexes": [
|
213
219
|
0
|
214
220
|
]
|
@@ -259,6 +265,7 @@ Output:
|
|
259
265
|
"TemplateId": "test",
|
260
266
|
"TemplateName": "test",
|
261
267
|
"Description": "test",
|
268
|
+
"Available": 2,
|
262
269
|
"Components": [
|
263
270
|
{
|
264
271
|
"ComponentId": "test",
|
@@ -284,6 +291,7 @@ Output:
|
|
284
291
|
"KeywordOrder": "test",
|
285
292
|
"KeywordPage": 0,
|
286
293
|
"RelativeLocation": "test",
|
294
|
+
"Placeholder": "",
|
287
295
|
"KeywordIndexes": [
|
288
296
|
0
|
289
297
|
]
|
@@ -327,6 +335,7 @@ Output:
|
|
327
335
|
"KeywordOrder": "test",
|
328
336
|
"KeywordPage": 0,
|
329
337
|
"RelativeLocation": "test",
|
338
|
+
"Placeholder": "",
|
330
339
|
"KeywordIndexes": [
|
331
340
|
0
|
332
341
|
]
|
@@ -6,7 +6,7 @@ Input:
|
|
6
6
|
|
7
7
|
```
|
8
8
|
tccli essbasic OperateChannelTemplate --cli-unfold-argument \
|
9
|
-
--Agent.AppId
|
9
|
+
--Agent.AppId yD*****id \
|
10
10
|
--TemplateId yDxlkUyKxxxxxxxxxjEvToNRI2MuTr \
|
11
11
|
--OperateType select
|
12
12
|
```
|
@@ -15,7 +15,7 @@ Output:
|
|
15
15
|
```
|
16
16
|
{
|
17
17
|
"Response": {
|
18
|
-
"AppId": "
|
18
|
+
"AppId": "yD*****id",
|
19
19
|
"AuthTag": "all",
|
20
20
|
"FailMessageList": [],
|
21
21
|
"OperateResult": "all-success",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
**Example 1: 获取设备基本信息列表**
|
2
2
|
|
3
|
-
|
3
|
+
获取设备基本信息列表
|
4
4
|
|
5
5
|
Input:
|
6
6
|
|
@@ -17,23 +17,16 @@ Output:
|
|
17
17
|
"Response": {
|
18
18
|
"DeviceInfos": [
|
19
19
|
{
|
20
|
-
"
|
21
|
-
"
|
22
|
-
"
|
23
|
-
"LastTime":
|
24
|
-
"
|
25
|
-
},
|
26
|
-
{
|
27
|
-
"DeviceName": "dev1",
|
28
|
-
"Remark": "xx",
|
29
|
-
"DeviceId": "mna-xxx",
|
30
|
-
"LastTime": 1,
|
31
|
-
"CreateTime": 1
|
20
|
+
"DeviceId": "abc",
|
21
|
+
"DeviceName": "abc",
|
22
|
+
"CreateTime": "abc",
|
23
|
+
"LastTime": "abc",
|
24
|
+
"Remark": "abc"
|
32
25
|
}
|
33
26
|
],
|
34
|
-
"Length":
|
35
|
-
"TotalPage":
|
36
|
-
"RequestId": "
|
27
|
+
"Length": 0,
|
28
|
+
"TotalPage": 0,
|
29
|
+
"RequestId": "abc"
|
37
30
|
}
|
38
31
|
}
|
39
32
|
```
|
@@ -1,22 +1,19 @@
|
|
1
1
|
**Example 1: 更新设备**
|
2
2
|
|
3
|
-
|
3
|
+
更新设备
|
4
4
|
|
5
5
|
Input:
|
6
6
|
|
7
7
|
```
|
8
8
|
tccli mna UpdateDevice --cli-unfold-argument \
|
9
|
-
--
|
10
|
-
--
|
11
|
-
--
|
12
|
-
--UpdateNetInfo.0.DownloadLimit 100 \
|
13
|
-
--UpdateNetInfo.0.UploadLimit 100 \
|
9
|
+
--DeviceId abc \
|
10
|
+
--DeviceName abc \
|
11
|
+
--Remark abc \
|
14
12
|
--UpdateNetInfo.0.Type 0 \
|
15
13
|
--UpdateNetInfo.0.DataEnable True \
|
16
|
-
--UpdateNetInfo.0.
|
17
|
-
--UpdateNetInfo.
|
18
|
-
--UpdateNetInfo.
|
19
|
-
--UpdateNetInfo.1.NetInfoName xx
|
14
|
+
--UpdateNetInfo.0.UploadLimit 1 \
|
15
|
+
--UpdateNetInfo.0.DownloadLimit 1 \
|
16
|
+
--UpdateNetInfo.0.NetInfoName abc
|
20
17
|
```
|
21
18
|
|
22
19
|
Output:
|
@@ -1,4 +1,31 @@
|
|
1
|
-
**Example 1:
|
1
|
+
**Example 1: 小程序免费加固示例**
|
2
|
+
|
3
|
+
小程序免费加固示例
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli ms CreateEncryptInstance --cli-unfold-argument \
|
9
|
+
--PlatformType 4 \
|
10
|
+
--OrderType 1 \
|
11
|
+
--EncryptOpType 1 \
|
12
|
+
--ResourceId xxxxxxxxxxxxxxxxxx \
|
13
|
+
--AppletInfo.AppletJsUrl http://xxxxxxxxxxxxxxxxxxx.zip \
|
14
|
+
--AppletInfo.AppletLevel 1 \
|
15
|
+
--AppletInfo.Name test.zip
|
16
|
+
```
|
17
|
+
|
18
|
+
Output:
|
19
|
+
```
|
20
|
+
{
|
21
|
+
"Response": {
|
22
|
+
"RequestId": "6ef4eac9-badc-40d9-9796-569741849f95",
|
23
|
+
"ResultId": "6ef4eac9-badc-40d9-9796-569741849f95"
|
24
|
+
}
|
25
|
+
}
|
26
|
+
```
|
27
|
+
|
28
|
+
**Example 2: Android免费试用在线加固**
|
2
29
|
|
3
30
|
成功创建任务示例
|
4
31
|
|
@@ -33,9 +60,9 @@ Output:
|
|
33
60
|
}
|
34
61
|
```
|
35
62
|
|
36
|
-
**Example
|
63
|
+
**Example 3: Android按年收费加固输出工具**
|
37
64
|
|
38
|
-
|
65
|
+
Android按年收费加固输出工具
|
39
66
|
|
40
67
|
Input:
|
41
68
|
|
@@ -100,30 +127,3 @@ Output:
|
|
100
127
|
}
|
101
128
|
```
|
102
129
|
|
103
|
-
**Example 3: 小程序免费加固示例**
|
104
|
-
|
105
|
-
小程序免费加固示例
|
106
|
-
|
107
|
-
Input:
|
108
|
-
|
109
|
-
```
|
110
|
-
tccli ms CreateEncryptInstance --cli-unfold-argument \
|
111
|
-
--PlatformType 4 \
|
112
|
-
--OrderType 1 \
|
113
|
-
--EncryptOpType 1 \
|
114
|
-
--ResourceId xxxxxxxxxxxxxxxxxx \
|
115
|
-
--AppletInfo.AppletJsUrl http://xxxxxxxxxxxxxxxxxxx.zip \
|
116
|
-
--AppletInfo.AppletLevel 1 \
|
117
|
-
--AppletInfo.Name test.zip
|
118
|
-
```
|
119
|
-
|
120
|
-
Output:
|
121
|
-
```
|
122
|
-
{
|
123
|
-
"Response": {
|
124
|
-
"RequestId": "6ef4eac9-badc-40d9-9796-569741849f95",
|
125
|
-
"ResultId": "6ef4eac9-badc-40d9-9796-569741849f95"
|
126
|
-
}
|
127
|
-
}
|
128
|
-
```
|
129
|
-
|