alibabacloud-quanmiaolightapp20240801 2.6.3__tar.gz → 2.6.5__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_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/ChangeLog.md +11 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/PKG-INFO +1 -1
- alibabacloud_quanmiaolightapp20240801-2.6.5/alibabacloud_quanmiaolightapp20240801/__init__.py +1 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/alibabacloud_quanmiaolightapp20240801/client.py +28 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/alibabacloud_quanmiaolightapp20240801/models.py +60 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/alibabacloud_quanmiaolightapp20240801.egg-info/PKG-INFO +1 -1
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/setup.py +1 -1
- alibabacloud_quanmiaolightapp20240801-2.6.3/alibabacloud_quanmiaolightapp20240801/__init__.py +0 -1
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/LICENSE +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/MANIFEST.in +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/README-CN.md +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/README.md +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/alibabacloud_quanmiaolightapp20240801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/alibabacloud_quanmiaolightapp20240801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/alibabacloud_quanmiaolightapp20240801.egg-info/requires.txt +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/alibabacloud_quanmiaolightapp20240801.egg-info/top_level.txt +0 -0
- {alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/setup.cfg +0 -0
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
2025-03-27 Version: 2.6.4
|
|
2
|
+
- Update API RunVideoAnalysis: add request parameters excludeGenerateOptions.
|
|
3
|
+
- Update API SubmitVideoAnalysisTask: add request parameters deduplicationId.
|
|
4
|
+
- Update API SubmitVideoAnalysisTask: add request parameters excludeGenerateOptions.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
2025-03-18 Version: 2.6.3
|
|
8
|
+
- Update API RunVideoAnalysis: add param splitInterval.
|
|
9
|
+
- Update API SubmitVideoAnalysisTask: add param splitInterval.
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
2025-03-17 Version: 2.6.2
|
|
2
13
|
- Update API RunHotTopicSummary: update param stepForCustomSummaryStyleConfig.
|
|
3
14
|
|
{alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud_quanmiaolightapp20240801
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.5
|
|
4
4
|
Summary: Alibaba Cloud QuanMiaoLightApp (20240801) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '2.6.5'
|
|
@@ -2232,6 +2232,8 @@ class Client(OpenApiClient):
|
|
|
2232
2232
|
if not UtilClient.is_unset(tmp_req.tags):
|
|
2233
2233
|
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
|
2234
2234
|
body = {}
|
|
2235
|
+
if not UtilClient.is_unset(request.api_key):
|
|
2236
|
+
body['apiKey'] = request.api_key
|
|
2235
2237
|
if not UtilClient.is_unset(request.business_type):
|
|
2236
2238
|
body['businessType'] = request.business_type
|
|
2237
2239
|
if not UtilClient.is_unset(request.content):
|
|
@@ -2293,6 +2295,8 @@ class Client(OpenApiClient):
|
|
|
2293
2295
|
if not UtilClient.is_unset(tmp_req.tags):
|
|
2294
2296
|
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
|
2295
2297
|
body = {}
|
|
2298
|
+
if not UtilClient.is_unset(request.api_key):
|
|
2299
|
+
body['apiKey'] = request.api_key
|
|
2296
2300
|
if not UtilClient.is_unset(request.business_type):
|
|
2297
2301
|
body['businessType'] = request.business_type
|
|
2298
2302
|
if not UtilClient.is_unset(request.content):
|
|
@@ -2381,6 +2385,8 @@ class Client(OpenApiClient):
|
|
|
2381
2385
|
UtilClient.validate_model(tmp_req)
|
|
2382
2386
|
request = quan_miao_light_app_20240801_models.RunVideoAnalysisShrinkRequest()
|
|
2383
2387
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
2388
|
+
if not UtilClient.is_unset(tmp_req.exclude_generate_options):
|
|
2389
|
+
request.exclude_generate_options_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.exclude_generate_options, 'excludeGenerateOptions', 'json')
|
|
2384
2390
|
if not UtilClient.is_unset(tmp_req.frame_sample_method):
|
|
2385
2391
|
request.frame_sample_method_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.frame_sample_method, 'frameSampleMethod', 'json')
|
|
2386
2392
|
if not UtilClient.is_unset(tmp_req.generate_options):
|
|
@@ -2390,6 +2396,8 @@ class Client(OpenApiClient):
|
|
|
2390
2396
|
if not UtilClient.is_unset(tmp_req.video_roles):
|
|
2391
2397
|
request.video_roles_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.video_roles, 'videoRoles', 'json')
|
|
2392
2398
|
body = {}
|
|
2399
|
+
if not UtilClient.is_unset(request.exclude_generate_options_shrink):
|
|
2400
|
+
body['excludeGenerateOptions'] = request.exclude_generate_options_shrink
|
|
2393
2401
|
if not UtilClient.is_unset(request.face_identity_similarity_min_score):
|
|
2394
2402
|
body['faceIdentitySimilarityMinScore'] = request.face_identity_similarity_min_score
|
|
2395
2403
|
if not UtilClient.is_unset(request.frame_sample_method_shrink):
|
|
@@ -2470,6 +2478,8 @@ class Client(OpenApiClient):
|
|
|
2470
2478
|
UtilClient.validate_model(tmp_req)
|
|
2471
2479
|
request = quan_miao_light_app_20240801_models.RunVideoAnalysisShrinkRequest()
|
|
2472
2480
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
2481
|
+
if not UtilClient.is_unset(tmp_req.exclude_generate_options):
|
|
2482
|
+
request.exclude_generate_options_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.exclude_generate_options, 'excludeGenerateOptions', 'json')
|
|
2473
2483
|
if not UtilClient.is_unset(tmp_req.frame_sample_method):
|
|
2474
2484
|
request.frame_sample_method_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.frame_sample_method, 'frameSampleMethod', 'json')
|
|
2475
2485
|
if not UtilClient.is_unset(tmp_req.generate_options):
|
|
@@ -2479,6 +2489,8 @@ class Client(OpenApiClient):
|
|
|
2479
2489
|
if not UtilClient.is_unset(tmp_req.video_roles):
|
|
2480
2490
|
request.video_roles_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.video_roles, 'videoRoles', 'json')
|
|
2481
2491
|
body = {}
|
|
2492
|
+
if not UtilClient.is_unset(request.exclude_generate_options_shrink):
|
|
2493
|
+
body['excludeGenerateOptions'] = request.exclude_generate_options_shrink
|
|
2482
2494
|
if not UtilClient.is_unset(request.face_identity_similarity_min_score):
|
|
2483
2495
|
body['faceIdentitySimilarityMinScore'] = request.face_identity_similarity_min_score
|
|
2484
2496
|
if not UtilClient.is_unset(request.frame_sample_method_shrink):
|
|
@@ -2594,6 +2606,8 @@ class Client(OpenApiClient):
|
|
|
2594
2606
|
if not UtilClient.is_unset(tmp_req.tags):
|
|
2595
2607
|
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
|
2596
2608
|
body = {}
|
|
2609
|
+
if not UtilClient.is_unset(request.api_key):
|
|
2610
|
+
body['apiKey'] = request.api_key
|
|
2597
2611
|
if not UtilClient.is_unset(request.business_type):
|
|
2598
2612
|
body['businessType'] = request.business_type
|
|
2599
2613
|
if not UtilClient.is_unset(request.contents_shrink):
|
|
@@ -2659,6 +2673,8 @@ class Client(OpenApiClient):
|
|
|
2659
2673
|
if not UtilClient.is_unset(tmp_req.tags):
|
|
2660
2674
|
request.tags_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.tags, 'tags', 'json')
|
|
2661
2675
|
body = {}
|
|
2676
|
+
if not UtilClient.is_unset(request.api_key):
|
|
2677
|
+
body['apiKey'] = request.api_key
|
|
2662
2678
|
if not UtilClient.is_unset(request.business_type):
|
|
2663
2679
|
body['businessType'] = request.business_type
|
|
2664
2680
|
if not UtilClient.is_unset(request.contents_shrink):
|
|
@@ -2749,6 +2765,8 @@ class Client(OpenApiClient):
|
|
|
2749
2765
|
UtilClient.validate_model(tmp_req)
|
|
2750
2766
|
request = quan_miao_light_app_20240801_models.SubmitVideoAnalysisTaskShrinkRequest()
|
|
2751
2767
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
2768
|
+
if not UtilClient.is_unset(tmp_req.exclude_generate_options):
|
|
2769
|
+
request.exclude_generate_options_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.exclude_generate_options, 'excludeGenerateOptions', 'json')
|
|
2752
2770
|
if not UtilClient.is_unset(tmp_req.frame_sample_method):
|
|
2753
2771
|
request.frame_sample_method_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.frame_sample_method, 'frameSampleMethod', 'json')
|
|
2754
2772
|
if not UtilClient.is_unset(tmp_req.generate_options):
|
|
@@ -2758,6 +2776,10 @@ class Client(OpenApiClient):
|
|
|
2758
2776
|
if not UtilClient.is_unset(tmp_req.video_roles):
|
|
2759
2777
|
request.video_roles_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.video_roles, 'videoRoles', 'json')
|
|
2760
2778
|
body = {}
|
|
2779
|
+
if not UtilClient.is_unset(request.deduplication_id):
|
|
2780
|
+
body['deduplicationId'] = request.deduplication_id
|
|
2781
|
+
if not UtilClient.is_unset(request.exclude_generate_options_shrink):
|
|
2782
|
+
body['excludeGenerateOptions'] = request.exclude_generate_options_shrink
|
|
2761
2783
|
if not UtilClient.is_unset(request.face_identity_similarity_min_score):
|
|
2762
2784
|
body['faceIdentitySimilarityMinScore'] = request.face_identity_similarity_min_score
|
|
2763
2785
|
if not UtilClient.is_unset(request.frame_sample_method_shrink):
|
|
@@ -2834,6 +2856,8 @@ class Client(OpenApiClient):
|
|
|
2834
2856
|
UtilClient.validate_model(tmp_req)
|
|
2835
2857
|
request = quan_miao_light_app_20240801_models.SubmitVideoAnalysisTaskShrinkRequest()
|
|
2836
2858
|
OpenApiUtilClient.convert(tmp_req, request)
|
|
2859
|
+
if not UtilClient.is_unset(tmp_req.exclude_generate_options):
|
|
2860
|
+
request.exclude_generate_options_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.exclude_generate_options, 'excludeGenerateOptions', 'json')
|
|
2837
2861
|
if not UtilClient.is_unset(tmp_req.frame_sample_method):
|
|
2838
2862
|
request.frame_sample_method_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.frame_sample_method, 'frameSampleMethod', 'json')
|
|
2839
2863
|
if not UtilClient.is_unset(tmp_req.generate_options):
|
|
@@ -2843,6 +2867,10 @@ class Client(OpenApiClient):
|
|
|
2843
2867
|
if not UtilClient.is_unset(tmp_req.video_roles):
|
|
2844
2868
|
request.video_roles_shrink = OpenApiUtilClient.array_to_string_with_specified_style(tmp_req.video_roles, 'videoRoles', 'json')
|
|
2845
2869
|
body = {}
|
|
2870
|
+
if not UtilClient.is_unset(request.deduplication_id):
|
|
2871
|
+
body['deduplicationId'] = request.deduplication_id
|
|
2872
|
+
if not UtilClient.is_unset(request.exclude_generate_options_shrink):
|
|
2873
|
+
body['excludeGenerateOptions'] = request.exclude_generate_options_shrink
|
|
2846
2874
|
if not UtilClient.is_unset(request.face_identity_similarity_min_score):
|
|
2847
2875
|
body['faceIdentitySimilarityMinScore'] = request.face_identity_similarity_min_score
|
|
2848
2876
|
if not UtilClient.is_unset(request.frame_sample_method_shrink):
|
|
@@ -6633,6 +6633,7 @@ class RunTagMiningAnalysisRequestTags(TeaModel):
|
|
|
6633
6633
|
class RunTagMiningAnalysisRequest(TeaModel):
|
|
6634
6634
|
def __init__(
|
|
6635
6635
|
self,
|
|
6636
|
+
api_key: str = None,
|
|
6636
6637
|
business_type: str = None,
|
|
6637
6638
|
content: str = None,
|
|
6638
6639
|
extra_info: str = None,
|
|
@@ -6641,6 +6642,7 @@ class RunTagMiningAnalysisRequest(TeaModel):
|
|
|
6641
6642
|
tags: List[RunTagMiningAnalysisRequestTags] = None,
|
|
6642
6643
|
task_description: str = None,
|
|
6643
6644
|
):
|
|
6645
|
+
self.api_key = api_key
|
|
6644
6646
|
self.business_type = business_type
|
|
6645
6647
|
# This parameter is required.
|
|
6646
6648
|
self.content = content
|
|
@@ -6662,6 +6664,8 @@ class RunTagMiningAnalysisRequest(TeaModel):
|
|
|
6662
6664
|
return _map
|
|
6663
6665
|
|
|
6664
6666
|
result = dict()
|
|
6667
|
+
if self.api_key is not None:
|
|
6668
|
+
result['apiKey'] = self.api_key
|
|
6665
6669
|
if self.business_type is not None:
|
|
6666
6670
|
result['businessType'] = self.business_type
|
|
6667
6671
|
if self.content is not None:
|
|
@@ -6682,6 +6686,8 @@ class RunTagMiningAnalysisRequest(TeaModel):
|
|
|
6682
6686
|
|
|
6683
6687
|
def from_map(self, m: dict = None):
|
|
6684
6688
|
m = m or dict()
|
|
6689
|
+
if m.get('apiKey') is not None:
|
|
6690
|
+
self.api_key = m.get('apiKey')
|
|
6685
6691
|
if m.get('businessType') is not None:
|
|
6686
6692
|
self.business_type = m.get('businessType')
|
|
6687
6693
|
if m.get('content') is not None:
|
|
@@ -6705,6 +6711,7 @@ class RunTagMiningAnalysisRequest(TeaModel):
|
|
|
6705
6711
|
class RunTagMiningAnalysisShrinkRequest(TeaModel):
|
|
6706
6712
|
def __init__(
|
|
6707
6713
|
self,
|
|
6714
|
+
api_key: str = None,
|
|
6708
6715
|
business_type: str = None,
|
|
6709
6716
|
content: str = None,
|
|
6710
6717
|
extra_info: str = None,
|
|
@@ -6713,6 +6720,7 @@ class RunTagMiningAnalysisShrinkRequest(TeaModel):
|
|
|
6713
6720
|
tags_shrink: str = None,
|
|
6714
6721
|
task_description: str = None,
|
|
6715
6722
|
):
|
|
6723
|
+
self.api_key = api_key
|
|
6716
6724
|
self.business_type = business_type
|
|
6717
6725
|
# This parameter is required.
|
|
6718
6726
|
self.content = content
|
|
@@ -6731,6 +6739,8 @@ class RunTagMiningAnalysisShrinkRequest(TeaModel):
|
|
|
6731
6739
|
return _map
|
|
6732
6740
|
|
|
6733
6741
|
result = dict()
|
|
6742
|
+
if self.api_key is not None:
|
|
6743
|
+
result['apiKey'] = self.api_key
|
|
6734
6744
|
if self.business_type is not None:
|
|
6735
6745
|
result['businessType'] = self.business_type
|
|
6736
6746
|
if self.content is not None:
|
|
@@ -6749,6 +6759,8 @@ class RunTagMiningAnalysisShrinkRequest(TeaModel):
|
|
|
6749
6759
|
|
|
6750
6760
|
def from_map(self, m: dict = None):
|
|
6751
6761
|
m = m or dict()
|
|
6762
|
+
if m.get('apiKey') is not None:
|
|
6763
|
+
self.api_key = m.get('apiKey')
|
|
6752
6764
|
if m.get('businessType') is not None:
|
|
6753
6765
|
self.business_type = m.get('businessType')
|
|
6754
6766
|
if m.get('content') is not None:
|
|
@@ -7133,6 +7145,7 @@ class RunVideoAnalysisRequestVideoRoles(TeaModel):
|
|
|
7133
7145
|
class RunVideoAnalysisRequest(TeaModel):
|
|
7134
7146
|
def __init__(
|
|
7135
7147
|
self,
|
|
7148
|
+
exclude_generate_options: List[str] = None,
|
|
7136
7149
|
face_identity_similarity_min_score: float = None,
|
|
7137
7150
|
frame_sample_method: RunVideoAnalysisRequestFrameSampleMethod = None,
|
|
7138
7151
|
generate_options: List[str] = None,
|
|
@@ -7152,6 +7165,7 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
7152
7165
|
video_shot_face_identity_count: int = None,
|
|
7153
7166
|
video_url: str = None,
|
|
7154
7167
|
):
|
|
7168
|
+
self.exclude_generate_options = exclude_generate_options
|
|
7155
7169
|
self.face_identity_similarity_min_score = face_identity_similarity_min_score
|
|
7156
7170
|
self.frame_sample_method = frame_sample_method
|
|
7157
7171
|
self.generate_options = generate_options
|
|
@@ -7189,6 +7203,8 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
7189
7203
|
return _map
|
|
7190
7204
|
|
|
7191
7205
|
result = dict()
|
|
7206
|
+
if self.exclude_generate_options is not None:
|
|
7207
|
+
result['excludeGenerateOptions'] = self.exclude_generate_options
|
|
7192
7208
|
if self.face_identity_similarity_min_score is not None:
|
|
7193
7209
|
result['faceIdentitySimilarityMinScore'] = self.face_identity_similarity_min_score
|
|
7194
7210
|
if self.frame_sample_method is not None:
|
|
@@ -7233,6 +7249,8 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
7233
7249
|
|
|
7234
7250
|
def from_map(self, m: dict = None):
|
|
7235
7251
|
m = m or dict()
|
|
7252
|
+
if m.get('excludeGenerateOptions') is not None:
|
|
7253
|
+
self.exclude_generate_options = m.get('excludeGenerateOptions')
|
|
7236
7254
|
if m.get('faceIdentitySimilarityMinScore') is not None:
|
|
7237
7255
|
self.face_identity_similarity_min_score = m.get('faceIdentitySimilarityMinScore')
|
|
7238
7256
|
if m.get('frameSampleMethod') is not None:
|
|
@@ -7282,6 +7300,7 @@ class RunVideoAnalysisRequest(TeaModel):
|
|
|
7282
7300
|
class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
7283
7301
|
def __init__(
|
|
7284
7302
|
self,
|
|
7303
|
+
exclude_generate_options_shrink: str = None,
|
|
7285
7304
|
face_identity_similarity_min_score: float = None,
|
|
7286
7305
|
frame_sample_method_shrink: str = None,
|
|
7287
7306
|
generate_options_shrink: str = None,
|
|
@@ -7301,6 +7320,7 @@ class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
|
7301
7320
|
video_shot_face_identity_count: int = None,
|
|
7302
7321
|
video_url: str = None,
|
|
7303
7322
|
):
|
|
7323
|
+
self.exclude_generate_options_shrink = exclude_generate_options_shrink
|
|
7304
7324
|
self.face_identity_similarity_min_score = face_identity_similarity_min_score
|
|
7305
7325
|
self.frame_sample_method_shrink = frame_sample_method_shrink
|
|
7306
7326
|
self.generate_options_shrink = generate_options_shrink
|
|
@@ -7329,6 +7349,8 @@ class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
|
7329
7349
|
return _map
|
|
7330
7350
|
|
|
7331
7351
|
result = dict()
|
|
7352
|
+
if self.exclude_generate_options_shrink is not None:
|
|
7353
|
+
result['excludeGenerateOptions'] = self.exclude_generate_options_shrink
|
|
7332
7354
|
if self.face_identity_similarity_min_score is not None:
|
|
7333
7355
|
result['faceIdentitySimilarityMinScore'] = self.face_identity_similarity_min_score
|
|
7334
7356
|
if self.frame_sample_method_shrink is not None:
|
|
@@ -7369,6 +7391,8 @@ class RunVideoAnalysisShrinkRequest(TeaModel):
|
|
|
7369
7391
|
|
|
7370
7392
|
def from_map(self, m: dict = None):
|
|
7371
7393
|
m = m or dict()
|
|
7394
|
+
if m.get('excludeGenerateOptions') is not None:
|
|
7395
|
+
self.exclude_generate_options_shrink = m.get('excludeGenerateOptions')
|
|
7372
7396
|
if m.get('faceIdentitySimilarityMinScore') is not None:
|
|
7373
7397
|
self.face_identity_similarity_min_score = m.get('faceIdentitySimilarityMinScore')
|
|
7374
7398
|
if m.get('frameSampleMethod') is not None:
|
|
@@ -8627,6 +8651,7 @@ class SubmitTagMiningAnalysisTaskRequestTags(TeaModel):
|
|
|
8627
8651
|
class SubmitTagMiningAnalysisTaskRequest(TeaModel):
|
|
8628
8652
|
def __init__(
|
|
8629
8653
|
self,
|
|
8654
|
+
api_key: str = None,
|
|
8630
8655
|
business_type: str = None,
|
|
8631
8656
|
contents: List[str] = None,
|
|
8632
8657
|
extra_info: str = None,
|
|
@@ -8636,6 +8661,7 @@ class SubmitTagMiningAnalysisTaskRequest(TeaModel):
|
|
|
8636
8661
|
task_description: str = None,
|
|
8637
8662
|
url: str = None,
|
|
8638
8663
|
):
|
|
8664
|
+
self.api_key = api_key
|
|
8639
8665
|
self.business_type = business_type
|
|
8640
8666
|
self.contents = contents
|
|
8641
8667
|
self.extra_info = extra_info
|
|
@@ -8657,6 +8683,8 @@ class SubmitTagMiningAnalysisTaskRequest(TeaModel):
|
|
|
8657
8683
|
return _map
|
|
8658
8684
|
|
|
8659
8685
|
result = dict()
|
|
8686
|
+
if self.api_key is not None:
|
|
8687
|
+
result['apiKey'] = self.api_key
|
|
8660
8688
|
if self.business_type is not None:
|
|
8661
8689
|
result['businessType'] = self.business_type
|
|
8662
8690
|
if self.contents is not None:
|
|
@@ -8679,6 +8707,8 @@ class SubmitTagMiningAnalysisTaskRequest(TeaModel):
|
|
|
8679
8707
|
|
|
8680
8708
|
def from_map(self, m: dict = None):
|
|
8681
8709
|
m = m or dict()
|
|
8710
|
+
if m.get('apiKey') is not None:
|
|
8711
|
+
self.api_key = m.get('apiKey')
|
|
8682
8712
|
if m.get('businessType') is not None:
|
|
8683
8713
|
self.business_type = m.get('businessType')
|
|
8684
8714
|
if m.get('contents') is not None:
|
|
@@ -8704,6 +8734,7 @@ class SubmitTagMiningAnalysisTaskRequest(TeaModel):
|
|
|
8704
8734
|
class SubmitTagMiningAnalysisTaskShrinkRequest(TeaModel):
|
|
8705
8735
|
def __init__(
|
|
8706
8736
|
self,
|
|
8737
|
+
api_key: str = None,
|
|
8707
8738
|
business_type: str = None,
|
|
8708
8739
|
contents_shrink: str = None,
|
|
8709
8740
|
extra_info: str = None,
|
|
@@ -8713,6 +8744,7 @@ class SubmitTagMiningAnalysisTaskShrinkRequest(TeaModel):
|
|
|
8713
8744
|
task_description: str = None,
|
|
8714
8745
|
url: str = None,
|
|
8715
8746
|
):
|
|
8747
|
+
self.api_key = api_key
|
|
8716
8748
|
self.business_type = business_type
|
|
8717
8749
|
self.contents_shrink = contents_shrink
|
|
8718
8750
|
self.extra_info = extra_info
|
|
@@ -8731,6 +8763,8 @@ class SubmitTagMiningAnalysisTaskShrinkRequest(TeaModel):
|
|
|
8731
8763
|
return _map
|
|
8732
8764
|
|
|
8733
8765
|
result = dict()
|
|
8766
|
+
if self.api_key is not None:
|
|
8767
|
+
result['apiKey'] = self.api_key
|
|
8734
8768
|
if self.business_type is not None:
|
|
8735
8769
|
result['businessType'] = self.business_type
|
|
8736
8770
|
if self.contents_shrink is not None:
|
|
@@ -8751,6 +8785,8 @@ class SubmitTagMiningAnalysisTaskShrinkRequest(TeaModel):
|
|
|
8751
8785
|
|
|
8752
8786
|
def from_map(self, m: dict = None):
|
|
8753
8787
|
m = m or dict()
|
|
8788
|
+
if m.get('apiKey') is not None:
|
|
8789
|
+
self.api_key = m.get('apiKey')
|
|
8754
8790
|
if m.get('businessType') is not None:
|
|
8755
8791
|
self.business_type = m.get('businessType')
|
|
8756
8792
|
if m.get('contents') is not None:
|
|
@@ -9018,6 +9054,8 @@ class SubmitVideoAnalysisTaskRequestVideoRoles(TeaModel):
|
|
|
9018
9054
|
class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
9019
9055
|
def __init__(
|
|
9020
9056
|
self,
|
|
9057
|
+
deduplication_id: str = None,
|
|
9058
|
+
exclude_generate_options: List[str] = None,
|
|
9021
9059
|
face_identity_similarity_min_score: float = None,
|
|
9022
9060
|
frame_sample_method: SubmitVideoAnalysisTaskRequestFrameSampleMethod = None,
|
|
9023
9061
|
generate_options: List[str] = None,
|
|
@@ -9035,6 +9073,8 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
9035
9073
|
video_shot_face_identity_count: int = None,
|
|
9036
9074
|
video_url: str = None,
|
|
9037
9075
|
):
|
|
9076
|
+
self.deduplication_id = deduplication_id
|
|
9077
|
+
self.exclude_generate_options = exclude_generate_options
|
|
9038
9078
|
self.face_identity_similarity_min_score = face_identity_similarity_min_score
|
|
9039
9079
|
self.frame_sample_method = frame_sample_method
|
|
9040
9080
|
self.generate_options = generate_options
|
|
@@ -9071,6 +9111,10 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
9071
9111
|
return _map
|
|
9072
9112
|
|
|
9073
9113
|
result = dict()
|
|
9114
|
+
if self.deduplication_id is not None:
|
|
9115
|
+
result['deduplicationId'] = self.deduplication_id
|
|
9116
|
+
if self.exclude_generate_options is not None:
|
|
9117
|
+
result['excludeGenerateOptions'] = self.exclude_generate_options
|
|
9074
9118
|
if self.face_identity_similarity_min_score is not None:
|
|
9075
9119
|
result['faceIdentitySimilarityMinScore'] = self.face_identity_similarity_min_score
|
|
9076
9120
|
if self.frame_sample_method is not None:
|
|
@@ -9111,6 +9155,10 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
9111
9155
|
|
|
9112
9156
|
def from_map(self, m: dict = None):
|
|
9113
9157
|
m = m or dict()
|
|
9158
|
+
if m.get('deduplicationId') is not None:
|
|
9159
|
+
self.deduplication_id = m.get('deduplicationId')
|
|
9160
|
+
if m.get('excludeGenerateOptions') is not None:
|
|
9161
|
+
self.exclude_generate_options = m.get('excludeGenerateOptions')
|
|
9114
9162
|
if m.get('faceIdentitySimilarityMinScore') is not None:
|
|
9115
9163
|
self.face_identity_similarity_min_score = m.get('faceIdentitySimilarityMinScore')
|
|
9116
9164
|
if m.get('frameSampleMethod') is not None:
|
|
@@ -9156,6 +9204,8 @@ class SubmitVideoAnalysisTaskRequest(TeaModel):
|
|
|
9156
9204
|
class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
9157
9205
|
def __init__(
|
|
9158
9206
|
self,
|
|
9207
|
+
deduplication_id: str = None,
|
|
9208
|
+
exclude_generate_options_shrink: str = None,
|
|
9159
9209
|
face_identity_similarity_min_score: float = None,
|
|
9160
9210
|
frame_sample_method_shrink: str = None,
|
|
9161
9211
|
generate_options_shrink: str = None,
|
|
@@ -9173,6 +9223,8 @@ class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
|
9173
9223
|
video_shot_face_identity_count: int = None,
|
|
9174
9224
|
video_url: str = None,
|
|
9175
9225
|
):
|
|
9226
|
+
self.deduplication_id = deduplication_id
|
|
9227
|
+
self.exclude_generate_options_shrink = exclude_generate_options_shrink
|
|
9176
9228
|
self.face_identity_similarity_min_score = face_identity_similarity_min_score
|
|
9177
9229
|
self.frame_sample_method_shrink = frame_sample_method_shrink
|
|
9178
9230
|
self.generate_options_shrink = generate_options_shrink
|
|
@@ -9200,6 +9252,10 @@ class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
|
9200
9252
|
return _map
|
|
9201
9253
|
|
|
9202
9254
|
result = dict()
|
|
9255
|
+
if self.deduplication_id is not None:
|
|
9256
|
+
result['deduplicationId'] = self.deduplication_id
|
|
9257
|
+
if self.exclude_generate_options_shrink is not None:
|
|
9258
|
+
result['excludeGenerateOptions'] = self.exclude_generate_options_shrink
|
|
9203
9259
|
if self.face_identity_similarity_min_score is not None:
|
|
9204
9260
|
result['faceIdentitySimilarityMinScore'] = self.face_identity_similarity_min_score
|
|
9205
9261
|
if self.frame_sample_method_shrink is not None:
|
|
@@ -9236,6 +9292,10 @@ class SubmitVideoAnalysisTaskShrinkRequest(TeaModel):
|
|
|
9236
9292
|
|
|
9237
9293
|
def from_map(self, m: dict = None):
|
|
9238
9294
|
m = m or dict()
|
|
9295
|
+
if m.get('deduplicationId') is not None:
|
|
9296
|
+
self.deduplication_id = m.get('deduplicationId')
|
|
9297
|
+
if m.get('excludeGenerateOptions') is not None:
|
|
9298
|
+
self.exclude_generate_options_shrink = m.get('excludeGenerateOptions')
|
|
9239
9299
|
if m.get('faceIdentitySimilarityMinScore') is not None:
|
|
9240
9300
|
self.face_identity_similarity_min_score = m.get('faceIdentitySimilarityMinScore')
|
|
9241
9301
|
if m.get('frameSampleMethod') is not None:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: alibabacloud-quanmiaolightapp20240801
|
|
3
|
-
Version: 2.6.
|
|
3
|
+
Version: 2.6.5
|
|
4
4
|
Summary: Alibaba Cloud QuanMiaoLightApp (20240801) SDK Library for Python
|
|
5
5
|
Home-page: https://github.com/aliyun/alibabacloud-python-sdk
|
|
6
6
|
Author: Alibaba Cloud SDK
|
alibabacloud_quanmiaolightapp20240801-2.6.3/alibabacloud_quanmiaolightapp20240801/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.6.3'
|
{alibabacloud_quanmiaolightapp20240801-2.6.3 → alibabacloud_quanmiaolightapp20240801-2.6.5}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|