alibabacloud-ice20201109 6.8.5__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.
- alibabacloud_ice20201109/__init__.py +1 -1
- alibabacloud_ice20201109/client.py +332 -0
- alibabacloud_ice20201109/models.py +558 -0
- {alibabacloud_ice20201109-6.8.5.dist-info → alibabacloud_ice20201109-6.9.0.dist-info}/METADATA +1 -1
- alibabacloud_ice20201109-6.9.0.dist-info/RECORD +8 -0
- alibabacloud_ice20201109-6.8.5.dist-info/RECORD +0 -8
- {alibabacloud_ice20201109-6.8.5.dist-info → alibabacloud_ice20201109-6.9.0.dist-info}/LICENSE +0 -0
- {alibabacloud_ice20201109-6.8.5.dist-info → alibabacloud_ice20201109-6.9.0.dist-info}/WHEEL +0 -0
- {alibabacloud_ice20201109-6.8.5.dist-info → alibabacloud_ice20201109-6.9.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.
|
|
1
|
+
__version__ = '6.9.0'
|
|
@@ -3259,6 +3259,110 @@ class Client(OpenApiClient):
|
|
|
3259
3259
|
runtime = util_models.RuntimeOptions()
|
|
3260
3260
|
return await self.create_hotword_library_with_options_async(request, runtime)
|
|
3261
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
|
+
|
|
3262
3366
|
def create_live_package_channel_with_options(
|
|
3263
3367
|
self,
|
|
3264
3368
|
request: ice20201109_models.CreateLivePackageChannelRequest,
|
|
@@ -14915,6 +15019,122 @@ class Client(OpenApiClient):
|
|
|
14915
15019
|
runtime = util_models.RuntimeOptions()
|
|
14916
15020
|
return await self.get_hotword_library_with_options_async(request, runtime)
|
|
14917
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
|
+
|
|
14918
15138
|
def get_live_editing_index_file_with_options(
|
|
14919
15139
|
self,
|
|
14920
15140
|
request: ice20201109_models.GetLiveEditingIndexFileRequest,
|
|
@@ -27637,6 +27857,118 @@ class Client(OpenApiClient):
|
|
|
27637
27857
|
runtime = util_models.RuntimeOptions()
|
|
27638
27858
|
return await self.query_iproduction_job_with_options_async(request, runtime)
|
|
27639
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
|
+
|
|
27640
27972
|
def query_media_censor_job_detail_with_options(
|
|
27641
27973
|
self,
|
|
27642
27974
|
request: ice20201109_models.QueryMediaCensorJobDetailRequest,
|
|
@@ -13276,6 +13276,119 @@ class CreateHotwordLibraryResponse(TeaModel):
|
|
|
13276
13276
|
return self
|
|
13277
13277
|
|
|
13278
13278
|
|
|
13279
|
+
class CreateIpcOrderRequest(TeaModel):
|
|
13280
|
+
def __init__(
|
|
13281
|
+
self,
|
|
13282
|
+
capability: str = None,
|
|
13283
|
+
device_id: str = None,
|
|
13284
|
+
period: str = None,
|
|
13285
|
+
):
|
|
13286
|
+
self.capability = capability
|
|
13287
|
+
self.device_id = device_id
|
|
13288
|
+
self.period = period
|
|
13289
|
+
|
|
13290
|
+
def validate(self):
|
|
13291
|
+
pass
|
|
13292
|
+
|
|
13293
|
+
def to_map(self):
|
|
13294
|
+
_map = super().to_map()
|
|
13295
|
+
if _map is not None:
|
|
13296
|
+
return _map
|
|
13297
|
+
|
|
13298
|
+
result = dict()
|
|
13299
|
+
if self.capability is not None:
|
|
13300
|
+
result['Capability'] = self.capability
|
|
13301
|
+
if self.device_id is not None:
|
|
13302
|
+
result['DeviceId'] = self.device_id
|
|
13303
|
+
if self.period is not None:
|
|
13304
|
+
result['Period'] = self.period
|
|
13305
|
+
return result
|
|
13306
|
+
|
|
13307
|
+
def from_map(self, m: dict = None):
|
|
13308
|
+
m = m or dict()
|
|
13309
|
+
if m.get('Capability') is not None:
|
|
13310
|
+
self.capability = m.get('Capability')
|
|
13311
|
+
if m.get('DeviceId') is not None:
|
|
13312
|
+
self.device_id = m.get('DeviceId')
|
|
13313
|
+
if m.get('Period') is not None:
|
|
13314
|
+
self.period = m.get('Period')
|
|
13315
|
+
return self
|
|
13316
|
+
|
|
13317
|
+
|
|
13318
|
+
class CreateIpcOrderResponseBody(TeaModel):
|
|
13319
|
+
def __init__(
|
|
13320
|
+
self,
|
|
13321
|
+
purchase_status: str = None,
|
|
13322
|
+
request_id: str = None,
|
|
13323
|
+
):
|
|
13324
|
+
self.purchase_status = purchase_status
|
|
13325
|
+
self.request_id = request_id
|
|
13326
|
+
|
|
13327
|
+
def validate(self):
|
|
13328
|
+
pass
|
|
13329
|
+
|
|
13330
|
+
def to_map(self):
|
|
13331
|
+
_map = super().to_map()
|
|
13332
|
+
if _map is not None:
|
|
13333
|
+
return _map
|
|
13334
|
+
|
|
13335
|
+
result = dict()
|
|
13336
|
+
if self.purchase_status is not None:
|
|
13337
|
+
result['PurchaseStatus'] = self.purchase_status
|
|
13338
|
+
if self.request_id is not None:
|
|
13339
|
+
result['RequestId'] = self.request_id
|
|
13340
|
+
return result
|
|
13341
|
+
|
|
13342
|
+
def from_map(self, m: dict = None):
|
|
13343
|
+
m = m or dict()
|
|
13344
|
+
if m.get('PurchaseStatus') is not None:
|
|
13345
|
+
self.purchase_status = m.get('PurchaseStatus')
|
|
13346
|
+
if m.get('RequestId') is not None:
|
|
13347
|
+
self.request_id = m.get('RequestId')
|
|
13348
|
+
return self
|
|
13349
|
+
|
|
13350
|
+
|
|
13351
|
+
class CreateIpcOrderResponse(TeaModel):
|
|
13352
|
+
def __init__(
|
|
13353
|
+
self,
|
|
13354
|
+
headers: Dict[str, str] = None,
|
|
13355
|
+
status_code: int = None,
|
|
13356
|
+
body: CreateIpcOrderResponseBody = None,
|
|
13357
|
+
):
|
|
13358
|
+
self.headers = headers
|
|
13359
|
+
self.status_code = status_code
|
|
13360
|
+
self.body = body
|
|
13361
|
+
|
|
13362
|
+
def validate(self):
|
|
13363
|
+
if self.body:
|
|
13364
|
+
self.body.validate()
|
|
13365
|
+
|
|
13366
|
+
def to_map(self):
|
|
13367
|
+
_map = super().to_map()
|
|
13368
|
+
if _map is not None:
|
|
13369
|
+
return _map
|
|
13370
|
+
|
|
13371
|
+
result = dict()
|
|
13372
|
+
if self.headers is not None:
|
|
13373
|
+
result['headers'] = self.headers
|
|
13374
|
+
if self.status_code is not None:
|
|
13375
|
+
result['statusCode'] = self.status_code
|
|
13376
|
+
if self.body is not None:
|
|
13377
|
+
result['body'] = self.body.to_map()
|
|
13378
|
+
return result
|
|
13379
|
+
|
|
13380
|
+
def from_map(self, m: dict = None):
|
|
13381
|
+
m = m or dict()
|
|
13382
|
+
if m.get('headers') is not None:
|
|
13383
|
+
self.headers = m.get('headers')
|
|
13384
|
+
if m.get('statusCode') is not None:
|
|
13385
|
+
self.status_code = m.get('statusCode')
|
|
13386
|
+
if m.get('body') is not None:
|
|
13387
|
+
temp_model = CreateIpcOrderResponseBody()
|
|
13388
|
+
self.body = temp_model.from_map(m['body'])
|
|
13389
|
+
return self
|
|
13390
|
+
|
|
13391
|
+
|
|
13279
13392
|
class CreateLivePackageChannelRequest(TeaModel):
|
|
13280
13393
|
def __init__(
|
|
13281
13394
|
self,
|
|
@@ -32335,6 +32448,190 @@ class GetHotwordLibraryResponse(TeaModel):
|
|
|
32335
32448
|
return self
|
|
32336
32449
|
|
|
32337
32450
|
|
|
32451
|
+
class GetIpcDeviceInfoRequest(TeaModel):
|
|
32452
|
+
def __init__(
|
|
32453
|
+
self,
|
|
32454
|
+
capability: str = None,
|
|
32455
|
+
device_id: str = None,
|
|
32456
|
+
end_time: str = None,
|
|
32457
|
+
page_no: int = None,
|
|
32458
|
+
page_size: int = None,
|
|
32459
|
+
start_time: str = None,
|
|
32460
|
+
):
|
|
32461
|
+
self.capability = capability
|
|
32462
|
+
self.device_id = device_id
|
|
32463
|
+
self.end_time = end_time
|
|
32464
|
+
self.page_no = page_no
|
|
32465
|
+
self.page_size = page_size
|
|
32466
|
+
self.start_time = start_time
|
|
32467
|
+
|
|
32468
|
+
def validate(self):
|
|
32469
|
+
pass
|
|
32470
|
+
|
|
32471
|
+
def to_map(self):
|
|
32472
|
+
_map = super().to_map()
|
|
32473
|
+
if _map is not None:
|
|
32474
|
+
return _map
|
|
32475
|
+
|
|
32476
|
+
result = dict()
|
|
32477
|
+
if self.capability is not None:
|
|
32478
|
+
result['Capability'] = self.capability
|
|
32479
|
+
if self.device_id is not None:
|
|
32480
|
+
result['DeviceId'] = self.device_id
|
|
32481
|
+
if self.end_time is not None:
|
|
32482
|
+
result['EndTime'] = self.end_time
|
|
32483
|
+
if self.page_no is not None:
|
|
32484
|
+
result['PageNo'] = self.page_no
|
|
32485
|
+
if self.page_size is not None:
|
|
32486
|
+
result['PageSize'] = self.page_size
|
|
32487
|
+
if self.start_time is not None:
|
|
32488
|
+
result['StartTime'] = self.start_time
|
|
32489
|
+
return result
|
|
32490
|
+
|
|
32491
|
+
def from_map(self, m: dict = None):
|
|
32492
|
+
m = m or dict()
|
|
32493
|
+
if m.get('Capability') is not None:
|
|
32494
|
+
self.capability = m.get('Capability')
|
|
32495
|
+
if m.get('DeviceId') is not None:
|
|
32496
|
+
self.device_id = m.get('DeviceId')
|
|
32497
|
+
if m.get('EndTime') is not None:
|
|
32498
|
+
self.end_time = m.get('EndTime')
|
|
32499
|
+
if m.get('PageNo') is not None:
|
|
32500
|
+
self.page_no = m.get('PageNo')
|
|
32501
|
+
if m.get('PageSize') is not None:
|
|
32502
|
+
self.page_size = m.get('PageSize')
|
|
32503
|
+
if m.get('StartTime') is not None:
|
|
32504
|
+
self.start_time = m.get('StartTime')
|
|
32505
|
+
return self
|
|
32506
|
+
|
|
32507
|
+
|
|
32508
|
+
class GetIpcDeviceInfoResponseBodyDeviceInfos(TeaModel):
|
|
32509
|
+
def __init__(
|
|
32510
|
+
self,
|
|
32511
|
+
capability: str = None,
|
|
32512
|
+
device_id: str = None,
|
|
32513
|
+
expire_time: str = None,
|
|
32514
|
+
):
|
|
32515
|
+
self.capability = capability
|
|
32516
|
+
self.device_id = device_id
|
|
32517
|
+
self.expire_time = expire_time
|
|
32518
|
+
|
|
32519
|
+
def validate(self):
|
|
32520
|
+
pass
|
|
32521
|
+
|
|
32522
|
+
def to_map(self):
|
|
32523
|
+
_map = super().to_map()
|
|
32524
|
+
if _map is not None:
|
|
32525
|
+
return _map
|
|
32526
|
+
|
|
32527
|
+
result = dict()
|
|
32528
|
+
if self.capability is not None:
|
|
32529
|
+
result['Capability'] = self.capability
|
|
32530
|
+
if self.device_id is not None:
|
|
32531
|
+
result['DeviceId'] = self.device_id
|
|
32532
|
+
if self.expire_time is not None:
|
|
32533
|
+
result['ExpireTime'] = self.expire_time
|
|
32534
|
+
return result
|
|
32535
|
+
|
|
32536
|
+
def from_map(self, m: dict = None):
|
|
32537
|
+
m = m or dict()
|
|
32538
|
+
if m.get('Capability') is not None:
|
|
32539
|
+
self.capability = m.get('Capability')
|
|
32540
|
+
if m.get('DeviceId') is not None:
|
|
32541
|
+
self.device_id = m.get('DeviceId')
|
|
32542
|
+
if m.get('ExpireTime') is not None:
|
|
32543
|
+
self.expire_time = m.get('ExpireTime')
|
|
32544
|
+
return self
|
|
32545
|
+
|
|
32546
|
+
|
|
32547
|
+
class GetIpcDeviceInfoResponseBody(TeaModel):
|
|
32548
|
+
def __init__(
|
|
32549
|
+
self,
|
|
32550
|
+
device_infos: List[GetIpcDeviceInfoResponseBodyDeviceInfos] = None,
|
|
32551
|
+
request_id: str = None,
|
|
32552
|
+
total: int = None,
|
|
32553
|
+
):
|
|
32554
|
+
self.device_infos = device_infos
|
|
32555
|
+
self.request_id = request_id
|
|
32556
|
+
self.total = total
|
|
32557
|
+
|
|
32558
|
+
def validate(self):
|
|
32559
|
+
if self.device_infos:
|
|
32560
|
+
for k in self.device_infos:
|
|
32561
|
+
if k:
|
|
32562
|
+
k.validate()
|
|
32563
|
+
|
|
32564
|
+
def to_map(self):
|
|
32565
|
+
_map = super().to_map()
|
|
32566
|
+
if _map is not None:
|
|
32567
|
+
return _map
|
|
32568
|
+
|
|
32569
|
+
result = dict()
|
|
32570
|
+
result['DeviceInfos'] = []
|
|
32571
|
+
if self.device_infos is not None:
|
|
32572
|
+
for k in self.device_infos:
|
|
32573
|
+
result['DeviceInfos'].append(k.to_map() if k else None)
|
|
32574
|
+
if self.request_id is not None:
|
|
32575
|
+
result['RequestId'] = self.request_id
|
|
32576
|
+
if self.total is not None:
|
|
32577
|
+
result['Total'] = self.total
|
|
32578
|
+
return result
|
|
32579
|
+
|
|
32580
|
+
def from_map(self, m: dict = None):
|
|
32581
|
+
m = m or dict()
|
|
32582
|
+
self.device_infos = []
|
|
32583
|
+
if m.get('DeviceInfos') is not None:
|
|
32584
|
+
for k in m.get('DeviceInfos'):
|
|
32585
|
+
temp_model = GetIpcDeviceInfoResponseBodyDeviceInfos()
|
|
32586
|
+
self.device_infos.append(temp_model.from_map(k))
|
|
32587
|
+
if m.get('RequestId') is not None:
|
|
32588
|
+
self.request_id = m.get('RequestId')
|
|
32589
|
+
if m.get('Total') is not None:
|
|
32590
|
+
self.total = m.get('Total')
|
|
32591
|
+
return self
|
|
32592
|
+
|
|
32593
|
+
|
|
32594
|
+
class GetIpcDeviceInfoResponse(TeaModel):
|
|
32595
|
+
def __init__(
|
|
32596
|
+
self,
|
|
32597
|
+
headers: Dict[str, str] = None,
|
|
32598
|
+
status_code: int = None,
|
|
32599
|
+
body: GetIpcDeviceInfoResponseBody = None,
|
|
32600
|
+
):
|
|
32601
|
+
self.headers = headers
|
|
32602
|
+
self.status_code = status_code
|
|
32603
|
+
self.body = body
|
|
32604
|
+
|
|
32605
|
+
def validate(self):
|
|
32606
|
+
if self.body:
|
|
32607
|
+
self.body.validate()
|
|
32608
|
+
|
|
32609
|
+
def to_map(self):
|
|
32610
|
+
_map = super().to_map()
|
|
32611
|
+
if _map is not None:
|
|
32612
|
+
return _map
|
|
32613
|
+
|
|
32614
|
+
result = dict()
|
|
32615
|
+
if self.headers is not None:
|
|
32616
|
+
result['headers'] = self.headers
|
|
32617
|
+
if self.status_code is not None:
|
|
32618
|
+
result['statusCode'] = self.status_code
|
|
32619
|
+
if self.body is not None:
|
|
32620
|
+
result['body'] = self.body.to_map()
|
|
32621
|
+
return result
|
|
32622
|
+
|
|
32623
|
+
def from_map(self, m: dict = None):
|
|
32624
|
+
m = m or dict()
|
|
32625
|
+
if m.get('headers') is not None:
|
|
32626
|
+
self.headers = m.get('headers')
|
|
32627
|
+
if m.get('statusCode') is not None:
|
|
32628
|
+
self.status_code = m.get('statusCode')
|
|
32629
|
+
if m.get('body') is not None:
|
|
32630
|
+
temp_model = GetIpcDeviceInfoResponseBody()
|
|
32631
|
+
self.body = temp_model.from_map(m['body'])
|
|
32632
|
+
return self
|
|
32633
|
+
|
|
32634
|
+
|
|
32338
32635
|
class GetLiveEditingIndexFileRequest(TeaModel):
|
|
32339
32636
|
def __init__(
|
|
32340
32637
|
self,
|
|
@@ -71231,6 +71528,190 @@ class QueryIProductionJobResponse(TeaModel):
|
|
|
71231
71528
|
return self
|
|
71232
71529
|
|
|
71233
71530
|
|
|
71531
|
+
class QueryIpcQuotaRequest(TeaModel):
|
|
71532
|
+
def __init__(
|
|
71533
|
+
self,
|
|
71534
|
+
capability: str = None,
|
|
71535
|
+
end_time: str = None,
|
|
71536
|
+
page_no: int = None,
|
|
71537
|
+
page_size: int = None,
|
|
71538
|
+
start_time: str = None,
|
|
71539
|
+
):
|
|
71540
|
+
self.capability = capability
|
|
71541
|
+
self.end_time = end_time
|
|
71542
|
+
self.page_no = page_no
|
|
71543
|
+
self.page_size = page_size
|
|
71544
|
+
self.start_time = start_time
|
|
71545
|
+
|
|
71546
|
+
def validate(self):
|
|
71547
|
+
pass
|
|
71548
|
+
|
|
71549
|
+
def to_map(self):
|
|
71550
|
+
_map = super().to_map()
|
|
71551
|
+
if _map is not None:
|
|
71552
|
+
return _map
|
|
71553
|
+
|
|
71554
|
+
result = dict()
|
|
71555
|
+
if self.capability is not None:
|
|
71556
|
+
result['Capability'] = self.capability
|
|
71557
|
+
if self.end_time is not None:
|
|
71558
|
+
result['EndTime'] = self.end_time
|
|
71559
|
+
if self.page_no is not None:
|
|
71560
|
+
result['PageNo'] = self.page_no
|
|
71561
|
+
if self.page_size is not None:
|
|
71562
|
+
result['PageSize'] = self.page_size
|
|
71563
|
+
if self.start_time is not None:
|
|
71564
|
+
result['StartTime'] = self.start_time
|
|
71565
|
+
return result
|
|
71566
|
+
|
|
71567
|
+
def from_map(self, m: dict = None):
|
|
71568
|
+
m = m or dict()
|
|
71569
|
+
if m.get('Capability') is not None:
|
|
71570
|
+
self.capability = m.get('Capability')
|
|
71571
|
+
if m.get('EndTime') is not None:
|
|
71572
|
+
self.end_time = m.get('EndTime')
|
|
71573
|
+
if m.get('PageNo') is not None:
|
|
71574
|
+
self.page_no = m.get('PageNo')
|
|
71575
|
+
if m.get('PageSize') is not None:
|
|
71576
|
+
self.page_size = m.get('PageSize')
|
|
71577
|
+
if m.get('StartTime') is not None:
|
|
71578
|
+
self.start_time = m.get('StartTime')
|
|
71579
|
+
return self
|
|
71580
|
+
|
|
71581
|
+
|
|
71582
|
+
class QueryIpcQuotaResponseBodyIpcQuotaInfos(TeaModel):
|
|
71583
|
+
def __init__(
|
|
71584
|
+
self,
|
|
71585
|
+
capability: str = None,
|
|
71586
|
+
consumed_quota: int = None,
|
|
71587
|
+
date_time: str = None,
|
|
71588
|
+
max_quota: int = None,
|
|
71589
|
+
):
|
|
71590
|
+
self.capability = capability
|
|
71591
|
+
self.consumed_quota = consumed_quota
|
|
71592
|
+
self.date_time = date_time
|
|
71593
|
+
self.max_quota = max_quota
|
|
71594
|
+
|
|
71595
|
+
def validate(self):
|
|
71596
|
+
pass
|
|
71597
|
+
|
|
71598
|
+
def to_map(self):
|
|
71599
|
+
_map = super().to_map()
|
|
71600
|
+
if _map is not None:
|
|
71601
|
+
return _map
|
|
71602
|
+
|
|
71603
|
+
result = dict()
|
|
71604
|
+
if self.capability is not None:
|
|
71605
|
+
result['Capability'] = self.capability
|
|
71606
|
+
if self.consumed_quota is not None:
|
|
71607
|
+
result['ConsumedQuota'] = self.consumed_quota
|
|
71608
|
+
if self.date_time is not None:
|
|
71609
|
+
result['DateTime'] = self.date_time
|
|
71610
|
+
if self.max_quota is not None:
|
|
71611
|
+
result['MaxQuota'] = self.max_quota
|
|
71612
|
+
return result
|
|
71613
|
+
|
|
71614
|
+
def from_map(self, m: dict = None):
|
|
71615
|
+
m = m or dict()
|
|
71616
|
+
if m.get('Capability') is not None:
|
|
71617
|
+
self.capability = m.get('Capability')
|
|
71618
|
+
if m.get('ConsumedQuota') is not None:
|
|
71619
|
+
self.consumed_quota = m.get('ConsumedQuota')
|
|
71620
|
+
if m.get('DateTime') is not None:
|
|
71621
|
+
self.date_time = m.get('DateTime')
|
|
71622
|
+
if m.get('MaxQuota') is not None:
|
|
71623
|
+
self.max_quota = m.get('MaxQuota')
|
|
71624
|
+
return self
|
|
71625
|
+
|
|
71626
|
+
|
|
71627
|
+
class QueryIpcQuotaResponseBody(TeaModel):
|
|
71628
|
+
def __init__(
|
|
71629
|
+
self,
|
|
71630
|
+
ipc_quota_infos: List[QueryIpcQuotaResponseBodyIpcQuotaInfos] = None,
|
|
71631
|
+
request_id: str = None,
|
|
71632
|
+
total: str = None,
|
|
71633
|
+
):
|
|
71634
|
+
self.ipc_quota_infos = ipc_quota_infos
|
|
71635
|
+
self.request_id = request_id
|
|
71636
|
+
self.total = total
|
|
71637
|
+
|
|
71638
|
+
def validate(self):
|
|
71639
|
+
if self.ipc_quota_infos:
|
|
71640
|
+
for k in self.ipc_quota_infos:
|
|
71641
|
+
if k:
|
|
71642
|
+
k.validate()
|
|
71643
|
+
|
|
71644
|
+
def to_map(self):
|
|
71645
|
+
_map = super().to_map()
|
|
71646
|
+
if _map is not None:
|
|
71647
|
+
return _map
|
|
71648
|
+
|
|
71649
|
+
result = dict()
|
|
71650
|
+
result['IpcQuotaInfos'] = []
|
|
71651
|
+
if self.ipc_quota_infos is not None:
|
|
71652
|
+
for k in self.ipc_quota_infos:
|
|
71653
|
+
result['IpcQuotaInfos'].append(k.to_map() if k else None)
|
|
71654
|
+
if self.request_id is not None:
|
|
71655
|
+
result['RequestId'] = self.request_id
|
|
71656
|
+
if self.total is not None:
|
|
71657
|
+
result['Total'] = self.total
|
|
71658
|
+
return result
|
|
71659
|
+
|
|
71660
|
+
def from_map(self, m: dict = None):
|
|
71661
|
+
m = m or dict()
|
|
71662
|
+
self.ipc_quota_infos = []
|
|
71663
|
+
if m.get('IpcQuotaInfos') is not None:
|
|
71664
|
+
for k in m.get('IpcQuotaInfos'):
|
|
71665
|
+
temp_model = QueryIpcQuotaResponseBodyIpcQuotaInfos()
|
|
71666
|
+
self.ipc_quota_infos.append(temp_model.from_map(k))
|
|
71667
|
+
if m.get('RequestId') is not None:
|
|
71668
|
+
self.request_id = m.get('RequestId')
|
|
71669
|
+
if m.get('Total') is not None:
|
|
71670
|
+
self.total = m.get('Total')
|
|
71671
|
+
return self
|
|
71672
|
+
|
|
71673
|
+
|
|
71674
|
+
class QueryIpcQuotaResponse(TeaModel):
|
|
71675
|
+
def __init__(
|
|
71676
|
+
self,
|
|
71677
|
+
headers: Dict[str, str] = None,
|
|
71678
|
+
status_code: int = None,
|
|
71679
|
+
body: QueryIpcQuotaResponseBody = None,
|
|
71680
|
+
):
|
|
71681
|
+
self.headers = headers
|
|
71682
|
+
self.status_code = status_code
|
|
71683
|
+
self.body = body
|
|
71684
|
+
|
|
71685
|
+
def validate(self):
|
|
71686
|
+
if self.body:
|
|
71687
|
+
self.body.validate()
|
|
71688
|
+
|
|
71689
|
+
def to_map(self):
|
|
71690
|
+
_map = super().to_map()
|
|
71691
|
+
if _map is not None:
|
|
71692
|
+
return _map
|
|
71693
|
+
|
|
71694
|
+
result = dict()
|
|
71695
|
+
if self.headers is not None:
|
|
71696
|
+
result['headers'] = self.headers
|
|
71697
|
+
if self.status_code is not None:
|
|
71698
|
+
result['statusCode'] = self.status_code
|
|
71699
|
+
if self.body is not None:
|
|
71700
|
+
result['body'] = self.body.to_map()
|
|
71701
|
+
return result
|
|
71702
|
+
|
|
71703
|
+
def from_map(self, m: dict = None):
|
|
71704
|
+
m = m or dict()
|
|
71705
|
+
if m.get('headers') is not None:
|
|
71706
|
+
self.headers = m.get('headers')
|
|
71707
|
+
if m.get('statusCode') is not None:
|
|
71708
|
+
self.status_code = m.get('statusCode')
|
|
71709
|
+
if m.get('body') is not None:
|
|
71710
|
+
temp_model = QueryIpcQuotaResponseBody()
|
|
71711
|
+
self.body = temp_model.from_map(m['body'])
|
|
71712
|
+
return self
|
|
71713
|
+
|
|
71714
|
+
|
|
71234
71715
|
class QueryMediaCensorJobDetailRequest(TeaModel):
|
|
71235
71716
|
def __init__(
|
|
71236
71717
|
self,
|
|
@@ -74573,12 +75054,81 @@ class QuerySmarttagJobResponseBodyResults(TeaModel):
|
|
|
74573
75054
|
return self
|
|
74574
75055
|
|
|
74575
75056
|
|
|
75057
|
+
class QuerySmarttagJobResponseBodyUsagesUsage(TeaModel):
|
|
75058
|
+
def __init__(
|
|
75059
|
+
self,
|
|
75060
|
+
quota: int = None,
|
|
75061
|
+
type: str = None,
|
|
75062
|
+
):
|
|
75063
|
+
self.quota = quota
|
|
75064
|
+
self.type = type
|
|
75065
|
+
|
|
75066
|
+
def validate(self):
|
|
75067
|
+
pass
|
|
75068
|
+
|
|
75069
|
+
def to_map(self):
|
|
75070
|
+
_map = super().to_map()
|
|
75071
|
+
if _map is not None:
|
|
75072
|
+
return _map
|
|
75073
|
+
|
|
75074
|
+
result = dict()
|
|
75075
|
+
if self.quota is not None:
|
|
75076
|
+
result['Quota'] = self.quota
|
|
75077
|
+
if self.type is not None:
|
|
75078
|
+
result['Type'] = self.type
|
|
75079
|
+
return result
|
|
75080
|
+
|
|
75081
|
+
def from_map(self, m: dict = None):
|
|
75082
|
+
m = m or dict()
|
|
75083
|
+
if m.get('Quota') is not None:
|
|
75084
|
+
self.quota = m.get('Quota')
|
|
75085
|
+
if m.get('Type') is not None:
|
|
75086
|
+
self.type = m.get('Type')
|
|
75087
|
+
return self
|
|
75088
|
+
|
|
75089
|
+
|
|
75090
|
+
class QuerySmarttagJobResponseBodyUsages(TeaModel):
|
|
75091
|
+
def __init__(
|
|
75092
|
+
self,
|
|
75093
|
+
usage: List[QuerySmarttagJobResponseBodyUsagesUsage] = None,
|
|
75094
|
+
):
|
|
75095
|
+
self.usage = usage
|
|
75096
|
+
|
|
75097
|
+
def validate(self):
|
|
75098
|
+
if self.usage:
|
|
75099
|
+
for k in self.usage:
|
|
75100
|
+
if k:
|
|
75101
|
+
k.validate()
|
|
75102
|
+
|
|
75103
|
+
def to_map(self):
|
|
75104
|
+
_map = super().to_map()
|
|
75105
|
+
if _map is not None:
|
|
75106
|
+
return _map
|
|
75107
|
+
|
|
75108
|
+
result = dict()
|
|
75109
|
+
result['Usage'] = []
|
|
75110
|
+
if self.usage is not None:
|
|
75111
|
+
for k in self.usage:
|
|
75112
|
+
result['Usage'].append(k.to_map() if k else None)
|
|
75113
|
+
return result
|
|
75114
|
+
|
|
75115
|
+
def from_map(self, m: dict = None):
|
|
75116
|
+
m = m or dict()
|
|
75117
|
+
self.usage = []
|
|
75118
|
+
if m.get('Usage') is not None:
|
|
75119
|
+
for k in m.get('Usage'):
|
|
75120
|
+
temp_model = QuerySmarttagJobResponseBodyUsagesUsage()
|
|
75121
|
+
self.usage.append(temp_model.from_map(k))
|
|
75122
|
+
return self
|
|
75123
|
+
|
|
75124
|
+
|
|
74576
75125
|
class QuerySmarttagJobResponseBody(TeaModel):
|
|
74577
75126
|
def __init__(
|
|
74578
75127
|
self,
|
|
74579
75128
|
job_status: str = None,
|
|
74580
75129
|
request_id: str = None,
|
|
74581
75130
|
results: QuerySmarttagJobResponseBodyResults = None,
|
|
75131
|
+
usages: QuerySmarttagJobResponseBodyUsages = None,
|
|
74582
75132
|
user_data: str = None,
|
|
74583
75133
|
):
|
|
74584
75134
|
# The status of the job. Valid values:
|
|
@@ -74592,12 +75142,15 @@ class QuerySmarttagJobResponseBody(TeaModel):
|
|
|
74592
75142
|
self.request_id = request_id
|
|
74593
75143
|
# The analysis results of the smart tagging job. The value is an array.
|
|
74594
75144
|
self.results = results
|
|
75145
|
+
self.usages = usages
|
|
74595
75146
|
# The content of callback messages that are sent to Simple Message Queue (SMQ) when the information of the smart tagging job changes. For more information about the parameters contained in the callback message, see the "Callback parameters" section of this topic.
|
|
74596
75147
|
self.user_data = user_data
|
|
74597
75148
|
|
|
74598
75149
|
def validate(self):
|
|
74599
75150
|
if self.results:
|
|
74600
75151
|
self.results.validate()
|
|
75152
|
+
if self.usages:
|
|
75153
|
+
self.usages.validate()
|
|
74601
75154
|
|
|
74602
75155
|
def to_map(self):
|
|
74603
75156
|
_map = super().to_map()
|
|
@@ -74611,6 +75164,8 @@ class QuerySmarttagJobResponseBody(TeaModel):
|
|
|
74611
75164
|
result['RequestId'] = self.request_id
|
|
74612
75165
|
if self.results is not None:
|
|
74613
75166
|
result['Results'] = self.results.to_map()
|
|
75167
|
+
if self.usages is not None:
|
|
75168
|
+
result['Usages'] = self.usages.to_map()
|
|
74614
75169
|
if self.user_data is not None:
|
|
74615
75170
|
result['UserData'] = self.user_data
|
|
74616
75171
|
return result
|
|
@@ -74624,6 +75179,9 @@ class QuerySmarttagJobResponseBody(TeaModel):
|
|
|
74624
75179
|
if m.get('Results') is not None:
|
|
74625
75180
|
temp_model = QuerySmarttagJobResponseBodyResults()
|
|
74626
75181
|
self.results = temp_model.from_map(m['Results'])
|
|
75182
|
+
if m.get('Usages') is not None:
|
|
75183
|
+
temp_model = QuerySmarttagJobResponseBodyUsages()
|
|
75184
|
+
self.usages = temp_model.from_map(m['Usages'])
|
|
74627
75185
|
if m.get('UserData') is not None:
|
|
74628
75186
|
self.user_data = m.get('UserData')
|
|
74629
75187
|
return self
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_ice20201109/__init__.py,sha256=3gjxJkt51AC2b7xYYUtoEVWU8gDpr67ChfFDuqPPv0A,21
|
|
2
|
+
alibabacloud_ice20201109/client.py,sha256=GcdPWpDY-oZIg0j9zTiJIG7gXancqeUpSarnYxPnYXY,1893822
|
|
3
|
+
alibabacloud_ice20201109/models.py,sha256=0MEYBf2v0APwF-cdjse-7EYnOJCNk7vJM_VPvDmBhZw,3774476
|
|
4
|
+
alibabacloud_ice20201109-6.9.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_ice20201109-6.9.0.dist-info/METADATA,sha256=bFa4Ac82iR6pSjtoKU1fVXP6_KLj3siM8HQlF5YLriU,2312
|
|
6
|
+
alibabacloud_ice20201109-6.9.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_ice20201109-6.9.0.dist-info/top_level.txt,sha256=Tdq86hkGJfaKKyNwqChNx5I788aFI6e_iTUmQOYYPK8,25
|
|
8
|
+
alibabacloud_ice20201109-6.9.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_ice20201109/__init__.py,sha256=nk_tlH4_61L_hKayD20HvoQWDOrsuZpEDp1CfSV_dT4,21
|
|
2
|
-
alibabacloud_ice20201109/client.py,sha256=fyslG6mes1PKE6F3sl6W6BbbTi17HiUPG9Mo3J-w63U,1881764
|
|
3
|
-
alibabacloud_ice20201109/models.py,sha256=b3b8TAoOPC8FgB0hCMxIQlTjYRFV-SsIpq-I3uMutSM,3757822
|
|
4
|
-
alibabacloud_ice20201109-6.8.5.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_ice20201109-6.8.5.dist-info/METADATA,sha256=Mf2pcnZWbPh422UefTohW4iyaWETc_PaENeJSdopeJU,2312
|
|
6
|
-
alibabacloud_ice20201109-6.8.5.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_ice20201109-6.8.5.dist-info/top_level.txt,sha256=Tdq86hkGJfaKKyNwqChNx5I788aFI6e_iTUmQOYYPK8,25
|
|
8
|
-
alibabacloud_ice20201109-6.8.5.dist-info/RECORD,,
|
{alibabacloud_ice20201109-6.8.5.dist-info → alibabacloud_ice20201109-6.9.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_ice20201109-6.8.5.dist-info → alibabacloud_ice20201109-6.9.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|