alibabacloud-ice20201109 6.3.2__py3-none-any.whl → 6.4.1__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_ice20201109/__init__.py +1 -1
- alibabacloud_ice20201109/client.py +144 -8
- alibabacloud_ice20201109/models.py +616 -13
- {alibabacloud_ice20201109-6.3.2.dist-info → alibabacloud_ice20201109-6.4.1.dist-info}/METADATA +1 -1
- alibabacloud_ice20201109-6.4.1.dist-info/RECORD +8 -0
- alibabacloud_ice20201109-6.3.2.dist-info/RECORD +0 -8
- {alibabacloud_ice20201109-6.3.2.dist-info → alibabacloud_ice20201109-6.4.1.dist-info}/LICENSE +0 -0
- {alibabacloud_ice20201109-6.3.2.dist-info → alibabacloud_ice20201109-6.4.1.dist-info}/WHEEL +0 -0
- {alibabacloud_ice20201109-6.3.2.dist-info → alibabacloud_ice20201109-6.4.1.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.
|
|
1
|
+
__version__ = '6.4.1'
|
|
@@ -18406,10 +18406,14 @@ class Client(OpenApiClient):
|
|
|
18406
18406
|
"""
|
|
18407
18407
|
UtilClient.validate_model(request)
|
|
18408
18408
|
query = {}
|
|
18409
|
+
if not UtilClient.is_unset(request.number):
|
|
18410
|
+
query['Number'] = request.number
|
|
18409
18411
|
if not UtilClient.is_unset(request.page_number):
|
|
18410
18412
|
query['PageNumber'] = request.page_number
|
|
18411
18413
|
if not UtilClient.is_unset(request.page_size):
|
|
18412
18414
|
query['PageSize'] = request.page_size
|
|
18415
|
+
if not UtilClient.is_unset(request.status):
|
|
18416
|
+
query['Status'] = request.status
|
|
18413
18417
|
req = open_api_models.OpenApiRequest(
|
|
18414
18418
|
query=OpenApiUtilClient.query(query)
|
|
18415
18419
|
)
|
|
@@ -18443,10 +18447,14 @@ class Client(OpenApiClient):
|
|
|
18443
18447
|
"""
|
|
18444
18448
|
UtilClient.validate_model(request)
|
|
18445
18449
|
query = {}
|
|
18450
|
+
if not UtilClient.is_unset(request.number):
|
|
18451
|
+
query['Number'] = request.number
|
|
18446
18452
|
if not UtilClient.is_unset(request.page_number):
|
|
18447
18453
|
query['PageNumber'] = request.page_number
|
|
18448
18454
|
if not UtilClient.is_unset(request.page_size):
|
|
18449
18455
|
query['PageSize'] = request.page_size
|
|
18456
|
+
if not UtilClient.is_unset(request.status):
|
|
18457
|
+
query['Status'] = request.status
|
|
18450
18458
|
req = open_api_models.OpenApiRequest(
|
|
18451
18459
|
query=OpenApiUtilClient.query(query)
|
|
18452
18460
|
)
|
|
@@ -21680,6 +21688,126 @@ class Client(OpenApiClient):
|
|
|
21680
21688
|
runtime = util_models.RuntimeOptions()
|
|
21681
21689
|
return await self.list_media_basic_infos_with_options_async(request, runtime)
|
|
21682
21690
|
|
|
21691
|
+
def list_media_convert_jobs_with_options(
|
|
21692
|
+
self,
|
|
21693
|
+
request: ice20201109_models.ListMediaConvertJobsRequest,
|
|
21694
|
+
runtime: util_models.RuntimeOptions,
|
|
21695
|
+
) -> ice20201109_models.ListMediaConvertJobsResponse:
|
|
21696
|
+
"""
|
|
21697
|
+
@summary 查询 MediaConvertJob 列表
|
|
21698
|
+
|
|
21699
|
+
@param request: ListMediaConvertJobsRequest
|
|
21700
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
21701
|
+
@return: ListMediaConvertJobsResponse
|
|
21702
|
+
"""
|
|
21703
|
+
UtilClient.validate_model(request)
|
|
21704
|
+
query = {}
|
|
21705
|
+
if not UtilClient.is_unset(request.end_of_create_time):
|
|
21706
|
+
query['EndOfCreateTime'] = request.end_of_create_time
|
|
21707
|
+
if not UtilClient.is_unset(request.job_id):
|
|
21708
|
+
query['JobId'] = request.job_id
|
|
21709
|
+
if not UtilClient.is_unset(request.next_page_token):
|
|
21710
|
+
query['NextPageToken'] = request.next_page_token
|
|
21711
|
+
if not UtilClient.is_unset(request.order_by):
|
|
21712
|
+
query['OrderBy'] = request.order_by
|
|
21713
|
+
if not UtilClient.is_unset(request.page_size):
|
|
21714
|
+
query['PageSize'] = request.page_size
|
|
21715
|
+
if not UtilClient.is_unset(request.start_of_create_time):
|
|
21716
|
+
query['StartOfCreateTime'] = request.start_of_create_time
|
|
21717
|
+
if not UtilClient.is_unset(request.status):
|
|
21718
|
+
query['Status'] = request.status
|
|
21719
|
+
req = open_api_models.OpenApiRequest(
|
|
21720
|
+
query=OpenApiUtilClient.query(query)
|
|
21721
|
+
)
|
|
21722
|
+
params = open_api_models.Params(
|
|
21723
|
+
action='ListMediaConvertJobs',
|
|
21724
|
+
version='2020-11-09',
|
|
21725
|
+
protocol='HTTPS',
|
|
21726
|
+
pathname='/',
|
|
21727
|
+
method='POST',
|
|
21728
|
+
auth_type='AK',
|
|
21729
|
+
style='RPC',
|
|
21730
|
+
req_body_type='formData',
|
|
21731
|
+
body_type='json'
|
|
21732
|
+
)
|
|
21733
|
+
return TeaCore.from_map(
|
|
21734
|
+
ice20201109_models.ListMediaConvertJobsResponse(),
|
|
21735
|
+
self.call_api(params, req, runtime)
|
|
21736
|
+
)
|
|
21737
|
+
|
|
21738
|
+
async def list_media_convert_jobs_with_options_async(
|
|
21739
|
+
self,
|
|
21740
|
+
request: ice20201109_models.ListMediaConvertJobsRequest,
|
|
21741
|
+
runtime: util_models.RuntimeOptions,
|
|
21742
|
+
) -> ice20201109_models.ListMediaConvertJobsResponse:
|
|
21743
|
+
"""
|
|
21744
|
+
@summary 查询 MediaConvertJob 列表
|
|
21745
|
+
|
|
21746
|
+
@param request: ListMediaConvertJobsRequest
|
|
21747
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
21748
|
+
@return: ListMediaConvertJobsResponse
|
|
21749
|
+
"""
|
|
21750
|
+
UtilClient.validate_model(request)
|
|
21751
|
+
query = {}
|
|
21752
|
+
if not UtilClient.is_unset(request.end_of_create_time):
|
|
21753
|
+
query['EndOfCreateTime'] = request.end_of_create_time
|
|
21754
|
+
if not UtilClient.is_unset(request.job_id):
|
|
21755
|
+
query['JobId'] = request.job_id
|
|
21756
|
+
if not UtilClient.is_unset(request.next_page_token):
|
|
21757
|
+
query['NextPageToken'] = request.next_page_token
|
|
21758
|
+
if not UtilClient.is_unset(request.order_by):
|
|
21759
|
+
query['OrderBy'] = request.order_by
|
|
21760
|
+
if not UtilClient.is_unset(request.page_size):
|
|
21761
|
+
query['PageSize'] = request.page_size
|
|
21762
|
+
if not UtilClient.is_unset(request.start_of_create_time):
|
|
21763
|
+
query['StartOfCreateTime'] = request.start_of_create_time
|
|
21764
|
+
if not UtilClient.is_unset(request.status):
|
|
21765
|
+
query['Status'] = request.status
|
|
21766
|
+
req = open_api_models.OpenApiRequest(
|
|
21767
|
+
query=OpenApiUtilClient.query(query)
|
|
21768
|
+
)
|
|
21769
|
+
params = open_api_models.Params(
|
|
21770
|
+
action='ListMediaConvertJobs',
|
|
21771
|
+
version='2020-11-09',
|
|
21772
|
+
protocol='HTTPS',
|
|
21773
|
+
pathname='/',
|
|
21774
|
+
method='POST',
|
|
21775
|
+
auth_type='AK',
|
|
21776
|
+
style='RPC',
|
|
21777
|
+
req_body_type='formData',
|
|
21778
|
+
body_type='json'
|
|
21779
|
+
)
|
|
21780
|
+
return TeaCore.from_map(
|
|
21781
|
+
ice20201109_models.ListMediaConvertJobsResponse(),
|
|
21782
|
+
await self.call_api_async(params, req, runtime)
|
|
21783
|
+
)
|
|
21784
|
+
|
|
21785
|
+
def list_media_convert_jobs(
|
|
21786
|
+
self,
|
|
21787
|
+
request: ice20201109_models.ListMediaConvertJobsRequest,
|
|
21788
|
+
) -> ice20201109_models.ListMediaConvertJobsResponse:
|
|
21789
|
+
"""
|
|
21790
|
+
@summary 查询 MediaConvertJob 列表
|
|
21791
|
+
|
|
21792
|
+
@param request: ListMediaConvertJobsRequest
|
|
21793
|
+
@return: ListMediaConvertJobsResponse
|
|
21794
|
+
"""
|
|
21795
|
+
runtime = util_models.RuntimeOptions()
|
|
21796
|
+
return self.list_media_convert_jobs_with_options(request, runtime)
|
|
21797
|
+
|
|
21798
|
+
async def list_media_convert_jobs_async(
|
|
21799
|
+
self,
|
|
21800
|
+
request: ice20201109_models.ListMediaConvertJobsRequest,
|
|
21801
|
+
) -> ice20201109_models.ListMediaConvertJobsResponse:
|
|
21802
|
+
"""
|
|
21803
|
+
@summary 查询 MediaConvertJob 列表
|
|
21804
|
+
|
|
21805
|
+
@param request: ListMediaConvertJobsRequest
|
|
21806
|
+
@return: ListMediaConvertJobsResponse
|
|
21807
|
+
"""
|
|
21808
|
+
runtime = util_models.RuntimeOptions()
|
|
21809
|
+
return await self.list_media_convert_jobs_with_options_async(request, runtime)
|
|
21810
|
+
|
|
21683
21811
|
def list_media_info_jobs_with_options(
|
|
21684
21812
|
self,
|
|
21685
21813
|
request: ice20201109_models.ListMediaInfoJobsRequest,
|
|
@@ -29202,6 +29330,8 @@ class Client(OpenApiClient):
|
|
|
29202
29330
|
query['CallerNumber'] = request.caller_number
|
|
29203
29331
|
if not UtilClient.is_unset(request.config_shrink):
|
|
29204
29332
|
query['Config'] = request.config_shrink
|
|
29333
|
+
if not UtilClient.is_unset(request.ims_aiagent_free_ob_call):
|
|
29334
|
+
query['ImsAIAgentFreeObCall'] = request.ims_aiagent_free_ob_call
|
|
29205
29335
|
if not UtilClient.is_unset(request.session_id):
|
|
29206
29336
|
query['SessionId'] = request.session_id
|
|
29207
29337
|
if not UtilClient.is_unset(request.user_data):
|
|
@@ -29251,6 +29381,8 @@ class Client(OpenApiClient):
|
|
|
29251
29381
|
query['CallerNumber'] = request.caller_number
|
|
29252
29382
|
if not UtilClient.is_unset(request.config_shrink):
|
|
29253
29383
|
query['Config'] = request.config_shrink
|
|
29384
|
+
if not UtilClient.is_unset(request.ims_aiagent_free_ob_call):
|
|
29385
|
+
query['ImsAIAgentFreeObCall'] = request.ims_aiagent_free_ob_call
|
|
29254
29386
|
if not UtilClient.is_unset(request.session_id):
|
|
29255
29387
|
query['SessionId'] = request.session_id
|
|
29256
29388
|
if not UtilClient.is_unset(request.user_data):
|
|
@@ -29649,6 +29781,8 @@ class Client(OpenApiClient):
|
|
|
29649
29781
|
"""
|
|
29650
29782
|
UtilClient.validate_model(request)
|
|
29651
29783
|
query = {}
|
|
29784
|
+
if not UtilClient.is_unset(request.skip_input_verification):
|
|
29785
|
+
query['SkipInputVerification'] = request.skip_input_verification
|
|
29652
29786
|
if not UtilClient.is_unset(request.task_input):
|
|
29653
29787
|
query['TaskInput'] = request.task_input
|
|
29654
29788
|
if not UtilClient.is_unset(request.user_data):
|
|
@@ -29691,6 +29825,8 @@ class Client(OpenApiClient):
|
|
|
29691
29825
|
"""
|
|
29692
29826
|
UtilClient.validate_model(request)
|
|
29693
29827
|
query = {}
|
|
29828
|
+
if not UtilClient.is_unset(request.skip_input_verification):
|
|
29829
|
+
query['SkipInputVerification'] = request.skip_input_verification
|
|
29694
29830
|
if not UtilClient.is_unset(request.task_input):
|
|
29695
29831
|
query['TaskInput'] = request.task_input
|
|
29696
29832
|
if not UtilClient.is_unset(request.user_data):
|
|
@@ -31722,7 +31858,7 @@ class Client(OpenApiClient):
|
|
|
31722
31858
|
runtime: util_models.RuntimeOptions,
|
|
31723
31859
|
) -> ice20201109_models.SubmitHighlightExtractionJobResponse:
|
|
31724
31860
|
"""
|
|
31725
|
-
@summary
|
|
31861
|
+
@summary Submits a highlight extraction task.
|
|
31726
31862
|
|
|
31727
31863
|
@param request: SubmitHighlightExtractionJobRequest
|
|
31728
31864
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31765,7 +31901,7 @@ class Client(OpenApiClient):
|
|
|
31765
31901
|
runtime: util_models.RuntimeOptions,
|
|
31766
31902
|
) -> ice20201109_models.SubmitHighlightExtractionJobResponse:
|
|
31767
31903
|
"""
|
|
31768
|
-
@summary
|
|
31904
|
+
@summary Submits a highlight extraction task.
|
|
31769
31905
|
|
|
31770
31906
|
@param request: SubmitHighlightExtractionJobRequest
|
|
31771
31907
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -31807,7 +31943,7 @@ class Client(OpenApiClient):
|
|
|
31807
31943
|
request: ice20201109_models.SubmitHighlightExtractionJobRequest,
|
|
31808
31944
|
) -> ice20201109_models.SubmitHighlightExtractionJobResponse:
|
|
31809
31945
|
"""
|
|
31810
|
-
@summary
|
|
31946
|
+
@summary Submits a highlight extraction task.
|
|
31811
31947
|
|
|
31812
31948
|
@param request: SubmitHighlightExtractionJobRequest
|
|
31813
31949
|
@return: SubmitHighlightExtractionJobResponse
|
|
@@ -31820,7 +31956,7 @@ class Client(OpenApiClient):
|
|
|
31820
31956
|
request: ice20201109_models.SubmitHighlightExtractionJobRequest,
|
|
31821
31957
|
) -> ice20201109_models.SubmitHighlightExtractionJobResponse:
|
|
31822
31958
|
"""
|
|
31823
|
-
@summary
|
|
31959
|
+
@summary Submits a highlight extraction task.
|
|
31824
31960
|
|
|
31825
31961
|
@param request: SubmitHighlightExtractionJobRequest
|
|
31826
31962
|
@return: SubmitHighlightExtractionJobResponse
|
|
@@ -33454,7 +33590,7 @@ class Client(OpenApiClient):
|
|
|
33454
33590
|
runtime: util_models.RuntimeOptions,
|
|
33455
33591
|
) -> ice20201109_models.SubmitScreenMediaHighlightsJobResponse:
|
|
33456
33592
|
"""
|
|
33457
|
-
@summary
|
|
33593
|
+
@summary Submits a task to automatically recognize the highlight segments in the video input and compile them into a dramatic and engaging clip.
|
|
33458
33594
|
|
|
33459
33595
|
@param request: SubmitScreenMediaHighlightsJobRequest
|
|
33460
33596
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -33497,7 +33633,7 @@ class Client(OpenApiClient):
|
|
|
33497
33633
|
runtime: util_models.RuntimeOptions,
|
|
33498
33634
|
) -> ice20201109_models.SubmitScreenMediaHighlightsJobResponse:
|
|
33499
33635
|
"""
|
|
33500
|
-
@summary
|
|
33636
|
+
@summary Submits a task to automatically recognize the highlight segments in the video input and compile them into a dramatic and engaging clip.
|
|
33501
33637
|
|
|
33502
33638
|
@param request: SubmitScreenMediaHighlightsJobRequest
|
|
33503
33639
|
@param runtime: runtime options for this request RuntimeOptions
|
|
@@ -33539,7 +33675,7 @@ class Client(OpenApiClient):
|
|
|
33539
33675
|
request: ice20201109_models.SubmitScreenMediaHighlightsJobRequest,
|
|
33540
33676
|
) -> ice20201109_models.SubmitScreenMediaHighlightsJobResponse:
|
|
33541
33677
|
"""
|
|
33542
|
-
@summary
|
|
33678
|
+
@summary Submits a task to automatically recognize the highlight segments in the video input and compile them into a dramatic and engaging clip.
|
|
33543
33679
|
|
|
33544
33680
|
@param request: SubmitScreenMediaHighlightsJobRequest
|
|
33545
33681
|
@return: SubmitScreenMediaHighlightsJobResponse
|
|
@@ -33552,7 +33688,7 @@ class Client(OpenApiClient):
|
|
|
33552
33688
|
request: ice20201109_models.SubmitScreenMediaHighlightsJobRequest,
|
|
33553
33689
|
) -> ice20201109_models.SubmitScreenMediaHighlightsJobResponse:
|
|
33554
33690
|
"""
|
|
33555
|
-
@summary
|
|
33691
|
+
@summary Submits a task to automatically recognize the highlight segments in the video input and compile them into a dramatic and engaging clip.
|
|
33556
33692
|
|
|
33557
33693
|
@param request: SubmitScreenMediaHighlightsJobRequest
|
|
33558
33694
|
@return: SubmitScreenMediaHighlightsJobResponse
|