tccli 3.0.1029.1__py2.py3-none-any.whl → 3.0.1030.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/examples/ccc/v20200210/CreateCarrierPrivilegeNumberApplicant.md +5 -1
- tccli/examples/ccc/v20200210/DescribeAutoCalloutTask.md +7 -4
- tccli/examples/ccc/v20200210/DescribeAutoCalloutTasks.md +3 -3
- tccli/examples/ccc/v20200210/DescribeCarrierPrivilegeNumberApplicants.md +4 -1
- tccli/examples/ccc/v20200210/DescribeChatMessages.md +27 -2
- tccli/examples/ccc/v20200210/DescribeExtensions.md +2 -2
- tccli/examples/ccc/v20200210/DescribePSTNActiveSessionList.md +2 -2
- tccli/examples/ccc/v20200210/DescribeProtectedTelCdr.md +2 -0
- tccli/examples/ccc/v20200210/DescribeSkillGroupInfoList.md +1 -0
- tccli/examples/ccc/v20200210/DescribeTelCdr.md +2 -0
- tccli/examples/cvm/v20170312/InquiryPriceTerminateInstances.md +2 -1
- tccli/examples/cvm/v20170312/ModifyInstanceDiskType.md +1 -1
- tccli/examples/trp/v20210515/DescribePlanQRCodeScanRecords.md +36 -0
- tccli/services/ams/v20201229/api.json +143 -2
- tccli/services/bi/v20220105/api.json +10 -0
- tccli/services/ccc/v20200210/api.json +88 -74
- tccli/services/ccc/v20200210/examples.json +11 -11
- tccli/services/cdb/v20170320/api.json +45 -24
- tccli/services/cdwdoris/v20211228/api.json +10 -0
- tccli/services/cvm/v20170312/api.json +23 -21
- tccli/services/cvm/v20170312/examples.json +2 -2
- tccli/services/dnspod/v20210323/api.json +10 -0
- tccli/services/dts/v20211206/api.json +5 -1
- tccli/services/ess/v20201111/api.json +31 -31
- tccli/services/essbasic/v20210526/api.json +3 -3
- tccli/services/faceid/v20180301/api.json +62 -0
- tccli/services/lighthouse/v20200324/api.json +1 -1
- tccli/services/redis/v20180412/api.json +27 -15
- tccli/services/tag/v20180813/api.json +14 -14
- tccli/services/trp/trp_client.py +69 -16
- tccli/services/trp/v20210515/api.json +207 -22
- tccli/services/trp/v20210515/examples.json +8 -0
- tccli/services/vm/v20210922/api.json +141 -0
- tccli/services/vpc/v20170312/api.json +8 -8
- {tccli-3.0.1029.1.dist-info → tccli-3.0.1030.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1029.1.dist-info → tccli-3.0.1030.1.dist-info}/RECORD +40 -39
- {tccli-3.0.1029.1.dist-info → tccli-3.0.1030.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1029.1.dist-info → tccli-3.0.1030.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1029.1.dist-info → tccli-3.0.1030.1.dist-info}/license_files/LICENSE +0 -0
@@ -51,7 +51,7 @@
|
|
51
51
|
"CreateCarrierPrivilegeNumberApplicant": [
|
52
52
|
{
|
53
53
|
"document": "审批完成后,号码A呼叫号码B不会被运营商限制频率",
|
54
|
-
"input": "{\n \"SdkAppId\": 14000000,\n \"Callers\": [\"008601012345678\"],\n \"Callees\":[\"008618612345678\"]\n}",
|
54
|
+
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateCarrierPrivilegeNumberApplicant\n<公共请求参数>\n\n{\n \"SdkAppId\": 14000000,\n \"Callers\": [\n \"008601012345678\"\n ],\n \"Callees\": [\n \"008618612345678\"\n ]\n}",
|
55
55
|
"output": "{\n \"Response\": {\n \"RequestId\": \"abc\",\n \"ApplicantId\": 1\n }\n}",
|
56
56
|
"title": "申请白名单号码"
|
57
57
|
}
|
@@ -116,7 +116,7 @@
|
|
116
116
|
{
|
117
117
|
"document": "",
|
118
118
|
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeAutoCalloutTask\n<公共请求参数>\n\n{\n \"SdkAppId\": 1,\n \"TaskId\": 2\n}",
|
119
|
-
"output": "{\n \"Response\": {\n \"IvrId\": 1,\n \"Name\": \"
|
119
|
+
"output": "{\n \"Response\": {\n \"IvrId\": 1,\n \"Name\": \"foobar\",\n \"NotBefore\": 1,\n \"NotAfter\": 0,\n \"State\": 1,\n \"Callers\": [\n \"008610086\"\n ],\n \"RequestId\": \"foobar\",\n \"Callees\": [\n {\n \"State\": 1,\n \"Callee\": \"foobar\",\n \"Sessions\": [\n \"foobar\"\n ]\n }\n ],\n \"Description\": \"foobar\"\n }\n}",
|
120
120
|
"title": "查询任务"
|
121
121
|
}
|
122
122
|
],
|
@@ -124,7 +124,7 @@
|
|
124
124
|
{
|
125
125
|
"document": "",
|
126
126
|
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeAutoCalloutTasks\n<公共请求参数>\n\n{\n \"PageNumber\": 0,\n \"PageSize\": 10,\n \"SdkAppId\": 1\n}",
|
127
|
-
"output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Tasks\": [\n {\n \"TaskId\": 3241,\n \"IvrId\": 1,\n \"CalleeCount\": 1,\n \"Name\": \"
|
127
|
+
"output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"Tasks\": [\n {\n \"TaskId\": 3241,\n \"IvrId\": 1,\n \"CalleeCount\": 1,\n \"Name\": \"foobar\",\n \"NotBefore\": 0,\n \"NotAfter\": 0,\n \"State\": 1,\n \"Callers\": [\n \"123456\"\n ]\n }\n ],\n \"RequestId\": \"123456\"\n }\n}",
|
128
128
|
"title": "示例"
|
129
129
|
}
|
130
130
|
],
|
@@ -147,8 +147,8 @@
|
|
147
147
|
"DescribeCarrierPrivilegeNumberApplicants": [
|
148
148
|
{
|
149
149
|
"document": "查询申请单",
|
150
|
-
"input": "{\n \"SdkAppId\": 14000000\n}",
|
151
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"xnasdlgfas\",\n \"TotalCount\": 1,\n \"Applicants\": [\n {\n \"SdkAppId\": 1400000000,\n \"ApplicantId\": 3,\n \"Callers\": [\n \"008601012345678\"\n ],\n \"Callees\": [\n \"008618612345678\"\n ],\n \"State\": 1,\n \"CreateTime\": 1623145120,\n \"UpdateTime\": 1623145120\n }\n ]\n }\n}",
|
150
|
+
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeCarrierPrivilegeNumberApplicants\n<公共请求参数>\n\n{\n \"SdkAppId\": 14000000\n}",
|
151
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"xnasdlgfas\",\n \"TotalCount\": 1,\n \"Applicants\": [\n {\n \"SdkAppId\": 1400000000,\n \"ApplicantId\": 3,\n \"Callers\": [\n \"008601012345678\"\n ],\n \"Callees\": [\n \"008618612345678\"\n ],\n \"State\": 1,\n \"Description\": \"foobar\",\n \"CreateTime\": 1623145120,\n \"UpdateTime\": 1623145120\n }\n ]\n }\n}",
|
152
152
|
"title": "查询申请单"
|
153
153
|
}
|
154
154
|
],
|
@@ -156,7 +156,7 @@
|
|
156
156
|
{
|
157
157
|
"document": "获取指定服务记录的文本消息记录。",
|
158
158
|
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeChatMessages\n<公共请求参数>\n\n{\n \"SdkAppId\": 1400000000,\n \"SessionId\": \"d6253538-7c28-477b-998a-919059801899\"\n}",
|
159
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"48edd236-7ef1-45af-9e12-fc376ba355bf\",\n \"TotalCount\":
|
159
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"48edd236-7ef1-45af-9e12-fc376ba355bf\",\n \"TotalCount\": 2,\n \"Messages\": [\n {\n \"Timestamp\": 1600007226,\n \"From\": \"John\",\n \"Messages\": [\n {\n \"Type\": \"Text\",\n \"Content\": \"Hello, how are you?\"\n },\n {\n \"Type\": \"Image\",\n \"Content\": \"https://example.com/image.jpg\"\n }\n ]\n },\n {\n \"Timestamp\": 1400753150,\n \"From\": \"Alice\",\n \"Messages\": [\n {\n \"Type\": \"Text\",\n \"Content\": \"Hi there!\"\n }\n ]\n }\n ]\n }\n}",
|
160
160
|
"title": "查询聊天记录示例"
|
161
161
|
}
|
162
162
|
],
|
@@ -172,7 +172,7 @@
|
|
172
172
|
{
|
173
173
|
"document": "",
|
174
174
|
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeExtensions\n<公共请求参数>\n\n{\n \"PageNumber\": 0,\n \"PageSize\": 35,\n \"SdkAppId\": 1400264214,\n \"ExtensionIds\": [\n \"1001\"\n ]\n}",
|
175
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"86a17f0e-bcb3-46bf-ac66-8f165fe52127\",\n \"Total\": 1,\n \"ExtensionList\": [\n {\n \"SdkAppId\": 1400000014,\n \"FullExtensionId\": \"1001@140000014.tccc.qcloud.com\",\n \"ExtensionId\": \"1001\",\n \"SkillGroupId\": \"1532\",\n \"ExtensionName\": \"lulu\",\n \"CreateTime\": 0,\n \"ModifyTime\": 0,\n \"Status\": 0,\n \"Register\": false,\n \"Relation\": \"
|
175
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"86a17f0e-bcb3-46bf-ac66-8f165fe52127\",\n \"Total\": 1,\n \"ExtensionList\": [\n {\n \"SdkAppId\": 1400000014,\n \"FullExtensionId\": \"1001@140000014.tccc.qcloud.com\",\n \"ExtensionId\": \"1001\",\n \"SkillGroupId\": \"1532\",\n \"ExtensionName\": \"lulu\",\n \"CreateTime\": 0,\n \"ModifyTime\": 0,\n \"Status\": 0,\n \"Register\": false,\n \"Relation\": \"123456\",\n \"RelationName\": \"foobar\"\n }\n ]\n }\n}",
|
176
176
|
"title": "查询话机列表信息"
|
177
177
|
}
|
178
178
|
],
|
@@ -204,7 +204,7 @@
|
|
204
204
|
{
|
205
205
|
"document": "",
|
206
206
|
"input": "https://ccc.tencentcloudapi.com/?Action=DescribePSTNActiveSessionList\n&SdkAppId=1400000000\n&Offset=0\n&Limit=25\n&<公共请求参数>",
|
207
|
-
"output": "{\n \"Response\": {\n \"Total\": 1,\n \"RequestId\": \"53bccf04-0870-4520-8614-f4bdddfd68df\",\n \"Sessions\": [\n {\n \"Direction\": 1,\n \"AcceptTimestamp\": 1607702329,\n \"ProtectedCaller\": \"\",\n \"RoomID\": \"32929373\",\n \"StartTimestamp\": 1607702199,\n \"Caller\": \"00864009282737\",\n \"ProtectedCallee\": \"\",\n \"StaffNumber\": \"1007\",\n \"SessionID\": \"0cf5be1b-de75-4445-a0c4-8dff3fa4b68b\",\n \"StaffEmail\": \"foo@tencent.com\",\n \"RingTimestamp\": 1607702299,\n \"Callee\": \"00864001783747\",\n \"SessionStatus\": \"inProgress\"\n }\n ]\n }\n}",
|
207
|
+
"output": "{\n \"Response\": {\n \"Total\": 1,\n \"RequestId\": \"53bccf04-0870-4520-8614-f4bdddfd68df\",\n \"Sessions\": [\n {\n \"Direction\": 1,\n \"AcceptTimestamp\": \"1607702329\",\n \"ProtectedCaller\": \"\",\n \"RoomID\": \"32929373\",\n \"StartTimestamp\": \"1607702199\",\n \"Caller\": \"00864009282737\",\n \"ProtectedCallee\": \"\",\n \"StaffNumber\": \"1007\",\n \"SessionID\": \"0cf5be1b-de75-4445-a0c4-8dff3fa4b68b\",\n \"StaffEmail\": \"foo@tencent.com\",\n \"RingTimestamp\": 1607702299,\n \"Callee\": \"00864001783747\",\n \"SessionStatus\": \"inProgress\"\n }\n ]\n }\n}",
|
208
208
|
"title": "获取 PSTN 活动会话列表示例"
|
209
209
|
}
|
210
210
|
],
|
@@ -212,7 +212,7 @@
|
|
212
212
|
{
|
213
213
|
"document": "",
|
214
214
|
"input": "https://ccc.tencentcloudapi.com/?Action=DescribeProtectedTelCdr\n&SdkAppId=1400000000\n&StartTimeStamp=1590547606\n&EndTimeStamp=1590147606\n&PageSize=10\n&PageNumber=0\n&<公共请求参数>",
|
215
|
-
"output": "{\n \"Response\": {\n \"TotalCount\": 2,\n \"TelCdrList\": [\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547606,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547606,\n \"Callee\": \"\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Phone\": \"abc\",\n \"UserId\": \"abc\",\n \"Nick\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 60,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"QueuedSkillGroupName\": \"abc\",\n \"Remark\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n },\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547630,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547630,\n \"Callee\": \"\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Nick\": \"abc\",\n \"UserId\": \"abc\",\n \"Phone\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 62,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"QueuedSkillGroupName\": \"abc\",\n \"Remark\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
|
215
|
+
"output": "{\n \"Response\": {\n \"TotalCount\": 2,\n \"TelCdrList\": [\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547606,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547606,\n \"Callee\": \"\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Phone\": \"abc\",\n \"UserId\": \"abc\",\n \"Nick\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"RecordId\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 60,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"QueuedSkillGroupName\": \"abc\",\n \"Remark\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n },\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547630,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547630,\n \"Callee\": \"\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Nick\": \"abc\",\n \"UserId\": \"abc\",\n \"Phone\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"RecordId\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 62,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"QueuedSkillGroupName\": \"abc\",\n \"Remark\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
|
216
216
|
"title": "获取主被叫受保护的电话话单示例"
|
217
217
|
}
|
218
218
|
],
|
@@ -220,7 +220,7 @@
|
|
220
220
|
{
|
221
221
|
"document": "获取技能组列表示例",
|
222
222
|
"input": "POST / HTTP/1.1\nHost: ccc.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: DescribeSkillGroupInfoList\n<公共请求参数>\n\n{\n \"PageSize\": 10,\n \"PageNumber\": 0,\n \"ModifiedTime\": 1590147606,\n \"SdkAppId\": 1400000000,\n \"SkillGroupId\": 12\n}",
|
223
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"5ac74e13-ef15-41a6-9639-f1bc8c9896bd\",\n \"TotalCount\": 2,\n \"SkillGroupList\": [\n {\n \"SkillGroupId\": 1115,\n \"SkillGroupName\": \"luluttt\",\n \"Type\": \"TEL\",\n \"RoutePolicy\": \"firstCreate\",\n \"UsingLastSeat\": 0,\n \"MaxConcurrency\": 1,\n \"LastModifyTimestamp\": 1613976392\n }\n ]\n }\n}",
|
223
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"5ac74e13-ef15-41a6-9639-f1bc8c9896bd\",\n \"TotalCount\": 2,\n \"SkillGroupList\": [\n {\n \"SkillGroupId\": 1115,\n \"SkillGroupName\": \"luluttt\",\n \"SkillGroupType\": 1,\n \"Type\": \"TEL\",\n \"RoutePolicy\": \"firstCreate\",\n \"UsingLastSeat\": 0,\n \"MaxConcurrency\": 1,\n \"LastModifyTimestamp\": 1613976392\n }\n ]\n }\n}",
|
224
224
|
"title": "获取技能组列表示例"
|
225
225
|
}
|
226
226
|
],
|
@@ -252,7 +252,7 @@
|
|
252
252
|
{
|
253
253
|
"document": "",
|
254
254
|
"input": "https://ccc.tencentcloudapi.com/?Action=DescribeTelCdr\n&SdkAppId=1400000000\n&StartTimeStamp=1590547606\n&EndTimeStamp=1590147606\n&PageSize=10\n&PageNumber=0\n&<公共请求参数>",
|
255
|
-
"output": "{\n \"Response\": {\n \"TotalCount\": 2,\n \"TelCdrList\": [\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547606,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"abc\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547606,\n \"Callee\": \"abc\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Phone\": \"abc\",\n \"UserId\": \"abc\",\n \"Nick\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 60,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"Remark\": \"abc\",\n \"QueuedSkillGroupName\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n },\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547630,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"abc\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547630,\n \"Callee\": \"abc\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Nick\": \"abc\",\n \"UserId\": \"abc\",\n \"Phone\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 62,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"Remark\": \"abc\",\n \"QueuedSkillGroupName\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
|
255
|
+
"output": "{\n \"Response\": {\n \"TotalCount\": 2,\n \"TelCdrList\": [\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"RecordId\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547606,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"abc\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547606,\n \"Callee\": \"abc\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Phone\": \"abc\",\n \"UserId\": \"abc\",\n \"Nick\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 60,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"Remark\": \"abc\",\n \"QueuedSkillGroupName\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n },\n {\n \"ProtectedCaller\": \"abc\",\n \"EndStatus\": 1,\n \"SessionId\": \"abc\",\n \"CustomRecordURL\": \"abc\",\n \"RecordId\": \"abc\",\n \"SkillGroupId\": 100,\n \"Direction\": 0,\n \"StartTimestamp\": 1590547630,\n \"AsrUrl\": \"abc\",\n \"HungUpSide\": \"abc\",\n \"ServeParticipants\": [\n {\n \"TransferTo\": \"abc\",\n \"TransferFromType\": \"abc\",\n \"RecordURL\": \"abc\",\n \"TransferToType\": \"abc\",\n \"AcceptTimestamp\": 0,\n \"RecordId\": \"abc\",\n \"TransferFrom\": \"abc\",\n \"EndedTimestamp\": 0,\n \"Sequence\": 0,\n \"Phone\": \"abc\",\n \"EndStatusString\": \"abc\",\n \"SkillGroupName\": \"abc\",\n \"Mail\": \"abc\",\n \"RingTimestamp\": 0,\n \"Type\": \"abc\",\n \"StartTimestamp\": 0,\n \"CustomRecordURL\": \"abc\",\n \"SkillGroupId\": 0\n }\n ],\n \"PostIVRKeyPressed\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"EndStatusString\": \"abc\",\n \"UUI\": \"abc\",\n \"QueuedSkillGroupId\": 100,\n \"RingTimestamp\": 1590547606,\n \"AcceptTimestamp\": 1590547606,\n \"EndedTimestamp\": 1590547606,\n \"Caller\": \"abc\",\n \"CallerLocation\": \"abc\",\n \"Time\": 1590547630,\n \"Callee\": \"abc\",\n \"SeatUser\": {\n \"Name\": \"abc\",\n \"Nick\": \"abc\",\n \"UserId\": \"abc\",\n \"Phone\": \"abc\",\n \"StaffNumber\": \"abc\",\n \"Mail\": \"abc\",\n \"SkillGroupNameList\": [\n \"abc\"\n ]\n },\n \"RecordURL\": \"abc\",\n \"QueuedTimestamp\": 1610627284,\n \"ProtectedCallee\": \"abc\",\n \"IVRDuration\": 5,\n \"SkillGroup\": \"abc\",\n \"Duration\": 62,\n \"IVRKeyPressed\": [\n \"5\"\n ],\n \"IVRKeyPressedEx\": [\n {\n \"Key\": \"abc\",\n \"Label\": \"abc\"\n }\n ],\n \"Remark\": \"abc\",\n \"QueuedSkillGroupName\": \"abc\",\n \"VoicemailRecordURL\": [\n \"abc\"\n ]\n }\n ],\n \"RequestId\": \"abc\"\n }\n}",
|
256
256
|
"title": "获取电话话单示例"
|
257
257
|
}
|
258
258
|
],
|
@@ -141,14 +141,14 @@
|
|
141
141
|
"status": "online"
|
142
142
|
},
|
143
143
|
"CreateDBInstance": {
|
144
|
-
"document": "本接口(CreateDBInstance)用于创建包年包月的云数据库实例(包括主实例、灾备实例和只读实例),可通过传入实例规格、MySQL 版本号、购买时长和数量等信息创建云数据库实例。\n\n该接口为异步接口,您还可以使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询该实例的详细信息。当该实例的 Status 为1,且 TaskStatus 为0,表示实例已经发货成功。\n\n1. 首先请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口查询可创建的实例规格信息,然后请使用 [查询数据库价格](https://cloud.tencent.com/document/api/236/18566) 接口查询可创建实例的售卖价格;\n2. 单次创建实例最大支持 100 个,实例时长最大支持 36 个月;\n3. 支持创建 MySQL 5.5 、 MySQL 5.6 、 MySQL 5.7 、 MySQL 8.0 版本;\n4. 支持创建主实例、只读实例、灾备实例;\n5. 当入参指定 Port,
|
144
|
+
"document": "本接口(CreateDBInstance)用于创建包年包月的云数据库实例(包括主实例、灾备实例和只读实例),可通过传入实例规格、MySQL 版本号、购买时长和数量等信息创建云数据库实例。\n\n该接口为异步接口,您还可以使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询该实例的详细信息。当该实例的 Status 为1,且 TaskStatus 为0,表示实例已经发货成功。\n\n1. 首先请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口查询可创建的实例规格信息,然后请使用 [查询数据库价格](https://cloud.tencent.com/document/api/236/18566) 接口查询可创建实例的售卖价格;\n2. 单次创建实例最大支持 100 个,实例时长最大支持 36 个月;\n3. 支持创建 MySQL 5.5 、 MySQL 5.6 、 MySQL 5.7 、 MySQL 8.0 版本;\n4. 支持创建主实例、只读实例、灾备实例;\n5. 当入参指定 Port,ParamTemplateType 或 Password 时,该实例会进行初始化操作(不支持基础版实例);\n6. 当入参指定 ParamTemplateId 或 AlarmPolicyList 时,需将SDK提升至最新版本方可支持;",
|
145
145
|
"input": "CreateDBInstanceRequest",
|
146
146
|
"name": "创建云数据库实例(包年包月)",
|
147
147
|
"output": "CreateDBInstanceResponse",
|
148
148
|
"status": "online"
|
149
149
|
},
|
150
150
|
"CreateDBInstanceHour": {
|
151
|
-
"document": "本接口(CreateDBInstanceHour)用于创建按量计费的实例,可通过传入实例规格、MySQL 版本号和数量等信息创建云数据库实例,支持主实例、灾备实例和只读实例的创建。\n\n该接口为异步接口,您还可以使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询该实例的详细信息。当该实例的 Status 为 1,且 TaskStatus 为 0,表示实例已经发货成功。\n\n1. 首先请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口查询可创建的实例规格信息,然后请使用 [查询数据库价格](https://cloud.tencent.com/document/api/236/18566) 接口查询可创建实例的售卖价格;\n2. 单次创建实例最大支持 100 个,实例时长最大支持 36 个月;\n3. 支持创建 MySQL 5.5、MySQL 5.6 、MySQL 5.7 和 MySQL 8.0 版本;\n4. 支持创建主实例、灾备实例和只读实例;\n5. 当入参指定 Port,
|
151
|
+
"document": "本接口(CreateDBInstanceHour)用于创建按量计费的实例,可通过传入实例规格、MySQL 版本号和数量等信息创建云数据库实例,支持主实例、灾备实例和只读实例的创建。\n\n该接口为异步接口,您还可以使用 [查询实例列表](https://cloud.tencent.com/document/api/236/15872) 接口查询该实例的详细信息。当该实例的 Status 为 1,且 TaskStatus 为 0,表示实例已经发货成功。\n\n1. 首先请使用 [获取云数据库可售卖规格](https://cloud.tencent.com/document/api/236/17229) 接口查询可创建的实例规格信息,然后请使用 [查询数据库价格](https://cloud.tencent.com/document/api/236/18566) 接口查询可创建实例的售卖价格;\n2. 单次创建实例最大支持 100 个,实例时长最大支持 36 个月;\n3. 支持创建 MySQL 5.5、MySQL 5.6 、MySQL 5.7 和 MySQL 8.0 版本;\n4. 支持创建主实例、灾备实例和只读实例;\n5. 当入参指定 Port,ParamTemplateType 或 Password 时,该实例会进行初始化操作;",
|
152
152
|
"input": "CreateDBInstanceHourRequest",
|
153
153
|
"name": "创建云数据库实例(按量计费)",
|
154
154
|
"output": "CreateDBInstanceHourResponse",
|
@@ -2698,7 +2698,7 @@
|
|
2698
2698
|
"example": "XXX",
|
2699
2699
|
"member": "string",
|
2700
2700
|
"name": "Name",
|
2701
|
-
"
|
2701
|
+
"output_required": true,
|
2702
2702
|
"type": "string",
|
2703
2703
|
"value_allowed_null": false
|
2704
2704
|
},
|
@@ -2708,7 +2708,7 @@
|
|
2708
2708
|
"example": "1024",
|
2709
2709
|
"member": "int64",
|
2710
2710
|
"name": "Size",
|
2711
|
-
"
|
2711
|
+
"output_required": true,
|
2712
2712
|
"type": "int",
|
2713
2713
|
"value_allowed_null": false
|
2714
2714
|
},
|
@@ -2718,7 +2718,7 @@
|
|
2718
2718
|
"example": "2016-03-17 02:10:37",
|
2719
2719
|
"member": "string",
|
2720
2720
|
"name": "Date",
|
2721
|
-
"
|
2721
|
+
"output_required": true,
|
2722
2722
|
"type": "string",
|
2723
2723
|
"value_allowed_null": false
|
2724
2724
|
},
|
@@ -2728,7 +2728,7 @@
|
|
2728
2728
|
"example": "https://XXX",
|
2729
2729
|
"member": "string",
|
2730
2730
|
"name": "IntranetUrl",
|
2731
|
-
"
|
2731
|
+
"output_required": true,
|
2732
2732
|
"type": "string",
|
2733
2733
|
"value_allowed_null": false
|
2734
2734
|
},
|
@@ -2738,7 +2738,7 @@
|
|
2738
2738
|
"example": "https://XXX",
|
2739
2739
|
"member": "string",
|
2740
2740
|
"name": "InternetUrl",
|
2741
|
-
"
|
2741
|
+
"output_required": true,
|
2742
2742
|
"type": "string",
|
2743
2743
|
"value_allowed_null": false
|
2744
2744
|
},
|
@@ -2748,7 +2748,7 @@
|
|
2748
2748
|
"example": "physical",
|
2749
2749
|
"member": "string",
|
2750
2750
|
"name": "Type",
|
2751
|
-
"
|
2751
|
+
"output_required": true,
|
2752
2752
|
"type": "string",
|
2753
2753
|
"value_allowed_null": false
|
2754
2754
|
},
|
@@ -2758,7 +2758,7 @@
|
|
2758
2758
|
"example": "1000",
|
2759
2759
|
"member": "int64",
|
2760
2760
|
"name": "BackupId",
|
2761
|
-
"
|
2761
|
+
"output_required": true,
|
2762
2762
|
"type": "int",
|
2763
2763
|
"value_allowed_null": false
|
2764
2764
|
},
|
@@ -2768,7 +2768,7 @@
|
|
2768
2768
|
"example": "SUCCESS",
|
2769
2769
|
"member": "string",
|
2770
2770
|
"name": "Status",
|
2771
|
-
"
|
2771
|
+
"output_required": true,
|
2772
2772
|
"type": "string",
|
2773
2773
|
"value_allowed_null": false
|
2774
2774
|
},
|
@@ -2778,7 +2778,7 @@
|
|
2778
2778
|
"example": "2016-03-17 02:11:37",
|
2779
2779
|
"member": "string",
|
2780
2780
|
"name": "FinishTime",
|
2781
|
-
"
|
2781
|
+
"output_required": true,
|
2782
2782
|
"type": "string",
|
2783
2783
|
"value_allowed_null": false
|
2784
2784
|
},
|
@@ -2788,7 +2788,7 @@
|
|
2788
2788
|
"example": "SYSTEM",
|
2789
2789
|
"member": "string",
|
2790
2790
|
"name": "Creator",
|
2791
|
-
"
|
2791
|
+
"output_required": true,
|
2792
2792
|
"type": "string",
|
2793
2793
|
"value_allowed_null": false
|
2794
2794
|
},
|
@@ -2798,7 +2798,7 @@
|
|
2798
2798
|
"example": "2016-03-17 02:00:37",
|
2799
2799
|
"member": "string",
|
2800
2800
|
"name": "StartTime",
|
2801
|
-
"
|
2801
|
+
"output_required": true,
|
2802
2802
|
"type": "string",
|
2803
2803
|
"value_allowed_null": false
|
2804
2804
|
},
|
@@ -2808,7 +2808,7 @@
|
|
2808
2808
|
"example": "full",
|
2809
2809
|
"member": "string",
|
2810
2810
|
"name": "Method",
|
2811
|
-
"
|
2811
|
+
"output_required": true,
|
2812
2812
|
"type": "string",
|
2813
2813
|
"value_allowed_null": false
|
2814
2814
|
},
|
@@ -2818,7 +2818,7 @@
|
|
2818
2818
|
"example": "automatic",
|
2819
2819
|
"member": "string",
|
2820
2820
|
"name": "Way",
|
2821
|
-
"
|
2821
|
+
"output_required": true,
|
2822
2822
|
"type": "string",
|
2823
2823
|
"value_allowed_null": false
|
2824
2824
|
},
|
@@ -2828,7 +2828,7 @@
|
|
2828
2828
|
"example": "\"\"",
|
2829
2829
|
"member": "string",
|
2830
2830
|
"name": "ManualBackupName",
|
2831
|
-
"
|
2831
|
+
"output_required": true,
|
2832
2832
|
"type": "string",
|
2833
2833
|
"value_allowed_null": false
|
2834
2834
|
},
|
@@ -2838,7 +2838,7 @@
|
|
2838
2838
|
"example": "save_mode_regular",
|
2839
2839
|
"member": "string",
|
2840
2840
|
"name": "SaveMode",
|
2841
|
-
"
|
2841
|
+
"output_required": true,
|
2842
2842
|
"type": "string",
|
2843
2843
|
"value_allowed_null": false
|
2844
2844
|
},
|
@@ -2848,7 +2848,7 @@
|
|
2848
2848
|
"example": "ap-guangzhou",
|
2849
2849
|
"member": "string",
|
2850
2850
|
"name": "Region",
|
2851
|
-
"
|
2851
|
+
"output_required": true,
|
2852
2852
|
"type": "string",
|
2853
2853
|
"value_allowed_null": false
|
2854
2854
|
},
|
@@ -2858,7 +2858,7 @@
|
|
2858
2858
|
"example": "无",
|
2859
2859
|
"member": "RemoteBackupInfo",
|
2860
2860
|
"name": "RemoteInfo",
|
2861
|
-
"
|
2861
|
+
"output_required": true,
|
2862
2862
|
"type": "list",
|
2863
2863
|
"value_allowed_null": false
|
2864
2864
|
},
|
@@ -2868,7 +2868,7 @@
|
|
2868
2868
|
"example": "无",
|
2869
2869
|
"member": "int64",
|
2870
2870
|
"name": "CosStorageType",
|
2871
|
-
"
|
2871
|
+
"output_required": true,
|
2872
2872
|
"type": "int",
|
2873
2873
|
"value_allowed_null": false
|
2874
2874
|
},
|
@@ -2878,7 +2878,7 @@
|
|
2878
2878
|
"example": "无",
|
2879
2879
|
"member": "string",
|
2880
2880
|
"name": "InstanceId",
|
2881
|
-
"
|
2881
|
+
"output_required": true,
|
2882
2882
|
"type": "string",
|
2883
2883
|
"value_allowed_null": false
|
2884
2884
|
},
|
@@ -2888,7 +2888,17 @@
|
|
2888
2888
|
"example": "on",
|
2889
2889
|
"member": "string",
|
2890
2890
|
"name": "EncryptionFlag",
|
2891
|
-
"
|
2891
|
+
"output_required": true,
|
2892
|
+
"type": "string",
|
2893
|
+
"value_allowed_null": true
|
2894
|
+
},
|
2895
|
+
{
|
2896
|
+
"disabled": false,
|
2897
|
+
"document": "备份GTID点位\n注意:此字段可能返回 null,表示取不到有效值。",
|
2898
|
+
"example": "无",
|
2899
|
+
"member": "string",
|
2900
|
+
"name": "ExecutedGTIDSet",
|
2901
|
+
"output_required": false,
|
2892
2902
|
"type": "string",
|
2893
2903
|
"value_allowed_null": true
|
2894
2904
|
}
|
@@ -5874,7 +5884,7 @@
|
|
5874
5884
|
},
|
5875
5885
|
{
|
5876
5886
|
"disabled": false,
|
5877
|
-
"document": "
|
5887
|
+
"document": "数据库名称,长度不超过64。",
|
5878
5888
|
"example": "db_test",
|
5879
5889
|
"member": "string",
|
5880
5890
|
"name": "DBName",
|
@@ -6506,7 +6516,7 @@
|
|
6506
6516
|
},
|
6507
6517
|
{
|
6508
6518
|
"disabled": false,
|
6509
|
-
"document": "
|
6519
|
+
"document": "数据库名称,长度不超过64。",
|
6510
6520
|
"example": "db_test",
|
6511
6521
|
"member": "string",
|
6512
6522
|
"name": "DBName",
|
@@ -8356,6 +8366,15 @@
|
|
8356
8366
|
"name": "MaxStartTime",
|
8357
8367
|
"required": false,
|
8358
8368
|
"type": "string"
|
8369
|
+
},
|
8370
|
+
{
|
8371
|
+
"disabled": false,
|
8372
|
+
"document": "返回binlog列表是否包含MinStartTime起始节点,默认为否",
|
8373
|
+
"example": "无",
|
8374
|
+
"member": "bool",
|
8375
|
+
"name": "ContainsMinStartTime",
|
8376
|
+
"required": false,
|
8377
|
+
"type": "bool"
|
8359
8378
|
}
|
8360
8379
|
],
|
8361
8380
|
"type": "object"
|
@@ -8369,6 +8388,7 @@
|
|
8369
8388
|
"example": "2",
|
8370
8389
|
"member": "int64",
|
8371
8390
|
"name": "TotalCount",
|
8391
|
+
"output_required": true,
|
8372
8392
|
"type": "int",
|
8373
8393
|
"value_allowed_null": false
|
8374
8394
|
},
|
@@ -8378,6 +8398,7 @@
|
|
8378
8398
|
"example": "无",
|
8379
8399
|
"member": "BinlogInfo",
|
8380
8400
|
"name": "Items",
|
8401
|
+
"output_required": true,
|
8381
8402
|
"type": "list",
|
8382
8403
|
"value_allowed_null": false
|
8383
8404
|
},
|
@@ -660,6 +660,16 @@
|
|
660
660
|
"output_required": false,
|
661
661
|
"type": "list",
|
662
662
|
"value_allowed_null": true
|
663
|
+
},
|
664
|
+
{
|
665
|
+
"disabled": false,
|
666
|
+
"document": "超时时间 单位s\n注意:此字段可能返回 null,表示取不到有效值。",
|
667
|
+
"example": "无",
|
668
|
+
"member": "string",
|
669
|
+
"name": "RestartTimeout",
|
670
|
+
"output_required": false,
|
671
|
+
"type": "string",
|
672
|
+
"value_allowed_null": true
|
663
673
|
}
|
664
674
|
],
|
665
675
|
"usage": "out"
|