alibabacloud-ice20201109 6.8.4__py3-none-any.whl → 6.9.0__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.
@@ -1 +1 @@
1
- __version__ = '6.8.4'
1
+ __version__ = '6.9.0'
@@ -105,7 +105,11 @@ class Client(OpenApiClient):
105
105
  runtime: util_models.RuntimeOptions,
106
106
  ) -> ice20201109_models.ActiveAiRtcLicenseResponse:
107
107
  """
108
- @summary 激活AI实时互动授权信息
108
+ @summary Activates a specified license using the batch ID, authorization code, and device SN.
109
+
110
+ @description ## [](#)Usage notes
111
+ This API is used to activate a specific license for Real-time Conversational AI by providing a batch ID (`LicenseItemId`), authorization code (`AuthCode`), and device ID (`DeviceId`). Upon successful activation, the API returns a response containing the request ID, an error code, the request status, the HTTP status code, and the activated license information.
112
+ *Note**: Ensure that the provided batch ID, authorization code, and device ID are correct. Incorrect information may cause the activation to fail.
109
113
 
110
114
  @param request: ActiveAiRtcLicenseRequest
111
115
  @param runtime: runtime options for this request RuntimeOptions
@@ -144,7 +148,11 @@ class Client(OpenApiClient):
144
148
  runtime: util_models.RuntimeOptions,
145
149
  ) -> ice20201109_models.ActiveAiRtcLicenseResponse:
146
150
  """
147
- @summary 激活AI实时互动授权信息
151
+ @summary Activates a specified license using the batch ID, authorization code, and device SN.
152
+
153
+ @description ## [](#)Usage notes
154
+ This API is used to activate a specific license for Real-time Conversational AI by providing a batch ID (`LicenseItemId`), authorization code (`AuthCode`), and device ID (`DeviceId`). Upon successful activation, the API returns a response containing the request ID, an error code, the request status, the HTTP status code, and the activated license information.
155
+ *Note**: Ensure that the provided batch ID, authorization code, and device ID are correct. Incorrect information may cause the activation to fail.
148
156
 
149
157
  @param request: ActiveAiRtcLicenseRequest
150
158
  @param runtime: runtime options for this request RuntimeOptions
@@ -182,7 +190,11 @@ class Client(OpenApiClient):
182
190
  request: ice20201109_models.ActiveAiRtcLicenseRequest,
183
191
  ) -> ice20201109_models.ActiveAiRtcLicenseResponse:
184
192
  """
185
- @summary 激活AI实时互动授权信息
193
+ @summary Activates a specified license using the batch ID, authorization code, and device SN.
194
+
195
+ @description ## [](#)Usage notes
196
+ This API is used to activate a specific license for Real-time Conversational AI by providing a batch ID (`LicenseItemId`), authorization code (`AuthCode`), and device ID (`DeviceId`). Upon successful activation, the API returns a response containing the request ID, an error code, the request status, the HTTP status code, and the activated license information.
197
+ *Note**: Ensure that the provided batch ID, authorization code, and device ID are correct. Incorrect information may cause the activation to fail.
186
198
 
187
199
  @param request: ActiveAiRtcLicenseRequest
188
200
  @return: ActiveAiRtcLicenseResponse
@@ -195,7 +207,11 @@ class Client(OpenApiClient):
195
207
  request: ice20201109_models.ActiveAiRtcLicenseRequest,
196
208
  ) -> ice20201109_models.ActiveAiRtcLicenseResponse:
197
209
  """
198
- @summary 激活AI实时互动授权信息
210
+ @summary Activates a specified license using the batch ID, authorization code, and device SN.
211
+
212
+ @description ## [](#)Usage notes
213
+ This API is used to activate a specific license for Real-time Conversational AI by providing a batch ID (`LicenseItemId`), authorization code (`AuthCode`), and device ID (`DeviceId`). Upon successful activation, the API returns a response containing the request ID, an error code, the request status, the HTTP status code, and the activated license information.
214
+ *Note**: Ensure that the provided batch ID, authorization code, and device ID are correct. Incorrect information may cause the activation to fail.
199
215
 
200
216
  @param request: ActiveAiRtcLicenseRequest
201
217
  @return: ActiveAiRtcLicenseResponse
@@ -3243,6 +3259,110 @@ class Client(OpenApiClient):
3243
3259
  runtime = util_models.RuntimeOptions()
3244
3260
  return await self.create_hotword_library_with_options_async(request, runtime)
3245
3261
 
3262
+ def create_ipc_order_with_options(
3263
+ self,
3264
+ request: ice20201109_models.CreateIpcOrderRequest,
3265
+ runtime: util_models.RuntimeOptions,
3266
+ ) -> ice20201109_models.CreateIpcOrderResponse:
3267
+ """
3268
+ @summary IPC下单
3269
+
3270
+ @param request: CreateIpcOrderRequest
3271
+ @param runtime: runtime options for this request RuntimeOptions
3272
+ @return: CreateIpcOrderResponse
3273
+ """
3274
+ UtilClient.validate_model(request)
3275
+ query = {}
3276
+ if not UtilClient.is_unset(request.capability):
3277
+ query['Capability'] = request.capability
3278
+ if not UtilClient.is_unset(request.device_id):
3279
+ query['DeviceId'] = request.device_id
3280
+ if not UtilClient.is_unset(request.period):
3281
+ query['Period'] = request.period
3282
+ req = open_api_models.OpenApiRequest(
3283
+ query=OpenApiUtilClient.query(query)
3284
+ )
3285
+ params = open_api_models.Params(
3286
+ action='CreateIpcOrder',
3287
+ version='2020-11-09',
3288
+ protocol='HTTPS',
3289
+ pathname='/',
3290
+ method='POST',
3291
+ auth_type='AK',
3292
+ style='RPC',
3293
+ req_body_type='formData',
3294
+ body_type='json'
3295
+ )
3296
+ return TeaCore.from_map(
3297
+ ice20201109_models.CreateIpcOrderResponse(),
3298
+ self.call_api(params, req, runtime)
3299
+ )
3300
+
3301
+ async def create_ipc_order_with_options_async(
3302
+ self,
3303
+ request: ice20201109_models.CreateIpcOrderRequest,
3304
+ runtime: util_models.RuntimeOptions,
3305
+ ) -> ice20201109_models.CreateIpcOrderResponse:
3306
+ """
3307
+ @summary IPC下单
3308
+
3309
+ @param request: CreateIpcOrderRequest
3310
+ @param runtime: runtime options for this request RuntimeOptions
3311
+ @return: CreateIpcOrderResponse
3312
+ """
3313
+ UtilClient.validate_model(request)
3314
+ query = {}
3315
+ if not UtilClient.is_unset(request.capability):
3316
+ query['Capability'] = request.capability
3317
+ if not UtilClient.is_unset(request.device_id):
3318
+ query['DeviceId'] = request.device_id
3319
+ if not UtilClient.is_unset(request.period):
3320
+ query['Period'] = request.period
3321
+ req = open_api_models.OpenApiRequest(
3322
+ query=OpenApiUtilClient.query(query)
3323
+ )
3324
+ params = open_api_models.Params(
3325
+ action='CreateIpcOrder',
3326
+ version='2020-11-09',
3327
+ protocol='HTTPS',
3328
+ pathname='/',
3329
+ method='POST',
3330
+ auth_type='AK',
3331
+ style='RPC',
3332
+ req_body_type='formData',
3333
+ body_type='json'
3334
+ )
3335
+ return TeaCore.from_map(
3336
+ ice20201109_models.CreateIpcOrderResponse(),
3337
+ await self.call_api_async(params, req, runtime)
3338
+ )
3339
+
3340
+ def create_ipc_order(
3341
+ self,
3342
+ request: ice20201109_models.CreateIpcOrderRequest,
3343
+ ) -> ice20201109_models.CreateIpcOrderResponse:
3344
+ """
3345
+ @summary IPC下单
3346
+
3347
+ @param request: CreateIpcOrderRequest
3348
+ @return: CreateIpcOrderResponse
3349
+ """
3350
+ runtime = util_models.RuntimeOptions()
3351
+ return self.create_ipc_order_with_options(request, runtime)
3352
+
3353
+ async def create_ipc_order_async(
3354
+ self,
3355
+ request: ice20201109_models.CreateIpcOrderRequest,
3356
+ ) -> ice20201109_models.CreateIpcOrderResponse:
3357
+ """
3358
+ @summary IPC下单
3359
+
3360
+ @param request: CreateIpcOrderRequest
3361
+ @return: CreateIpcOrderResponse
3362
+ """
3363
+ runtime = util_models.RuntimeOptions()
3364
+ return await self.create_ipc_order_with_options_async(request, runtime)
3365
+
3246
3366
  def create_live_package_channel_with_options(
3247
3367
  self,
3248
3368
  request: ice20201109_models.CreateLivePackageChannelRequest,
@@ -12995,7 +13115,13 @@ class Client(OpenApiClient):
12995
13115
  runtime: util_models.RuntimeOptions,
12996
13116
  ) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
12997
13117
  """
12998
- @summary 获取AI实时互动授权码列表
13118
+ @summary Retrieves a list of Real-time Conversational AI authentication codes and their status for a specified batch.
13119
+
13120
+ @description ## [](#)Usage notes
13121
+ This API retrieves a list of authorization codes for a specific batch ID. You can filter the results by status and type.
13122
+ Pagination is supported via the `PageNo` and `PageSize` parameters.
13123
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records.
13124
+ `LicenseItemId` is a required parameter that specifies the batch to query.
12999
13125
 
13000
13126
  @param request: GetAiRtcAuthCodeListRequest
13001
13127
  @param runtime: runtime options for this request RuntimeOptions
@@ -13040,7 +13166,13 @@ class Client(OpenApiClient):
13040
13166
  runtime: util_models.RuntimeOptions,
13041
13167
  ) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
13042
13168
  """
13043
- @summary 获取AI实时互动授权码列表
13169
+ @summary Retrieves a list of Real-time Conversational AI authentication codes and their status for a specified batch.
13170
+
13171
+ @description ## [](#)Usage notes
13172
+ This API retrieves a list of authorization codes for a specific batch ID. You can filter the results by status and type.
13173
+ Pagination is supported via the `PageNo` and `PageSize` parameters.
13174
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records.
13175
+ `LicenseItemId` is a required parameter that specifies the batch to query.
13044
13176
 
13045
13177
  @param request: GetAiRtcAuthCodeListRequest
13046
13178
  @param runtime: runtime options for this request RuntimeOptions
@@ -13084,7 +13216,13 @@ class Client(OpenApiClient):
13084
13216
  request: ice20201109_models.GetAiRtcAuthCodeListRequest,
13085
13217
  ) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
13086
13218
  """
13087
- @summary 获取AI实时互动授权码列表
13219
+ @summary Retrieves a list of Real-time Conversational AI authentication codes and their status for a specified batch.
13220
+
13221
+ @description ## [](#)Usage notes
13222
+ This API retrieves a list of authorization codes for a specific batch ID. You can filter the results by status and type.
13223
+ Pagination is supported via the `PageNo` and `PageSize` parameters.
13224
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records.
13225
+ `LicenseItemId` is a required parameter that specifies the batch to query.
13088
13226
 
13089
13227
  @param request: GetAiRtcAuthCodeListRequest
13090
13228
  @return: GetAiRtcAuthCodeListResponse
@@ -13097,7 +13235,13 @@ class Client(OpenApiClient):
13097
13235
  request: ice20201109_models.GetAiRtcAuthCodeListRequest,
13098
13236
  ) -> ice20201109_models.GetAiRtcAuthCodeListResponse:
13099
13237
  """
13100
- @summary 获取AI实时互动授权码列表
13238
+ @summary Retrieves a list of Real-time Conversational AI authentication codes and their status for a specified batch.
13239
+
13240
+ @description ## [](#)Usage notes
13241
+ This API retrieves a list of authorization codes for a specific batch ID. You can filter the results by status and type.
13242
+ Pagination is supported via the `PageNo` and `PageSize` parameters.
13243
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records.
13244
+ `LicenseItemId` is a required parameter that specifies the batch to query.
13101
13245
 
13102
13246
  @param request: GetAiRtcAuthCodeListRequest
13103
13247
  @return: GetAiRtcAuthCodeListResponse
@@ -13111,7 +13255,12 @@ class Client(OpenApiClient):
13111
13255
  runtime: util_models.RuntimeOptions,
13112
13256
  ) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
13113
13257
  """
13114
- @summary 获取AI实时互动授权批次列表
13258
+ @summary Retrieves a list of license batches for Real-time Conversational AI based on specified filter criteria.
13259
+
13260
+ @description ## [](#)Usage notes
13261
+ This API allows you to retrieve a list of license batches for Real-time Conversational AI using filters such as Batch ID, status, and type.
13262
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records. Set it to `false` if you do not need this total.
13263
+ If no filter criteria are provided, the API returns information for all license batches.
13115
13264
 
13116
13265
  @param request: GetAiRtcLicenseInfoListRequest
13117
13266
  @param runtime: runtime options for this request RuntimeOptions
@@ -13156,7 +13305,12 @@ class Client(OpenApiClient):
13156
13305
  runtime: util_models.RuntimeOptions,
13157
13306
  ) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
13158
13307
  """
13159
- @summary 获取AI实时互动授权批次列表
13308
+ @summary Retrieves a list of license batches for Real-time Conversational AI based on specified filter criteria.
13309
+
13310
+ @description ## [](#)Usage notes
13311
+ This API allows you to retrieve a list of license batches for Real-time Conversational AI using filters such as Batch ID, status, and type.
13312
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records. Set it to `false` if you do not need this total.
13313
+ If no filter criteria are provided, the API returns information for all license batches.
13160
13314
 
13161
13315
  @param request: GetAiRtcLicenseInfoListRequest
13162
13316
  @param runtime: runtime options for this request RuntimeOptions
@@ -13200,7 +13354,12 @@ class Client(OpenApiClient):
13200
13354
  request: ice20201109_models.GetAiRtcLicenseInfoListRequest,
13201
13355
  ) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
13202
13356
  """
13203
- @summary 获取AI实时互动授权批次列表
13357
+ @summary Retrieves a list of license batches for Real-time Conversational AI based on specified filter criteria.
13358
+
13359
+ @description ## [](#)Usage notes
13360
+ This API allows you to retrieve a list of license batches for Real-time Conversational AI using filters such as Batch ID, status, and type.
13361
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records. Set it to `false` if you do not need this total.
13362
+ If no filter criteria are provided, the API returns information for all license batches.
13204
13363
 
13205
13364
  @param request: GetAiRtcLicenseInfoListRequest
13206
13365
  @return: GetAiRtcLicenseInfoListResponse
@@ -13213,7 +13372,12 @@ class Client(OpenApiClient):
13213
13372
  request: ice20201109_models.GetAiRtcLicenseInfoListRequest,
13214
13373
  ) -> ice20201109_models.GetAiRtcLicenseInfoListResponse:
13215
13374
  """
13216
- @summary 获取AI实时互动授权批次列表
13375
+ @summary Retrieves a list of license batches for Real-time Conversational AI based on specified filter criteria.
13376
+
13377
+ @description ## [](#)Usage notes
13378
+ This API allows you to retrieve a list of license batches for Real-time Conversational AI using filters such as Batch ID, status, and type.
13379
+ By default, the `NeedTotalCount` parameter is set to `true`, indicating that the response includes the total count of matching records. Set it to `false` if you do not need this total.
13380
+ If no filter criteria are provided, the API returns information for all license batches.
13217
13381
 
13218
13382
  @param request: GetAiRtcLicenseInfoListRequest
13219
13383
  @return: GetAiRtcLicenseInfoListResponse
@@ -14855,6 +15019,122 @@ class Client(OpenApiClient):
14855
15019
  runtime = util_models.RuntimeOptions()
14856
15020
  return await self.get_hotword_library_with_options_async(request, runtime)
14857
15021
 
15022
+ def get_ipc_device_info_with_options(
15023
+ self,
15024
+ request: ice20201109_models.GetIpcDeviceInfoRequest,
15025
+ runtime: util_models.RuntimeOptions,
15026
+ ) -> ice20201109_models.GetIpcDeviceInfoResponse:
15027
+ """
15028
+ @summary 查询IPC设备信息
15029
+
15030
+ @param request: GetIpcDeviceInfoRequest
15031
+ @param runtime: runtime options for this request RuntimeOptions
15032
+ @return: GetIpcDeviceInfoResponse
15033
+ """
15034
+ UtilClient.validate_model(request)
15035
+ query = {}
15036
+ if not UtilClient.is_unset(request.capability):
15037
+ query['Capability'] = request.capability
15038
+ if not UtilClient.is_unset(request.device_id):
15039
+ query['DeviceId'] = request.device_id
15040
+ if not UtilClient.is_unset(request.end_time):
15041
+ query['EndTime'] = request.end_time
15042
+ if not UtilClient.is_unset(request.page_no):
15043
+ query['PageNo'] = request.page_no
15044
+ if not UtilClient.is_unset(request.page_size):
15045
+ query['PageSize'] = request.page_size
15046
+ if not UtilClient.is_unset(request.start_time):
15047
+ query['StartTime'] = request.start_time
15048
+ req = open_api_models.OpenApiRequest(
15049
+ query=OpenApiUtilClient.query(query)
15050
+ )
15051
+ params = open_api_models.Params(
15052
+ action='GetIpcDeviceInfo',
15053
+ version='2020-11-09',
15054
+ protocol='HTTPS',
15055
+ pathname='/',
15056
+ method='POST',
15057
+ auth_type='AK',
15058
+ style='RPC',
15059
+ req_body_type='formData',
15060
+ body_type='json'
15061
+ )
15062
+ return TeaCore.from_map(
15063
+ ice20201109_models.GetIpcDeviceInfoResponse(),
15064
+ self.call_api(params, req, runtime)
15065
+ )
15066
+
15067
+ async def get_ipc_device_info_with_options_async(
15068
+ self,
15069
+ request: ice20201109_models.GetIpcDeviceInfoRequest,
15070
+ runtime: util_models.RuntimeOptions,
15071
+ ) -> ice20201109_models.GetIpcDeviceInfoResponse:
15072
+ """
15073
+ @summary 查询IPC设备信息
15074
+
15075
+ @param request: GetIpcDeviceInfoRequest
15076
+ @param runtime: runtime options for this request RuntimeOptions
15077
+ @return: GetIpcDeviceInfoResponse
15078
+ """
15079
+ UtilClient.validate_model(request)
15080
+ query = {}
15081
+ if not UtilClient.is_unset(request.capability):
15082
+ query['Capability'] = request.capability
15083
+ if not UtilClient.is_unset(request.device_id):
15084
+ query['DeviceId'] = request.device_id
15085
+ if not UtilClient.is_unset(request.end_time):
15086
+ query['EndTime'] = request.end_time
15087
+ if not UtilClient.is_unset(request.page_no):
15088
+ query['PageNo'] = request.page_no
15089
+ if not UtilClient.is_unset(request.page_size):
15090
+ query['PageSize'] = request.page_size
15091
+ if not UtilClient.is_unset(request.start_time):
15092
+ query['StartTime'] = request.start_time
15093
+ req = open_api_models.OpenApiRequest(
15094
+ query=OpenApiUtilClient.query(query)
15095
+ )
15096
+ params = open_api_models.Params(
15097
+ action='GetIpcDeviceInfo',
15098
+ version='2020-11-09',
15099
+ protocol='HTTPS',
15100
+ pathname='/',
15101
+ method='POST',
15102
+ auth_type='AK',
15103
+ style='RPC',
15104
+ req_body_type='formData',
15105
+ body_type='json'
15106
+ )
15107
+ return TeaCore.from_map(
15108
+ ice20201109_models.GetIpcDeviceInfoResponse(),
15109
+ await self.call_api_async(params, req, runtime)
15110
+ )
15111
+
15112
+ def get_ipc_device_info(
15113
+ self,
15114
+ request: ice20201109_models.GetIpcDeviceInfoRequest,
15115
+ ) -> ice20201109_models.GetIpcDeviceInfoResponse:
15116
+ """
15117
+ @summary 查询IPC设备信息
15118
+
15119
+ @param request: GetIpcDeviceInfoRequest
15120
+ @return: GetIpcDeviceInfoResponse
15121
+ """
15122
+ runtime = util_models.RuntimeOptions()
15123
+ return self.get_ipc_device_info_with_options(request, runtime)
15124
+
15125
+ async def get_ipc_device_info_async(
15126
+ self,
15127
+ request: ice20201109_models.GetIpcDeviceInfoRequest,
15128
+ ) -> ice20201109_models.GetIpcDeviceInfoResponse:
15129
+ """
15130
+ @summary 查询IPC设备信息
15131
+
15132
+ @param request: GetIpcDeviceInfoRequest
15133
+ @return: GetIpcDeviceInfoResponse
15134
+ """
15135
+ runtime = util_models.RuntimeOptions()
15136
+ return await self.get_ipc_device_info_with_options_async(request, runtime)
15137
+
14858
15138
  def get_live_editing_index_file_with_options(
14859
15139
  self,
14860
15140
  request: ice20201109_models.GetLiveEditingIndexFileRequest,
@@ -27577,6 +27857,118 @@ class Client(OpenApiClient):
27577
27857
  runtime = util_models.RuntimeOptions()
27578
27858
  return await self.query_iproduction_job_with_options_async(request, runtime)
27579
27859
 
27860
+ def query_ipc_quota_with_options(
27861
+ self,
27862
+ request: ice20201109_models.QueryIpcQuotaRequest,
27863
+ runtime: util_models.RuntimeOptions,
27864
+ ) -> ice20201109_models.QueryIpcQuotaResponse:
27865
+ """
27866
+ @summary 查询IPC用量
27867
+
27868
+ @param request: QueryIpcQuotaRequest
27869
+ @param runtime: runtime options for this request RuntimeOptions
27870
+ @return: QueryIpcQuotaResponse
27871
+ """
27872
+ UtilClient.validate_model(request)
27873
+ query = {}
27874
+ if not UtilClient.is_unset(request.capability):
27875
+ query['Capability'] = request.capability
27876
+ if not UtilClient.is_unset(request.end_time):
27877
+ query['EndTime'] = request.end_time
27878
+ if not UtilClient.is_unset(request.page_no):
27879
+ query['PageNo'] = request.page_no
27880
+ if not UtilClient.is_unset(request.page_size):
27881
+ query['PageSize'] = request.page_size
27882
+ if not UtilClient.is_unset(request.start_time):
27883
+ query['StartTime'] = request.start_time
27884
+ req = open_api_models.OpenApiRequest(
27885
+ query=OpenApiUtilClient.query(query)
27886
+ )
27887
+ params = open_api_models.Params(
27888
+ action='QueryIpcQuota',
27889
+ version='2020-11-09',
27890
+ protocol='HTTPS',
27891
+ pathname='/',
27892
+ method='POST',
27893
+ auth_type='AK',
27894
+ style='RPC',
27895
+ req_body_type='formData',
27896
+ body_type='json'
27897
+ )
27898
+ return TeaCore.from_map(
27899
+ ice20201109_models.QueryIpcQuotaResponse(),
27900
+ self.call_api(params, req, runtime)
27901
+ )
27902
+
27903
+ async def query_ipc_quota_with_options_async(
27904
+ self,
27905
+ request: ice20201109_models.QueryIpcQuotaRequest,
27906
+ runtime: util_models.RuntimeOptions,
27907
+ ) -> ice20201109_models.QueryIpcQuotaResponse:
27908
+ """
27909
+ @summary 查询IPC用量
27910
+
27911
+ @param request: QueryIpcQuotaRequest
27912
+ @param runtime: runtime options for this request RuntimeOptions
27913
+ @return: QueryIpcQuotaResponse
27914
+ """
27915
+ UtilClient.validate_model(request)
27916
+ query = {}
27917
+ if not UtilClient.is_unset(request.capability):
27918
+ query['Capability'] = request.capability
27919
+ if not UtilClient.is_unset(request.end_time):
27920
+ query['EndTime'] = request.end_time
27921
+ if not UtilClient.is_unset(request.page_no):
27922
+ query['PageNo'] = request.page_no
27923
+ if not UtilClient.is_unset(request.page_size):
27924
+ query['PageSize'] = request.page_size
27925
+ if not UtilClient.is_unset(request.start_time):
27926
+ query['StartTime'] = request.start_time
27927
+ req = open_api_models.OpenApiRequest(
27928
+ query=OpenApiUtilClient.query(query)
27929
+ )
27930
+ params = open_api_models.Params(
27931
+ action='QueryIpcQuota',
27932
+ version='2020-11-09',
27933
+ protocol='HTTPS',
27934
+ pathname='/',
27935
+ method='POST',
27936
+ auth_type='AK',
27937
+ style='RPC',
27938
+ req_body_type='formData',
27939
+ body_type='json'
27940
+ )
27941
+ return TeaCore.from_map(
27942
+ ice20201109_models.QueryIpcQuotaResponse(),
27943
+ await self.call_api_async(params, req, runtime)
27944
+ )
27945
+
27946
+ def query_ipc_quota(
27947
+ self,
27948
+ request: ice20201109_models.QueryIpcQuotaRequest,
27949
+ ) -> ice20201109_models.QueryIpcQuotaResponse:
27950
+ """
27951
+ @summary 查询IPC用量
27952
+
27953
+ @param request: QueryIpcQuotaRequest
27954
+ @return: QueryIpcQuotaResponse
27955
+ """
27956
+ runtime = util_models.RuntimeOptions()
27957
+ return self.query_ipc_quota_with_options(request, runtime)
27958
+
27959
+ async def query_ipc_quota_async(
27960
+ self,
27961
+ request: ice20201109_models.QueryIpcQuotaRequest,
27962
+ ) -> ice20201109_models.QueryIpcQuotaResponse:
27963
+ """
27964
+ @summary 查询IPC用量
27965
+
27966
+ @param request: QueryIpcQuotaRequest
27967
+ @return: QueryIpcQuotaResponse
27968
+ """
27969
+ runtime = util_models.RuntimeOptions()
27970
+ return await self.query_ipc_quota_with_options_async(request, runtime)
27971
+
27580
27972
  def query_media_censor_job_detail_with_options(
27581
27973
  self,
27582
27974
  request: ice20201109_models.QueryMediaCensorJobDetailRequest,
@@ -36371,7 +36763,9 @@ class Client(OpenApiClient):
36371
36763
  runtime: util_models.RuntimeOptions,
36372
36764
  ) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
36373
36765
  """
36374
- @summary 提交场景化批量合成任务
36766
+ @summary Submits a batch job to render multiple videos by providing a list of editing project IDs.
36767
+
36768
+ @description After submitting a job, you can call ListBatchMediaProducingJob to retrieve all matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call GetBatchMediaProducingJob.
36375
36769
 
36376
36770
  @param request: SubmitSceneBatchEditingJobRequest
36377
36771
  @param runtime: runtime options for this request RuntimeOptions
@@ -36410,7 +36804,9 @@ class Client(OpenApiClient):
36410
36804
  runtime: util_models.RuntimeOptions,
36411
36805
  ) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
36412
36806
  """
36413
- @summary 提交场景化批量合成任务
36807
+ @summary Submits a batch job to render multiple videos by providing a list of editing project IDs.
36808
+
36809
+ @description After submitting a job, you can call ListBatchMediaProducingJob to retrieve all matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call GetBatchMediaProducingJob.
36414
36810
 
36415
36811
  @param request: SubmitSceneBatchEditingJobRequest
36416
36812
  @param runtime: runtime options for this request RuntimeOptions
@@ -36448,7 +36844,9 @@ class Client(OpenApiClient):
36448
36844
  request: ice20201109_models.SubmitSceneBatchEditingJobRequest,
36449
36845
  ) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
36450
36846
  """
36451
- @summary 提交场景化批量合成任务
36847
+ @summary Submits a batch job to render multiple videos by providing a list of editing project IDs.
36848
+
36849
+ @description After submitting a job, you can call ListBatchMediaProducingJob to retrieve all matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call GetBatchMediaProducingJob.
36452
36850
 
36453
36851
  @param request: SubmitSceneBatchEditingJobRequest
36454
36852
  @return: SubmitSceneBatchEditingJobResponse
@@ -36461,7 +36859,9 @@ class Client(OpenApiClient):
36461
36859
  request: ice20201109_models.SubmitSceneBatchEditingJobRequest,
36462
36860
  ) -> ice20201109_models.SubmitSceneBatchEditingJobResponse:
36463
36861
  """
36464
- @summary 提交场景化批量合成任务
36862
+ @summary Submits a batch job to render multiple videos by providing a list of editing project IDs.
36863
+
36864
+ @description After submitting a job, you can call ListBatchMediaProducingJob to retrieve all matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call GetBatchMediaProducingJob.
36465
36865
 
36466
36866
  @param request: SubmitSceneBatchEditingJobRequest
36467
36867
  @return: SubmitSceneBatchEditingJobResponse
@@ -36603,7 +37003,10 @@ class Client(OpenApiClient):
36603
37003
  runtime: util_models.RuntimeOptions,
36604
37004
  ) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
36605
37005
  """
36606
- @summary 提交场景化时间线编排任务
37006
+ @summary Arranges media assets, including videos, images, background music, and voiceovers, into a complete timeline based on media selection results, and creates an editing project for preview. Two scenarios are supported: image-text matching and highlight mashup.
37007
+
37008
+ @description After submitting a job, you can call [ListBatchMediaProducingJob](https://help.aliyun.com/document_detail/2803751.html) to retrieve matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call [GetBatchMediaProducingJob](https://help.aliyun.com/document_detail/2693269.html).
37009
+ - The feature is in public preview and does not charge fees.
36607
37010
 
36608
37011
  @param request: SubmitSceneTimelineOrganizationJobRequest
36609
37012
  @param runtime: runtime options for this request RuntimeOptions
@@ -36650,7 +37053,10 @@ class Client(OpenApiClient):
36650
37053
  runtime: util_models.RuntimeOptions,
36651
37054
  ) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
36652
37055
  """
36653
- @summary 提交场景化时间线编排任务
37056
+ @summary Arranges media assets, including videos, images, background music, and voiceovers, into a complete timeline based on media selection results, and creates an editing project for preview. Two scenarios are supported: image-text matching and highlight mashup.
37057
+
37058
+ @description After submitting a job, you can call [ListBatchMediaProducingJob](https://help.aliyun.com/document_detail/2803751.html) to retrieve matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call [GetBatchMediaProducingJob](https://help.aliyun.com/document_detail/2693269.html).
37059
+ - The feature is in public preview and does not charge fees.
36654
37060
 
36655
37061
  @param request: SubmitSceneTimelineOrganizationJobRequest
36656
37062
  @param runtime: runtime options for this request RuntimeOptions
@@ -36696,7 +37102,10 @@ class Client(OpenApiClient):
36696
37102
  request: ice20201109_models.SubmitSceneTimelineOrganizationJobRequest,
36697
37103
  ) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
36698
37104
  """
36699
- @summary 提交场景化时间线编排任务
37105
+ @summary Arranges media assets, including videos, images, background music, and voiceovers, into a complete timeline based on media selection results, and creates an editing project for preview. Two scenarios are supported: image-text matching and highlight mashup.
37106
+
37107
+ @description After submitting a job, you can call [ListBatchMediaProducingJob](https://help.aliyun.com/document_detail/2803751.html) to retrieve matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call [GetBatchMediaProducingJob](https://help.aliyun.com/document_detail/2693269.html).
37108
+ - The feature is in public preview and does not charge fees.
36700
37109
 
36701
37110
  @param request: SubmitSceneTimelineOrganizationJobRequest
36702
37111
  @return: SubmitSceneTimelineOrganizationJobResponse
@@ -36709,7 +37118,10 @@ class Client(OpenApiClient):
36709
37118
  request: ice20201109_models.SubmitSceneTimelineOrganizationJobRequest,
36710
37119
  ) -> ice20201109_models.SubmitSceneTimelineOrganizationJobResponse:
36711
37120
  """
36712
- @summary 提交场景化时间线编排任务
37121
+ @summary Arranges media assets, including videos, images, background music, and voiceovers, into a complete timeline based on media selection results, and creates an editing project for preview. Two scenarios are supported: image-text matching and highlight mashup.
37122
+
37123
+ @description After submitting a job, you can call [ListBatchMediaProducingJob](https://help.aliyun.com/document_detail/2803751.html) to retrieve matching jobs. To get detailed information for a specific job, including its status, output media asset IDs, and URLs, call [GetBatchMediaProducingJob](https://help.aliyun.com/document_detail/2693269.html).
37124
+ - The feature is in public preview and does not charge fees.
36713
37125
 
36714
37126
  @param request: SubmitSceneTimelineOrganizationJobRequest
36715
37127
  @return: SubmitSceneTimelineOrganizationJobResponse