alibabacloud-ice20201109 6.4.1__tar.gz → 6.4.3__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.4.1 → alibabacloud_ice20201109-6.4.3}/ChangeLog.md +11 -0
  2. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/PKG-INFO +1 -1
  3. alibabacloud_ice20201109-6.4.3/alibabacloud_ice20201109/__init__.py +1 -0
  4. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109/client.py +16 -0
  5. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109/models.py +60 -0
  6. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/PKG-INFO +1 -1
  7. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/setup.py +1 -1
  8. alibabacloud_ice20201109-6.4.1/alibabacloud_ice20201109/__init__.py +0 -1
  9. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/LICENSE +0 -0
  10. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/MANIFEST.in +0 -0
  11. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/README-CN.md +0 -0
  12. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/README.md +0 -0
  13. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/requires.txt +0 -0
  16. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/top_level.txt +0 -0
  17. {alibabacloud_ice20201109-6.4.1 → alibabacloud_ice20201109-6.4.3}/setup.cfg +0 -0
@@ -1,3 +1,14 @@
1
+ 2025-07-02 Version: 6.4.2
2
+ - Update API BatchGetMediaInfos: add request parameters AuthTimeout.
3
+ - Update API GetMediaInfo: add request parameters AuthTimeout.
4
+ - Update API GetPlayInfo: add request parameters AuthTimeout.
5
+ - Update API GetProjectExportJob: add response parameters Body.ProjectExportJob.ExportResult.ProjectUrl.
6
+ - Update API ListAIAgentPhoneNumber: add request parameters Number.
7
+ - Update API ListAIAgentPhoneNumber: add request parameters Status.
8
+ - Update API ListMediaBasicInfos: add request parameters AuthTimeout.
9
+ - Update API StartAIAgentOutboundCall: add request parameters ImsAIAgentFreeObCall.
10
+
11
+
1
12
  2025-06-19 Version: 6.4.0
2
13
  - Support API ListMediaConvertJobs.
3
14
  - Update API StartWorkflow: add request parameters SkipInputVerification.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_ice20201109
3
- Version: 6.4.1
3
+ Version: 6.4.3
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.3'
@@ -1368,6 +1368,8 @@ class Client(OpenApiClient):
1368
1368
  query = {}
1369
1369
  if not UtilClient.is_unset(request.addition_type):
1370
1370
  query['AdditionType'] = request.addition_type
1371
+ if not UtilClient.is_unset(request.auth_timeout):
1372
+ query['AuthTimeout'] = request.auth_timeout
1371
1373
  if not UtilClient.is_unset(request.media_ids):
1372
1374
  query['MediaIds'] = request.media_ids
1373
1375
  req = open_api_models.OpenApiRequest(
@@ -1405,6 +1407,8 @@ class Client(OpenApiClient):
1405
1407
  query = {}
1406
1408
  if not UtilClient.is_unset(request.addition_type):
1407
1409
  query['AdditionType'] = request.addition_type
1410
+ if not UtilClient.is_unset(request.auth_timeout):
1411
+ query['AuthTimeout'] = request.auth_timeout
1408
1412
  if not UtilClient.is_unset(request.media_ids):
1409
1413
  query['MediaIds'] = request.media_ids
1410
1414
  req = open_api_models.OpenApiRequest(
@@ -14988,6 +14992,8 @@ class Client(OpenApiClient):
14988
14992
  """
14989
14993
  UtilClient.validate_model(request)
14990
14994
  query = {}
14995
+ if not UtilClient.is_unset(request.auth_timeout):
14996
+ query['AuthTimeout'] = request.auth_timeout
14991
14997
  if not UtilClient.is_unset(request.input_url):
14992
14998
  query['InputURL'] = request.input_url
14993
14999
  if not UtilClient.is_unset(request.media_id):
@@ -15031,6 +15037,8 @@ class Client(OpenApiClient):
15031
15037
  """
15032
15038
  UtilClient.validate_model(request)
15033
15039
  query = {}
15040
+ if not UtilClient.is_unset(request.auth_timeout):
15041
+ query['AuthTimeout'] = request.auth_timeout
15034
15042
  if not UtilClient.is_unset(request.input_url):
15035
15043
  query['InputURL'] = request.input_url
15036
15044
  if not UtilClient.is_unset(request.media_id):
@@ -15908,6 +15916,8 @@ class Client(OpenApiClient):
15908
15916
  """
15909
15917
  UtilClient.validate_model(request)
15910
15918
  query = {}
15919
+ if not UtilClient.is_unset(request.auth_timeout):
15920
+ query['AuthTimeout'] = request.auth_timeout
15911
15921
  if not UtilClient.is_unset(request.input_url):
15912
15922
  query['InputURL'] = request.input_url
15913
15923
  if not UtilClient.is_unset(request.media_id):
@@ -15947,6 +15957,8 @@ class Client(OpenApiClient):
15947
15957
  """
15948
15958
  UtilClient.validate_model(request)
15949
15959
  query = {}
15960
+ if not UtilClient.is_unset(request.auth_timeout):
15961
+ query['AuthTimeout'] = request.auth_timeout
15950
15962
  if not UtilClient.is_unset(request.input_url):
15951
15963
  query['InputURL'] = request.input_url
15952
15964
  if not UtilClient.is_unset(request.media_id):
@@ -21560,6 +21572,8 @@ class Client(OpenApiClient):
21560
21572
  """
21561
21573
  UtilClient.validate_model(request)
21562
21574
  query = {}
21575
+ if not UtilClient.is_unset(request.auth_timeout):
21576
+ query['AuthTimeout'] = request.auth_timeout
21563
21577
  if not UtilClient.is_unset(request.business_type):
21564
21578
  query['BusinessType'] = request.business_type
21565
21579
  if not UtilClient.is_unset(request.end_time):
@@ -21617,6 +21631,8 @@ class Client(OpenApiClient):
21617
21631
  """
21618
21632
  UtilClient.validate_model(request)
21619
21633
  query = {}
21634
+ if not UtilClient.is_unset(request.auth_timeout):
21635
+ query['AuthTimeout'] = request.auth_timeout
21620
21636
  if not UtilClient.is_unset(request.business_type):
21621
21637
  query['BusinessType'] = request.business_type
21622
21638
  if not UtilClient.is_unset(request.end_time):
@@ -2064,15 +2064,21 @@ class AppInfoDTO(TeaModel):
2064
2064
  self,
2065
2065
  app_name: str = None,
2066
2066
  app_type: int = None,
2067
+ creation_time: str = None,
2067
2068
  gmt_create: str = None,
2069
+ gmt_modified: str = None,
2068
2070
  item_id: str = None,
2071
+ modification_time: str = None,
2069
2072
  platforms: List[AppInfoDTOPlatforms] = None,
2070
2073
  user_id: int = None,
2071
2074
  ):
2072
2075
  self.app_name = app_name
2073
2076
  self.app_type = app_type
2077
+ self.creation_time = creation_time
2074
2078
  self.gmt_create = gmt_create
2079
+ self.gmt_modified = gmt_modified
2075
2080
  self.item_id = item_id
2081
+ self.modification_time = modification_time
2076
2082
  self.platforms = platforms
2077
2083
  self.user_id = user_id
2078
2084
 
@@ -2092,10 +2098,16 @@ class AppInfoDTO(TeaModel):
2092
2098
  result['AppName'] = self.app_name
2093
2099
  if self.app_type is not None:
2094
2100
  result['AppType'] = self.app_type
2101
+ if self.creation_time is not None:
2102
+ result['CreationTime'] = self.creation_time
2095
2103
  if self.gmt_create is not None:
2096
2104
  result['GmtCreate'] = self.gmt_create
2105
+ if self.gmt_modified is not None:
2106
+ result['GmtModified'] = self.gmt_modified
2097
2107
  if self.item_id is not None:
2098
2108
  result['ItemId'] = self.item_id
2109
+ if self.modification_time is not None:
2110
+ result['ModificationTime'] = self.modification_time
2099
2111
  result['Platforms'] = []
2100
2112
  if self.platforms is not None:
2101
2113
  for k in self.platforms:
@@ -2110,10 +2122,16 @@ class AppInfoDTO(TeaModel):
2110
2122
  self.app_name = m.get('AppName')
2111
2123
  if m.get('AppType') is not None:
2112
2124
  self.app_type = m.get('AppType')
2125
+ if m.get('CreationTime') is not None:
2126
+ self.creation_time = m.get('CreationTime')
2113
2127
  if m.get('GmtCreate') is not None:
2114
2128
  self.gmt_create = m.get('GmtCreate')
2129
+ if m.get('GmtModified') is not None:
2130
+ self.gmt_modified = m.get('GmtModified')
2115
2131
  if m.get('ItemId') is not None:
2116
2132
  self.item_id = m.get('ItemId')
2133
+ if m.get('ModificationTime') is not None:
2134
+ self.modification_time = m.get('ModificationTime')
2117
2135
  self.platforms = []
2118
2136
  if m.get('Platforms') is not None:
2119
2137
  for k in m.get('Platforms'):
@@ -8251,6 +8269,7 @@ class BatchGetMediaInfosRequest(TeaModel):
8251
8269
  def __init__(
8252
8270
  self,
8253
8271
  addition_type: str = None,
8272
+ auth_timeout: int = None,
8254
8273
  media_ids: str = None,
8255
8274
  ):
8256
8275
  # The additional information that you want to query about the media assets. By default, only BasicInfo is returned. The following additional information can be queried:
@@ -8259,6 +8278,7 @@ class BatchGetMediaInfosRequest(TeaModel):
8259
8278
  #
8260
8279
  # \\- DynamicMetaData
8261
8280
  self.addition_type = addition_type
8281
+ self.auth_timeout = auth_timeout
8262
8282
  # The IDs of the media assets that you want to query. Separate the IDs with commas (,).
8263
8283
  self.media_ids = media_ids
8264
8284
 
@@ -8273,6 +8293,8 @@ class BatchGetMediaInfosRequest(TeaModel):
8273
8293
  result = dict()
8274
8294
  if self.addition_type is not None:
8275
8295
  result['AdditionType'] = self.addition_type
8296
+ if self.auth_timeout is not None:
8297
+ result['AuthTimeout'] = self.auth_timeout
8276
8298
  if self.media_ids is not None:
8277
8299
  result['MediaIds'] = self.media_ids
8278
8300
  return result
@@ -8281,6 +8303,8 @@ class BatchGetMediaInfosRequest(TeaModel):
8281
8303
  m = m or dict()
8282
8304
  if m.get('AdditionType') is not None:
8283
8305
  self.addition_type = m.get('AdditionType')
8306
+ if m.get('AuthTimeout') is not None:
8307
+ self.auth_timeout = m.get('AuthTimeout')
8284
8308
  if m.get('MediaIds') is not None:
8285
8309
  self.media_ids = m.get('MediaIds')
8286
8310
  return self
@@ -32294,11 +32318,13 @@ class GetMediaConvertJobResponse(TeaModel):
32294
32318
  class GetMediaInfoRequest(TeaModel):
32295
32319
  def __init__(
32296
32320
  self,
32321
+ auth_timeout: int = None,
32297
32322
  input_url: str = None,
32298
32323
  media_id: str = None,
32299
32324
  output_type: str = None,
32300
32325
  return_detailed_info: str = None,
32301
32326
  ):
32327
+ self.auth_timeout = auth_timeout
32302
32328
  # The input URL of the media asset in another service. The URL must be registered in the IMS content library and bound to the ID of the media asset in IMS.
32303
32329
  #
32304
32330
  # * For a media asset from Object Storage Service (OSS), the URL may have one of the following formats:
@@ -32329,6 +32355,8 @@ class GetMediaInfoRequest(TeaModel):
32329
32355
  return _map
32330
32356
 
32331
32357
  result = dict()
32358
+ if self.auth_timeout is not None:
32359
+ result['AuthTimeout'] = self.auth_timeout
32332
32360
  if self.input_url is not None:
32333
32361
  result['InputURL'] = self.input_url
32334
32362
  if self.media_id is not None:
@@ -32341,6 +32369,8 @@ class GetMediaInfoRequest(TeaModel):
32341
32369
 
32342
32370
  def from_map(self, m: dict = None):
32343
32371
  m = m or dict()
32372
+ if m.get('AuthTimeout') is not None:
32373
+ self.auth_timeout = m.get('AuthTimeout')
32344
32374
  if m.get('InputURL') is not None:
32345
32375
  self.input_url = m.get('InputURL')
32346
32376
  if m.get('MediaId') is not None:
@@ -36656,9 +36686,11 @@ class GetPipelineResponse(TeaModel):
36656
36686
  class GetPlayInfoRequest(TeaModel):
36657
36687
  def __init__(
36658
36688
  self,
36689
+ auth_timeout: int = None,
36659
36690
  input_url: str = None,
36660
36691
  media_id: str = None,
36661
36692
  ):
36693
+ self.auth_timeout = auth_timeout
36662
36694
  # The input URL that you specified for the media asset when you registered the media asset. For more information, see [RegisterMediaInfo](https://help.aliyun.com/document_detail/441152.html).
36663
36695
  #
36664
36696
  # > You must specify at least one of the MediaId and InputURL parameters.
@@ -36677,6 +36709,8 @@ class GetPlayInfoRequest(TeaModel):
36677
36709
  return _map
36678
36710
 
36679
36711
  result = dict()
36712
+ if self.auth_timeout is not None:
36713
+ result['AuthTimeout'] = self.auth_timeout
36680
36714
  if self.input_url is not None:
36681
36715
  result['InputURL'] = self.input_url
36682
36716
  if self.media_id is not None:
@@ -36685,6 +36719,8 @@ class GetPlayInfoRequest(TeaModel):
36685
36719
 
36686
36720
  def from_map(self, m: dict = None):
36687
36721
  m = m or dict()
36722
+ if m.get('AuthTimeout') is not None:
36723
+ self.auth_timeout = m.get('AuthTimeout')
36688
36724
  if m.get('InputURL') is not None:
36689
36725
  self.input_url = m.get('InputURL')
36690
36726
  if m.get('MediaId') is not None:
@@ -37264,8 +37300,10 @@ class GetProjectExportJobRequest(TeaModel):
37264
37300
  class GetProjectExportJobResponseBodyProjectExportJobExportResult(TeaModel):
37265
37301
  def __init__(
37266
37302
  self,
37303
+ project_url: str = None,
37267
37304
  timeline: str = None,
37268
37305
  ):
37306
+ self.project_url = project_url
37269
37307
  self.timeline = timeline
37270
37308
 
37271
37309
  def validate(self):
@@ -37277,12 +37315,16 @@ class GetProjectExportJobResponseBodyProjectExportJobExportResult(TeaModel):
37277
37315
  return _map
37278
37316
 
37279
37317
  result = dict()
37318
+ if self.project_url is not None:
37319
+ result['ProjectUrl'] = self.project_url
37280
37320
  if self.timeline is not None:
37281
37321
  result['Timeline'] = self.timeline
37282
37322
  return result
37283
37323
 
37284
37324
  def from_map(self, m: dict = None):
37285
37325
  m = m or dict()
37326
+ if m.get('ProjectUrl') is not None:
37327
+ self.project_url = m.get('ProjectUrl')
37286
37328
  if m.get('Timeline') is not None:
37287
37329
  self.timeline = m.get('Timeline')
37288
37330
  return self
@@ -38505,6 +38547,8 @@ class GetSmartHandleJobResponseBodySmartJobInfo(TeaModel):
38505
38547
  class GetSmartHandleJobResponseBody(TeaModel):
38506
38548
  def __init__(
38507
38549
  self,
38550
+ error_code: str = None,
38551
+ error_message: str = None,
38508
38552
  job_id: str = None,
38509
38553
  job_result: GetSmartHandleJobResponseBodyJobResult = None,
38510
38554
  output: str = None,
@@ -38513,6 +38557,8 @@ class GetSmartHandleJobResponseBody(TeaModel):
38513
38557
  state: str = None,
38514
38558
  user_data: str = None,
38515
38559
  ):
38560
+ self.error_code = error_code
38561
+ self.error_message = error_message
38516
38562
  # The job ID.
38517
38563
  self.job_id = job_id
38518
38564
  # The job results.
@@ -38547,6 +38593,10 @@ class GetSmartHandleJobResponseBody(TeaModel):
38547
38593
  return _map
38548
38594
 
38549
38595
  result = dict()
38596
+ if self.error_code is not None:
38597
+ result['ErrorCode'] = self.error_code
38598
+ if self.error_message is not None:
38599
+ result['ErrorMessage'] = self.error_message
38550
38600
  if self.job_id is not None:
38551
38601
  result['JobId'] = self.job_id
38552
38602
  if self.job_result is not None:
@@ -38565,6 +38615,10 @@ class GetSmartHandleJobResponseBody(TeaModel):
38565
38615
 
38566
38616
  def from_map(self, m: dict = None):
38567
38617
  m = m or dict()
38618
+ if m.get('ErrorCode') is not None:
38619
+ self.error_code = m.get('ErrorCode')
38620
+ if m.get('ErrorMessage') is not None:
38621
+ self.error_message = m.get('ErrorMessage')
38568
38622
  if m.get('JobId') is not None:
38569
38623
  self.job_id = m.get('JobId')
38570
38624
  if m.get('JobResult') is not None:
@@ -54167,6 +54221,7 @@ class ListLiveTranscodeTemplatesResponse(TeaModel):
54167
54221
  class ListMediaBasicInfosRequest(TeaModel):
54168
54222
  def __init__(
54169
54223
  self,
54224
+ auth_timeout: int = None,
54170
54225
  business_type: str = None,
54171
54226
  end_time: str = None,
54172
54227
  include_file_basic_info: bool = None,
@@ -54179,6 +54234,7 @@ class ListMediaBasicInfosRequest(TeaModel):
54179
54234
  start_time: str = None,
54180
54235
  status: str = None,
54181
54236
  ):
54237
+ self.auth_timeout = auth_timeout
54182
54238
  # The business type of the media asset. Valid values:
54183
54239
  #
54184
54240
  # \\- subtitles
@@ -54259,6 +54315,8 @@ class ListMediaBasicInfosRequest(TeaModel):
54259
54315
  return _map
54260
54316
 
54261
54317
  result = dict()
54318
+ if self.auth_timeout is not None:
54319
+ result['AuthTimeout'] = self.auth_timeout
54262
54320
  if self.business_type is not None:
54263
54321
  result['BusinessType'] = self.business_type
54264
54322
  if self.end_time is not None:
@@ -54285,6 +54343,8 @@ class ListMediaBasicInfosRequest(TeaModel):
54285
54343
 
54286
54344
  def from_map(self, m: dict = None):
54287
54345
  m = m or dict()
54346
+ if m.get('AuthTimeout') is not None:
54347
+ self.auth_timeout = m.get('AuthTimeout')
54288
54348
  if m.get('BusinessType') is not None:
54289
54349
  self.business_type = m.get('BusinessType')
54290
54350
  if m.get('EndTime') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-ice20201109
3
- Version: 6.4.1
3
+ Version: 6.4.3
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 01/07/2025
27
+ Created on 07/07/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '6.4.1'