alibabacloud-outboundbot20191226 1.2.2__py3-none-any.whl → 2.0.0__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.
- alibabacloud_outboundbot20191226/__init__.py +1 -1
- alibabacloud_outboundbot20191226/client.py +374 -764
- alibabacloud_outboundbot20191226/models.py +476 -1111
- {alibabacloud_outboundbot20191226-1.2.2.dist-info → alibabacloud_outboundbot20191226-2.0.0.dist-info}/METADATA +2 -2
- alibabacloud_outboundbot20191226-2.0.0.dist-info/RECORD +8 -0
- alibabacloud_outboundbot20191226-1.2.2.dist-info/RECORD +0 -8
- {alibabacloud_outboundbot20191226-1.2.2.dist-info → alibabacloud_outboundbot20191226-2.0.0.dist-info}/LICENSE +0 -0
- {alibabacloud_outboundbot20191226-1.2.2.dist-info → alibabacloud_outboundbot20191226-2.0.0.dist-info}/WHEEL +0 -0
- {alibabacloud_outboundbot20191226-1.2.2.dist-info → alibabacloud_outboundbot20191226-2.0.0.dist-info}/top_level.txt +0 -0
|
@@ -41,102 +41,6 @@ class Client(OpenApiClient):
|
|
|
41
41
|
return endpoint_map.get(region_id)
|
|
42
42
|
return EndpointUtilClient.get_endpoint_rules(product_id, region_id, endpoint_rule, network, suffix)
|
|
43
43
|
|
|
44
|
-
def apply_number_district_info_parsing_result_with_options(
|
|
45
|
-
self,
|
|
46
|
-
request: outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultRequest,
|
|
47
|
-
runtime: util_models.RuntimeOptions,
|
|
48
|
-
) -> outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultResponse:
|
|
49
|
-
"""
|
|
50
|
-
@summary 生效号码库解析结果
|
|
51
|
-
|
|
52
|
-
@param request: ApplyNumberDistrictInfoParsingResultRequest
|
|
53
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
54
|
-
@return: ApplyNumberDistrictInfoParsingResultResponse
|
|
55
|
-
"""
|
|
56
|
-
UtilClient.validate_model(request)
|
|
57
|
-
query = {}
|
|
58
|
-
if not UtilClient.is_unset(request.version_id):
|
|
59
|
-
query['VersionId'] = request.version_id
|
|
60
|
-
req = open_api_models.OpenApiRequest(
|
|
61
|
-
query=OpenApiUtilClient.query(query)
|
|
62
|
-
)
|
|
63
|
-
params = open_api_models.Params(
|
|
64
|
-
action='ApplyNumberDistrictInfoParsingResult',
|
|
65
|
-
version='2019-12-26',
|
|
66
|
-
protocol='HTTPS',
|
|
67
|
-
pathname='/',
|
|
68
|
-
method='POST',
|
|
69
|
-
auth_type='AK',
|
|
70
|
-
style='RPC',
|
|
71
|
-
req_body_type='formData',
|
|
72
|
-
body_type='json'
|
|
73
|
-
)
|
|
74
|
-
return TeaCore.from_map(
|
|
75
|
-
outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultResponse(),
|
|
76
|
-
self.call_api(params, req, runtime)
|
|
77
|
-
)
|
|
78
|
-
|
|
79
|
-
async def apply_number_district_info_parsing_result_with_options_async(
|
|
80
|
-
self,
|
|
81
|
-
request: outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultRequest,
|
|
82
|
-
runtime: util_models.RuntimeOptions,
|
|
83
|
-
) -> outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultResponse:
|
|
84
|
-
"""
|
|
85
|
-
@summary 生效号码库解析结果
|
|
86
|
-
|
|
87
|
-
@param request: ApplyNumberDistrictInfoParsingResultRequest
|
|
88
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
89
|
-
@return: ApplyNumberDistrictInfoParsingResultResponse
|
|
90
|
-
"""
|
|
91
|
-
UtilClient.validate_model(request)
|
|
92
|
-
query = {}
|
|
93
|
-
if not UtilClient.is_unset(request.version_id):
|
|
94
|
-
query['VersionId'] = request.version_id
|
|
95
|
-
req = open_api_models.OpenApiRequest(
|
|
96
|
-
query=OpenApiUtilClient.query(query)
|
|
97
|
-
)
|
|
98
|
-
params = open_api_models.Params(
|
|
99
|
-
action='ApplyNumberDistrictInfoParsingResult',
|
|
100
|
-
version='2019-12-26',
|
|
101
|
-
protocol='HTTPS',
|
|
102
|
-
pathname='/',
|
|
103
|
-
method='POST',
|
|
104
|
-
auth_type='AK',
|
|
105
|
-
style='RPC',
|
|
106
|
-
req_body_type='formData',
|
|
107
|
-
body_type='json'
|
|
108
|
-
)
|
|
109
|
-
return TeaCore.from_map(
|
|
110
|
-
outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultResponse(),
|
|
111
|
-
await self.call_api_async(params, req, runtime)
|
|
112
|
-
)
|
|
113
|
-
|
|
114
|
-
def apply_number_district_info_parsing_result(
|
|
115
|
-
self,
|
|
116
|
-
request: outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultRequest,
|
|
117
|
-
) -> outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultResponse:
|
|
118
|
-
"""
|
|
119
|
-
@summary 生效号码库解析结果
|
|
120
|
-
|
|
121
|
-
@param request: ApplyNumberDistrictInfoParsingResultRequest
|
|
122
|
-
@return: ApplyNumberDistrictInfoParsingResultResponse
|
|
123
|
-
"""
|
|
124
|
-
runtime = util_models.RuntimeOptions()
|
|
125
|
-
return self.apply_number_district_info_parsing_result_with_options(request, runtime)
|
|
126
|
-
|
|
127
|
-
async def apply_number_district_info_parsing_result_async(
|
|
128
|
-
self,
|
|
129
|
-
request: outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultRequest,
|
|
130
|
-
) -> outbound_bot_20191226_models.ApplyNumberDistrictInfoParsingResultResponse:
|
|
131
|
-
"""
|
|
132
|
-
@summary 生效号码库解析结果
|
|
133
|
-
|
|
134
|
-
@param request: ApplyNumberDistrictInfoParsingResultRequest
|
|
135
|
-
@return: ApplyNumberDistrictInfoParsingResultResponse
|
|
136
|
-
"""
|
|
137
|
-
runtime = util_models.RuntimeOptions()
|
|
138
|
-
return await self.apply_number_district_info_parsing_result_with_options_async(request, runtime)
|
|
139
|
-
|
|
140
44
|
def assign_jobs_with_options(
|
|
141
45
|
self,
|
|
142
46
|
request: outbound_bot_20191226_models.AssignJobsRequest,
|
|
@@ -261,6 +165,130 @@ class Client(OpenApiClient):
|
|
|
261
165
|
runtime = util_models.RuntimeOptions()
|
|
262
166
|
return await self.assign_jobs_with_options_async(request, runtime)
|
|
263
167
|
|
|
168
|
+
def assign_jobs_async_with_options(
|
|
169
|
+
self,
|
|
170
|
+
tmp_req: outbound_bot_20191226_models.AssignJobsAsyncRequest,
|
|
171
|
+
runtime: util_models.RuntimeOptions,
|
|
172
|
+
) -> outbound_bot_20191226_models.AssignJobsAsyncResponse:
|
|
173
|
+
"""
|
|
174
|
+
@summary 异步创建外呼任务
|
|
175
|
+
|
|
176
|
+
@param tmp_req: AssignJobsAsyncRequest
|
|
177
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
178
|
+
@return: AssignJobsAsyncResponse
|
|
179
|
+
"""
|
|
180
|
+
UtilClient.validate_model(tmp_req)
|
|
181
|
+
request = outbound_bot_20191226_models.AssignJobsAsyncShrinkRequest()
|
|
182
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
183
|
+
if not UtilClient.is_unset(tmp_req.calling_number):
|
|
184
|
+
request.calling_number_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.calling_number, 'CallingNumber', 'json')
|
|
185
|
+
if not UtilClient.is_unset(tmp_req.jobs_json):
|
|
186
|
+
request.jobs_json_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.jobs_json, 'JobsJson', 'json')
|
|
187
|
+
body = {}
|
|
188
|
+
if not UtilClient.is_unset(request.calling_number_shrink):
|
|
189
|
+
body['CallingNumber'] = request.calling_number_shrink
|
|
190
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
191
|
+
body['InstanceId'] = request.instance_id
|
|
192
|
+
if not UtilClient.is_unset(request.job_group_id):
|
|
193
|
+
body['JobGroupId'] = request.job_group_id
|
|
194
|
+
if not UtilClient.is_unset(request.jobs_json_shrink):
|
|
195
|
+
body['JobsJson'] = request.jobs_json_shrink
|
|
196
|
+
if not UtilClient.is_unset(request.strategy_json):
|
|
197
|
+
body['StrategyJson'] = request.strategy_json
|
|
198
|
+
req = open_api_models.OpenApiRequest(
|
|
199
|
+
body=OpenApiUtilClient.parse_to_map(body)
|
|
200
|
+
)
|
|
201
|
+
params = open_api_models.Params(
|
|
202
|
+
action='AssignJobsAsync',
|
|
203
|
+
version='2019-12-26',
|
|
204
|
+
protocol='HTTPS',
|
|
205
|
+
pathname='/',
|
|
206
|
+
method='POST',
|
|
207
|
+
auth_type='AK',
|
|
208
|
+
style='RPC',
|
|
209
|
+
req_body_type='formData',
|
|
210
|
+
body_type='json'
|
|
211
|
+
)
|
|
212
|
+
return TeaCore.from_map(
|
|
213
|
+
outbound_bot_20191226_models.AssignJobsAsyncResponse(),
|
|
214
|
+
self.call_api(params, req, runtime)
|
|
215
|
+
)
|
|
216
|
+
|
|
217
|
+
async def assign_jobs_async_with_options_async(
|
|
218
|
+
self,
|
|
219
|
+
tmp_req: outbound_bot_20191226_models.AssignJobsAsyncRequest,
|
|
220
|
+
runtime: util_models.RuntimeOptions,
|
|
221
|
+
) -> outbound_bot_20191226_models.AssignJobsAsyncResponse:
|
|
222
|
+
"""
|
|
223
|
+
@summary 异步创建外呼任务
|
|
224
|
+
|
|
225
|
+
@param tmp_req: AssignJobsAsyncRequest
|
|
226
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
227
|
+
@return: AssignJobsAsyncResponse
|
|
228
|
+
"""
|
|
229
|
+
UtilClient.validate_model(tmp_req)
|
|
230
|
+
request = outbound_bot_20191226_models.AssignJobsAsyncShrinkRequest()
|
|
231
|
+
OpenApiUtilClient.convert(tmp_req, request)
|
|
232
|
+
if not UtilClient.is_unset(tmp_req.calling_number):
|
|
233
|
+
request.calling_number_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.calling_number, 'CallingNumber', 'json')
|
|
234
|
+
if not UtilClient.is_unset(tmp_req.jobs_json):
|
|
235
|
+
request.jobs_json_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.jobs_json, 'JobsJson', 'json')
|
|
236
|
+
body = {}
|
|
237
|
+
if not UtilClient.is_unset(request.calling_number_shrink):
|
|
238
|
+
body['CallingNumber'] = request.calling_number_shrink
|
|
239
|
+
if not UtilClient.is_unset(request.instance_id):
|
|
240
|
+
body['InstanceId'] = request.instance_id
|
|
241
|
+
if not UtilClient.is_unset(request.job_group_id):
|
|
242
|
+
body['JobGroupId'] = request.job_group_id
|
|
243
|
+
if not UtilClient.is_unset(request.jobs_json_shrink):
|
|
244
|
+
body['JobsJson'] = request.jobs_json_shrink
|
|
245
|
+
if not UtilClient.is_unset(request.strategy_json):
|
|
246
|
+
body['StrategyJson'] = request.strategy_json
|
|
247
|
+
req = open_api_models.OpenApiRequest(
|
|
248
|
+
body=OpenApiUtilClient.parse_to_map(body)
|
|
249
|
+
)
|
|
250
|
+
params = open_api_models.Params(
|
|
251
|
+
action='AssignJobsAsync',
|
|
252
|
+
version='2019-12-26',
|
|
253
|
+
protocol='HTTPS',
|
|
254
|
+
pathname='/',
|
|
255
|
+
method='POST',
|
|
256
|
+
auth_type='AK',
|
|
257
|
+
style='RPC',
|
|
258
|
+
req_body_type='formData',
|
|
259
|
+
body_type='json'
|
|
260
|
+
)
|
|
261
|
+
return TeaCore.from_map(
|
|
262
|
+
outbound_bot_20191226_models.AssignJobsAsyncResponse(),
|
|
263
|
+
await self.call_api_async(params, req, runtime)
|
|
264
|
+
)
|
|
265
|
+
|
|
266
|
+
def assign_jobs_async(
|
|
267
|
+
self,
|
|
268
|
+
request: outbound_bot_20191226_models.AssignJobsAsyncRequest,
|
|
269
|
+
) -> outbound_bot_20191226_models.AssignJobsAsyncResponse:
|
|
270
|
+
"""
|
|
271
|
+
@summary 异步创建外呼任务
|
|
272
|
+
|
|
273
|
+
@param request: AssignJobsAsyncRequest
|
|
274
|
+
@return: AssignJobsAsyncResponse
|
|
275
|
+
"""
|
|
276
|
+
runtime = util_models.RuntimeOptions()
|
|
277
|
+
return self.assign_jobs_async_with_options(request, runtime)
|
|
278
|
+
|
|
279
|
+
async def assign_jobs_async_async(
|
|
280
|
+
self,
|
|
281
|
+
request: outbound_bot_20191226_models.AssignJobsAsyncRequest,
|
|
282
|
+
) -> outbound_bot_20191226_models.AssignJobsAsyncResponse:
|
|
283
|
+
"""
|
|
284
|
+
@summary 异步创建外呼任务
|
|
285
|
+
|
|
286
|
+
@param request: AssignJobsAsyncRequest
|
|
287
|
+
@return: AssignJobsAsyncResponse
|
|
288
|
+
"""
|
|
289
|
+
runtime = util_models.RuntimeOptions()
|
|
290
|
+
return await self.assign_jobs_async_with_options_async(request, runtime)
|
|
291
|
+
|
|
264
292
|
def cancel_jobs_with_options(
|
|
265
293
|
self,
|
|
266
294
|
request: outbound_bot_20191226_models.CancelJobsRequest,
|
|
@@ -607,6 +635,8 @@ class Client(OpenApiClient):
|
|
|
607
635
|
runtime: util_models.RuntimeOptions,
|
|
608
636
|
) -> outbound_bot_20191226_models.CreateAnnotationMissionResponse:
|
|
609
637
|
"""
|
|
638
|
+
@summary 创建标注任务
|
|
639
|
+
|
|
610
640
|
@param tmp_req: CreateAnnotationMissionRequest
|
|
611
641
|
@param runtime: runtime options for this request RuntimeOptions
|
|
612
642
|
@return: CreateAnnotationMissionResponse
|
|
@@ -678,6 +708,8 @@ class Client(OpenApiClient):
|
|
|
678
708
|
runtime: util_models.RuntimeOptions,
|
|
679
709
|
) -> outbound_bot_20191226_models.CreateAnnotationMissionResponse:
|
|
680
710
|
"""
|
|
711
|
+
@summary 创建标注任务
|
|
712
|
+
|
|
681
713
|
@param tmp_req: CreateAnnotationMissionRequest
|
|
682
714
|
@param runtime: runtime options for this request RuntimeOptions
|
|
683
715
|
@return: CreateAnnotationMissionResponse
|
|
@@ -748,6 +780,8 @@ class Client(OpenApiClient):
|
|
|
748
780
|
request: outbound_bot_20191226_models.CreateAnnotationMissionRequest,
|
|
749
781
|
) -> outbound_bot_20191226_models.CreateAnnotationMissionResponse:
|
|
750
782
|
"""
|
|
783
|
+
@summary 创建标注任务
|
|
784
|
+
|
|
751
785
|
@param request: CreateAnnotationMissionRequest
|
|
752
786
|
@return: CreateAnnotationMissionResponse
|
|
753
787
|
"""
|
|
@@ -759,6 +793,8 @@ class Client(OpenApiClient):
|
|
|
759
793
|
request: outbound_bot_20191226_models.CreateAnnotationMissionRequest,
|
|
760
794
|
) -> outbound_bot_20191226_models.CreateAnnotationMissionResponse:
|
|
761
795
|
"""
|
|
796
|
+
@summary 创建标注任务
|
|
797
|
+
|
|
762
798
|
@param request: CreateAnnotationMissionRequest
|
|
763
799
|
@return: CreateAnnotationMissionResponse
|
|
764
800
|
"""
|
|
@@ -771,6 +807,8 @@ class Client(OpenApiClient):
|
|
|
771
807
|
runtime: util_models.RuntimeOptions,
|
|
772
808
|
) -> outbound_bot_20191226_models.CreateBatchJobsResponse:
|
|
773
809
|
"""
|
|
810
|
+
@summary 创建任务
|
|
811
|
+
|
|
774
812
|
@param request: CreateBatchJobsRequest
|
|
775
813
|
@param runtime: runtime options for this request RuntimeOptions
|
|
776
814
|
@return: CreateBatchJobsResponse
|
|
@@ -820,6 +858,8 @@ class Client(OpenApiClient):
|
|
|
820
858
|
runtime: util_models.RuntimeOptions,
|
|
821
859
|
) -> outbound_bot_20191226_models.CreateBatchJobsResponse:
|
|
822
860
|
"""
|
|
861
|
+
@summary 创建任务
|
|
862
|
+
|
|
823
863
|
@param request: CreateBatchJobsRequest
|
|
824
864
|
@param runtime: runtime options for this request RuntimeOptions
|
|
825
865
|
@return: CreateBatchJobsResponse
|
|
@@ -868,6 +908,8 @@ class Client(OpenApiClient):
|
|
|
868
908
|
request: outbound_bot_20191226_models.CreateBatchJobsRequest,
|
|
869
909
|
) -> outbound_bot_20191226_models.CreateBatchJobsResponse:
|
|
870
910
|
"""
|
|
911
|
+
@summary 创建任务
|
|
912
|
+
|
|
871
913
|
@param request: CreateBatchJobsRequest
|
|
872
914
|
@return: CreateBatchJobsResponse
|
|
873
915
|
"""
|
|
@@ -879,6 +921,8 @@ class Client(OpenApiClient):
|
|
|
879
921
|
request: outbound_bot_20191226_models.CreateBatchJobsRequest,
|
|
880
922
|
) -> outbound_bot_20191226_models.CreateBatchJobsResponse:
|
|
881
923
|
"""
|
|
924
|
+
@summary 创建任务
|
|
925
|
+
|
|
882
926
|
@param request: CreateBatchJobsRequest
|
|
883
927
|
@return: CreateBatchJobsResponse
|
|
884
928
|
"""
|
|
@@ -2075,6 +2119,8 @@ class Client(OpenApiClient):
|
|
|
2075
2119
|
runtime: util_models.RuntimeOptions,
|
|
2076
2120
|
) -> outbound_bot_20191226_models.CreateJobGroupResponse:
|
|
2077
2121
|
"""
|
|
2122
|
+
@summary 创建任务组
|
|
2123
|
+
|
|
2078
2124
|
@param request: CreateJobGroupRequest
|
|
2079
2125
|
@param runtime: runtime options for this request RuntimeOptions
|
|
2080
2126
|
@return: CreateJobGroupResponse
|
|
@@ -2132,6 +2178,8 @@ class Client(OpenApiClient):
|
|
|
2132
2178
|
runtime: util_models.RuntimeOptions,
|
|
2133
2179
|
) -> outbound_bot_20191226_models.CreateJobGroupResponse:
|
|
2134
2180
|
"""
|
|
2181
|
+
@summary 创建任务组
|
|
2182
|
+
|
|
2135
2183
|
@param request: CreateJobGroupRequest
|
|
2136
2184
|
@param runtime: runtime options for this request RuntimeOptions
|
|
2137
2185
|
@return: CreateJobGroupResponse
|
|
@@ -2188,6 +2236,8 @@ class Client(OpenApiClient):
|
|
|
2188
2236
|
request: outbound_bot_20191226_models.CreateJobGroupRequest,
|
|
2189
2237
|
) -> outbound_bot_20191226_models.CreateJobGroupResponse:
|
|
2190
2238
|
"""
|
|
2239
|
+
@summary 创建任务组
|
|
2240
|
+
|
|
2191
2241
|
@param request: CreateJobGroupRequest
|
|
2192
2242
|
@return: CreateJobGroupResponse
|
|
2193
2243
|
"""
|
|
@@ -2199,6 +2249,8 @@ class Client(OpenApiClient):
|
|
|
2199
2249
|
request: outbound_bot_20191226_models.CreateJobGroupRequest,
|
|
2200
2250
|
) -> outbound_bot_20191226_models.CreateJobGroupResponse:
|
|
2201
2251
|
"""
|
|
2252
|
+
@summary 创建任务组
|
|
2253
|
+
|
|
2202
2254
|
@param request: CreateJobGroupRequest
|
|
2203
2255
|
@return: CreateJobGroupResponse
|
|
2204
2256
|
"""
|
|
@@ -2211,6 +2263,8 @@ class Client(OpenApiClient):
|
|
|
2211
2263
|
runtime: util_models.RuntimeOptions,
|
|
2212
2264
|
) -> outbound_bot_20191226_models.CreateJobGroupExportTaskResponse:
|
|
2213
2265
|
"""
|
|
2266
|
+
@summary 创建任务组到处任务
|
|
2267
|
+
|
|
2214
2268
|
@param request: CreateJobGroupExportTaskRequest
|
|
2215
2269
|
@param runtime: runtime options for this request RuntimeOptions
|
|
2216
2270
|
@return: CreateJobGroupExportTaskResponse
|
|
@@ -2248,6 +2302,8 @@ class Client(OpenApiClient):
|
|
|
2248
2302
|
runtime: util_models.RuntimeOptions,
|
|
2249
2303
|
) -> outbound_bot_20191226_models.CreateJobGroupExportTaskResponse:
|
|
2250
2304
|
"""
|
|
2305
|
+
@summary 创建任务组到处任务
|
|
2306
|
+
|
|
2251
2307
|
@param request: CreateJobGroupExportTaskRequest
|
|
2252
2308
|
@param runtime: runtime options for this request RuntimeOptions
|
|
2253
2309
|
@return: CreateJobGroupExportTaskResponse
|
|
@@ -2284,6 +2340,8 @@ class Client(OpenApiClient):
|
|
|
2284
2340
|
request: outbound_bot_20191226_models.CreateJobGroupExportTaskRequest,
|
|
2285
2341
|
) -> outbound_bot_20191226_models.CreateJobGroupExportTaskResponse:
|
|
2286
2342
|
"""
|
|
2343
|
+
@summary 创建任务组到处任务
|
|
2344
|
+
|
|
2287
2345
|
@param request: CreateJobGroupExportTaskRequest
|
|
2288
2346
|
@return: CreateJobGroupExportTaskResponse
|
|
2289
2347
|
"""
|
|
@@ -2295,316 +2353,14 @@ class Client(OpenApiClient):
|
|
|
2295
2353
|
request: outbound_bot_20191226_models.CreateJobGroupExportTaskRequest,
|
|
2296
2354
|
) -> outbound_bot_20191226_models.CreateJobGroupExportTaskResponse:
|
|
2297
2355
|
"""
|
|
2356
|
+
@summary 创建任务组到处任务
|
|
2357
|
+
|
|
2298
2358
|
@param request: CreateJobGroupExportTaskRequest
|
|
2299
2359
|
@return: CreateJobGroupExportTaskResponse
|
|
2300
2360
|
"""
|
|
2301
2361
|
runtime = util_models.RuntimeOptions()
|
|
2302
2362
|
return await self.create_job_group_export_task_with_options_async(request, runtime)
|
|
2303
2363
|
|
|
2304
|
-
def create_number_district_info_download_url_with_options(
|
|
2305
|
-
self,
|
|
2306
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlRequest,
|
|
2307
|
-
runtime: util_models.RuntimeOptions,
|
|
2308
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlResponse:
|
|
2309
|
-
"""
|
|
2310
|
-
@summary 创建号码库下载链接
|
|
2311
|
-
|
|
2312
|
-
@param request: CreateNumberDistrictInfoDownloadUrlRequest
|
|
2313
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
2314
|
-
@return: CreateNumberDistrictInfoDownloadUrlResponse
|
|
2315
|
-
"""
|
|
2316
|
-
UtilClient.validate_model(request)
|
|
2317
|
-
query = {}
|
|
2318
|
-
if not UtilClient.is_unset(request.version_id):
|
|
2319
|
-
query['VersionId'] = request.version_id
|
|
2320
|
-
req = open_api_models.OpenApiRequest(
|
|
2321
|
-
query=OpenApiUtilClient.query(query)
|
|
2322
|
-
)
|
|
2323
|
-
params = open_api_models.Params(
|
|
2324
|
-
action='CreateNumberDistrictInfoDownloadUrl',
|
|
2325
|
-
version='2019-12-26',
|
|
2326
|
-
protocol='HTTPS',
|
|
2327
|
-
pathname='/',
|
|
2328
|
-
method='POST',
|
|
2329
|
-
auth_type='AK',
|
|
2330
|
-
style='RPC',
|
|
2331
|
-
req_body_type='formData',
|
|
2332
|
-
body_type='json'
|
|
2333
|
-
)
|
|
2334
|
-
return TeaCore.from_map(
|
|
2335
|
-
outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlResponse(),
|
|
2336
|
-
self.call_api(params, req, runtime)
|
|
2337
|
-
)
|
|
2338
|
-
|
|
2339
|
-
async def create_number_district_info_download_url_with_options_async(
|
|
2340
|
-
self,
|
|
2341
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlRequest,
|
|
2342
|
-
runtime: util_models.RuntimeOptions,
|
|
2343
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlResponse:
|
|
2344
|
-
"""
|
|
2345
|
-
@summary 创建号码库下载链接
|
|
2346
|
-
|
|
2347
|
-
@param request: CreateNumberDistrictInfoDownloadUrlRequest
|
|
2348
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
2349
|
-
@return: CreateNumberDistrictInfoDownloadUrlResponse
|
|
2350
|
-
"""
|
|
2351
|
-
UtilClient.validate_model(request)
|
|
2352
|
-
query = {}
|
|
2353
|
-
if not UtilClient.is_unset(request.version_id):
|
|
2354
|
-
query['VersionId'] = request.version_id
|
|
2355
|
-
req = open_api_models.OpenApiRequest(
|
|
2356
|
-
query=OpenApiUtilClient.query(query)
|
|
2357
|
-
)
|
|
2358
|
-
params = open_api_models.Params(
|
|
2359
|
-
action='CreateNumberDistrictInfoDownloadUrl',
|
|
2360
|
-
version='2019-12-26',
|
|
2361
|
-
protocol='HTTPS',
|
|
2362
|
-
pathname='/',
|
|
2363
|
-
method='POST',
|
|
2364
|
-
auth_type='AK',
|
|
2365
|
-
style='RPC',
|
|
2366
|
-
req_body_type='formData',
|
|
2367
|
-
body_type='json'
|
|
2368
|
-
)
|
|
2369
|
-
return TeaCore.from_map(
|
|
2370
|
-
outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlResponse(),
|
|
2371
|
-
await self.call_api_async(params, req, runtime)
|
|
2372
|
-
)
|
|
2373
|
-
|
|
2374
|
-
def create_number_district_info_download_url(
|
|
2375
|
-
self,
|
|
2376
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlRequest,
|
|
2377
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlResponse:
|
|
2378
|
-
"""
|
|
2379
|
-
@summary 创建号码库下载链接
|
|
2380
|
-
|
|
2381
|
-
@param request: CreateNumberDistrictInfoDownloadUrlRequest
|
|
2382
|
-
@return: CreateNumberDistrictInfoDownloadUrlResponse
|
|
2383
|
-
"""
|
|
2384
|
-
runtime = util_models.RuntimeOptions()
|
|
2385
|
-
return self.create_number_district_info_download_url_with_options(request, runtime)
|
|
2386
|
-
|
|
2387
|
-
async def create_number_district_info_download_url_async(
|
|
2388
|
-
self,
|
|
2389
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlRequest,
|
|
2390
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoDownloadUrlResponse:
|
|
2391
|
-
"""
|
|
2392
|
-
@summary 创建号码库下载链接
|
|
2393
|
-
|
|
2394
|
-
@param request: CreateNumberDistrictInfoDownloadUrlRequest
|
|
2395
|
-
@return: CreateNumberDistrictInfoDownloadUrlResponse
|
|
2396
|
-
"""
|
|
2397
|
-
runtime = util_models.RuntimeOptions()
|
|
2398
|
-
return await self.create_number_district_info_download_url_with_options_async(request, runtime)
|
|
2399
|
-
|
|
2400
|
-
def create_number_district_info_parsing_task_with_options(
|
|
2401
|
-
self,
|
|
2402
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskRequest,
|
|
2403
|
-
runtime: util_models.RuntimeOptions,
|
|
2404
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskResponse:
|
|
2405
|
-
"""
|
|
2406
|
-
@summary 创建号码库解析任务
|
|
2407
|
-
|
|
2408
|
-
@param request: CreateNumberDistrictInfoParsingTaskRequest
|
|
2409
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
2410
|
-
@return: CreateNumberDistrictInfoParsingTaskResponse
|
|
2411
|
-
"""
|
|
2412
|
-
UtilClient.validate_model(request)
|
|
2413
|
-
query = {}
|
|
2414
|
-
if not UtilClient.is_unset(request.file_path):
|
|
2415
|
-
query['FilePath'] = request.file_path
|
|
2416
|
-
if not UtilClient.is_unset(request.file_size):
|
|
2417
|
-
query['FileSize'] = request.file_size
|
|
2418
|
-
req = open_api_models.OpenApiRequest(
|
|
2419
|
-
query=OpenApiUtilClient.query(query)
|
|
2420
|
-
)
|
|
2421
|
-
params = open_api_models.Params(
|
|
2422
|
-
action='CreateNumberDistrictInfoParsingTask',
|
|
2423
|
-
version='2019-12-26',
|
|
2424
|
-
protocol='HTTPS',
|
|
2425
|
-
pathname='/',
|
|
2426
|
-
method='POST',
|
|
2427
|
-
auth_type='AK',
|
|
2428
|
-
style='RPC',
|
|
2429
|
-
req_body_type='formData',
|
|
2430
|
-
body_type='json'
|
|
2431
|
-
)
|
|
2432
|
-
return TeaCore.from_map(
|
|
2433
|
-
outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskResponse(),
|
|
2434
|
-
self.call_api(params, req, runtime)
|
|
2435
|
-
)
|
|
2436
|
-
|
|
2437
|
-
async def create_number_district_info_parsing_task_with_options_async(
|
|
2438
|
-
self,
|
|
2439
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskRequest,
|
|
2440
|
-
runtime: util_models.RuntimeOptions,
|
|
2441
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskResponse:
|
|
2442
|
-
"""
|
|
2443
|
-
@summary 创建号码库解析任务
|
|
2444
|
-
|
|
2445
|
-
@param request: CreateNumberDistrictInfoParsingTaskRequest
|
|
2446
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
2447
|
-
@return: CreateNumberDistrictInfoParsingTaskResponse
|
|
2448
|
-
"""
|
|
2449
|
-
UtilClient.validate_model(request)
|
|
2450
|
-
query = {}
|
|
2451
|
-
if not UtilClient.is_unset(request.file_path):
|
|
2452
|
-
query['FilePath'] = request.file_path
|
|
2453
|
-
if not UtilClient.is_unset(request.file_size):
|
|
2454
|
-
query['FileSize'] = request.file_size
|
|
2455
|
-
req = open_api_models.OpenApiRequest(
|
|
2456
|
-
query=OpenApiUtilClient.query(query)
|
|
2457
|
-
)
|
|
2458
|
-
params = open_api_models.Params(
|
|
2459
|
-
action='CreateNumberDistrictInfoParsingTask',
|
|
2460
|
-
version='2019-12-26',
|
|
2461
|
-
protocol='HTTPS',
|
|
2462
|
-
pathname='/',
|
|
2463
|
-
method='POST',
|
|
2464
|
-
auth_type='AK',
|
|
2465
|
-
style='RPC',
|
|
2466
|
-
req_body_type='formData',
|
|
2467
|
-
body_type='json'
|
|
2468
|
-
)
|
|
2469
|
-
return TeaCore.from_map(
|
|
2470
|
-
outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskResponse(),
|
|
2471
|
-
await self.call_api_async(params, req, runtime)
|
|
2472
|
-
)
|
|
2473
|
-
|
|
2474
|
-
def create_number_district_info_parsing_task(
|
|
2475
|
-
self,
|
|
2476
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskRequest,
|
|
2477
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskResponse:
|
|
2478
|
-
"""
|
|
2479
|
-
@summary 创建号码库解析任务
|
|
2480
|
-
|
|
2481
|
-
@param request: CreateNumberDistrictInfoParsingTaskRequest
|
|
2482
|
-
@return: CreateNumberDistrictInfoParsingTaskResponse
|
|
2483
|
-
"""
|
|
2484
|
-
runtime = util_models.RuntimeOptions()
|
|
2485
|
-
return self.create_number_district_info_parsing_task_with_options(request, runtime)
|
|
2486
|
-
|
|
2487
|
-
async def create_number_district_info_parsing_task_async(
|
|
2488
|
-
self,
|
|
2489
|
-
request: outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskRequest,
|
|
2490
|
-
) -> outbound_bot_20191226_models.CreateNumberDistrictInfoParsingTaskResponse:
|
|
2491
|
-
"""
|
|
2492
|
-
@summary 创建号码库解析任务
|
|
2493
|
-
|
|
2494
|
-
@param request: CreateNumberDistrictInfoParsingTaskRequest
|
|
2495
|
-
@return: CreateNumberDistrictInfoParsingTaskResponse
|
|
2496
|
-
"""
|
|
2497
|
-
runtime = util_models.RuntimeOptions()
|
|
2498
|
-
return await self.create_number_district_info_parsing_task_with_options_async(request, runtime)
|
|
2499
|
-
|
|
2500
|
-
def create_outbound_call_number_with_options(
|
|
2501
|
-
self,
|
|
2502
|
-
request: outbound_bot_20191226_models.CreateOutboundCallNumberRequest,
|
|
2503
|
-
runtime: util_models.RuntimeOptions,
|
|
2504
|
-
) -> outbound_bot_20191226_models.CreateOutboundCallNumberResponse:
|
|
2505
|
-
"""
|
|
2506
|
-
@summary CreateOutboundCallNumber
|
|
2507
|
-
|
|
2508
|
-
@param request: CreateOutboundCallNumberRequest
|
|
2509
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
2510
|
-
@return: CreateOutboundCallNumberResponse
|
|
2511
|
-
"""
|
|
2512
|
-
UtilClient.validate_model(request)
|
|
2513
|
-
query = {}
|
|
2514
|
-
if not UtilClient.is_unset(request.instance_id):
|
|
2515
|
-
query['InstanceId'] = request.instance_id
|
|
2516
|
-
if not UtilClient.is_unset(request.number):
|
|
2517
|
-
query['Number'] = request.number
|
|
2518
|
-
if not UtilClient.is_unset(request.rate_limit_count):
|
|
2519
|
-
query['RateLimitCount'] = request.rate_limit_count
|
|
2520
|
-
if not UtilClient.is_unset(request.rate_limit_period):
|
|
2521
|
-
query['RateLimitPeriod'] = request.rate_limit_period
|
|
2522
|
-
req = open_api_models.OpenApiRequest(
|
|
2523
|
-
query=OpenApiUtilClient.query(query)
|
|
2524
|
-
)
|
|
2525
|
-
params = open_api_models.Params(
|
|
2526
|
-
action='CreateOutboundCallNumber',
|
|
2527
|
-
version='2019-12-26',
|
|
2528
|
-
protocol='HTTPS',
|
|
2529
|
-
pathname='/',
|
|
2530
|
-
method='POST',
|
|
2531
|
-
auth_type='AK',
|
|
2532
|
-
style='RPC',
|
|
2533
|
-
req_body_type='formData',
|
|
2534
|
-
body_type='json'
|
|
2535
|
-
)
|
|
2536
|
-
return TeaCore.from_map(
|
|
2537
|
-
outbound_bot_20191226_models.CreateOutboundCallNumberResponse(),
|
|
2538
|
-
self.call_api(params, req, runtime)
|
|
2539
|
-
)
|
|
2540
|
-
|
|
2541
|
-
async def create_outbound_call_number_with_options_async(
|
|
2542
|
-
self,
|
|
2543
|
-
request: outbound_bot_20191226_models.CreateOutboundCallNumberRequest,
|
|
2544
|
-
runtime: util_models.RuntimeOptions,
|
|
2545
|
-
) -> outbound_bot_20191226_models.CreateOutboundCallNumberResponse:
|
|
2546
|
-
"""
|
|
2547
|
-
@summary CreateOutboundCallNumber
|
|
2548
|
-
|
|
2549
|
-
@param request: CreateOutboundCallNumberRequest
|
|
2550
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
2551
|
-
@return: CreateOutboundCallNumberResponse
|
|
2552
|
-
"""
|
|
2553
|
-
UtilClient.validate_model(request)
|
|
2554
|
-
query = {}
|
|
2555
|
-
if not UtilClient.is_unset(request.instance_id):
|
|
2556
|
-
query['InstanceId'] = request.instance_id
|
|
2557
|
-
if not UtilClient.is_unset(request.number):
|
|
2558
|
-
query['Number'] = request.number
|
|
2559
|
-
if not UtilClient.is_unset(request.rate_limit_count):
|
|
2560
|
-
query['RateLimitCount'] = request.rate_limit_count
|
|
2561
|
-
if not UtilClient.is_unset(request.rate_limit_period):
|
|
2562
|
-
query['RateLimitPeriod'] = request.rate_limit_period
|
|
2563
|
-
req = open_api_models.OpenApiRequest(
|
|
2564
|
-
query=OpenApiUtilClient.query(query)
|
|
2565
|
-
)
|
|
2566
|
-
params = open_api_models.Params(
|
|
2567
|
-
action='CreateOutboundCallNumber',
|
|
2568
|
-
version='2019-12-26',
|
|
2569
|
-
protocol='HTTPS',
|
|
2570
|
-
pathname='/',
|
|
2571
|
-
method='POST',
|
|
2572
|
-
auth_type='AK',
|
|
2573
|
-
style='RPC',
|
|
2574
|
-
req_body_type='formData',
|
|
2575
|
-
body_type='json'
|
|
2576
|
-
)
|
|
2577
|
-
return TeaCore.from_map(
|
|
2578
|
-
outbound_bot_20191226_models.CreateOutboundCallNumberResponse(),
|
|
2579
|
-
await self.call_api_async(params, req, runtime)
|
|
2580
|
-
)
|
|
2581
|
-
|
|
2582
|
-
def create_outbound_call_number(
|
|
2583
|
-
self,
|
|
2584
|
-
request: outbound_bot_20191226_models.CreateOutboundCallNumberRequest,
|
|
2585
|
-
) -> outbound_bot_20191226_models.CreateOutboundCallNumberResponse:
|
|
2586
|
-
"""
|
|
2587
|
-
@summary CreateOutboundCallNumber
|
|
2588
|
-
|
|
2589
|
-
@param request: CreateOutboundCallNumberRequest
|
|
2590
|
-
@return: CreateOutboundCallNumberResponse
|
|
2591
|
-
"""
|
|
2592
|
-
runtime = util_models.RuntimeOptions()
|
|
2593
|
-
return self.create_outbound_call_number_with_options(request, runtime)
|
|
2594
|
-
|
|
2595
|
-
async def create_outbound_call_number_async(
|
|
2596
|
-
self,
|
|
2597
|
-
request: outbound_bot_20191226_models.CreateOutboundCallNumberRequest,
|
|
2598
|
-
) -> outbound_bot_20191226_models.CreateOutboundCallNumberResponse:
|
|
2599
|
-
"""
|
|
2600
|
-
@summary CreateOutboundCallNumber
|
|
2601
|
-
|
|
2602
|
-
@param request: CreateOutboundCallNumberRequest
|
|
2603
|
-
@return: CreateOutboundCallNumberResponse
|
|
2604
|
-
"""
|
|
2605
|
-
runtime = util_models.RuntimeOptions()
|
|
2606
|
-
return await self.create_outbound_call_number_with_options_async(request, runtime)
|
|
2607
|
-
|
|
2608
2364
|
def create_script_with_options(
|
|
2609
2365
|
self,
|
|
2610
2366
|
request: outbound_bot_20191226_models.CreateScriptRequest,
|
|
@@ -5297,6 +5053,8 @@ class Client(OpenApiClient):
|
|
|
5297
5053
|
runtime: util_models.RuntimeOptions,
|
|
5298
5054
|
) -> outbound_bot_20191226_models.DescribeIntentStatisticsResponse:
|
|
5299
5055
|
"""
|
|
5056
|
+
@summary DescribeIntentStatistics
|
|
5057
|
+
|
|
5300
5058
|
@param request: DescribeIntentStatisticsRequest
|
|
5301
5059
|
@param runtime: runtime options for this request RuntimeOptions
|
|
5302
5060
|
@return: DescribeIntentStatisticsResponse
|
|
@@ -5334,6 +5092,8 @@ class Client(OpenApiClient):
|
|
|
5334
5092
|
runtime: util_models.RuntimeOptions,
|
|
5335
5093
|
) -> outbound_bot_20191226_models.DescribeIntentStatisticsResponse:
|
|
5336
5094
|
"""
|
|
5095
|
+
@summary DescribeIntentStatistics
|
|
5096
|
+
|
|
5337
5097
|
@param request: DescribeIntentStatisticsRequest
|
|
5338
5098
|
@param runtime: runtime options for this request RuntimeOptions
|
|
5339
5099
|
@return: DescribeIntentStatisticsResponse
|
|
@@ -5370,6 +5130,8 @@ class Client(OpenApiClient):
|
|
|
5370
5130
|
request: outbound_bot_20191226_models.DescribeIntentStatisticsRequest,
|
|
5371
5131
|
) -> outbound_bot_20191226_models.DescribeIntentStatisticsResponse:
|
|
5372
5132
|
"""
|
|
5133
|
+
@summary DescribeIntentStatistics
|
|
5134
|
+
|
|
5373
5135
|
@param request: DescribeIntentStatisticsRequest
|
|
5374
5136
|
@return: DescribeIntentStatisticsResponse
|
|
5375
5137
|
"""
|
|
@@ -5381,6 +5143,8 @@ class Client(OpenApiClient):
|
|
|
5381
5143
|
request: outbound_bot_20191226_models.DescribeIntentStatisticsRequest,
|
|
5382
5144
|
) -> outbound_bot_20191226_models.DescribeIntentStatisticsResponse:
|
|
5383
5145
|
"""
|
|
5146
|
+
@summary DescribeIntentStatistics
|
|
5147
|
+
|
|
5384
5148
|
@param request: DescribeIntentStatisticsRequest
|
|
5385
5149
|
@return: DescribeIntentStatisticsResponse
|
|
5386
5150
|
"""
|
|
@@ -5779,80 +5543,6 @@ class Client(OpenApiClient):
|
|
|
5779
5543
|
runtime = util_models.RuntimeOptions()
|
|
5780
5544
|
return await self.describe_job_group_export_task_progress_with_options_async(request, runtime)
|
|
5781
5545
|
|
|
5782
|
-
def describe_number_district_info_status_with_options(
|
|
5783
|
-
self,
|
|
5784
|
-
runtime: util_models.RuntimeOptions,
|
|
5785
|
-
) -> outbound_bot_20191226_models.DescribeNumberDistrictInfoStatusResponse:
|
|
5786
|
-
"""
|
|
5787
|
-
@summary 查询号码库状态
|
|
5788
|
-
|
|
5789
|
-
@param request: DescribeNumberDistrictInfoStatusRequest
|
|
5790
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
5791
|
-
@return: DescribeNumberDistrictInfoStatusResponse
|
|
5792
|
-
"""
|
|
5793
|
-
req = open_api_models.OpenApiRequest()
|
|
5794
|
-
params = open_api_models.Params(
|
|
5795
|
-
action='DescribeNumberDistrictInfoStatus',
|
|
5796
|
-
version='2019-12-26',
|
|
5797
|
-
protocol='HTTPS',
|
|
5798
|
-
pathname='/',
|
|
5799
|
-
method='POST',
|
|
5800
|
-
auth_type='AK',
|
|
5801
|
-
style='RPC',
|
|
5802
|
-
req_body_type='formData',
|
|
5803
|
-
body_type='json'
|
|
5804
|
-
)
|
|
5805
|
-
return TeaCore.from_map(
|
|
5806
|
-
outbound_bot_20191226_models.DescribeNumberDistrictInfoStatusResponse(),
|
|
5807
|
-
self.call_api(params, req, runtime)
|
|
5808
|
-
)
|
|
5809
|
-
|
|
5810
|
-
async def describe_number_district_info_status_with_options_async(
|
|
5811
|
-
self,
|
|
5812
|
-
runtime: util_models.RuntimeOptions,
|
|
5813
|
-
) -> outbound_bot_20191226_models.DescribeNumberDistrictInfoStatusResponse:
|
|
5814
|
-
"""
|
|
5815
|
-
@summary 查询号码库状态
|
|
5816
|
-
|
|
5817
|
-
@param request: DescribeNumberDistrictInfoStatusRequest
|
|
5818
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
5819
|
-
@return: DescribeNumberDistrictInfoStatusResponse
|
|
5820
|
-
"""
|
|
5821
|
-
req = open_api_models.OpenApiRequest()
|
|
5822
|
-
params = open_api_models.Params(
|
|
5823
|
-
action='DescribeNumberDistrictInfoStatus',
|
|
5824
|
-
version='2019-12-26',
|
|
5825
|
-
protocol='HTTPS',
|
|
5826
|
-
pathname='/',
|
|
5827
|
-
method='POST',
|
|
5828
|
-
auth_type='AK',
|
|
5829
|
-
style='RPC',
|
|
5830
|
-
req_body_type='formData',
|
|
5831
|
-
body_type='json'
|
|
5832
|
-
)
|
|
5833
|
-
return TeaCore.from_map(
|
|
5834
|
-
outbound_bot_20191226_models.DescribeNumberDistrictInfoStatusResponse(),
|
|
5835
|
-
await self.call_api_async(params, req, runtime)
|
|
5836
|
-
)
|
|
5837
|
-
|
|
5838
|
-
def describe_number_district_info_status(self) -> outbound_bot_20191226_models.DescribeNumberDistrictInfoStatusResponse:
|
|
5839
|
-
"""
|
|
5840
|
-
@summary 查询号码库状态
|
|
5841
|
-
|
|
5842
|
-
@return: DescribeNumberDistrictInfoStatusResponse
|
|
5843
|
-
"""
|
|
5844
|
-
runtime = util_models.RuntimeOptions()
|
|
5845
|
-
return self.describe_number_district_info_status_with_options(runtime)
|
|
5846
|
-
|
|
5847
|
-
async def describe_number_district_info_status_async(self) -> outbound_bot_20191226_models.DescribeNumberDistrictInfoStatusResponse:
|
|
5848
|
-
"""
|
|
5849
|
-
@summary 查询号码库状态
|
|
5850
|
-
|
|
5851
|
-
@return: DescribeNumberDistrictInfoStatusResponse
|
|
5852
|
-
"""
|
|
5853
|
-
runtime = util_models.RuntimeOptions()
|
|
5854
|
-
return await self.describe_number_district_info_status_with_options_async(runtime)
|
|
5855
|
-
|
|
5856
5546
|
def describe_script_with_options(
|
|
5857
5547
|
self,
|
|
5858
5548
|
request: outbound_bot_20191226_models.DescribeScriptRequest,
|
|
@@ -6556,99 +6246,7 @@ class Client(OpenApiClient):
|
|
|
6556
6246
|
query=OpenApiUtilClient.query(query)
|
|
6557
6247
|
)
|
|
6558
6248
|
params = open_api_models.Params(
|
|
6559
|
-
action='Dialogue',
|
|
6560
|
-
version='2019-12-26',
|
|
6561
|
-
protocol='HTTPS',
|
|
6562
|
-
pathname='/',
|
|
6563
|
-
method='POST',
|
|
6564
|
-
auth_type='AK',
|
|
6565
|
-
style='RPC',
|
|
6566
|
-
req_body_type='formData',
|
|
6567
|
-
body_type='json'
|
|
6568
|
-
)
|
|
6569
|
-
return TeaCore.from_map(
|
|
6570
|
-
outbound_bot_20191226_models.DialogueResponse(),
|
|
6571
|
-
await self.call_api_async(params, req, runtime)
|
|
6572
|
-
)
|
|
6573
|
-
|
|
6574
|
-
def dialogue(
|
|
6575
|
-
self,
|
|
6576
|
-
request: outbound_bot_20191226_models.DialogueRequest,
|
|
6577
|
-
) -> outbound_bot_20191226_models.DialogueResponse:
|
|
6578
|
-
"""
|
|
6579
|
-
@param request: DialogueRequest
|
|
6580
|
-
@return: DialogueResponse
|
|
6581
|
-
"""
|
|
6582
|
-
runtime = util_models.RuntimeOptions()
|
|
6583
|
-
return self.dialogue_with_options(request, runtime)
|
|
6584
|
-
|
|
6585
|
-
async def dialogue_async(
|
|
6586
|
-
self,
|
|
6587
|
-
request: outbound_bot_20191226_models.DialogueRequest,
|
|
6588
|
-
) -> outbound_bot_20191226_models.DialogueResponse:
|
|
6589
|
-
"""
|
|
6590
|
-
@param request: DialogueRequest
|
|
6591
|
-
@return: DialogueResponse
|
|
6592
|
-
"""
|
|
6593
|
-
runtime = util_models.RuntimeOptions()
|
|
6594
|
-
return await self.dialogue_with_options_async(request, runtime)
|
|
6595
|
-
|
|
6596
|
-
def dismiss_number_district_info_parsing_result_with_options(
|
|
6597
|
-
self,
|
|
6598
|
-
request: outbound_bot_20191226_models.DismissNumberDistrictInfoParsingResultRequest,
|
|
6599
|
-
runtime: util_models.RuntimeOptions,
|
|
6600
|
-
) -> outbound_bot_20191226_models.DismissNumberDistrictInfoParsingResultResponse:
|
|
6601
|
-
"""
|
|
6602
|
-
@summary 取消号码库解析结果
|
|
6603
|
-
|
|
6604
|
-
@param request: DismissNumberDistrictInfoParsingResultRequest
|
|
6605
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
6606
|
-
@return: DismissNumberDistrictInfoParsingResultResponse
|
|
6607
|
-
"""
|
|
6608
|
-
UtilClient.validate_model(request)
|
|
6609
|
-
query = {}
|
|
6610
|
-
if not UtilClient.is_unset(request.version_id):
|
|
6611
|
-
query['VersionId'] = request.version_id
|
|
6612
|
-
req = open_api_models.OpenApiRequest(
|
|
6613
|
-
query=OpenApiUtilClient.query(query)
|
|
6614
|
-
)
|
|
6615
|
-
params = open_api_models.Params(
|
|
6616
|
-
action='DismissNumberDistrictInfoParsingResult',
|
|
6617
|
-
version='2019-12-26',
|
|
6618
|
-
protocol='HTTPS',
|
|
6619
|
-
pathname='/',
|
|
6620
|
-
method='POST',
|
|
6621
|
-
auth_type='AK',
|
|
6622
|
-
style='RPC',
|
|
6623
|
-
req_body_type='formData',
|
|
6624
|
-
body_type='json'
|
|
6625
|
-
)
|
|
6626
|
-
return TeaCore.from_map(
|
|
6627
|
-
outbound_bot_20191226_models.DismissNumberDistrictInfoParsingResultResponse(),
|
|
6628
|
-
self.call_api(params, req, runtime)
|
|
6629
|
-
)
|
|
6630
|
-
|
|
6631
|
-
async def dismiss_number_district_info_parsing_result_with_options_async(
|
|
6632
|
-
self,
|
|
6633
|
-
request: outbound_bot_20191226_models.DismissNumberDistrictInfoParsingResultRequest,
|
|
6634
|
-
runtime: util_models.RuntimeOptions,
|
|
6635
|
-
) -> outbound_bot_20191226_models.DismissNumberDistrictInfoParsingResultResponse:
|
|
6636
|
-
"""
|
|
6637
|
-
@summary 取消号码库解析结果
|
|
6638
|
-
|
|
6639
|
-
@param request: DismissNumberDistrictInfoParsingResultRequest
|
|
6640
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
6641
|
-
@return: DismissNumberDistrictInfoParsingResultResponse
|
|
6642
|
-
"""
|
|
6643
|
-
UtilClient.validate_model(request)
|
|
6644
|
-
query = {}
|
|
6645
|
-
if not UtilClient.is_unset(request.version_id):
|
|
6646
|
-
query['VersionId'] = request.version_id
|
|
6647
|
-
req = open_api_models.OpenApiRequest(
|
|
6648
|
-
query=OpenApiUtilClient.query(query)
|
|
6649
|
-
)
|
|
6650
|
-
params = open_api_models.Params(
|
|
6651
|
-
action='DismissNumberDistrictInfoParsingResult',
|
|
6249
|
+
action='Dialogue',
|
|
6652
6250
|
version='2019-12-26',
|
|
6653
6251
|
protocol='HTTPS',
|
|
6654
6252
|
pathname='/',
|
|
@@ -6659,35 +6257,31 @@ class Client(OpenApiClient):
|
|
|
6659
6257
|
body_type='json'
|
|
6660
6258
|
)
|
|
6661
6259
|
return TeaCore.from_map(
|
|
6662
|
-
outbound_bot_20191226_models.
|
|
6260
|
+
outbound_bot_20191226_models.DialogueResponse(),
|
|
6663
6261
|
await self.call_api_async(params, req, runtime)
|
|
6664
6262
|
)
|
|
6665
6263
|
|
|
6666
|
-
def
|
|
6264
|
+
def dialogue(
|
|
6667
6265
|
self,
|
|
6668
|
-
request: outbound_bot_20191226_models.
|
|
6669
|
-
) -> outbound_bot_20191226_models.
|
|
6266
|
+
request: outbound_bot_20191226_models.DialogueRequest,
|
|
6267
|
+
) -> outbound_bot_20191226_models.DialogueResponse:
|
|
6670
6268
|
"""
|
|
6671
|
-
@
|
|
6672
|
-
|
|
6673
|
-
@param request: DismissNumberDistrictInfoParsingResultRequest
|
|
6674
|
-
@return: DismissNumberDistrictInfoParsingResultResponse
|
|
6269
|
+
@param request: DialogueRequest
|
|
6270
|
+
@return: DialogueResponse
|
|
6675
6271
|
"""
|
|
6676
6272
|
runtime = util_models.RuntimeOptions()
|
|
6677
|
-
return self.
|
|
6273
|
+
return self.dialogue_with_options(request, runtime)
|
|
6678
6274
|
|
|
6679
|
-
async def
|
|
6275
|
+
async def dialogue_async(
|
|
6680
6276
|
self,
|
|
6681
|
-
request: outbound_bot_20191226_models.
|
|
6682
|
-
) -> outbound_bot_20191226_models.
|
|
6277
|
+
request: outbound_bot_20191226_models.DialogueRequest,
|
|
6278
|
+
) -> outbound_bot_20191226_models.DialogueResponse:
|
|
6683
6279
|
"""
|
|
6684
|
-
@
|
|
6685
|
-
|
|
6686
|
-
@param request: DismissNumberDistrictInfoParsingResultRequest
|
|
6687
|
-
@return: DismissNumberDistrictInfoParsingResultResponse
|
|
6280
|
+
@param request: DialogueRequest
|
|
6281
|
+
@return: DialogueResponse
|
|
6688
6282
|
"""
|
|
6689
6283
|
runtime = util_models.RuntimeOptions()
|
|
6690
|
-
return await self.
|
|
6284
|
+
return await self.dialogue_with_options_async(request, runtime)
|
|
6691
6285
|
|
|
6692
6286
|
def download_recording_with_options(
|
|
6693
6287
|
self,
|
|
@@ -7725,6 +7319,102 @@ class Client(OpenApiClient):
|
|
|
7725
7319
|
runtime = util_models.RuntimeOptions()
|
|
7726
7320
|
return await self.get_asr_server_info_with_options_async(request, runtime)
|
|
7727
7321
|
|
|
7322
|
+
def get_assign_jobs_async_result_with_options(
|
|
7323
|
+
self,
|
|
7324
|
+
request: outbound_bot_20191226_models.GetAssignJobsAsyncResultRequest,
|
|
7325
|
+
runtime: util_models.RuntimeOptions,
|
|
7326
|
+
) -> outbound_bot_20191226_models.GetAssignJobsAsyncResultResponse:
|
|
7327
|
+
"""
|
|
7328
|
+
@summary 获取异步外呼任务上传结果
|
|
7329
|
+
|
|
7330
|
+
@param request: GetAssignJobsAsyncResultRequest
|
|
7331
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
7332
|
+
@return: GetAssignJobsAsyncResultResponse
|
|
7333
|
+
"""
|
|
7334
|
+
UtilClient.validate_model(request)
|
|
7335
|
+
query = {}
|
|
7336
|
+
if not UtilClient.is_unset(request.async_task_id):
|
|
7337
|
+
query['AsyncTaskId'] = request.async_task_id
|
|
7338
|
+
req = open_api_models.OpenApiRequest(
|
|
7339
|
+
query=OpenApiUtilClient.query(query)
|
|
7340
|
+
)
|
|
7341
|
+
params = open_api_models.Params(
|
|
7342
|
+
action='GetAssignJobsAsyncResult',
|
|
7343
|
+
version='2019-12-26',
|
|
7344
|
+
protocol='HTTPS',
|
|
7345
|
+
pathname='/',
|
|
7346
|
+
method='POST',
|
|
7347
|
+
auth_type='AK',
|
|
7348
|
+
style='RPC',
|
|
7349
|
+
req_body_type='formData',
|
|
7350
|
+
body_type='json'
|
|
7351
|
+
)
|
|
7352
|
+
return TeaCore.from_map(
|
|
7353
|
+
outbound_bot_20191226_models.GetAssignJobsAsyncResultResponse(),
|
|
7354
|
+
self.call_api(params, req, runtime)
|
|
7355
|
+
)
|
|
7356
|
+
|
|
7357
|
+
async def get_assign_jobs_async_result_with_options_async(
|
|
7358
|
+
self,
|
|
7359
|
+
request: outbound_bot_20191226_models.GetAssignJobsAsyncResultRequest,
|
|
7360
|
+
runtime: util_models.RuntimeOptions,
|
|
7361
|
+
) -> outbound_bot_20191226_models.GetAssignJobsAsyncResultResponse:
|
|
7362
|
+
"""
|
|
7363
|
+
@summary 获取异步外呼任务上传结果
|
|
7364
|
+
|
|
7365
|
+
@param request: GetAssignJobsAsyncResultRequest
|
|
7366
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
7367
|
+
@return: GetAssignJobsAsyncResultResponse
|
|
7368
|
+
"""
|
|
7369
|
+
UtilClient.validate_model(request)
|
|
7370
|
+
query = {}
|
|
7371
|
+
if not UtilClient.is_unset(request.async_task_id):
|
|
7372
|
+
query['AsyncTaskId'] = request.async_task_id
|
|
7373
|
+
req = open_api_models.OpenApiRequest(
|
|
7374
|
+
query=OpenApiUtilClient.query(query)
|
|
7375
|
+
)
|
|
7376
|
+
params = open_api_models.Params(
|
|
7377
|
+
action='GetAssignJobsAsyncResult',
|
|
7378
|
+
version='2019-12-26',
|
|
7379
|
+
protocol='HTTPS',
|
|
7380
|
+
pathname='/',
|
|
7381
|
+
method='POST',
|
|
7382
|
+
auth_type='AK',
|
|
7383
|
+
style='RPC',
|
|
7384
|
+
req_body_type='formData',
|
|
7385
|
+
body_type='json'
|
|
7386
|
+
)
|
|
7387
|
+
return TeaCore.from_map(
|
|
7388
|
+
outbound_bot_20191226_models.GetAssignJobsAsyncResultResponse(),
|
|
7389
|
+
await self.call_api_async(params, req, runtime)
|
|
7390
|
+
)
|
|
7391
|
+
|
|
7392
|
+
def get_assign_jobs_async_result(
|
|
7393
|
+
self,
|
|
7394
|
+
request: outbound_bot_20191226_models.GetAssignJobsAsyncResultRequest,
|
|
7395
|
+
) -> outbound_bot_20191226_models.GetAssignJobsAsyncResultResponse:
|
|
7396
|
+
"""
|
|
7397
|
+
@summary 获取异步外呼任务上传结果
|
|
7398
|
+
|
|
7399
|
+
@param request: GetAssignJobsAsyncResultRequest
|
|
7400
|
+
@return: GetAssignJobsAsyncResultResponse
|
|
7401
|
+
"""
|
|
7402
|
+
runtime = util_models.RuntimeOptions()
|
|
7403
|
+
return self.get_assign_jobs_async_result_with_options(request, runtime)
|
|
7404
|
+
|
|
7405
|
+
async def get_assign_jobs_async_result_async(
|
|
7406
|
+
self,
|
|
7407
|
+
request: outbound_bot_20191226_models.GetAssignJobsAsyncResultRequest,
|
|
7408
|
+
) -> outbound_bot_20191226_models.GetAssignJobsAsyncResultResponse:
|
|
7409
|
+
"""
|
|
7410
|
+
@summary 获取异步外呼任务上传结果
|
|
7411
|
+
|
|
7412
|
+
@param request: GetAssignJobsAsyncResultRequest
|
|
7413
|
+
@return: GetAssignJobsAsyncResultResponse
|
|
7414
|
+
"""
|
|
7415
|
+
runtime = util_models.RuntimeOptions()
|
|
7416
|
+
return await self.get_assign_jobs_async_result_with_options_async(request, runtime)
|
|
7417
|
+
|
|
7728
7418
|
def get_base_strategy_period_with_options(
|
|
7729
7419
|
self,
|
|
7730
7420
|
request: outbound_bot_20191226_models.GetBaseStrategyPeriodRequest,
|
|
@@ -8195,98 +7885,6 @@ class Client(OpenApiClient):
|
|
|
8195
7885
|
runtime = util_models.RuntimeOptions()
|
|
8196
7886
|
return await self.get_current_concurrency_with_options_async(request, runtime)
|
|
8197
7887
|
|
|
8198
|
-
def get_effective_days_with_options(
|
|
8199
|
-
self,
|
|
8200
|
-
request: outbound_bot_20191226_models.GetEffectiveDaysRequest,
|
|
8201
|
-
runtime: util_models.RuntimeOptions,
|
|
8202
|
-
) -> outbound_bot_20191226_models.GetEffectiveDaysResponse:
|
|
8203
|
-
"""
|
|
8204
|
-
@param request: GetEffectiveDaysRequest
|
|
8205
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
8206
|
-
@return: GetEffectiveDaysResponse
|
|
8207
|
-
"""
|
|
8208
|
-
UtilClient.validate_model(request)
|
|
8209
|
-
query = {}
|
|
8210
|
-
if not UtilClient.is_unset(request.entry_id):
|
|
8211
|
-
query['EntryId'] = request.entry_id
|
|
8212
|
-
if not UtilClient.is_unset(request.strategy_level):
|
|
8213
|
-
query['StrategyLevel'] = request.strategy_level
|
|
8214
|
-
req = open_api_models.OpenApiRequest(
|
|
8215
|
-
query=OpenApiUtilClient.query(query)
|
|
8216
|
-
)
|
|
8217
|
-
params = open_api_models.Params(
|
|
8218
|
-
action='GetEffectiveDays',
|
|
8219
|
-
version='2019-12-26',
|
|
8220
|
-
protocol='HTTPS',
|
|
8221
|
-
pathname='/',
|
|
8222
|
-
method='POST',
|
|
8223
|
-
auth_type='AK',
|
|
8224
|
-
style='RPC',
|
|
8225
|
-
req_body_type='formData',
|
|
8226
|
-
body_type='json'
|
|
8227
|
-
)
|
|
8228
|
-
return TeaCore.from_map(
|
|
8229
|
-
outbound_bot_20191226_models.GetEffectiveDaysResponse(),
|
|
8230
|
-
self.call_api(params, req, runtime)
|
|
8231
|
-
)
|
|
8232
|
-
|
|
8233
|
-
async def get_effective_days_with_options_async(
|
|
8234
|
-
self,
|
|
8235
|
-
request: outbound_bot_20191226_models.GetEffectiveDaysRequest,
|
|
8236
|
-
runtime: util_models.RuntimeOptions,
|
|
8237
|
-
) -> outbound_bot_20191226_models.GetEffectiveDaysResponse:
|
|
8238
|
-
"""
|
|
8239
|
-
@param request: GetEffectiveDaysRequest
|
|
8240
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
8241
|
-
@return: GetEffectiveDaysResponse
|
|
8242
|
-
"""
|
|
8243
|
-
UtilClient.validate_model(request)
|
|
8244
|
-
query = {}
|
|
8245
|
-
if not UtilClient.is_unset(request.entry_id):
|
|
8246
|
-
query['EntryId'] = request.entry_id
|
|
8247
|
-
if not UtilClient.is_unset(request.strategy_level):
|
|
8248
|
-
query['StrategyLevel'] = request.strategy_level
|
|
8249
|
-
req = open_api_models.OpenApiRequest(
|
|
8250
|
-
query=OpenApiUtilClient.query(query)
|
|
8251
|
-
)
|
|
8252
|
-
params = open_api_models.Params(
|
|
8253
|
-
action='GetEffectiveDays',
|
|
8254
|
-
version='2019-12-26',
|
|
8255
|
-
protocol='HTTPS',
|
|
8256
|
-
pathname='/',
|
|
8257
|
-
method='POST',
|
|
8258
|
-
auth_type='AK',
|
|
8259
|
-
style='RPC',
|
|
8260
|
-
req_body_type='formData',
|
|
8261
|
-
body_type='json'
|
|
8262
|
-
)
|
|
8263
|
-
return TeaCore.from_map(
|
|
8264
|
-
outbound_bot_20191226_models.GetEffectiveDaysResponse(),
|
|
8265
|
-
await self.call_api_async(params, req, runtime)
|
|
8266
|
-
)
|
|
8267
|
-
|
|
8268
|
-
def get_effective_days(
|
|
8269
|
-
self,
|
|
8270
|
-
request: outbound_bot_20191226_models.GetEffectiveDaysRequest,
|
|
8271
|
-
) -> outbound_bot_20191226_models.GetEffectiveDaysResponse:
|
|
8272
|
-
"""
|
|
8273
|
-
@param request: GetEffectiveDaysRequest
|
|
8274
|
-
@return: GetEffectiveDaysResponse
|
|
8275
|
-
"""
|
|
8276
|
-
runtime = util_models.RuntimeOptions()
|
|
8277
|
-
return self.get_effective_days_with_options(request, runtime)
|
|
8278
|
-
|
|
8279
|
-
async def get_effective_days_async(
|
|
8280
|
-
self,
|
|
8281
|
-
request: outbound_bot_20191226_models.GetEffectiveDaysRequest,
|
|
8282
|
-
) -> outbound_bot_20191226_models.GetEffectiveDaysResponse:
|
|
8283
|
-
"""
|
|
8284
|
-
@param request: GetEffectiveDaysRequest
|
|
8285
|
-
@return: GetEffectiveDaysResponse
|
|
8286
|
-
"""
|
|
8287
|
-
runtime = util_models.RuntimeOptions()
|
|
8288
|
-
return await self.get_effective_days_with_options_async(request, runtime)
|
|
8289
|
-
|
|
8290
7888
|
def get_empty_number_no_more_calls_info_with_options(
|
|
8291
7889
|
self,
|
|
8292
7890
|
request: outbound_bot_20191226_models.GetEmptyNumberNoMoreCallsInfoRequest,
|
|
@@ -8867,6 +8465,8 @@ class Client(OpenApiClient):
|
|
|
8867
8465
|
runtime: util_models.RuntimeOptions,
|
|
8868
8466
|
) -> outbound_bot_20191226_models.GetTaskByUuidResponse:
|
|
8869
8467
|
"""
|
|
8468
|
+
@summary 根据TaskId获取Task信息
|
|
8469
|
+
|
|
8870
8470
|
@param request: GetTaskByUuidRequest
|
|
8871
8471
|
@param runtime: runtime options for this request RuntimeOptions
|
|
8872
8472
|
@return: GetTaskByUuidResponse
|
|
@@ -8898,6 +8498,8 @@ class Client(OpenApiClient):
|
|
|
8898
8498
|
runtime: util_models.RuntimeOptions,
|
|
8899
8499
|
) -> outbound_bot_20191226_models.GetTaskByUuidResponse:
|
|
8900
8500
|
"""
|
|
8501
|
+
@summary 根据TaskId获取Task信息
|
|
8502
|
+
|
|
8901
8503
|
@param request: GetTaskByUuidRequest
|
|
8902
8504
|
@param runtime: runtime options for this request RuntimeOptions
|
|
8903
8505
|
@return: GetTaskByUuidResponse
|
|
@@ -8928,6 +8530,8 @@ class Client(OpenApiClient):
|
|
|
8928
8530
|
request: outbound_bot_20191226_models.GetTaskByUuidRequest,
|
|
8929
8531
|
) -> outbound_bot_20191226_models.GetTaskByUuidResponse:
|
|
8930
8532
|
"""
|
|
8533
|
+
@summary 根据TaskId获取Task信息
|
|
8534
|
+
|
|
8931
8535
|
@param request: GetTaskByUuidRequest
|
|
8932
8536
|
@return: GetTaskByUuidResponse
|
|
8933
8537
|
"""
|
|
@@ -8939,6 +8543,8 @@ class Client(OpenApiClient):
|
|
|
8939
8543
|
request: outbound_bot_20191226_models.GetTaskByUuidRequest,
|
|
8940
8544
|
) -> outbound_bot_20191226_models.GetTaskByUuidResponse:
|
|
8941
8545
|
"""
|
|
8546
|
+
@summary 根据TaskId获取Task信息
|
|
8547
|
+
|
|
8942
8548
|
@param request: GetTaskByUuidRequest
|
|
8943
8549
|
@return: GetTaskByUuidResponse
|
|
8944
8550
|
"""
|
|
@@ -9395,6 +9001,8 @@ class Client(OpenApiClient):
|
|
|
9395
9001
|
runtime: util_models.RuntimeOptions,
|
|
9396
9002
|
) -> outbound_bot_20191226_models.ListAnnotationMissionResponse:
|
|
9397
9003
|
"""
|
|
9004
|
+
@summary 标注中心
|
|
9005
|
+
|
|
9398
9006
|
@param request: ListAnnotationMissionRequest
|
|
9399
9007
|
@param runtime: runtime options for this request RuntimeOptions
|
|
9400
9008
|
@return: ListAnnotationMissionResponse
|
|
@@ -9444,6 +9052,8 @@ class Client(OpenApiClient):
|
|
|
9444
9052
|
runtime: util_models.RuntimeOptions,
|
|
9445
9053
|
) -> outbound_bot_20191226_models.ListAnnotationMissionResponse:
|
|
9446
9054
|
"""
|
|
9055
|
+
@summary 标注中心
|
|
9056
|
+
|
|
9447
9057
|
@param request: ListAnnotationMissionRequest
|
|
9448
9058
|
@param runtime: runtime options for this request RuntimeOptions
|
|
9449
9059
|
@return: ListAnnotationMissionResponse
|
|
@@ -9492,6 +9102,8 @@ class Client(OpenApiClient):
|
|
|
9492
9102
|
request: outbound_bot_20191226_models.ListAnnotationMissionRequest,
|
|
9493
9103
|
) -> outbound_bot_20191226_models.ListAnnotationMissionResponse:
|
|
9494
9104
|
"""
|
|
9105
|
+
@summary 标注中心
|
|
9106
|
+
|
|
9495
9107
|
@param request: ListAnnotationMissionRequest
|
|
9496
9108
|
@return: ListAnnotationMissionResponse
|
|
9497
9109
|
"""
|
|
@@ -9503,6 +9115,8 @@ class Client(OpenApiClient):
|
|
|
9503
9115
|
request: outbound_bot_20191226_models.ListAnnotationMissionRequest,
|
|
9504
9116
|
) -> outbound_bot_20191226_models.ListAnnotationMissionResponse:
|
|
9505
9117
|
"""
|
|
9118
|
+
@summary 标注中心
|
|
9119
|
+
|
|
9506
9120
|
@param request: ListAnnotationMissionRequest
|
|
9507
9121
|
@return: ListAnnotationMissionResponse
|
|
9508
9122
|
"""
|
|
@@ -9515,6 +9129,8 @@ class Client(OpenApiClient):
|
|
|
9515
9129
|
runtime: util_models.RuntimeOptions,
|
|
9516
9130
|
) -> outbound_bot_20191226_models.ListAnnotationMissionSessionResponse:
|
|
9517
9131
|
"""
|
|
9132
|
+
@summary ListAnnotationMissionSession
|
|
9133
|
+
|
|
9518
9134
|
@param request: ListAnnotationMissionSessionRequest
|
|
9519
9135
|
@param runtime: runtime options for this request RuntimeOptions
|
|
9520
9136
|
@return: ListAnnotationMissionSessionResponse
|
|
@@ -9558,6 +9174,8 @@ class Client(OpenApiClient):
|
|
|
9558
9174
|
runtime: util_models.RuntimeOptions,
|
|
9559
9175
|
) -> outbound_bot_20191226_models.ListAnnotationMissionSessionResponse:
|
|
9560
9176
|
"""
|
|
9177
|
+
@summary ListAnnotationMissionSession
|
|
9178
|
+
|
|
9561
9179
|
@param request: ListAnnotationMissionSessionRequest
|
|
9562
9180
|
@param runtime: runtime options for this request RuntimeOptions
|
|
9563
9181
|
@return: ListAnnotationMissionSessionResponse
|
|
@@ -9600,6 +9218,8 @@ class Client(OpenApiClient):
|
|
|
9600
9218
|
request: outbound_bot_20191226_models.ListAnnotationMissionSessionRequest,
|
|
9601
9219
|
) -> outbound_bot_20191226_models.ListAnnotationMissionSessionResponse:
|
|
9602
9220
|
"""
|
|
9221
|
+
@summary ListAnnotationMissionSession
|
|
9222
|
+
|
|
9603
9223
|
@param request: ListAnnotationMissionSessionRequest
|
|
9604
9224
|
@return: ListAnnotationMissionSessionResponse
|
|
9605
9225
|
"""
|
|
@@ -9611,6 +9231,8 @@ class Client(OpenApiClient):
|
|
|
9611
9231
|
request: outbound_bot_20191226_models.ListAnnotationMissionSessionRequest,
|
|
9612
9232
|
) -> outbound_bot_20191226_models.ListAnnotationMissionSessionResponse:
|
|
9613
9233
|
"""
|
|
9234
|
+
@summary ListAnnotationMissionSession
|
|
9235
|
+
|
|
9614
9236
|
@param request: ListAnnotationMissionSessionRequest
|
|
9615
9237
|
@return: ListAnnotationMissionSessionResponse
|
|
9616
9238
|
"""
|
|
@@ -11457,94 +11079,6 @@ class Client(OpenApiClient):
|
|
|
11457
11079
|
runtime = util_models.RuntimeOptions()
|
|
11458
11080
|
return await self.list_resource_tags_with_options_async(request, runtime)
|
|
11459
11081
|
|
|
11460
|
-
def list_scheduler_instances_with_options(
|
|
11461
|
-
self,
|
|
11462
|
-
request: outbound_bot_20191226_models.ListSchedulerInstancesRequest,
|
|
11463
|
-
runtime: util_models.RuntimeOptions,
|
|
11464
|
-
) -> outbound_bot_20191226_models.ListSchedulerInstancesResponse:
|
|
11465
|
-
"""
|
|
11466
|
-
@param request: ListSchedulerInstancesRequest
|
|
11467
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
11468
|
-
@return: ListSchedulerInstancesResponse
|
|
11469
|
-
"""
|
|
11470
|
-
UtilClient.validate_model(request)
|
|
11471
|
-
query = {}
|
|
11472
|
-
if not UtilClient.is_unset(request.instance_owner_id):
|
|
11473
|
-
query['InstanceOwnerId'] = request.instance_owner_id
|
|
11474
|
-
req = open_api_models.OpenApiRequest(
|
|
11475
|
-
query=OpenApiUtilClient.query(query)
|
|
11476
|
-
)
|
|
11477
|
-
params = open_api_models.Params(
|
|
11478
|
-
action='ListSchedulerInstances',
|
|
11479
|
-
version='2019-12-26',
|
|
11480
|
-
protocol='HTTPS',
|
|
11481
|
-
pathname='/',
|
|
11482
|
-
method='POST',
|
|
11483
|
-
auth_type='AK',
|
|
11484
|
-
style='RPC',
|
|
11485
|
-
req_body_type='formData',
|
|
11486
|
-
body_type='json'
|
|
11487
|
-
)
|
|
11488
|
-
return TeaCore.from_map(
|
|
11489
|
-
outbound_bot_20191226_models.ListSchedulerInstancesResponse(),
|
|
11490
|
-
self.call_api(params, req, runtime)
|
|
11491
|
-
)
|
|
11492
|
-
|
|
11493
|
-
async def list_scheduler_instances_with_options_async(
|
|
11494
|
-
self,
|
|
11495
|
-
request: outbound_bot_20191226_models.ListSchedulerInstancesRequest,
|
|
11496
|
-
runtime: util_models.RuntimeOptions,
|
|
11497
|
-
) -> outbound_bot_20191226_models.ListSchedulerInstancesResponse:
|
|
11498
|
-
"""
|
|
11499
|
-
@param request: ListSchedulerInstancesRequest
|
|
11500
|
-
@param runtime: runtime options for this request RuntimeOptions
|
|
11501
|
-
@return: ListSchedulerInstancesResponse
|
|
11502
|
-
"""
|
|
11503
|
-
UtilClient.validate_model(request)
|
|
11504
|
-
query = {}
|
|
11505
|
-
if not UtilClient.is_unset(request.instance_owner_id):
|
|
11506
|
-
query['InstanceOwnerId'] = request.instance_owner_id
|
|
11507
|
-
req = open_api_models.OpenApiRequest(
|
|
11508
|
-
query=OpenApiUtilClient.query(query)
|
|
11509
|
-
)
|
|
11510
|
-
params = open_api_models.Params(
|
|
11511
|
-
action='ListSchedulerInstances',
|
|
11512
|
-
version='2019-12-26',
|
|
11513
|
-
protocol='HTTPS',
|
|
11514
|
-
pathname='/',
|
|
11515
|
-
method='POST',
|
|
11516
|
-
auth_type='AK',
|
|
11517
|
-
style='RPC',
|
|
11518
|
-
req_body_type='formData',
|
|
11519
|
-
body_type='json'
|
|
11520
|
-
)
|
|
11521
|
-
return TeaCore.from_map(
|
|
11522
|
-
outbound_bot_20191226_models.ListSchedulerInstancesResponse(),
|
|
11523
|
-
await self.call_api_async(params, req, runtime)
|
|
11524
|
-
)
|
|
11525
|
-
|
|
11526
|
-
def list_scheduler_instances(
|
|
11527
|
-
self,
|
|
11528
|
-
request: outbound_bot_20191226_models.ListSchedulerInstancesRequest,
|
|
11529
|
-
) -> outbound_bot_20191226_models.ListSchedulerInstancesResponse:
|
|
11530
|
-
"""
|
|
11531
|
-
@param request: ListSchedulerInstancesRequest
|
|
11532
|
-
@return: ListSchedulerInstancesResponse
|
|
11533
|
-
"""
|
|
11534
|
-
runtime = util_models.RuntimeOptions()
|
|
11535
|
-
return self.list_scheduler_instances_with_options(request, runtime)
|
|
11536
|
-
|
|
11537
|
-
async def list_scheduler_instances_async(
|
|
11538
|
-
self,
|
|
11539
|
-
request: outbound_bot_20191226_models.ListSchedulerInstancesRequest,
|
|
11540
|
-
) -> outbound_bot_20191226_models.ListSchedulerInstancesResponse:
|
|
11541
|
-
"""
|
|
11542
|
-
@param request: ListSchedulerInstancesRequest
|
|
11543
|
-
@return: ListSchedulerInstancesResponse
|
|
11544
|
-
"""
|
|
11545
|
-
runtime = util_models.RuntimeOptions()
|
|
11546
|
-
return await self.list_scheduler_instances_with_options_async(request, runtime)
|
|
11547
|
-
|
|
11548
11082
|
def list_script_publish_histories_with_options(
|
|
11549
11083
|
self,
|
|
11550
11084
|
request: outbound_bot_20191226_models.ListScriptPublishHistoriesRequest,
|
|
@@ -13419,6 +12953,8 @@ class Client(OpenApiClient):
|
|
|
13419
12953
|
runtime: util_models.RuntimeOptions,
|
|
13420
12954
|
) -> outbound_bot_20191226_models.ModifyJobGroupResponse:
|
|
13421
12955
|
"""
|
|
12956
|
+
@summary 修改任务组
|
|
12957
|
+
|
|
13422
12958
|
@param request: ModifyJobGroupRequest
|
|
13423
12959
|
@param runtime: runtime options for this request RuntimeOptions
|
|
13424
12960
|
@return: ModifyJobGroupResponse
|
|
@@ -13480,6 +13016,8 @@ class Client(OpenApiClient):
|
|
|
13480
13016
|
runtime: util_models.RuntimeOptions,
|
|
13481
13017
|
) -> outbound_bot_20191226_models.ModifyJobGroupResponse:
|
|
13482
13018
|
"""
|
|
13019
|
+
@summary 修改任务组
|
|
13020
|
+
|
|
13483
13021
|
@param request: ModifyJobGroupRequest
|
|
13484
13022
|
@param runtime: runtime options for this request RuntimeOptions
|
|
13485
13023
|
@return: ModifyJobGroupResponse
|
|
@@ -13540,6 +13078,8 @@ class Client(OpenApiClient):
|
|
|
13540
13078
|
request: outbound_bot_20191226_models.ModifyJobGroupRequest,
|
|
13541
13079
|
) -> outbound_bot_20191226_models.ModifyJobGroupResponse:
|
|
13542
13080
|
"""
|
|
13081
|
+
@summary 修改任务组
|
|
13082
|
+
|
|
13543
13083
|
@param request: ModifyJobGroupRequest
|
|
13544
13084
|
@return: ModifyJobGroupResponse
|
|
13545
13085
|
"""
|
|
@@ -13551,6 +13091,8 @@ class Client(OpenApiClient):
|
|
|
13551
13091
|
request: outbound_bot_20191226_models.ModifyJobGroupRequest,
|
|
13552
13092
|
) -> outbound_bot_20191226_models.ModifyJobGroupResponse:
|
|
13553
13093
|
"""
|
|
13094
|
+
@summary 修改任务组
|
|
13095
|
+
|
|
13554
13096
|
@param request: ModifyJobGroupRequest
|
|
13555
13097
|
@return: ModifyJobGroupResponse
|
|
13556
13098
|
"""
|
|
@@ -14527,6 +14069,8 @@ class Client(OpenApiClient):
|
|
|
14527
14069
|
query['JobGroupId'] = request.job_group_id
|
|
14528
14070
|
if not UtilClient.is_unset(request.job_status_filter):
|
|
14529
14071
|
query['JobStatusFilter'] = request.job_status_filter
|
|
14072
|
+
if not UtilClient.is_unset(request.labels_json):
|
|
14073
|
+
query['LabelsJson'] = request.labels_json
|
|
14530
14074
|
if not UtilClient.is_unset(request.page_number):
|
|
14531
14075
|
query['PageNumber'] = request.page_number
|
|
14532
14076
|
if not UtilClient.is_unset(request.page_size):
|
|
@@ -14586,6 +14130,8 @@ class Client(OpenApiClient):
|
|
|
14586
14130
|
query['JobGroupId'] = request.job_group_id
|
|
14587
14131
|
if not UtilClient.is_unset(request.job_status_filter):
|
|
14588
14132
|
query['JobStatusFilter'] = request.job_status_filter
|
|
14133
|
+
if not UtilClient.is_unset(request.labels_json):
|
|
14134
|
+
query['LabelsJson'] = request.labels_json
|
|
14589
14135
|
if not UtilClient.is_unset(request.page_number):
|
|
14590
14136
|
query['PageNumber'] = request.page_number
|
|
14591
14137
|
if not UtilClient.is_unset(request.page_size):
|
|
@@ -15163,6 +14709,8 @@ class Client(OpenApiClient):
|
|
|
15163
14709
|
runtime: util_models.RuntimeOptions,
|
|
15164
14710
|
) -> outbound_bot_20191226_models.SaveAfterAnswerDelayPlaybackResponse:
|
|
15165
14711
|
"""
|
|
14712
|
+
@summary 保存接听后延迟播报时间
|
|
14713
|
+
|
|
15166
14714
|
@param request: SaveAfterAnswerDelayPlaybackRequest
|
|
15167
14715
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15168
14716
|
@return: SaveAfterAnswerDelayPlaybackResponse
|
|
@@ -15200,6 +14748,8 @@ class Client(OpenApiClient):
|
|
|
15200
14748
|
runtime: util_models.RuntimeOptions,
|
|
15201
14749
|
) -> outbound_bot_20191226_models.SaveAfterAnswerDelayPlaybackResponse:
|
|
15202
14750
|
"""
|
|
14751
|
+
@summary 保存接听后延迟播报时间
|
|
14752
|
+
|
|
15203
14753
|
@param request: SaveAfterAnswerDelayPlaybackRequest
|
|
15204
14754
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15205
14755
|
@return: SaveAfterAnswerDelayPlaybackResponse
|
|
@@ -15236,6 +14786,8 @@ class Client(OpenApiClient):
|
|
|
15236
14786
|
request: outbound_bot_20191226_models.SaveAfterAnswerDelayPlaybackRequest,
|
|
15237
14787
|
) -> outbound_bot_20191226_models.SaveAfterAnswerDelayPlaybackResponse:
|
|
15238
14788
|
"""
|
|
14789
|
+
@summary 保存接听后延迟播报时间
|
|
14790
|
+
|
|
15239
14791
|
@param request: SaveAfterAnswerDelayPlaybackRequest
|
|
15240
14792
|
@return: SaveAfterAnswerDelayPlaybackResponse
|
|
15241
14793
|
"""
|
|
@@ -15247,6 +14799,8 @@ class Client(OpenApiClient):
|
|
|
15247
14799
|
request: outbound_bot_20191226_models.SaveAfterAnswerDelayPlaybackRequest,
|
|
15248
14800
|
) -> outbound_bot_20191226_models.SaveAfterAnswerDelayPlaybackResponse:
|
|
15249
14801
|
"""
|
|
14802
|
+
@summary 保存接听后延迟播报时间
|
|
14803
|
+
|
|
15250
14804
|
@param request: SaveAfterAnswerDelayPlaybackRequest
|
|
15251
14805
|
@return: SaveAfterAnswerDelayPlaybackResponse
|
|
15252
14806
|
"""
|
|
@@ -15471,6 +15025,8 @@ class Client(OpenApiClient):
|
|
|
15471
15025
|
runtime: util_models.RuntimeOptions,
|
|
15472
15026
|
) -> outbound_bot_20191226_models.SaveBaseStrategyPeriodResponse:
|
|
15473
15027
|
"""
|
|
15028
|
+
@summary 编辑基础策略有效时间窗口
|
|
15029
|
+
|
|
15474
15030
|
@param request: SaveBaseStrategyPeriodRequest
|
|
15475
15031
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15476
15032
|
@return: SaveBaseStrategyPeriodResponse
|
|
@@ -15514,6 +15070,8 @@ class Client(OpenApiClient):
|
|
|
15514
15070
|
runtime: util_models.RuntimeOptions,
|
|
15515
15071
|
) -> outbound_bot_20191226_models.SaveBaseStrategyPeriodResponse:
|
|
15516
15072
|
"""
|
|
15073
|
+
@summary 编辑基础策略有效时间窗口
|
|
15074
|
+
|
|
15517
15075
|
@param request: SaveBaseStrategyPeriodRequest
|
|
15518
15076
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15519
15077
|
@return: SaveBaseStrategyPeriodResponse
|
|
@@ -15556,6 +15114,8 @@ class Client(OpenApiClient):
|
|
|
15556
15114
|
request: outbound_bot_20191226_models.SaveBaseStrategyPeriodRequest,
|
|
15557
15115
|
) -> outbound_bot_20191226_models.SaveBaseStrategyPeriodResponse:
|
|
15558
15116
|
"""
|
|
15117
|
+
@summary 编辑基础策略有效时间窗口
|
|
15118
|
+
|
|
15559
15119
|
@param request: SaveBaseStrategyPeriodRequest
|
|
15560
15120
|
@return: SaveBaseStrategyPeriodResponse
|
|
15561
15121
|
"""
|
|
@@ -15567,6 +15127,8 @@ class Client(OpenApiClient):
|
|
|
15567
15127
|
request: outbound_bot_20191226_models.SaveBaseStrategyPeriodRequest,
|
|
15568
15128
|
) -> outbound_bot_20191226_models.SaveBaseStrategyPeriodResponse:
|
|
15569
15129
|
"""
|
|
15130
|
+
@summary 编辑基础策略有效时间窗口
|
|
15131
|
+
|
|
15570
15132
|
@param request: SaveBaseStrategyPeriodRequest
|
|
15571
15133
|
@return: SaveBaseStrategyPeriodResponse
|
|
15572
15134
|
"""
|
|
@@ -15579,6 +15141,8 @@ class Client(OpenApiClient):
|
|
|
15579
15141
|
runtime: util_models.RuntimeOptions,
|
|
15580
15142
|
) -> outbound_bot_20191226_models.SaveContactBlockListResponse:
|
|
15581
15143
|
"""
|
|
15144
|
+
@summary 保存外呼黑名单列表
|
|
15145
|
+
|
|
15582
15146
|
@param request: SaveContactBlockListRequest
|
|
15583
15147
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15584
15148
|
@return: SaveContactBlockListResponse
|
|
@@ -15616,6 +15180,8 @@ class Client(OpenApiClient):
|
|
|
15616
15180
|
runtime: util_models.RuntimeOptions,
|
|
15617
15181
|
) -> outbound_bot_20191226_models.SaveContactBlockListResponse:
|
|
15618
15182
|
"""
|
|
15183
|
+
@summary 保存外呼黑名单列表
|
|
15184
|
+
|
|
15619
15185
|
@param request: SaveContactBlockListRequest
|
|
15620
15186
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15621
15187
|
@return: SaveContactBlockListResponse
|
|
@@ -15652,6 +15218,8 @@ class Client(OpenApiClient):
|
|
|
15652
15218
|
request: outbound_bot_20191226_models.SaveContactBlockListRequest,
|
|
15653
15219
|
) -> outbound_bot_20191226_models.SaveContactBlockListResponse:
|
|
15654
15220
|
"""
|
|
15221
|
+
@summary 保存外呼黑名单列表
|
|
15222
|
+
|
|
15655
15223
|
@param request: SaveContactBlockListRequest
|
|
15656
15224
|
@return: SaveContactBlockListResponse
|
|
15657
15225
|
"""
|
|
@@ -15663,6 +15231,8 @@ class Client(OpenApiClient):
|
|
|
15663
15231
|
request: outbound_bot_20191226_models.SaveContactBlockListRequest,
|
|
15664
15232
|
) -> outbound_bot_20191226_models.SaveContactBlockListResponse:
|
|
15665
15233
|
"""
|
|
15234
|
+
@summary 保存外呼黑名单列表
|
|
15235
|
+
|
|
15666
15236
|
@param request: SaveContactBlockListRequest
|
|
15667
15237
|
@return: SaveContactBlockListResponse
|
|
15668
15238
|
"""
|
|
@@ -15675,6 +15245,8 @@ class Client(OpenApiClient):
|
|
|
15675
15245
|
runtime: util_models.RuntimeOptions,
|
|
15676
15246
|
) -> outbound_bot_20191226_models.SaveContactWhiteListResponse:
|
|
15677
15247
|
"""
|
|
15248
|
+
@summary 保存外呼白名单
|
|
15249
|
+
|
|
15678
15250
|
@param request: SaveContactWhiteListRequest
|
|
15679
15251
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15680
15252
|
@return: SaveContactWhiteListResponse
|
|
@@ -15712,6 +15284,8 @@ class Client(OpenApiClient):
|
|
|
15712
15284
|
runtime: util_models.RuntimeOptions,
|
|
15713
15285
|
) -> outbound_bot_20191226_models.SaveContactWhiteListResponse:
|
|
15714
15286
|
"""
|
|
15287
|
+
@summary 保存外呼白名单
|
|
15288
|
+
|
|
15715
15289
|
@param request: SaveContactWhiteListRequest
|
|
15716
15290
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15717
15291
|
@return: SaveContactWhiteListResponse
|
|
@@ -15748,6 +15322,8 @@ class Client(OpenApiClient):
|
|
|
15748
15322
|
request: outbound_bot_20191226_models.SaveContactWhiteListRequest,
|
|
15749
15323
|
) -> outbound_bot_20191226_models.SaveContactWhiteListResponse:
|
|
15750
15324
|
"""
|
|
15325
|
+
@summary 保存外呼白名单
|
|
15326
|
+
|
|
15751
15327
|
@param request: SaveContactWhiteListRequest
|
|
15752
15328
|
@return: SaveContactWhiteListResponse
|
|
15753
15329
|
"""
|
|
@@ -15759,6 +15335,8 @@ class Client(OpenApiClient):
|
|
|
15759
15335
|
request: outbound_bot_20191226_models.SaveContactWhiteListRequest,
|
|
15760
15336
|
) -> outbound_bot_20191226_models.SaveContactWhiteListResponse:
|
|
15761
15337
|
"""
|
|
15338
|
+
@summary 保存外呼白名单
|
|
15339
|
+
|
|
15762
15340
|
@param request: SaveContactWhiteListRequest
|
|
15763
15341
|
@return: SaveContactWhiteListResponse
|
|
15764
15342
|
"""
|
|
@@ -15867,6 +15445,8 @@ class Client(OpenApiClient):
|
|
|
15867
15445
|
runtime: util_models.RuntimeOptions,
|
|
15868
15446
|
) -> outbound_bot_20191226_models.SaveMaxAttemptsPerDayResponse:
|
|
15869
15447
|
"""
|
|
15448
|
+
@summary 保存每日最大外呼量
|
|
15449
|
+
|
|
15870
15450
|
@param request: SaveMaxAttemptsPerDayRequest
|
|
15871
15451
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15872
15452
|
@return: SaveMaxAttemptsPerDayResponse
|
|
@@ -15904,6 +15484,8 @@ class Client(OpenApiClient):
|
|
|
15904
15484
|
runtime: util_models.RuntimeOptions,
|
|
15905
15485
|
) -> outbound_bot_20191226_models.SaveMaxAttemptsPerDayResponse:
|
|
15906
15486
|
"""
|
|
15487
|
+
@summary 保存每日最大外呼量
|
|
15488
|
+
|
|
15907
15489
|
@param request: SaveMaxAttemptsPerDayRequest
|
|
15908
15490
|
@param runtime: runtime options for this request RuntimeOptions
|
|
15909
15491
|
@return: SaveMaxAttemptsPerDayResponse
|
|
@@ -15940,6 +15522,8 @@ class Client(OpenApiClient):
|
|
|
15940
15522
|
request: outbound_bot_20191226_models.SaveMaxAttemptsPerDayRequest,
|
|
15941
15523
|
) -> outbound_bot_20191226_models.SaveMaxAttemptsPerDayResponse:
|
|
15942
15524
|
"""
|
|
15525
|
+
@summary 保存每日最大外呼量
|
|
15526
|
+
|
|
15943
15527
|
@param request: SaveMaxAttemptsPerDayRequest
|
|
15944
15528
|
@return: SaveMaxAttemptsPerDayResponse
|
|
15945
15529
|
"""
|
|
@@ -15951,6 +15535,8 @@ class Client(OpenApiClient):
|
|
|
15951
15535
|
request: outbound_bot_20191226_models.SaveMaxAttemptsPerDayRequest,
|
|
15952
15536
|
) -> outbound_bot_20191226_models.SaveMaxAttemptsPerDayResponse:
|
|
15953
15537
|
"""
|
|
15538
|
+
@summary 保存每日最大外呼量
|
|
15539
|
+
|
|
15954
15540
|
@param request: SaveMaxAttemptsPerDayRequest
|
|
15955
15541
|
@return: SaveMaxAttemptsPerDayResponse
|
|
15956
15542
|
"""
|
|
@@ -16055,6 +15641,8 @@ class Client(OpenApiClient):
|
|
|
16055
15641
|
runtime: util_models.RuntimeOptions,
|
|
16056
15642
|
) -> outbound_bot_20191226_models.StartJobResponse:
|
|
16057
15643
|
"""
|
|
15644
|
+
@summary 开启一个任务
|
|
15645
|
+
|
|
16058
15646
|
@param request: StartJobRequest
|
|
16059
15647
|
@param runtime: runtime options for this request RuntimeOptions
|
|
16060
15648
|
@return: StartJobResponse
|
|
@@ -16098,6 +15686,8 @@ class Client(OpenApiClient):
|
|
|
16098
15686
|
runtime: util_models.RuntimeOptions,
|
|
16099
15687
|
) -> outbound_bot_20191226_models.StartJobResponse:
|
|
16100
15688
|
"""
|
|
15689
|
+
@summary 开启一个任务
|
|
15690
|
+
|
|
16101
15691
|
@param request: StartJobRequest
|
|
16102
15692
|
@param runtime: runtime options for this request RuntimeOptions
|
|
16103
15693
|
@return: StartJobResponse
|
|
@@ -16140,6 +15730,8 @@ class Client(OpenApiClient):
|
|
|
16140
15730
|
request: outbound_bot_20191226_models.StartJobRequest,
|
|
16141
15731
|
) -> outbound_bot_20191226_models.StartJobResponse:
|
|
16142
15732
|
"""
|
|
15733
|
+
@summary 开启一个任务
|
|
15734
|
+
|
|
16143
15735
|
@param request: StartJobRequest
|
|
16144
15736
|
@return: StartJobResponse
|
|
16145
15737
|
"""
|
|
@@ -16151,6 +15743,8 @@ class Client(OpenApiClient):
|
|
|
16151
15743
|
request: outbound_bot_20191226_models.StartJobRequest,
|
|
16152
15744
|
) -> outbound_bot_20191226_models.StartJobResponse:
|
|
16153
15745
|
"""
|
|
15746
|
+
@summary 开启一个任务
|
|
15747
|
+
|
|
16154
15748
|
@param request: StartJobRequest
|
|
16155
15749
|
@return: StartJobResponse
|
|
16156
15750
|
"""
|
|
@@ -16455,6 +16049,8 @@ class Client(OpenApiClient):
|
|
|
16455
16049
|
runtime: util_models.RuntimeOptions,
|
|
16456
16050
|
) -> outbound_bot_20191226_models.SuspendCallResponse:
|
|
16457
16051
|
"""
|
|
16052
|
+
@summary 止呼
|
|
16053
|
+
|
|
16458
16054
|
@param request: SuspendCallRequest
|
|
16459
16055
|
@param runtime: runtime options for this request RuntimeOptions
|
|
16460
16056
|
@return: SuspendCallResponse
|
|
@@ -16492,6 +16088,8 @@ class Client(OpenApiClient):
|
|
|
16492
16088
|
runtime: util_models.RuntimeOptions,
|
|
16493
16089
|
) -> outbound_bot_20191226_models.SuspendCallResponse:
|
|
16494
16090
|
"""
|
|
16091
|
+
@summary 止呼
|
|
16092
|
+
|
|
16495
16093
|
@param request: SuspendCallRequest
|
|
16496
16094
|
@param runtime: runtime options for this request RuntimeOptions
|
|
16497
16095
|
@return: SuspendCallResponse
|
|
@@ -16528,6 +16126,8 @@ class Client(OpenApiClient):
|
|
|
16528
16126
|
request: outbound_bot_20191226_models.SuspendCallRequest,
|
|
16529
16127
|
) -> outbound_bot_20191226_models.SuspendCallResponse:
|
|
16530
16128
|
"""
|
|
16129
|
+
@summary 止呼
|
|
16130
|
+
|
|
16531
16131
|
@param request: SuspendCallRequest
|
|
16532
16132
|
@return: SuspendCallResponse
|
|
16533
16133
|
"""
|
|
@@ -16539,6 +16139,8 @@ class Client(OpenApiClient):
|
|
|
16539
16139
|
request: outbound_bot_20191226_models.SuspendCallRequest,
|
|
16540
16140
|
) -> outbound_bot_20191226_models.SuspendCallResponse:
|
|
16541
16141
|
"""
|
|
16142
|
+
@summary 止呼
|
|
16143
|
+
|
|
16542
16144
|
@param request: SuspendCallRequest
|
|
16543
16145
|
@return: SuspendCallResponse
|
|
16544
16146
|
"""
|
|
@@ -16551,6 +16153,8 @@ class Client(OpenApiClient):
|
|
|
16551
16153
|
runtime: util_models.RuntimeOptions,
|
|
16552
16154
|
) -> outbound_bot_20191226_models.SuspendCallWithFileResponse:
|
|
16553
16155
|
"""
|
|
16156
|
+
@summary SuspendCallWithFile
|
|
16157
|
+
|
|
16554
16158
|
@param request: SuspendCallWithFileRequest
|
|
16555
16159
|
@param runtime: runtime options for this request RuntimeOptions
|
|
16556
16160
|
@return: SuspendCallWithFileResponse
|
|
@@ -16588,6 +16192,8 @@ class Client(OpenApiClient):
|
|
|
16588
16192
|
runtime: util_models.RuntimeOptions,
|
|
16589
16193
|
) -> outbound_bot_20191226_models.SuspendCallWithFileResponse:
|
|
16590
16194
|
"""
|
|
16195
|
+
@summary SuspendCallWithFile
|
|
16196
|
+
|
|
16591
16197
|
@param request: SuspendCallWithFileRequest
|
|
16592
16198
|
@param runtime: runtime options for this request RuntimeOptions
|
|
16593
16199
|
@return: SuspendCallWithFileResponse
|
|
@@ -16624,6 +16230,8 @@ class Client(OpenApiClient):
|
|
|
16624
16230
|
request: outbound_bot_20191226_models.SuspendCallWithFileRequest,
|
|
16625
16231
|
) -> outbound_bot_20191226_models.SuspendCallWithFileResponse:
|
|
16626
16232
|
"""
|
|
16233
|
+
@summary SuspendCallWithFile
|
|
16234
|
+
|
|
16627
16235
|
@param request: SuspendCallWithFileRequest
|
|
16628
16236
|
@return: SuspendCallWithFileResponse
|
|
16629
16237
|
"""
|
|
@@ -16635,6 +16243,8 @@ class Client(OpenApiClient):
|
|
|
16635
16243
|
request: outbound_bot_20191226_models.SuspendCallWithFileRequest,
|
|
16636
16244
|
) -> outbound_bot_20191226_models.SuspendCallWithFileResponse:
|
|
16637
16245
|
"""
|
|
16246
|
+
@summary SuspendCallWithFile
|
|
16247
|
+
|
|
16638
16248
|
@param request: SuspendCallWithFileRequest
|
|
16639
16249
|
@return: SuspendCallWithFileResponse
|
|
16640
16250
|
"""
|