alibabacloud-ice20201109 6.3.2__tar.gz → 6.4.0__tar.gz

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.
Files changed (17) hide show
  1. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/ChangeLog.md +8 -0
  2. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/PKG-INFO +1 -1
  3. alibabacloud_ice20201109-6.4.0/alibabacloud_ice20201109/__init__.py +1 -0
  4. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/alibabacloud_ice20201109/client.py +124 -0
  5. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/alibabacloud_ice20201109/models.py +161 -2
  6. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/alibabacloud_ice20201109.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/setup.py +1 -1
  8. alibabacloud_ice20201109-6.3.2/alibabacloud_ice20201109/__init__.py +0 -1
  9. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/LICENSE +0 -0
  10. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/MANIFEST.in +0 -0
  11. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/README-CN.md +0 -0
  12. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/README.md +0 -0
  13. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/alibabacloud_ice20201109.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/alibabacloud_ice20201109.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/alibabacloud_ice20201109.egg-info/requires.txt +0 -0
  16. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/alibabacloud_ice20201109.egg-info/top_level.txt +0 -0
  17. {alibabacloud_ice20201109-6.3.2 → alibabacloud_ice20201109-6.4.0}/setup.cfg +0 -0
@@ -1,3 +1,11 @@
1
+ 2025-06-17 Version: 6.3.2
2
+ - Update API GetMediaConvertJob: add response parameters Body.Job.CreateTime.
3
+ - Update API GetMediaConvertJob: add response parameters Body.Job.FinishTime.
4
+ - Update API GetMediaConvertJob: add response parameters Body.Job.Percent.
5
+ - Update API GetMediaConvertJob: add response parameters Body.Job.Config.JobName.
6
+ - Update API SubmitMediaConvertJob: add response parameters Body.Job.Config.JobName.
7
+
8
+
1
9
  2025-06-11 Version: 6.3.1
2
10
  - Update API InsertMediaToSearchLib: add request parameters ImagesInput.
3
11
  - Update API SearchMedia: add response parameters Body.MediaInfoList.$.FileInfoList.$.FileBasicInfo.ImagesInput.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_ice20201109
3
- Version: 6.3.2
3
+ Version: 6.4.0
4
4
  Summary: Alibaba Cloud ICE (20201109) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -0,0 +1 @@
1
+ __version__ = '6.4.0'
@@ -21680,6 +21680,126 @@ class Client(OpenApiClient):
21680
21680
  runtime = util_models.RuntimeOptions()
21681
21681
  return await self.list_media_basic_infos_with_options_async(request, runtime)
21682
21682
 
21683
+ def list_media_convert_jobs_with_options(
21684
+ self,
21685
+ request: ice20201109_models.ListMediaConvertJobsRequest,
21686
+ runtime: util_models.RuntimeOptions,
21687
+ ) -> ice20201109_models.ListMediaConvertJobsResponse:
21688
+ """
21689
+ @summary 查询 MediaConvertJob 列表
21690
+
21691
+ @param request: ListMediaConvertJobsRequest
21692
+ @param runtime: runtime options for this request RuntimeOptions
21693
+ @return: ListMediaConvertJobsResponse
21694
+ """
21695
+ UtilClient.validate_model(request)
21696
+ query = {}
21697
+ if not UtilClient.is_unset(request.end_of_create_time):
21698
+ query['EndOfCreateTime'] = request.end_of_create_time
21699
+ if not UtilClient.is_unset(request.job_id):
21700
+ query['JobId'] = request.job_id
21701
+ if not UtilClient.is_unset(request.next_page_token):
21702
+ query['NextPageToken'] = request.next_page_token
21703
+ if not UtilClient.is_unset(request.order_by):
21704
+ query['OrderBy'] = request.order_by
21705
+ if not UtilClient.is_unset(request.page_size):
21706
+ query['PageSize'] = request.page_size
21707
+ if not UtilClient.is_unset(request.start_of_create_time):
21708
+ query['StartOfCreateTime'] = request.start_of_create_time
21709
+ if not UtilClient.is_unset(request.status):
21710
+ query['Status'] = request.status
21711
+ req = open_api_models.OpenApiRequest(
21712
+ query=OpenApiUtilClient.query(query)
21713
+ )
21714
+ params = open_api_models.Params(
21715
+ action='ListMediaConvertJobs',
21716
+ version='2020-11-09',
21717
+ protocol='HTTPS',
21718
+ pathname='/',
21719
+ method='POST',
21720
+ auth_type='AK',
21721
+ style='RPC',
21722
+ req_body_type='formData',
21723
+ body_type='json'
21724
+ )
21725
+ return TeaCore.from_map(
21726
+ ice20201109_models.ListMediaConvertJobsResponse(),
21727
+ self.call_api(params, req, runtime)
21728
+ )
21729
+
21730
+ async def list_media_convert_jobs_with_options_async(
21731
+ self,
21732
+ request: ice20201109_models.ListMediaConvertJobsRequest,
21733
+ runtime: util_models.RuntimeOptions,
21734
+ ) -> ice20201109_models.ListMediaConvertJobsResponse:
21735
+ """
21736
+ @summary 查询 MediaConvertJob 列表
21737
+
21738
+ @param request: ListMediaConvertJobsRequest
21739
+ @param runtime: runtime options for this request RuntimeOptions
21740
+ @return: ListMediaConvertJobsResponse
21741
+ """
21742
+ UtilClient.validate_model(request)
21743
+ query = {}
21744
+ if not UtilClient.is_unset(request.end_of_create_time):
21745
+ query['EndOfCreateTime'] = request.end_of_create_time
21746
+ if not UtilClient.is_unset(request.job_id):
21747
+ query['JobId'] = request.job_id
21748
+ if not UtilClient.is_unset(request.next_page_token):
21749
+ query['NextPageToken'] = request.next_page_token
21750
+ if not UtilClient.is_unset(request.order_by):
21751
+ query['OrderBy'] = request.order_by
21752
+ if not UtilClient.is_unset(request.page_size):
21753
+ query['PageSize'] = request.page_size
21754
+ if not UtilClient.is_unset(request.start_of_create_time):
21755
+ query['StartOfCreateTime'] = request.start_of_create_time
21756
+ if not UtilClient.is_unset(request.status):
21757
+ query['Status'] = request.status
21758
+ req = open_api_models.OpenApiRequest(
21759
+ query=OpenApiUtilClient.query(query)
21760
+ )
21761
+ params = open_api_models.Params(
21762
+ action='ListMediaConvertJobs',
21763
+ version='2020-11-09',
21764
+ protocol='HTTPS',
21765
+ pathname='/',
21766
+ method='POST',
21767
+ auth_type='AK',
21768
+ style='RPC',
21769
+ req_body_type='formData',
21770
+ body_type='json'
21771
+ )
21772
+ return TeaCore.from_map(
21773
+ ice20201109_models.ListMediaConvertJobsResponse(),
21774
+ await self.call_api_async(params, req, runtime)
21775
+ )
21776
+
21777
+ def list_media_convert_jobs(
21778
+ self,
21779
+ request: ice20201109_models.ListMediaConvertJobsRequest,
21780
+ ) -> ice20201109_models.ListMediaConvertJobsResponse:
21781
+ """
21782
+ @summary 查询 MediaConvertJob 列表
21783
+
21784
+ @param request: ListMediaConvertJobsRequest
21785
+ @return: ListMediaConvertJobsResponse
21786
+ """
21787
+ runtime = util_models.RuntimeOptions()
21788
+ return self.list_media_convert_jobs_with_options(request, runtime)
21789
+
21790
+ async def list_media_convert_jobs_async(
21791
+ self,
21792
+ request: ice20201109_models.ListMediaConvertJobsRequest,
21793
+ ) -> ice20201109_models.ListMediaConvertJobsResponse:
21794
+ """
21795
+ @summary 查询 MediaConvertJob 列表
21796
+
21797
+ @param request: ListMediaConvertJobsRequest
21798
+ @return: ListMediaConvertJobsResponse
21799
+ """
21800
+ runtime = util_models.RuntimeOptions()
21801
+ return await self.list_media_convert_jobs_with_options_async(request, runtime)
21802
+
21683
21803
  def list_media_info_jobs_with_options(
21684
21804
  self,
21685
21805
  request: ice20201109_models.ListMediaInfoJobsRequest,
@@ -29649,6 +29769,8 @@ class Client(OpenApiClient):
29649
29769
  """
29650
29770
  UtilClient.validate_model(request)
29651
29771
  query = {}
29772
+ if not UtilClient.is_unset(request.skip_input_verification):
29773
+ query['SkipInputVerification'] = request.skip_input_verification
29652
29774
  if not UtilClient.is_unset(request.task_input):
29653
29775
  query['TaskInput'] = request.task_input
29654
29776
  if not UtilClient.is_unset(request.user_data):
@@ -29691,6 +29813,8 @@ class Client(OpenApiClient):
29691
29813
  """
29692
29814
  UtilClient.validate_model(request)
29693
29815
  query = {}
29816
+ if not UtilClient.is_unset(request.skip_input_verification):
29817
+ query['SkipInputVerification'] = request.skip_input_verification
29694
29818
  if not UtilClient.is_unset(request.task_input):
29695
29819
  query['TaskInput'] = request.task_input
29696
29820
  if not UtilClient.is_unset(request.user_data):
@@ -34651,7 +34651,7 @@ class GetMediaLiveChannelResponseBodyChannelVideoSettings(TeaModel):
34651
34651
  self.video_codec = video_codec
34652
34652
  # The video encoding settings.
34653
34653
  self.video_codec_setting = video_codec_setting
34654
- # 视频转码方式(普通转码、窄带高清转码等)
34654
+ # The video transcoding method. Valid values: NORMAL (regular transcoding) and NBHD (Narrowband HD™ transcoding).
34655
34655
  self.video_codec_type = video_codec_type
34656
34656
  # The width of the video in pixels.
34657
34657
  self.width = width
@@ -54384,6 +54384,159 @@ class ListMediaBasicInfosResponse(TeaModel):
54384
54384
  return self
54385
54385
 
54386
54386
 
54387
+ class ListMediaConvertJobsRequest(TeaModel):
54388
+ def __init__(
54389
+ self,
54390
+ end_of_create_time: str = None,
54391
+ job_id: str = None,
54392
+ next_page_token: str = None,
54393
+ order_by: str = None,
54394
+ page_size: int = None,
54395
+ start_of_create_time: str = None,
54396
+ status: str = None,
54397
+ ):
54398
+ self.end_of_create_time = end_of_create_time
54399
+ self.job_id = job_id
54400
+ self.next_page_token = next_page_token
54401
+ self.order_by = order_by
54402
+ self.page_size = page_size
54403
+ self.start_of_create_time = start_of_create_time
54404
+ self.status = status
54405
+
54406
+ def validate(self):
54407
+ pass
54408
+
54409
+ def to_map(self):
54410
+ _map = super().to_map()
54411
+ if _map is not None:
54412
+ return _map
54413
+
54414
+ result = dict()
54415
+ if self.end_of_create_time is not None:
54416
+ result['EndOfCreateTime'] = self.end_of_create_time
54417
+ if self.job_id is not None:
54418
+ result['JobId'] = self.job_id
54419
+ if self.next_page_token is not None:
54420
+ result['NextPageToken'] = self.next_page_token
54421
+ if self.order_by is not None:
54422
+ result['OrderBy'] = self.order_by
54423
+ if self.page_size is not None:
54424
+ result['PageSize'] = self.page_size
54425
+ if self.start_of_create_time is not None:
54426
+ result['StartOfCreateTime'] = self.start_of_create_time
54427
+ if self.status is not None:
54428
+ result['Status'] = self.status
54429
+ return result
54430
+
54431
+ def from_map(self, m: dict = None):
54432
+ m = m or dict()
54433
+ if m.get('EndOfCreateTime') is not None:
54434
+ self.end_of_create_time = m.get('EndOfCreateTime')
54435
+ if m.get('JobId') is not None:
54436
+ self.job_id = m.get('JobId')
54437
+ if m.get('NextPageToken') is not None:
54438
+ self.next_page_token = m.get('NextPageToken')
54439
+ if m.get('OrderBy') is not None:
54440
+ self.order_by = m.get('OrderBy')
54441
+ if m.get('PageSize') is not None:
54442
+ self.page_size = m.get('PageSize')
54443
+ if m.get('StartOfCreateTime') is not None:
54444
+ self.start_of_create_time = m.get('StartOfCreateTime')
54445
+ if m.get('Status') is not None:
54446
+ self.status = m.get('Status')
54447
+ return self
54448
+
54449
+
54450
+ class ListMediaConvertJobsResponseBody(TeaModel):
54451
+ def __init__(
54452
+ self,
54453
+ jobs: List[MediaConvertJobWithoutDetail] = None,
54454
+ next_page_token: str = None,
54455
+ request_id: str = None,
54456
+ ):
54457
+ self.jobs = jobs
54458
+ # This parameter is required.
54459
+ self.next_page_token = next_page_token
54460
+ # Id of the request
54461
+ self.request_id = request_id
54462
+
54463
+ def validate(self):
54464
+ if self.jobs:
54465
+ for k in self.jobs:
54466
+ if k:
54467
+ k.validate()
54468
+
54469
+ def to_map(self):
54470
+ _map = super().to_map()
54471
+ if _map is not None:
54472
+ return _map
54473
+
54474
+ result = dict()
54475
+ result['Jobs'] = []
54476
+ if self.jobs is not None:
54477
+ for k in self.jobs:
54478
+ result['Jobs'].append(k.to_map() if k else None)
54479
+ if self.next_page_token is not None:
54480
+ result['NextPageToken'] = self.next_page_token
54481
+ if self.request_id is not None:
54482
+ result['RequestId'] = self.request_id
54483
+ return result
54484
+
54485
+ def from_map(self, m: dict = None):
54486
+ m = m or dict()
54487
+ self.jobs = []
54488
+ if m.get('Jobs') is not None:
54489
+ for k in m.get('Jobs'):
54490
+ temp_model = MediaConvertJobWithoutDetail()
54491
+ self.jobs.append(temp_model.from_map(k))
54492
+ if m.get('NextPageToken') is not None:
54493
+ self.next_page_token = m.get('NextPageToken')
54494
+ if m.get('RequestId') is not None:
54495
+ self.request_id = m.get('RequestId')
54496
+ return self
54497
+
54498
+
54499
+ class ListMediaConvertJobsResponse(TeaModel):
54500
+ def __init__(
54501
+ self,
54502
+ headers: Dict[str, str] = None,
54503
+ status_code: int = None,
54504
+ body: ListMediaConvertJobsResponseBody = None,
54505
+ ):
54506
+ self.headers = headers
54507
+ self.status_code = status_code
54508
+ self.body = body
54509
+
54510
+ def validate(self):
54511
+ if self.body:
54512
+ self.body.validate()
54513
+
54514
+ def to_map(self):
54515
+ _map = super().to_map()
54516
+ if _map is not None:
54517
+ return _map
54518
+
54519
+ result = dict()
54520
+ if self.headers is not None:
54521
+ result['headers'] = self.headers
54522
+ if self.status_code is not None:
54523
+ result['statusCode'] = self.status_code
54524
+ if self.body is not None:
54525
+ result['body'] = self.body.to_map()
54526
+ return result
54527
+
54528
+ def from_map(self, m: dict = None):
54529
+ m = m or dict()
54530
+ if m.get('headers') is not None:
54531
+ self.headers = m.get('headers')
54532
+ if m.get('statusCode') is not None:
54533
+ self.status_code = m.get('statusCode')
54534
+ if m.get('body') is not None:
54535
+ temp_model = ListMediaConvertJobsResponseBody()
54536
+ self.body = temp_model.from_map(m['body'])
54537
+ return self
54538
+
54539
+
54387
54540
  class ListMediaInfoJobsRequest(TeaModel):
54388
54541
  def __init__(
54389
54542
  self,
@@ -56066,7 +56219,7 @@ class ListMediaLiveChannelsResponseBodyChannelsVideoSettings(TeaModel):
56066
56219
  self.video_codec = video_codec
56067
56220
  # The video encoding settings.
56068
56221
  self.video_codec_setting = video_codec_setting
56069
- # 视频转码方式(普通转码、窄带高清转码等)
56222
+ # The video transcoding method. Valid values: NORMAL (regular transcoding) and NBHD (Narrowband HD™ transcoding).
56070
56223
  self.video_codec_type = video_codec_type
56071
56224
  # The width of the video in pixels.
56072
56225
  self.width = width
@@ -76093,10 +76246,12 @@ class StartRtcRobotInstanceResponse(TeaModel):
76093
76246
  class StartWorkflowRequest(TeaModel):
76094
76247
  def __init__(
76095
76248
  self,
76249
+ skip_input_verification: bool = None,
76096
76250
  task_input: str = None,
76097
76251
  user_data: str = None,
76098
76252
  workflow_id: str = None,
76099
76253
  ):
76254
+ self.skip_input_verification = skip_input_verification
76100
76255
  # The workflow input. Only media assets are supported.
76101
76256
  self.task_input = task_input
76102
76257
  # The user-defined data in the JSON format, which cannot be up to 512 bytes in length. You can specify a custom callback URL. For more information, see [Configure a callback upon editing completion](https://help.aliyun.com/document_detail/451631.html).
@@ -76113,6 +76268,8 @@ class StartWorkflowRequest(TeaModel):
76113
76268
  return _map
76114
76269
 
76115
76270
  result = dict()
76271
+ if self.skip_input_verification is not None:
76272
+ result['SkipInputVerification'] = self.skip_input_verification
76116
76273
  if self.task_input is not None:
76117
76274
  result['TaskInput'] = self.task_input
76118
76275
  if self.user_data is not None:
@@ -76123,6 +76280,8 @@ class StartWorkflowRequest(TeaModel):
76123
76280
 
76124
76281
  def from_map(self, m: dict = None):
76125
76282
  m = m or dict()
76283
+ if m.get('SkipInputVerification') is not None:
76284
+ self.skip_input_verification = m.get('SkipInputVerification')
76126
76285
  if m.get('TaskInput') is not None:
76127
76286
  self.task_input = m.get('TaskInput')
76128
76287
  if m.get('UserData') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ice20201109
3
- Version: 6.3.2
3
+ Version: 6.4.0
4
4
  Summary: Alibaba Cloud ICE (20201109) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_ice20201109.
26
26
 
27
- Created on 17/06/2025
27
+ Created on 19/06/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '6.3.2'