alibabacloud-ice20201109 6.4.2__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.
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/ChangeLog.md +11 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/PKG-INFO +1 -1
- alibabacloud_ice20201109-6.4.3/alibabacloud_ice20201109/__init__.py +1 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109/models.py +30 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/PKG-INFO +1 -1
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/setup.py +1 -1
- alibabacloud_ice20201109-6.4.2/alibabacloud_ice20201109/__init__.py +0 -1
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/LICENSE +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/MANIFEST.in +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/README-CN.md +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/README.md +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109/client.py +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/requires.txt +0 -0
- {alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109.egg-info/top_level.txt +0 -0
- {alibabacloud_ice20201109-6.4.2 → 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.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '6.4.3'
|
{alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109/models.py
RENAMED
|
@@ -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'):
|
|
@@ -38529,6 +38547,8 @@ class GetSmartHandleJobResponseBodySmartJobInfo(TeaModel):
|
|
|
38529
38547
|
class GetSmartHandleJobResponseBody(TeaModel):
|
|
38530
38548
|
def __init__(
|
|
38531
38549
|
self,
|
|
38550
|
+
error_code: str = None,
|
|
38551
|
+
error_message: str = None,
|
|
38532
38552
|
job_id: str = None,
|
|
38533
38553
|
job_result: GetSmartHandleJobResponseBodyJobResult = None,
|
|
38534
38554
|
output: str = None,
|
|
@@ -38537,6 +38557,8 @@ class GetSmartHandleJobResponseBody(TeaModel):
|
|
|
38537
38557
|
state: str = None,
|
|
38538
38558
|
user_data: str = None,
|
|
38539
38559
|
):
|
|
38560
|
+
self.error_code = error_code
|
|
38561
|
+
self.error_message = error_message
|
|
38540
38562
|
# The job ID.
|
|
38541
38563
|
self.job_id = job_id
|
|
38542
38564
|
# The job results.
|
|
@@ -38571,6 +38593,10 @@ class GetSmartHandleJobResponseBody(TeaModel):
|
|
|
38571
38593
|
return _map
|
|
38572
38594
|
|
|
38573
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
|
|
38574
38600
|
if self.job_id is not None:
|
|
38575
38601
|
result['JobId'] = self.job_id
|
|
38576
38602
|
if self.job_result is not None:
|
|
@@ -38589,6 +38615,10 @@ class GetSmartHandleJobResponseBody(TeaModel):
|
|
|
38589
38615
|
|
|
38590
38616
|
def from_map(self, m: dict = None):
|
|
38591
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')
|
|
38592
38622
|
if m.get('JobId') is not None:
|
|
38593
38623
|
self.job_id = m.get('JobId')
|
|
38594
38624
|
if m.get('JobResult') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '6.4.2'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_ice20201109-6.4.2 → alibabacloud_ice20201109-6.4.3}/alibabacloud_ice20201109/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|