alibabacloud-ice20201109 6.7.0__tar.gz → 6.8.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.
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/ChangeLog.md +17 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/PKG-INFO +1 -1
- alibabacloud_ice20201109-6.8.0/alibabacloud_ice20201109/__init__.py +1 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109/client.py +568 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109/models.py +905 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109.egg-info/PKG-INFO +1 -1
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/setup.py +1 -1
- alibabacloud_ice20201109-6.7.0/alibabacloud_ice20201109/__init__.py +0 -1
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/LICENSE +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/MANIFEST.in +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/README-CN.md +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/README.md +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109.egg-info/SOURCES.txt +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109.egg-info/dependency_links.txt +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109.egg-info/requires.txt +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109.egg-info/top_level.txt +0 -0
- {alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/setup.cfg +0 -0
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
2025-11-04 Version: 6.7.0
|
|
2
|
+
- Support API GetAIWorkflowTask.
|
|
3
|
+
- Support API StartAIWorkflow.
|
|
4
|
+
- Support API StopAIWorkflowTask.
|
|
5
|
+
- Support API SubmitSceneMediaSelectionJob.
|
|
6
|
+
- Update API SearchMedia: add request parameters CustomFilters.
|
|
7
|
+
- Update API SearchMedia: add response parameters Body.MediaInfoList.$.CustomFields.
|
|
8
|
+
- Update API SearchMediaByAILabel: add request parameters CustomFilters.
|
|
9
|
+
- Update API SearchMediaByAILabel: add request parameters UtcCreate.
|
|
10
|
+
- Update API SearchMediaByFace: add request parameters CustomFilters.
|
|
11
|
+
- Update API SearchMediaByFace: add request parameters UtcCreate.
|
|
12
|
+
- Update API SearchMediaByHybrid: add request parameters CustomFilters.
|
|
13
|
+
- Update API SearchMediaByHybrid: add request parameters UtcCreate.
|
|
14
|
+
- Update API SearchMediaByMultimodal: add request parameters CustomFilters.
|
|
15
|
+
- Update API SearchMediaByMultimodal: add request parameters UtcCreate.
|
|
16
|
+
|
|
17
|
+
|
|
1
18
|
2025-09-23 Version: 6.6.1
|
|
2
19
|
- Update API ListSmartVoiceGroups: add response parameters Body.VoiceGroups.$.VoiceList.$.VoiceSource.
|
|
3
20
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '6.8.0'
|
{alibabacloud_ice20201109-6.7.0 → alibabacloud_ice20201109-6.8.0}/alibabacloud_ice20201109/client.py
RENAMED
|
@@ -99,6 +99,110 @@ class Client(OpenApiClient):
|
|
|
99
99
|
return endpoint_map.get(region_id)
|
|
100
100
|
return EndpointUtilClient.get_endpoint_rules(product_id, region_id, endpoint_rule, network, suffix)
|
|
101
101
|
|
|
102
|
+
def active_ai_rtc_license_with_options(
|
|
103
|
+
self,
|
|
104
|
+
request: ice20201109_models.ActiveAiRtcLicenseRequest,
|
|
105
|
+
runtime: util_models.RuntimeOptions,
|
|
106
|
+
) -> ice20201109_models.ActiveAiRtcLicenseResponse:
|
|
107
|
+
"""
|
|
108
|
+
@summary 激活AI实时互动授权信息
|
|
109
|
+
|
|
110
|
+
@param request: ActiveAiRtcLicenseRequest
|
|
111
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
112
|
+
@return: ActiveAiRtcLicenseResponse
|
|
113
|
+
"""
|
|
114
|
+
UtilClient.validate_model(request)
|
|
115
|
+
query = {}
|
|
116
|
+
if not UtilClient.is_unset(request.auth_code):
|
|
117
|
+
query['AuthCode'] = request.auth_code
|
|
118
|
+
if not UtilClient.is_unset(request.device_id):
|
|
119
|
+
query['DeviceId'] = request.device_id
|
|
120
|
+
if not UtilClient.is_unset(request.license_item_id):
|
|
121
|
+
query['LicenseItemId'] = request.license_item_id
|
|
122
|
+
req = open_api_models.OpenApiRequest(
|
|
123
|
+
query=OpenApiUtilClient.query(query)
|
|
124
|
+
)
|
|
125
|
+
params = open_api_models.Params(
|
|
126
|
+
action='ActiveAiRtcLicense',
|
|
127
|
+
version='2020-11-09',
|
|
128
|
+
protocol='HTTPS',
|
|
129
|
+
pathname='/',
|
|
130
|
+
method='POST',
|
|
131
|
+
auth_type='AK',
|
|
132
|
+
style='RPC',
|
|
133
|
+
req_body_type='formData',
|
|
134
|
+
body_type='json'
|
|
135
|
+
)
|
|
136
|
+
return TeaCore.from_map(
|
|
137
|
+
ice20201109_models.ActiveAiRtcLicenseResponse(),
|
|
138
|
+
self.call_api(params, req, runtime)
|
|
139
|
+
)
|
|
140
|
+
|
|
141
|
+
async def active_ai_rtc_license_with_options_async(
|
|
142
|
+
self,
|
|
143
|
+
request: ice20201109_models.ActiveAiRtcLicenseRequest,
|
|
144
|
+
runtime: util_models.RuntimeOptions,
|
|
145
|
+
) -> ice20201109_models.ActiveAiRtcLicenseResponse:
|
|
146
|
+
"""
|
|
147
|
+
@summary 激活AI实时互动授权信息
|
|
148
|
+
|
|
149
|
+
@param request: ActiveAiRtcLicenseRequest
|
|
150
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
151
|
+
@return: ActiveAiRtcLicenseResponse
|
|
152
|
+
"""
|
|
153
|
+
UtilClient.validate_model(request)
|
|
154
|
+
query = {}
|
|
155
|
+
if not UtilClient.is_unset(request.auth_code):
|
|
156
|
+
query['AuthCode'] = request.auth_code
|
|
157
|
+
if not UtilClient.is_unset(request.device_id):
|
|
158
|
+
query['DeviceId'] = request.device_id
|
|
159
|
+
if not UtilClient.is_unset(request.license_item_id):
|
|
160
|
+
query['LicenseItemId'] = request.license_item_id
|
|
161
|
+
req = open_api_models.OpenApiRequest(
|
|
162
|
+
query=OpenApiUtilClient.query(query)
|
|
163
|
+
)
|
|
164
|
+
params = open_api_models.Params(
|
|
165
|
+
action='ActiveAiRtcLicense',
|
|
166
|
+
version='2020-11-09',
|
|
167
|
+
protocol='HTTPS',
|
|
168
|
+
pathname='/',
|
|
169
|
+
method='POST',
|
|
170
|
+
auth_type='AK',
|
|
171
|
+
style='RPC',
|
|
172
|
+
req_body_type='formData',
|
|
173
|
+
body_type='json'
|
|
174
|
+
)
|
|
175
|
+
return TeaCore.from_map(
|
|
176
|
+
ice20201109_models.ActiveAiRtcLicenseResponse(),
|
|
177
|
+
await self.call_api_async(params, req, runtime)
|
|
178
|
+
)
|
|
179
|
+
|
|
180
|
+
def active_ai_rtc_license(
|
|
181
|
+
self,
|
|
182
|
+
request: ice20201109_models.ActiveAiRtcLicenseRequest,
|
|
183
|
+
) -> ice20201109_models.ActiveAiRtcLicenseResponse:
|
|
184
|
+
"""
|
|
185
|
+
@summary 激活AI实时互动授权信息
|
|
186
|
+
|
|
187
|
+
@param request: ActiveAiRtcLicenseRequest
|
|
188
|
+
@return: ActiveAiRtcLicenseResponse
|
|
189
|
+
"""
|
|
190
|
+
runtime = util_models.RuntimeOptions()
|
|
191
|
+
return self.active_ai_rtc_license_with_options(request, runtime)
|
|
192
|
+
|
|
193
|
+
async def active_ai_rtc_license_async(
|
|
194
|
+
self,
|
|
195
|
+
request: ice20201109_models.ActiveAiRtcLicenseRequest,
|
|
196
|
+
) -> ice20201109_models.ActiveAiRtcLicenseResponse:
|
|
197
|
+
"""
|
|
198
|
+
@summary 激活AI实时互动授权信息
|
|
199
|
+
|
|
200
|
+
@param request: ActiveAiRtcLicenseRequest
|
|
201
|
+
@return: ActiveAiRtcLicenseResponse
|
|
202
|
+
"""
|
|
203
|
+
runtime = util_models.RuntimeOptions()
|
|
204
|
+
return await self.active_ai_rtc_license_with_options_async(request, runtime)
|
|
205
|
+
|
|
102
206
|
def add_ad_insertion_with_options(
|
|
103
207
|
self,
|
|
104
208
|
request: ice20201109_models.AddAdInsertionRequest,
|
|
@@ -12259,8 +12363,12 @@ class Client(OpenApiClient):
|
|
|
12259
12363
|
query = {}
|
|
12260
12364
|
if not UtilClient.is_unset(request.called_number):
|
|
12261
12365
|
query['CalledNumber'] = request.called_number
|
|
12366
|
+
if not UtilClient.is_unset(request.error_prompt):
|
|
12367
|
+
query['ErrorPrompt'] = request.error_prompt
|
|
12262
12368
|
if not UtilClient.is_unset(request.instance_id):
|
|
12263
12369
|
query['InstanceId'] = request.instance_id
|
|
12370
|
+
if not UtilClient.is_unset(request.transfer_prompt):
|
|
12371
|
+
query['TransferPrompt'] = request.transfer_prompt
|
|
12264
12372
|
req = open_api_models.OpenApiRequest(
|
|
12265
12373
|
query=OpenApiUtilClient.query(query)
|
|
12266
12374
|
)
|
|
@@ -12296,8 +12404,12 @@ class Client(OpenApiClient):
|
|
|
12296
12404
|
query = {}
|
|
12297
12405
|
if not UtilClient.is_unset(request.called_number):
|
|
12298
12406
|
query['CalledNumber'] = request.called_number
|
|
12407
|
+
if not UtilClient.is_unset(request.error_prompt):
|
|
12408
|
+
query['ErrorPrompt'] = request.error_prompt
|
|
12299
12409
|
if not UtilClient.is_unset(request.instance_id):
|
|
12300
12410
|
query['InstanceId'] = request.instance_id
|
|
12411
|
+
if not UtilClient.is_unset(request.transfer_prompt):
|
|
12412
|
+
query['TransferPrompt'] = request.transfer_prompt
|
|
12301
12413
|
req = open_api_models.OpenApiRequest(
|
|
12302
12414
|
query=OpenApiUtilClient.query(query)
|
|
12303
12415
|
)
|
|
@@ -12873,6 +12985,238 @@ class Client(OpenApiClient):
|
|
|
12873
12985
|
runtime = util_models.RuntimeOptions()
|
|
12874
12986
|
return await self.get_ad_insertion_with_options_async(request, runtime)
|
|
12875
12987
|
|
|
12988
|
+
def get_ai_rtc_auth_code_list_with_options(
|
|
12989
|
+
self,
|
|
12990
|
+
request: ice20201109_models.GetAiRtcAuthCodeListRequest,
|
|
12991
|
+
runtime: util_models.RuntimeOptions,
|
|
12992
|
+
) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
|
|
12993
|
+
"""
|
|
12994
|
+
@summary 获取AI实时互动授权码列表
|
|
12995
|
+
|
|
12996
|
+
@param request: GetAiRtcAuthCodeListRequest
|
|
12997
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
12998
|
+
@return: GetAiRtcAuthCodeListResponse
|
|
12999
|
+
"""
|
|
13000
|
+
UtilClient.validate_model(request)
|
|
13001
|
+
query = {}
|
|
13002
|
+
if not UtilClient.is_unset(request.license_item_id):
|
|
13003
|
+
query['LicenseItemId'] = request.license_item_id
|
|
13004
|
+
if not UtilClient.is_unset(request.need_total_count):
|
|
13005
|
+
query['NeedTotalCount'] = request.need_total_count
|
|
13006
|
+
if not UtilClient.is_unset(request.page_no):
|
|
13007
|
+
query['PageNo'] = request.page_no
|
|
13008
|
+
if not UtilClient.is_unset(request.page_size):
|
|
13009
|
+
query['PageSize'] = request.page_size
|
|
13010
|
+
if not UtilClient.is_unset(request.status):
|
|
13011
|
+
query['Status'] = request.status
|
|
13012
|
+
if not UtilClient.is_unset(request.type):
|
|
13013
|
+
query['Type'] = request.type
|
|
13014
|
+
req = open_api_models.OpenApiRequest(
|
|
13015
|
+
query=OpenApiUtilClient.query(query)
|
|
13016
|
+
)
|
|
13017
|
+
params = open_api_models.Params(
|
|
13018
|
+
action='GetAiRtcAuthCodeList',
|
|
13019
|
+
version='2020-11-09',
|
|
13020
|
+
protocol='HTTPS',
|
|
13021
|
+
pathname='/',
|
|
13022
|
+
method='POST',
|
|
13023
|
+
auth_type='AK',
|
|
13024
|
+
style='RPC',
|
|
13025
|
+
req_body_type='formData',
|
|
13026
|
+
body_type='json'
|
|
13027
|
+
)
|
|
13028
|
+
return TeaCore.from_map(
|
|
13029
|
+
ice20201109_models.GetAiRtcAuthCodeListResponse(),
|
|
13030
|
+
self.call_api(params, req, runtime)
|
|
13031
|
+
)
|
|
13032
|
+
|
|
13033
|
+
async def get_ai_rtc_auth_code_list_with_options_async(
|
|
13034
|
+
self,
|
|
13035
|
+
request: ice20201109_models.GetAiRtcAuthCodeListRequest,
|
|
13036
|
+
runtime: util_models.RuntimeOptions,
|
|
13037
|
+
) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
|
|
13038
|
+
"""
|
|
13039
|
+
@summary 获取AI实时互动授权码列表
|
|
13040
|
+
|
|
13041
|
+
@param request: GetAiRtcAuthCodeListRequest
|
|
13042
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
13043
|
+
@return: GetAiRtcAuthCodeListResponse
|
|
13044
|
+
"""
|
|
13045
|
+
UtilClient.validate_model(request)
|
|
13046
|
+
query = {}
|
|
13047
|
+
if not UtilClient.is_unset(request.license_item_id):
|
|
13048
|
+
query['LicenseItemId'] = request.license_item_id
|
|
13049
|
+
if not UtilClient.is_unset(request.need_total_count):
|
|
13050
|
+
query['NeedTotalCount'] = request.need_total_count
|
|
13051
|
+
if not UtilClient.is_unset(request.page_no):
|
|
13052
|
+
query['PageNo'] = request.page_no
|
|
13053
|
+
if not UtilClient.is_unset(request.page_size):
|
|
13054
|
+
query['PageSize'] = request.page_size
|
|
13055
|
+
if not UtilClient.is_unset(request.status):
|
|
13056
|
+
query['Status'] = request.status
|
|
13057
|
+
if not UtilClient.is_unset(request.type):
|
|
13058
|
+
query['Type'] = request.type
|
|
13059
|
+
req = open_api_models.OpenApiRequest(
|
|
13060
|
+
query=OpenApiUtilClient.query(query)
|
|
13061
|
+
)
|
|
13062
|
+
params = open_api_models.Params(
|
|
13063
|
+
action='GetAiRtcAuthCodeList',
|
|
13064
|
+
version='2020-11-09',
|
|
13065
|
+
protocol='HTTPS',
|
|
13066
|
+
pathname='/',
|
|
13067
|
+
method='POST',
|
|
13068
|
+
auth_type='AK',
|
|
13069
|
+
style='RPC',
|
|
13070
|
+
req_body_type='formData',
|
|
13071
|
+
body_type='json'
|
|
13072
|
+
)
|
|
13073
|
+
return TeaCore.from_map(
|
|
13074
|
+
ice20201109_models.GetAiRtcAuthCodeListResponse(),
|
|
13075
|
+
await self.call_api_async(params, req, runtime)
|
|
13076
|
+
)
|
|
13077
|
+
|
|
13078
|
+
def get_ai_rtc_auth_code_list(
|
|
13079
|
+
self,
|
|
13080
|
+
request: ice20201109_models.GetAiRtcAuthCodeListRequest,
|
|
13081
|
+
) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
|
|
13082
|
+
"""
|
|
13083
|
+
@summary 获取AI实时互动授权码列表
|
|
13084
|
+
|
|
13085
|
+
@param request: GetAiRtcAuthCodeListRequest
|
|
13086
|
+
@return: GetAiRtcAuthCodeListResponse
|
|
13087
|
+
"""
|
|
13088
|
+
runtime = util_models.RuntimeOptions()
|
|
13089
|
+
return self.get_ai_rtc_auth_code_list_with_options(request, runtime)
|
|
13090
|
+
|
|
13091
|
+
async def get_ai_rtc_auth_code_list_async(
|
|
13092
|
+
self,
|
|
13093
|
+
request: ice20201109_models.GetAiRtcAuthCodeListRequest,
|
|
13094
|
+
) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
|
|
13095
|
+
"""
|
|
13096
|
+
@summary 获取AI实时互动授权码列表
|
|
13097
|
+
|
|
13098
|
+
@param request: GetAiRtcAuthCodeListRequest
|
|
13099
|
+
@return: GetAiRtcAuthCodeListResponse
|
|
13100
|
+
"""
|
|
13101
|
+
runtime = util_models.RuntimeOptions()
|
|
13102
|
+
return await self.get_ai_rtc_auth_code_list_with_options_async(request, runtime)
|
|
13103
|
+
|
|
13104
|
+
def get_ai_rtc_license_info_list_with_options(
|
|
13105
|
+
self,
|
|
13106
|
+
request: ice20201109_models.GetAiRtcLicenseInfoListRequest,
|
|
13107
|
+
runtime: util_models.RuntimeOptions,
|
|
13108
|
+
) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
|
|
13109
|
+
"""
|
|
13110
|
+
@summary 获取AI实时互动授权批次列表
|
|
13111
|
+
|
|
13112
|
+
@param request: GetAiRtcLicenseInfoListRequest
|
|
13113
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
13114
|
+
@return: GetAiRtcLicenseInfoListResponse
|
|
13115
|
+
"""
|
|
13116
|
+
UtilClient.validate_model(request)
|
|
13117
|
+
query = {}
|
|
13118
|
+
if not UtilClient.is_unset(request.license_item_id):
|
|
13119
|
+
query['LicenseItemId'] = request.license_item_id
|
|
13120
|
+
if not UtilClient.is_unset(request.need_total_count):
|
|
13121
|
+
query['NeedTotalCount'] = request.need_total_count
|
|
13122
|
+
if not UtilClient.is_unset(request.page_no):
|
|
13123
|
+
query['PageNo'] = request.page_no
|
|
13124
|
+
if not UtilClient.is_unset(request.page_size):
|
|
13125
|
+
query['PageSize'] = request.page_size
|
|
13126
|
+
if not UtilClient.is_unset(request.status):
|
|
13127
|
+
query['Status'] = request.status
|
|
13128
|
+
if not UtilClient.is_unset(request.type):
|
|
13129
|
+
query['Type'] = request.type
|
|
13130
|
+
req = open_api_models.OpenApiRequest(
|
|
13131
|
+
query=OpenApiUtilClient.query(query)
|
|
13132
|
+
)
|
|
13133
|
+
params = open_api_models.Params(
|
|
13134
|
+
action='GetAiRtcLicenseInfoList',
|
|
13135
|
+
version='2020-11-09',
|
|
13136
|
+
protocol='HTTPS',
|
|
13137
|
+
pathname='/',
|
|
13138
|
+
method='POST',
|
|
13139
|
+
auth_type='AK',
|
|
13140
|
+
style='RPC',
|
|
13141
|
+
req_body_type='formData',
|
|
13142
|
+
body_type='json'
|
|
13143
|
+
)
|
|
13144
|
+
return TeaCore.from_map(
|
|
13145
|
+
ice20201109_models.GetAiRtcLicenseInfoListResponse(),
|
|
13146
|
+
self.call_api(params, req, runtime)
|
|
13147
|
+
)
|
|
13148
|
+
|
|
13149
|
+
async def get_ai_rtc_license_info_list_with_options_async(
|
|
13150
|
+
self,
|
|
13151
|
+
request: ice20201109_models.GetAiRtcLicenseInfoListRequest,
|
|
13152
|
+
runtime: util_models.RuntimeOptions,
|
|
13153
|
+
) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
|
|
13154
|
+
"""
|
|
13155
|
+
@summary 获取AI实时互动授权批次列表
|
|
13156
|
+
|
|
13157
|
+
@param request: GetAiRtcLicenseInfoListRequest
|
|
13158
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
13159
|
+
@return: GetAiRtcLicenseInfoListResponse
|
|
13160
|
+
"""
|
|
13161
|
+
UtilClient.validate_model(request)
|
|
13162
|
+
query = {}
|
|
13163
|
+
if not UtilClient.is_unset(request.license_item_id):
|
|
13164
|
+
query['LicenseItemId'] = request.license_item_id
|
|
13165
|
+
if not UtilClient.is_unset(request.need_total_count):
|
|
13166
|
+
query['NeedTotalCount'] = request.need_total_count
|
|
13167
|
+
if not UtilClient.is_unset(request.page_no):
|
|
13168
|
+
query['PageNo'] = request.page_no
|
|
13169
|
+
if not UtilClient.is_unset(request.page_size):
|
|
13170
|
+
query['PageSize'] = request.page_size
|
|
13171
|
+
if not UtilClient.is_unset(request.status):
|
|
13172
|
+
query['Status'] = request.status
|
|
13173
|
+
if not UtilClient.is_unset(request.type):
|
|
13174
|
+
query['Type'] = request.type
|
|
13175
|
+
req = open_api_models.OpenApiRequest(
|
|
13176
|
+
query=OpenApiUtilClient.query(query)
|
|
13177
|
+
)
|
|
13178
|
+
params = open_api_models.Params(
|
|
13179
|
+
action='GetAiRtcLicenseInfoList',
|
|
13180
|
+
version='2020-11-09',
|
|
13181
|
+
protocol='HTTPS',
|
|
13182
|
+
pathname='/',
|
|
13183
|
+
method='POST',
|
|
13184
|
+
auth_type='AK',
|
|
13185
|
+
style='RPC',
|
|
13186
|
+
req_body_type='formData',
|
|
13187
|
+
body_type='json'
|
|
13188
|
+
)
|
|
13189
|
+
return TeaCore.from_map(
|
|
13190
|
+
ice20201109_models.GetAiRtcLicenseInfoListResponse(),
|
|
13191
|
+
await self.call_api_async(params, req, runtime)
|
|
13192
|
+
)
|
|
13193
|
+
|
|
13194
|
+
def get_ai_rtc_license_info_list(
|
|
13195
|
+
self,
|
|
13196
|
+
request: ice20201109_models.GetAiRtcLicenseInfoListRequest,
|
|
13197
|
+
) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
|
|
13198
|
+
"""
|
|
13199
|
+
@summary 获取AI实时互动授权批次列表
|
|
13200
|
+
|
|
13201
|
+
@param request: GetAiRtcLicenseInfoListRequest
|
|
13202
|
+
@return: GetAiRtcLicenseInfoListResponse
|
|
13203
|
+
"""
|
|
13204
|
+
runtime = util_models.RuntimeOptions()
|
|
13205
|
+
return self.get_ai_rtc_license_info_list_with_options(request, runtime)
|
|
13206
|
+
|
|
13207
|
+
async def get_ai_rtc_license_info_list_async(
|
|
13208
|
+
self,
|
|
13209
|
+
request: ice20201109_models.GetAiRtcLicenseInfoListRequest,
|
|
13210
|
+
) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
|
|
13211
|
+
"""
|
|
13212
|
+
@summary 获取AI实时互动授权批次列表
|
|
13213
|
+
|
|
13214
|
+
@param request: GetAiRtcLicenseInfoListRequest
|
|
13215
|
+
@return: GetAiRtcLicenseInfoListResponse
|
|
13216
|
+
"""
|
|
13217
|
+
runtime = util_models.RuntimeOptions()
|
|
13218
|
+
return await self.get_ai_rtc_license_info_list_with_options_async(request, runtime)
|
|
13219
|
+
|
|
12876
13220
|
def get_avatar_with_options(
|
|
12877
13221
|
self,
|
|
12878
13222
|
request: ice20201109_models.GetAvatarRequest,
|
|
@@ -36009,6 +36353,110 @@ class Client(OpenApiClient):
|
|
|
36009
36353
|
runtime = util_models.RuntimeOptions()
|
|
36010
36354
|
return await self.submit_project_export_job_with_options_async(request, runtime)
|
|
36011
36355
|
|
|
36356
|
+
def submit_scene_batch_editing_job_with_options(
|
|
36357
|
+
self,
|
|
36358
|
+
request: ice20201109_models.SubmitSceneBatchEditingJobRequest,
|
|
36359
|
+
runtime: util_models.RuntimeOptions,
|
|
36360
|
+
) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
|
|
36361
|
+
"""
|
|
36362
|
+
@summary 提交场景化批量合成任务
|
|
36363
|
+
|
|
36364
|
+
@param request: SubmitSceneBatchEditingJobRequest
|
|
36365
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
36366
|
+
@return: SubmitSceneBatchEditingJobResponse
|
|
36367
|
+
"""
|
|
36368
|
+
UtilClient.validate_model(request)
|
|
36369
|
+
query = {}
|
|
36370
|
+
if not UtilClient.is_unset(request.output_config):
|
|
36371
|
+
query['OutputConfig'] = request.output_config
|
|
36372
|
+
if not UtilClient.is_unset(request.project_ids):
|
|
36373
|
+
query['ProjectIds'] = request.project_ids
|
|
36374
|
+
if not UtilClient.is_unset(request.user_data):
|
|
36375
|
+
query['UserData'] = request.user_data
|
|
36376
|
+
req = open_api_models.OpenApiRequest(
|
|
36377
|
+
query=OpenApiUtilClient.query(query)
|
|
36378
|
+
)
|
|
36379
|
+
params = open_api_models.Params(
|
|
36380
|
+
action='SubmitSceneBatchEditingJob',
|
|
36381
|
+
version='2020-11-09',
|
|
36382
|
+
protocol='HTTPS',
|
|
36383
|
+
pathname='/',
|
|
36384
|
+
method='POST',
|
|
36385
|
+
auth_type='AK',
|
|
36386
|
+
style='RPC',
|
|
36387
|
+
req_body_type='formData',
|
|
36388
|
+
body_type='json'
|
|
36389
|
+
)
|
|
36390
|
+
return TeaCore.from_map(
|
|
36391
|
+
ice20201109_models.SubmitSceneBatchEditingJobResponse(),
|
|
36392
|
+
self.call_api(params, req, runtime)
|
|
36393
|
+
)
|
|
36394
|
+
|
|
36395
|
+
async def submit_scene_batch_editing_job_with_options_async(
|
|
36396
|
+
self,
|
|
36397
|
+
request: ice20201109_models.SubmitSceneBatchEditingJobRequest,
|
|
36398
|
+
runtime: util_models.RuntimeOptions,
|
|
36399
|
+
) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
|
|
36400
|
+
"""
|
|
36401
|
+
@summary 提交场景化批量合成任务
|
|
36402
|
+
|
|
36403
|
+
@param request: SubmitSceneBatchEditingJobRequest
|
|
36404
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
36405
|
+
@return: SubmitSceneBatchEditingJobResponse
|
|
36406
|
+
"""
|
|
36407
|
+
UtilClient.validate_model(request)
|
|
36408
|
+
query = {}
|
|
36409
|
+
if not UtilClient.is_unset(request.output_config):
|
|
36410
|
+
query['OutputConfig'] = request.output_config
|
|
36411
|
+
if not UtilClient.is_unset(request.project_ids):
|
|
36412
|
+
query['ProjectIds'] = request.project_ids
|
|
36413
|
+
if not UtilClient.is_unset(request.user_data):
|
|
36414
|
+
query['UserData'] = request.user_data
|
|
36415
|
+
req = open_api_models.OpenApiRequest(
|
|
36416
|
+
query=OpenApiUtilClient.query(query)
|
|
36417
|
+
)
|
|
36418
|
+
params = open_api_models.Params(
|
|
36419
|
+
action='SubmitSceneBatchEditingJob',
|
|
36420
|
+
version='2020-11-09',
|
|
36421
|
+
protocol='HTTPS',
|
|
36422
|
+
pathname='/',
|
|
36423
|
+
method='POST',
|
|
36424
|
+
auth_type='AK',
|
|
36425
|
+
style='RPC',
|
|
36426
|
+
req_body_type='formData',
|
|
36427
|
+
body_type='json'
|
|
36428
|
+
)
|
|
36429
|
+
return TeaCore.from_map(
|
|
36430
|
+
ice20201109_models.SubmitSceneBatchEditingJobResponse(),
|
|
36431
|
+
await self.call_api_async(params, req, runtime)
|
|
36432
|
+
)
|
|
36433
|
+
|
|
36434
|
+
def submit_scene_batch_editing_job(
|
|
36435
|
+
self,
|
|
36436
|
+
request: ice20201109_models.SubmitSceneBatchEditingJobRequest,
|
|
36437
|
+
) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
|
|
36438
|
+
"""
|
|
36439
|
+
@summary 提交场景化批量合成任务
|
|
36440
|
+
|
|
36441
|
+
@param request: SubmitSceneBatchEditingJobRequest
|
|
36442
|
+
@return: SubmitSceneBatchEditingJobResponse
|
|
36443
|
+
"""
|
|
36444
|
+
runtime = util_models.RuntimeOptions()
|
|
36445
|
+
return self.submit_scene_batch_editing_job_with_options(request, runtime)
|
|
36446
|
+
|
|
36447
|
+
async def submit_scene_batch_editing_job_async(
|
|
36448
|
+
self,
|
|
36449
|
+
request: ice20201109_models.SubmitSceneBatchEditingJobRequest,
|
|
36450
|
+
) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
|
|
36451
|
+
"""
|
|
36452
|
+
@summary 提交场景化批量合成任务
|
|
36453
|
+
|
|
36454
|
+
@param request: SubmitSceneBatchEditingJobRequest
|
|
36455
|
+
@return: SubmitSceneBatchEditingJobResponse
|
|
36456
|
+
"""
|
|
36457
|
+
runtime = util_models.RuntimeOptions()
|
|
36458
|
+
return await self.submit_scene_batch_editing_job_with_options_async(request, runtime)
|
|
36459
|
+
|
|
36012
36460
|
def submit_scene_media_selection_job_with_options(
|
|
36013
36461
|
self,
|
|
36014
36462
|
request: ice20201109_models.SubmitSceneMediaSelectionJobRequest,
|
|
@@ -36137,6 +36585,126 @@ class Client(OpenApiClient):
|
|
|
36137
36585
|
runtime = util_models.RuntimeOptions()
|
|
36138
36586
|
return await self.submit_scene_media_selection_job_with_options_async(request, runtime)
|
|
36139
36587
|
|
|
36588
|
+
def submit_scene_timeline_organization_job_with_options(
|
|
36589
|
+
self,
|
|
36590
|
+
request: ice20201109_models.SubmitSceneTimelineOrganizationJobRequest,
|
|
36591
|
+
runtime: util_models.RuntimeOptions,
|
|
36592
|
+
) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
|
|
36593
|
+
"""
|
|
36594
|
+
@summary 提交场景化时间线编排任务
|
|
36595
|
+
|
|
36596
|
+
@param request: SubmitSceneTimelineOrganizationJobRequest
|
|
36597
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
36598
|
+
@return: SubmitSceneTimelineOrganizationJobResponse
|
|
36599
|
+
"""
|
|
36600
|
+
UtilClient.validate_model(request)
|
|
36601
|
+
query = {}
|
|
36602
|
+
if not UtilClient.is_unset(request.job_type):
|
|
36603
|
+
query['JobType'] = request.job_type
|
|
36604
|
+
if not UtilClient.is_unset(request.media_select_result):
|
|
36605
|
+
query['MediaSelectResult'] = request.media_select_result
|
|
36606
|
+
if not UtilClient.is_unset(request.output_config):
|
|
36607
|
+
query['OutputConfig'] = request.output_config
|
|
36608
|
+
if not UtilClient.is_unset(request.user_data):
|
|
36609
|
+
query['UserData'] = request.user_data
|
|
36610
|
+
body = {}
|
|
36611
|
+
if not UtilClient.is_unset(request.editing_config):
|
|
36612
|
+
body['EditingConfig'] = request.editing_config
|
|
36613
|
+
if not UtilClient.is_unset(request.input_config):
|
|
36614
|
+
body['InputConfig'] = request.input_config
|
|
36615
|
+
req = open_api_models.OpenApiRequest(
|
|
36616
|
+
query=OpenApiUtilClient.query(query),
|
|
36617
|
+
body=OpenApiUtilClient.parse_to_map(body)
|
|
36618
|
+
)
|
|
36619
|
+
params = open_api_models.Params(
|
|
36620
|
+
action='SubmitSceneTimelineOrganizationJob',
|
|
36621
|
+
version='2020-11-09',
|
|
36622
|
+
protocol='HTTPS',
|
|
36623
|
+
pathname='/',
|
|
36624
|
+
method='POST',
|
|
36625
|
+
auth_type='AK',
|
|
36626
|
+
style='RPC',
|
|
36627
|
+
req_body_type='formData',
|
|
36628
|
+
body_type='json'
|
|
36629
|
+
)
|
|
36630
|
+
return TeaCore.from_map(
|
|
36631
|
+
ice20201109_models.SubmitSceneTimelineOrganizationJobResponse(),
|
|
36632
|
+
self.call_api(params, req, runtime)
|
|
36633
|
+
)
|
|
36634
|
+
|
|
36635
|
+
async def submit_scene_timeline_organization_job_with_options_async(
|
|
36636
|
+
self,
|
|
36637
|
+
request: ice20201109_models.SubmitSceneTimelineOrganizationJobRequest,
|
|
36638
|
+
runtime: util_models.RuntimeOptions,
|
|
36639
|
+
) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
|
|
36640
|
+
"""
|
|
36641
|
+
@summary 提交场景化时间线编排任务
|
|
36642
|
+
|
|
36643
|
+
@param request: SubmitSceneTimelineOrganizationJobRequest
|
|
36644
|
+
@param runtime: runtime options for this request RuntimeOptions
|
|
36645
|
+
@return: SubmitSceneTimelineOrganizationJobResponse
|
|
36646
|
+
"""
|
|
36647
|
+
UtilClient.validate_model(request)
|
|
36648
|
+
query = {}
|
|
36649
|
+
if not UtilClient.is_unset(request.job_type):
|
|
36650
|
+
query['JobType'] = request.job_type
|
|
36651
|
+
if not UtilClient.is_unset(request.media_select_result):
|
|
36652
|
+
query['MediaSelectResult'] = request.media_select_result
|
|
36653
|
+
if not UtilClient.is_unset(request.output_config):
|
|
36654
|
+
query['OutputConfig'] = request.output_config
|
|
36655
|
+
if not UtilClient.is_unset(request.user_data):
|
|
36656
|
+
query['UserData'] = request.user_data
|
|
36657
|
+
body = {}
|
|
36658
|
+
if not UtilClient.is_unset(request.editing_config):
|
|
36659
|
+
body['EditingConfig'] = request.editing_config
|
|
36660
|
+
if not UtilClient.is_unset(request.input_config):
|
|
36661
|
+
body['InputConfig'] = request.input_config
|
|
36662
|
+
req = open_api_models.OpenApiRequest(
|
|
36663
|
+
query=OpenApiUtilClient.query(query),
|
|
36664
|
+
body=OpenApiUtilClient.parse_to_map(body)
|
|
36665
|
+
)
|
|
36666
|
+
params = open_api_models.Params(
|
|
36667
|
+
action='SubmitSceneTimelineOrganizationJob',
|
|
36668
|
+
version='2020-11-09',
|
|
36669
|
+
protocol='HTTPS',
|
|
36670
|
+
pathname='/',
|
|
36671
|
+
method='POST',
|
|
36672
|
+
auth_type='AK',
|
|
36673
|
+
style='RPC',
|
|
36674
|
+
req_body_type='formData',
|
|
36675
|
+
body_type='json'
|
|
36676
|
+
)
|
|
36677
|
+
return TeaCore.from_map(
|
|
36678
|
+
ice20201109_models.SubmitSceneTimelineOrganizationJobResponse(),
|
|
36679
|
+
await self.call_api_async(params, req, runtime)
|
|
36680
|
+
)
|
|
36681
|
+
|
|
36682
|
+
def submit_scene_timeline_organization_job(
|
|
36683
|
+
self,
|
|
36684
|
+
request: ice20201109_models.SubmitSceneTimelineOrganizationJobRequest,
|
|
36685
|
+
) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
|
|
36686
|
+
"""
|
|
36687
|
+
@summary 提交场景化时间线编排任务
|
|
36688
|
+
|
|
36689
|
+
@param request: SubmitSceneTimelineOrganizationJobRequest
|
|
36690
|
+
@return: SubmitSceneTimelineOrganizationJobResponse
|
|
36691
|
+
"""
|
|
36692
|
+
runtime = util_models.RuntimeOptions()
|
|
36693
|
+
return self.submit_scene_timeline_organization_job_with_options(request, runtime)
|
|
36694
|
+
|
|
36695
|
+
async def submit_scene_timeline_organization_job_async(
|
|
36696
|
+
self,
|
|
36697
|
+
request: ice20201109_models.SubmitSceneTimelineOrganizationJobRequest,
|
|
36698
|
+
) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
|
|
36699
|
+
"""
|
|
36700
|
+
@summary 提交场景化时间线编排任务
|
|
36701
|
+
|
|
36702
|
+
@param request: SubmitSceneTimelineOrganizationJobRequest
|
|
36703
|
+
@return: SubmitSceneTimelineOrganizationJobResponse
|
|
36704
|
+
"""
|
|
36705
|
+
runtime = util_models.RuntimeOptions()
|
|
36706
|
+
return await self.submit_scene_timeline_organization_job_with_options_async(request, runtime)
|
|
36707
|
+
|
|
36140
36708
|
def submit_screen_media_highlights_job_with_options(
|
|
36141
36709
|
self,
|
|
36142
36710
|
request: ice20201109_models.SubmitScreenMediaHighlightsJobRequest,
|