@alicloud/green20220926 1.4.0 → 1.4.1

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.
package/src/client.ts CHANGED
@@ -693,6 +693,35 @@ export class GetCipStatsResponseBodyDataLabelStatChartImageTreeChar extends $dar
693
693
  }
694
694
  }
695
695
 
696
+ export class GetCipStatsResponseBodyDataLabelStatChartTextTreeChart extends $dara.Model {
697
+ description?: string;
698
+ name?: string;
699
+ value?: string;
700
+ static names(): { [key: string]: string } {
701
+ return {
702
+ description: 'Description',
703
+ name: 'Name',
704
+ value: 'Value',
705
+ };
706
+ }
707
+
708
+ static types(): { [key: string]: any } {
709
+ return {
710
+ description: 'string',
711
+ name: 'string',
712
+ value: 'string',
713
+ };
714
+ }
715
+
716
+ validate() {
717
+ super.validate();
718
+ }
719
+
720
+ constructor(map?: { [key: string]: any }) {
721
+ super(map);
722
+ }
723
+ }
724
+
696
725
  export class GetCipStatsResponseBodyDataLabelStatChartTreeChart extends $dara.Model {
697
726
  description?: string;
698
727
  /**
@@ -807,6 +836,7 @@ export class GetCipStatsResponseBodyDataLabelStatChart extends $dara.Model {
807
836
  * nickNameDetection
808
837
  */
809
838
  serviceCode?: string;
839
+ textTreeChart?: GetCipStatsResponseBodyDataLabelStatChartTextTreeChart[];
810
840
  /**
811
841
  * @example
812
842
  * 117
@@ -820,6 +850,7 @@ export class GetCipStatsResponseBodyDataLabelStatChart extends $dara.Model {
820
850
  return {
821
851
  imageTreeChar: 'ImageTreeChar',
822
852
  serviceCode: 'ServiceCode',
853
+ textTreeChart: 'TextTreeChart',
823
854
  totalCount: 'TotalCount',
824
855
  treeChart: 'TreeChart',
825
856
  voiceTreeChart: 'VoiceTreeChart',
@@ -832,6 +863,7 @@ export class GetCipStatsResponseBodyDataLabelStatChart extends $dara.Model {
832
863
  return {
833
864
  imageTreeChar: { 'type': 'array', 'itemType': GetCipStatsResponseBodyDataLabelStatChartImageTreeChar },
834
865
  serviceCode: 'string',
866
+ textTreeChart: { 'type': 'array', 'itemType': GetCipStatsResponseBodyDataLabelStatChartTextTreeChart },
835
867
  totalCount: 'number',
836
868
  treeChart: { 'type': 'array', 'itemType': GetCipStatsResponseBodyDataLabelStatChartTreeChart },
837
869
  voiceTreeChart: { 'type': 'array', 'itemType': GetCipStatsResponseBodyDataLabelStatChartVoiceTreeChart },
@@ -844,6 +876,9 @@ export class GetCipStatsResponseBodyDataLabelStatChart extends $dara.Model {
844
876
  if(Array.isArray(this.imageTreeChar)) {
845
877
  $dara.Model.validateArray(this.imageTreeChar);
846
878
  }
879
+ if(Array.isArray(this.textTreeChart)) {
880
+ $dara.Model.validateArray(this.textTreeChart);
881
+ }
847
882
  if(Array.isArray(this.treeChart)) {
848
883
  $dara.Model.validateArray(this.treeChart);
849
884
  }
@@ -932,7 +967,7 @@ export class GetCipStatsResponseBodyDataZ extends $dara.Model {
932
967
 
933
968
  export class GetCipStatsResponseBodyData extends $dara.Model {
934
969
  labelStatChart?: GetCipStatsResponseBodyDataLabelStatChart[];
935
- totalStat?: { [key: string]: any };
970
+ totalStat?: { [key: string]: {[key: string]: any} };
936
971
  uids?: string[];
937
972
  x?: string[];
938
973
  y?: GetCipStatsResponseBodyDataY[];
@@ -951,7 +986,7 @@ export class GetCipStatsResponseBodyData extends $dara.Model {
951
986
  static types(): { [key: string]: any } {
952
987
  return {
953
988
  labelStatChart: { 'type': 'array', 'itemType': GetCipStatsResponseBodyDataLabelStatChart },
954
- totalStat: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
989
+ totalStat: { 'type': 'map', 'keyType': 'string', 'valueType': '{[key: string]: any}' },
955
990
  uids: { 'type': 'array', 'itemType': 'string' },
956
991
  x: { 'type': 'array', 'itemType': 'string' },
957
992
  y: { 'type': 'array', 'itemType': GetCipStatsResponseBodyDataY },
@@ -13725,12 +13760,7 @@ export default class Client extends OpenApi {
13725
13760
  reqBodyType: "formData",
13726
13761
  bodyType: "json",
13727
13762
  });
13728
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
13729
- return $dara.cast<AddAnswerSampleResponse>(await this.callApi(params, req, runtime), new AddAnswerSampleResponse({}));
13730
- } else {
13731
- return $dara.cast<AddAnswerSampleResponse>(await this.execute(params, req, runtime), new AddAnswerSampleResponse({}));
13732
- }
13733
-
13763
+ return $dara.cast<AddAnswerSampleResponse>(await this.callApi(params, req, runtime), new AddAnswerSampleResponse({}));
13734
13764
  }
13735
13765
 
13736
13766
  /**
@@ -13782,12 +13812,7 @@ export default class Client extends OpenApi {
13782
13812
  reqBodyType: "formData",
13783
13813
  bodyType: "json",
13784
13814
  });
13785
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
13786
- return $dara.cast<AddImageLibResponse>(await this.callApi(params, req, runtime), new AddImageLibResponse({}));
13787
- } else {
13788
- return $dara.cast<AddImageLibResponse>(await this.execute(params, req, runtime), new AddImageLibResponse({}));
13789
- }
13790
-
13815
+ return $dara.cast<AddImageLibResponse>(await this.callApi(params, req, runtime), new AddImageLibResponse({}));
13791
13816
  }
13792
13817
 
13793
13818
  /**
@@ -13839,12 +13864,7 @@ export default class Client extends OpenApi {
13839
13864
  reqBodyType: "formData",
13840
13865
  bodyType: "json",
13841
13866
  });
13842
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
13843
- return $dara.cast<AddImages2LibResponse>(await this.callApi(params, req, runtime), new AddImages2LibResponse({}));
13844
- } else {
13845
- return $dara.cast<AddImages2LibResponse>(await this.execute(params, req, runtime), new AddImages2LibResponse({}));
13846
- }
13847
-
13867
+ return $dara.cast<AddImages2LibResponse>(await this.callApi(params, req, runtime), new AddImages2LibResponse({}));
13848
13868
  }
13849
13869
 
13850
13870
  /**
@@ -13900,12 +13920,7 @@ export default class Client extends OpenApi {
13900
13920
  reqBodyType: "formData",
13901
13921
  bodyType: "json",
13902
13922
  });
13903
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
13904
- return $dara.cast<AddKeywordLibResponse>(await this.callApi(params, req, runtime), new AddKeywordLibResponse({}));
13905
- } else {
13906
- return $dara.cast<AddKeywordLibResponse>(await this.execute(params, req, runtime), new AddKeywordLibResponse({}));
13907
- }
13908
-
13923
+ return $dara.cast<AddKeywordLibResponse>(await this.callApi(params, req, runtime), new AddKeywordLibResponse({}));
13909
13924
  }
13910
13925
 
13911
13926
  /**
@@ -13961,12 +13976,7 @@ export default class Client extends OpenApi {
13961
13976
  reqBodyType: "formData",
13962
13977
  bodyType: "json",
13963
13978
  });
13964
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
13965
- return $dara.cast<AddKeywordsResponse>(await this.callApi(params, req, runtime), new AddKeywordsResponse({}));
13966
- } else {
13967
- return $dara.cast<AddKeywordsResponse>(await this.execute(params, req, runtime), new AddKeywordsResponse({}));
13968
- }
13969
-
13979
+ return $dara.cast<AddKeywordsResponse>(await this.callApi(params, req, runtime), new AddKeywordsResponse({}));
13970
13980
  }
13971
13981
 
13972
13982
  /**
@@ -14022,12 +14032,7 @@ export default class Client extends OpenApi {
14022
14032
  reqBodyType: "formData",
14023
14033
  bodyType: "json",
14024
14034
  });
14025
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14026
- return $dara.cast<AddKeywordsToLibResponse>(await this.callApi(params, req, runtime), new AddKeywordsToLibResponse({}));
14027
- } else {
14028
- return $dara.cast<AddKeywordsToLibResponse>(await this.execute(params, req, runtime), new AddKeywordsToLibResponse({}));
14029
- }
14030
-
14035
+ return $dara.cast<AddKeywordsToLibResponse>(await this.callApi(params, req, runtime), new AddKeywordsToLibResponse({}));
14031
14036
  }
14032
14037
 
14033
14038
  /**
@@ -14073,12 +14078,7 @@ export default class Client extends OpenApi {
14073
14078
  reqBodyType: "formData",
14074
14079
  bodyType: "json",
14075
14080
  });
14076
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14077
- return $dara.cast<CancelStockOssCheckTaskResponse>(await this.callApi(params, req, runtime), new CancelStockOssCheckTaskResponse({}));
14078
- } else {
14079
- return $dara.cast<CancelStockOssCheckTaskResponse>(await this.execute(params, req, runtime), new CancelStockOssCheckTaskResponse({}));
14080
- }
14081
-
14081
+ return $dara.cast<CancelStockOssCheckTaskResponse>(await this.callApi(params, req, runtime), new CancelStockOssCheckTaskResponse({}));
14082
14082
  }
14083
14083
 
14084
14084
  /**
@@ -14138,12 +14138,7 @@ export default class Client extends OpenApi {
14138
14138
  reqBodyType: "formData",
14139
14139
  bodyType: "json",
14140
14140
  });
14141
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14142
- return $dara.cast<CopyServiceConfigResponse>(await this.callApi(params, req, runtime), new CopyServiceConfigResponse({}));
14143
- } else {
14144
- return $dara.cast<CopyServiceConfigResponse>(await this.execute(params, req, runtime), new CopyServiceConfigResponse({}));
14145
- }
14146
-
14141
+ return $dara.cast<CopyServiceConfigResponse>(await this.callApi(params, req, runtime), new CopyServiceConfigResponse({}));
14147
14142
  }
14148
14143
 
14149
14144
  /**
@@ -14285,12 +14280,7 @@ export default class Client extends OpenApi {
14285
14280
  reqBodyType: "formData",
14286
14281
  bodyType: "json",
14287
14282
  });
14288
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14289
- return $dara.cast<CreatStockOssCheckTaskResponse>(await this.callApi(params, req, runtime), new CreatStockOssCheckTaskResponse({}));
14290
- } else {
14291
- return $dara.cast<CreatStockOssCheckTaskResponse>(await this.execute(params, req, runtime), new CreatStockOssCheckTaskResponse({}));
14292
- }
14293
-
14283
+ return $dara.cast<CreatStockOssCheckTaskResponse>(await this.callApi(params, req, runtime), new CreatStockOssCheckTaskResponse({}));
14294
14284
  }
14295
14285
 
14296
14286
  /**
@@ -14350,12 +14340,7 @@ export default class Client extends OpenApi {
14350
14340
  reqBodyType: "formData",
14351
14341
  bodyType: "json",
14352
14342
  });
14353
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14354
- return $dara.cast<CreateAnswerLibResponse>(await this.callApi(params, req, runtime), new CreateAnswerLibResponse({}));
14355
- } else {
14356
- return $dara.cast<CreateAnswerLibResponse>(await this.execute(params, req, runtime), new CreateAnswerLibResponse({}));
14357
- }
14358
-
14343
+ return $dara.cast<CreateAnswerLibResponse>(await this.callApi(params, req, runtime), new CreateAnswerLibResponse({}));
14359
14344
  }
14360
14345
 
14361
14346
  /**
@@ -14415,12 +14400,7 @@ export default class Client extends OpenApi {
14415
14400
  reqBodyType: "formData",
14416
14401
  bodyType: "json",
14417
14402
  });
14418
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14419
- return $dara.cast<CreateCallbackResponse>(await this.callApi(params, req, runtime), new CreateCallbackResponse({}));
14420
- } else {
14421
- return $dara.cast<CreateCallbackResponse>(await this.execute(params, req, runtime), new CreateCallbackResponse({}));
14422
- }
14423
-
14403
+ return $dara.cast<CreateCallbackResponse>(await this.callApi(params, req, runtime), new CreateCallbackResponse({}));
14424
14404
  }
14425
14405
 
14426
14406
  /**
@@ -14516,12 +14496,7 @@ export default class Client extends OpenApi {
14516
14496
  reqBodyType: "formData",
14517
14497
  bodyType: "json",
14518
14498
  });
14519
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14520
- return $dara.cast<CreatePreCheckResponse>(await this.callApi(params, req, runtime), new CreatePreCheckResponse({}));
14521
- } else {
14522
- return $dara.cast<CreatePreCheckResponse>(await this.execute(params, req, runtime), new CreatePreCheckResponse({}));
14523
- }
14524
-
14499
+ return $dara.cast<CreatePreCheckResponse>(await this.callApi(params, req, runtime), new CreatePreCheckResponse({}));
14525
14500
  }
14526
14501
 
14527
14502
  /**
@@ -14567,12 +14542,7 @@ export default class Client extends OpenApi {
14567
14542
  reqBodyType: "formData",
14568
14543
  bodyType: "json",
14569
14544
  });
14570
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14571
- return $dara.cast<DeleteAnswerLibResponse>(await this.callApi(params, req, runtime), new DeleteAnswerLibResponse({}));
14572
- } else {
14573
- return $dara.cast<DeleteAnswerLibResponse>(await this.execute(params, req, runtime), new DeleteAnswerLibResponse({}));
14574
- }
14575
-
14545
+ return $dara.cast<DeleteAnswerLibResponse>(await this.callApi(params, req, runtime), new DeleteAnswerLibResponse({}));
14576
14546
  }
14577
14547
 
14578
14548
  /**
@@ -14624,12 +14594,7 @@ export default class Client extends OpenApi {
14624
14594
  reqBodyType: "formData",
14625
14595
  bodyType: "json",
14626
14596
  });
14627
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14628
- return $dara.cast<DeleteAnswerSampleResponse>(await this.callApi(params, req, runtime), new DeleteAnswerSampleResponse({}));
14629
- } else {
14630
- return $dara.cast<DeleteAnswerSampleResponse>(await this.execute(params, req, runtime), new DeleteAnswerSampleResponse({}));
14631
- }
14632
-
14597
+ return $dara.cast<DeleteAnswerSampleResponse>(await this.callApi(params, req, runtime), new DeleteAnswerSampleResponse({}));
14633
14598
  }
14634
14599
 
14635
14600
  /**
@@ -14677,12 +14642,7 @@ export default class Client extends OpenApi {
14677
14642
  reqBodyType: "formData",
14678
14643
  bodyType: "json",
14679
14644
  });
14680
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14681
- return $dara.cast<DeleteCallbackResponse>(await this.callApi(params, req, runtime), new DeleteCallbackResponse({}));
14682
- } else {
14683
- return $dara.cast<DeleteCallbackResponse>(await this.execute(params, req, runtime), new DeleteCallbackResponse({}));
14684
- }
14685
-
14645
+ return $dara.cast<DeleteCallbackResponse>(await this.callApi(params, req, runtime), new DeleteCallbackResponse({}));
14686
14646
  }
14687
14647
 
14688
14648
  /**
@@ -14742,12 +14702,7 @@ export default class Client extends OpenApi {
14742
14702
  reqBodyType: "formData",
14743
14703
  bodyType: "json",
14744
14704
  });
14745
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14746
- return $dara.cast<DeleteFeatureConfigResponse>(await this.callApi(params, req, runtime), new DeleteFeatureConfigResponse({}));
14747
- } else {
14748
- return $dara.cast<DeleteFeatureConfigResponse>(await this.execute(params, req, runtime), new DeleteFeatureConfigResponse({}));
14749
- }
14750
-
14705
+ return $dara.cast<DeleteFeatureConfigResponse>(await this.callApi(params, req, runtime), new DeleteFeatureConfigResponse({}));
14751
14706
  }
14752
14707
 
14753
14708
  /**
@@ -14799,12 +14754,7 @@ export default class Client extends OpenApi {
14799
14754
  reqBodyType: "formData",
14800
14755
  bodyType: "json",
14801
14756
  });
14802
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14803
- return $dara.cast<DeleteImagesFromLibResponse>(await this.callApi(params, req, runtime), new DeleteImagesFromLibResponse({}));
14804
- } else {
14805
- return $dara.cast<DeleteImagesFromLibResponse>(await this.execute(params, req, runtime), new DeleteImagesFromLibResponse({}));
14806
- }
14807
-
14757
+ return $dara.cast<DeleteImagesFromLibResponse>(await this.callApi(params, req, runtime), new DeleteImagesFromLibResponse({}));
14808
14758
  }
14809
14759
 
14810
14760
  /**
@@ -14860,12 +14810,7 @@ export default class Client extends OpenApi {
14860
14810
  reqBodyType: "formData",
14861
14811
  bodyType: "json",
14862
14812
  });
14863
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14864
- return $dara.cast<DeleteKeywordResponse>(await this.callApi(params, req, runtime), new DeleteKeywordResponse({}));
14865
- } else {
14866
- return $dara.cast<DeleteKeywordResponse>(await this.execute(params, req, runtime), new DeleteKeywordResponse({}));
14867
- }
14868
-
14813
+ return $dara.cast<DeleteKeywordResponse>(await this.callApi(params, req, runtime), new DeleteKeywordResponse({}));
14869
14814
  }
14870
14815
 
14871
14816
  /**
@@ -14913,12 +14858,7 @@ export default class Client extends OpenApi {
14913
14858
  reqBodyType: "formData",
14914
14859
  bodyType: "json",
14915
14860
  });
14916
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14917
- return $dara.cast<DeleteKeywordLibResponse>(await this.callApi(params, req, runtime), new DeleteKeywordLibResponse({}));
14918
- } else {
14919
- return $dara.cast<DeleteKeywordLibResponse>(await this.execute(params, req, runtime), new DeleteKeywordLibResponse({}));
14920
- }
14921
-
14861
+ return $dara.cast<DeleteKeywordLibResponse>(await this.callApi(params, req, runtime), new DeleteKeywordLibResponse({}));
14922
14862
  }
14923
14863
 
14924
14864
  /**
@@ -14966,12 +14906,7 @@ export default class Client extends OpenApi {
14966
14906
  reqBodyType: "formData",
14967
14907
  bodyType: "json",
14968
14908
  });
14969
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
14970
- return $dara.cast<ExportAnswerSampleResponse>(await this.callApi(params, req, runtime), new ExportAnswerSampleResponse({}));
14971
- } else {
14972
- return $dara.cast<ExportAnswerSampleResponse>(await this.execute(params, req, runtime), new ExportAnswerSampleResponse({}));
14973
- }
14974
-
14909
+ return $dara.cast<ExportAnswerSampleResponse>(await this.callApi(params, req, runtime), new ExportAnswerSampleResponse({}));
14975
14910
  }
14976
14911
 
14977
14912
  /**
@@ -15051,12 +14986,7 @@ export default class Client extends OpenApi {
15051
14986
  reqBodyType: "formData",
15052
14987
  bodyType: "json",
15053
14988
  });
15054
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15055
- return $dara.cast<ExportCipStatsResponse>(await this.callApi(params, req, runtime), new ExportCipStatsResponse({}));
15056
- } else {
15057
- return $dara.cast<ExportCipStatsResponse>(await this.execute(params, req, runtime), new ExportCipStatsResponse({}));
15058
- }
15059
-
14989
+ return $dara.cast<ExportCipStatsResponse>(await this.callApi(params, req, runtime), new ExportCipStatsResponse({}));
15060
14990
  }
15061
14991
 
15062
14992
  /**
@@ -15104,12 +15034,7 @@ export default class Client extends OpenApi {
15104
15034
  reqBodyType: "formData",
15105
15035
  bodyType: "json",
15106
15036
  });
15107
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15108
- return $dara.cast<ExportKeywordResponse>(await this.callApi(params, req, runtime), new ExportKeywordResponse({}));
15109
- } else {
15110
- return $dara.cast<ExportKeywordResponse>(await this.execute(params, req, runtime), new ExportKeywordResponse({}));
15111
- }
15112
-
15037
+ return $dara.cast<ExportKeywordResponse>(await this.callApi(params, req, runtime), new ExportKeywordResponse({}));
15113
15038
  }
15114
15039
 
15115
15040
  /**
@@ -15169,12 +15094,7 @@ export default class Client extends OpenApi {
15169
15094
  reqBodyType: "formData",
15170
15095
  bodyType: "json",
15171
15096
  });
15172
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15173
- return $dara.cast<ExportOssCheckStatResponse>(await this.callApi(params, req, runtime), new ExportOssCheckStatResponse({}));
15174
- } else {
15175
- return $dara.cast<ExportOssCheckStatResponse>(await this.execute(params, req, runtime), new ExportOssCheckStatResponse({}));
15176
- }
15177
-
15097
+ return $dara.cast<ExportOssCheckStatResponse>(await this.callApi(params, req, runtime), new ExportOssCheckStatResponse({}));
15178
15098
  }
15179
15099
 
15180
15100
  /**
@@ -15248,12 +15168,7 @@ export default class Client extends OpenApi {
15248
15168
  reqBodyType: "formData",
15249
15169
  bodyType: "json",
15250
15170
  });
15251
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15252
- return $dara.cast<ExportResultResponse>(await this.callApi(params, req, runtime), new ExportResultResponse({}));
15253
- } else {
15254
- return $dara.cast<ExportResultResponse>(await this.execute(params, req, runtime), new ExportResultResponse({}));
15255
- }
15256
-
15171
+ return $dara.cast<ExportResultResponse>(await this.callApi(params, req, runtime), new ExportResultResponse({}));
15257
15172
  }
15258
15173
 
15259
15174
  /**
@@ -15335,12 +15250,7 @@ export default class Client extends OpenApi {
15335
15250
  reqBodyType: "formData",
15336
15251
  bodyType: "json",
15337
15252
  });
15338
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15339
- return $dara.cast<ExportScanResultResponse>(await this.callApi(params, req, runtime), new ExportScanResultResponse({}));
15340
- } else {
15341
- return $dara.cast<ExportScanResultResponse>(await this.execute(params, req, runtime), new ExportScanResultResponse({}));
15342
- }
15343
-
15253
+ return $dara.cast<ExportScanResultResponse>(await this.callApi(params, req, runtime), new ExportScanResultResponse({}));
15344
15254
  }
15345
15255
 
15346
15256
  /**
@@ -15402,12 +15312,7 @@ export default class Client extends OpenApi {
15402
15312
  reqBodyType: "formData",
15403
15313
  bodyType: "json",
15404
15314
  });
15405
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15406
- return $dara.cast<ExportTextScanResultResponse>(await this.callApi(params, req, runtime), new ExportTextScanResultResponse({}));
15407
- } else {
15408
- return $dara.cast<ExportTextScanResultResponse>(await this.execute(params, req, runtime), new ExportTextScanResultResponse({}));
15409
- }
15410
-
15315
+ return $dara.cast<ExportTextScanResultResponse>(await this.callApi(params, req, runtime), new ExportTextScanResultResponse({}));
15411
15316
  }
15412
15317
 
15413
15318
  /**
@@ -15453,12 +15358,7 @@ export default class Client extends OpenApi {
15453
15358
  reqBodyType: "formData",
15454
15359
  bodyType: "json",
15455
15360
  });
15456
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15457
- return $dara.cast<GetAnswerImportProgressResponse>(await this.callApi(params, req, runtime), new GetAnswerImportProgressResponse({}));
15458
- } else {
15459
- return $dara.cast<GetAnswerImportProgressResponse>(await this.execute(params, req, runtime), new GetAnswerImportProgressResponse({}));
15460
- }
15461
-
15361
+ return $dara.cast<GetAnswerImportProgressResponse>(await this.callApi(params, req, runtime), new GetAnswerImportProgressResponse({}));
15462
15362
  }
15463
15363
 
15464
15364
  /**
@@ -15500,12 +15400,7 @@ export default class Client extends OpenApi {
15500
15400
  reqBodyType: "formData",
15501
15401
  bodyType: "json",
15502
15402
  });
15503
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15504
- return $dara.cast<GetBackupBucketsListResponse>(await this.callApi(params, req, runtime), new GetBackupBucketsListResponse({}));
15505
- } else {
15506
- return $dara.cast<GetBackupBucketsListResponse>(await this.execute(params, req, runtime), new GetBackupBucketsListResponse({}));
15507
- }
15508
-
15403
+ return $dara.cast<GetBackupBucketsListResponse>(await this.callApi(params, req, runtime), new GetBackupBucketsListResponse({}));
15509
15404
  }
15510
15405
 
15511
15406
  /**
@@ -15555,12 +15450,7 @@ export default class Client extends OpenApi {
15555
15450
  reqBodyType: "formData",
15556
15451
  bodyType: "json",
15557
15452
  });
15558
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15559
- return $dara.cast<GetBackupConfigResponse>(await this.callApi(params, req, runtime), new GetBackupConfigResponse({}));
15560
- } else {
15561
- return $dara.cast<GetBackupConfigResponse>(await this.execute(params, req, runtime), new GetBackupConfigResponse({}));
15562
- }
15563
-
15453
+ return $dara.cast<GetBackupConfigResponse>(await this.callApi(params, req, runtime), new GetBackupConfigResponse({}));
15564
15454
  }
15565
15455
 
15566
15456
  /**
@@ -15602,12 +15492,7 @@ export default class Client extends OpenApi {
15602
15492
  reqBodyType: "formData",
15603
15493
  bodyType: "json",
15604
15494
  });
15605
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15606
- return $dara.cast<GetBackupStatusResponse>(await this.callApi(params, req, runtime), new GetBackupStatusResponse({}));
15607
- } else {
15608
- return $dara.cast<GetBackupStatusResponse>(await this.execute(params, req, runtime), new GetBackupStatusResponse({}));
15609
- }
15610
-
15495
+ return $dara.cast<GetBackupStatusResponse>(await this.callApi(params, req, runtime), new GetBackupStatusResponse({}));
15611
15496
  }
15612
15497
 
15613
15498
  /**
@@ -15649,12 +15534,7 @@ export default class Client extends OpenApi {
15649
15534
  reqBodyType: "formData",
15650
15535
  bodyType: "json",
15651
15536
  });
15652
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15653
- return $dara.cast<GetBucketsListResponse>(await this.callApi(params, req, runtime), new GetBucketsListResponse({}));
15654
- } else {
15655
- return $dara.cast<GetBucketsListResponse>(await this.execute(params, req, runtime), new GetBucketsListResponse({}));
15656
- }
15657
-
15537
+ return $dara.cast<GetBucketsListResponse>(await this.callApi(params, req, runtime), new GetBucketsListResponse({}));
15658
15538
  }
15659
15539
 
15660
15540
  /**
@@ -15730,12 +15610,7 @@ export default class Client extends OpenApi {
15730
15610
  reqBodyType: "formData",
15731
15611
  bodyType: "json",
15732
15612
  });
15733
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15734
- return $dara.cast<GetCipStatsResponse>(await this.callApi(params, req, runtime), new GetCipStatsResponse({}));
15735
- } else {
15736
- return $dara.cast<GetCipStatsResponse>(await this.execute(params, req, runtime), new GetCipStatsResponse({}));
15737
- }
15738
-
15613
+ return $dara.cast<GetCipStatsResponse>(await this.callApi(params, req, runtime), new GetCipStatsResponse({}));
15739
15614
  }
15740
15615
 
15741
15616
  /**
@@ -15777,12 +15652,7 @@ export default class Client extends OpenApi {
15777
15652
  reqBodyType: "formData",
15778
15653
  bodyType: "json",
15779
15654
  });
15780
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15781
- return $dara.cast<GetExecuteTimeResponse>(await this.callApi(params, req, runtime), new GetExecuteTimeResponse({}));
15782
- } else {
15783
- return $dara.cast<GetExecuteTimeResponse>(await this.execute(params, req, runtime), new GetExecuteTimeResponse({}));
15784
- }
15785
-
15655
+ return $dara.cast<GetExecuteTimeResponse>(await this.callApi(params, req, runtime), new GetExecuteTimeResponse({}));
15786
15656
  }
15787
15657
 
15788
15658
  /**
@@ -15838,12 +15708,7 @@ export default class Client extends OpenApi {
15838
15708
  reqBodyType: "formData",
15839
15709
  bodyType: "json",
15840
15710
  });
15841
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15842
- return $dara.cast<GetFeatureConfigResponse>(await this.callApi(params, req, runtime), new GetFeatureConfigResponse({}));
15843
- } else {
15844
- return $dara.cast<GetFeatureConfigResponse>(await this.execute(params, req, runtime), new GetFeatureConfigResponse({}));
15845
- }
15846
-
15711
+ return $dara.cast<GetFeatureConfigResponse>(await this.callApi(params, req, runtime), new GetFeatureConfigResponse({}));
15847
15712
  }
15848
15713
 
15849
15714
  /**
@@ -15885,12 +15750,7 @@ export default class Client extends OpenApi {
15885
15750
  reqBodyType: "formData",
15886
15751
  bodyType: "json",
15887
15752
  });
15888
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15889
- return $dara.cast<GetImageSceneLabelConfResponse>(await this.callApi(params, req, runtime), new GetImageSceneLabelConfResponse({}));
15890
- } else {
15891
- return $dara.cast<GetImageSceneLabelConfResponse>(await this.execute(params, req, runtime), new GetImageSceneLabelConfResponse({}));
15892
- }
15893
-
15753
+ return $dara.cast<GetImageSceneLabelConfResponse>(await this.callApi(params, req, runtime), new GetImageSceneLabelConfResponse({}));
15894
15754
  }
15895
15755
 
15896
15756
  /**
@@ -15936,12 +15796,7 @@ export default class Client extends OpenApi {
15936
15796
  reqBodyType: "formData",
15937
15797
  bodyType: "json",
15938
15798
  });
15939
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
15940
- return $dara.cast<GetImageSceneLabelListConfResponse>(await this.callApi(params, req, runtime), new GetImageSceneLabelListConfResponse({}));
15941
- } else {
15942
- return $dara.cast<GetImageSceneLabelListConfResponse>(await this.execute(params, req, runtime), new GetImageSceneLabelListConfResponse({}));
15943
- }
15944
-
15799
+ return $dara.cast<GetImageSceneLabelListConfResponse>(await this.callApi(params, req, runtime), new GetImageSceneLabelListConfResponse({}));
15945
15800
  }
15946
15801
 
15947
15802
  /**
@@ -16005,12 +15860,7 @@ export default class Client extends OpenApi {
16005
15860
  reqBodyType: "formData",
16006
15861
  bodyType: "json",
16007
15862
  });
16008
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16009
- return $dara.cast<GetJobNameListResponse>(await this.callApi(params, req, runtime), new GetJobNameListResponse({}));
16010
- } else {
16011
- return $dara.cast<GetJobNameListResponse>(await this.execute(params, req, runtime), new GetJobNameListResponse({}));
16012
- }
16013
-
15863
+ return $dara.cast<GetJobNameListResponse>(await this.callApi(params, req, runtime), new GetJobNameListResponse({}));
16014
15864
  }
16015
15865
 
16016
15866
  /**
@@ -16058,12 +15908,7 @@ export default class Client extends OpenApi {
16058
15908
  reqBodyType: "formData",
16059
15909
  bodyType: "json",
16060
15910
  });
16061
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16062
- return $dara.cast<GetKeywordImportResultResponse>(await this.callApi(params, req, runtime), new GetKeywordImportResultResponse({}));
16063
- } else {
16064
- return $dara.cast<GetKeywordImportResultResponse>(await this.execute(params, req, runtime), new GetKeywordImportResultResponse({}));
16065
- }
16066
-
15911
+ return $dara.cast<GetKeywordImportResultResponse>(await this.callApi(params, req, runtime), new GetKeywordImportResultResponse({}));
16067
15912
  }
16068
15913
 
16069
15914
  /**
@@ -16111,12 +15956,7 @@ export default class Client extends OpenApi {
16111
15956
  reqBodyType: "formData",
16112
15957
  bodyType: "json",
16113
15958
  });
16114
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16115
- return $dara.cast<GetKeywordLibResponse>(await this.callApi(params, req, runtime), new GetKeywordLibResponse({}));
16116
- } else {
16117
- return $dara.cast<GetKeywordLibResponse>(await this.execute(params, req, runtime), new GetKeywordLibResponse({}));
16118
- }
16119
-
15959
+ return $dara.cast<GetKeywordLibResponse>(await this.callApi(params, req, runtime), new GetKeywordLibResponse({}));
16120
15960
  }
16121
15961
 
16122
15962
  /**
@@ -16176,12 +16016,7 @@ export default class Client extends OpenApi {
16176
16016
  reqBodyType: "formData",
16177
16017
  bodyType: "json",
16178
16018
  });
16179
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16180
- return $dara.cast<GetOssCheckStatResponse>(await this.callApi(params, req, runtime), new GetOssCheckStatResponse({}));
16181
- } else {
16182
- return $dara.cast<GetOssCheckStatResponse>(await this.execute(params, req, runtime), new GetOssCheckStatResponse({}));
16183
- }
16184
-
16019
+ return $dara.cast<GetOssCheckStatResponse>(await this.callApi(params, req, runtime), new GetOssCheckStatResponse({}));
16185
16020
  }
16186
16021
 
16187
16022
  /**
@@ -16223,12 +16058,7 @@ export default class Client extends OpenApi {
16223
16058
  reqBodyType: "formData",
16224
16059
  bodyType: "json",
16225
16060
  });
16226
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16227
- return $dara.cast<GetOssCheckStatusResponse>(await this.callApi(params, req, runtime), new GetOssCheckStatusResponse({}));
16228
- } else {
16229
- return $dara.cast<GetOssCheckStatusResponse>(await this.execute(params, req, runtime), new GetOssCheckStatusResponse({}));
16230
- }
16231
-
16061
+ return $dara.cast<GetOssCheckStatusResponse>(await this.callApi(params, req, runtime), new GetOssCheckStatusResponse({}));
16232
16062
  }
16233
16063
 
16234
16064
  /**
@@ -16278,12 +16108,7 @@ export default class Client extends OpenApi {
16278
16108
  reqBodyType: "formData",
16279
16109
  bodyType: "json",
16280
16110
  });
16281
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16282
- return $dara.cast<GetScanNumResponse>(await this.callApi(params, req, runtime), new GetScanNumResponse({}));
16283
- } else {
16284
- return $dara.cast<GetScanNumResponse>(await this.execute(params, req, runtime), new GetScanNumResponse({}));
16285
- }
16286
-
16111
+ return $dara.cast<GetScanNumResponse>(await this.callApi(params, req, runtime), new GetScanNumResponse({}));
16287
16112
  }
16288
16113
 
16289
16114
  /**
@@ -16365,12 +16190,7 @@ export default class Client extends OpenApi {
16365
16190
  reqBodyType: "formData",
16366
16191
  bodyType: "json",
16367
16192
  });
16368
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16369
- return $dara.cast<GetScanResultResponse>(await this.callApi(params, req, runtime), new GetScanResultResponse({}));
16370
- } else {
16371
- return $dara.cast<GetScanResultResponse>(await this.execute(params, req, runtime), new GetScanResultResponse({}));
16372
- }
16373
-
16193
+ return $dara.cast<GetScanResultResponse>(await this.callApi(params, req, runtime), new GetScanResultResponse({}));
16374
16194
  }
16375
16195
 
16376
16196
  /**
@@ -16430,12 +16250,7 @@ export default class Client extends OpenApi {
16430
16250
  reqBodyType: "formData",
16431
16251
  bodyType: "json",
16432
16252
  });
16433
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16434
- return $dara.cast<GetServiceConfResponse>(await this.callApi(params, req, runtime), new GetServiceConfResponse({}));
16435
- } else {
16436
- return $dara.cast<GetServiceConfResponse>(await this.execute(params, req, runtime), new GetServiceConfResponse({}));
16437
- }
16438
-
16253
+ return $dara.cast<GetServiceConfResponse>(await this.callApi(params, req, runtime), new GetServiceConfResponse({}));
16439
16254
  }
16440
16255
 
16441
16256
  /**
@@ -16487,12 +16302,7 @@ export default class Client extends OpenApi {
16487
16302
  reqBodyType: "formData",
16488
16303
  bodyType: "json",
16489
16304
  });
16490
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16491
- return $dara.cast<GetServiceConfigResponse>(await this.callApi(params, req, runtime), new GetServiceConfigResponse({}));
16492
- } else {
16493
- return $dara.cast<GetServiceConfigResponse>(await this.execute(params, req, runtime), new GetServiceConfigResponse({}));
16494
- }
16495
-
16305
+ return $dara.cast<GetServiceConfigResponse>(await this.callApi(params, req, runtime), new GetServiceConfigResponse({}));
16496
16306
  }
16497
16307
 
16498
16308
  /**
@@ -16544,12 +16354,7 @@ export default class Client extends OpenApi {
16544
16354
  reqBodyType: "formData",
16545
16355
  bodyType: "json",
16546
16356
  });
16547
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16548
- return $dara.cast<GetServiceLabelConfigResponse>(await this.callApi(params, req, runtime), new GetServiceLabelConfigResponse({}));
16549
- } else {
16550
- return $dara.cast<GetServiceLabelConfigResponse>(await this.execute(params, req, runtime), new GetServiceLabelConfigResponse({}));
16551
- }
16552
-
16357
+ return $dara.cast<GetServiceLabelConfigResponse>(await this.callApi(params, req, runtime), new GetServiceLabelConfigResponse({}));
16553
16358
  }
16554
16359
 
16555
16360
  /**
@@ -16631,12 +16436,7 @@ export default class Client extends OpenApi {
16631
16436
  reqBodyType: "formData",
16632
16437
  bodyType: "json",
16633
16438
  });
16634
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16635
- return $dara.cast<GetStockOssCheckTasksListResponse>(await this.callApi(params, req, runtime), new GetStockOssCheckTasksListResponse({}));
16636
- } else {
16637
- return $dara.cast<GetStockOssCheckTasksListResponse>(await this.execute(params, req, runtime), new GetStockOssCheckTasksListResponse({}));
16638
- }
16639
-
16439
+ return $dara.cast<GetStockOssCheckTasksListResponse>(await this.callApi(params, req, runtime), new GetStockOssCheckTasksListResponse({}));
16640
16440
  }
16641
16441
 
16642
16442
  /**
@@ -16714,12 +16514,7 @@ export default class Client extends OpenApi {
16714
16514
  reqBodyType: "formData",
16715
16515
  bodyType: "json",
16716
16516
  });
16717
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16718
- return $dara.cast<GetTextScanResultResponse>(await this.callApi(params, req, runtime), new GetTextScanResultResponse({}));
16719
- } else {
16720
- return $dara.cast<GetTextScanResultResponse>(await this.execute(params, req, runtime), new GetTextScanResultResponse({}));
16721
- }
16722
-
16517
+ return $dara.cast<GetTextScanResultResponse>(await this.callApi(params, req, runtime), new GetTextScanResultResponse({}));
16723
16518
  }
16724
16519
 
16725
16520
  /**
@@ -16771,12 +16566,7 @@ export default class Client extends OpenApi {
16771
16566
  reqBodyType: "formData",
16772
16567
  bodyType: "json",
16773
16568
  });
16774
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16775
- return $dara.cast<GetUploadInfoResponse>(await this.callApi(params, req, runtime), new GetUploadInfoResponse({}));
16776
- } else {
16777
- return $dara.cast<GetUploadInfoResponse>(await this.execute(params, req, runtime), new GetUploadInfoResponse({}));
16778
- }
16779
-
16569
+ return $dara.cast<GetUploadInfoResponse>(await this.callApi(params, req, runtime), new GetUploadInfoResponse({}));
16780
16570
  }
16781
16571
 
16782
16572
  /**
@@ -16824,12 +16614,7 @@ export default class Client extends OpenApi {
16824
16614
  reqBodyType: "formData",
16825
16615
  bodyType: "json",
16826
16616
  });
16827
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16828
- return $dara.cast<GetUserBuyStatusResponse>(await this.callApi(params, req, runtime), new GetUserBuyStatusResponse({}));
16829
- } else {
16830
- return $dara.cast<GetUserBuyStatusResponse>(await this.execute(params, req, runtime), new GetUserBuyStatusResponse({}));
16831
- }
16832
-
16617
+ return $dara.cast<GetUserBuyStatusResponse>(await this.callApi(params, req, runtime), new GetUserBuyStatusResponse({}));
16833
16618
  }
16834
16619
 
16835
16620
  /**
@@ -16871,12 +16656,7 @@ export default class Client extends OpenApi {
16871
16656
  reqBodyType: "formData",
16872
16657
  bodyType: "json",
16873
16658
  });
16874
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16875
- return $dara.cast<ListAnswerLibResponse>(await this.callApi(params, req, runtime), new ListAnswerLibResponse({}));
16876
- } else {
16877
- return $dara.cast<ListAnswerLibResponse>(await this.execute(params, req, runtime), new ListAnswerLibResponse({}));
16878
- }
16879
-
16659
+ return $dara.cast<ListAnswerLibResponse>(await this.callApi(params, req, runtime), new ListAnswerLibResponse({}));
16880
16660
  }
16881
16661
 
16882
16662
  /**
@@ -16918,12 +16698,7 @@ export default class Client extends OpenApi {
16918
16698
  reqBodyType: "formData",
16919
16699
  bodyType: "json",
16920
16700
  });
16921
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16922
- return $dara.cast<ListCallbackResponse>(await this.callApi(params, req, runtime), new ListCallbackResponse({}));
16923
- } else {
16924
- return $dara.cast<ListCallbackResponse>(await this.execute(params, req, runtime), new ListCallbackResponse({}));
16925
- }
16926
-
16701
+ return $dara.cast<ListCallbackResponse>(await this.callApi(params, req, runtime), new ListCallbackResponse({}));
16927
16702
  }
16928
16703
 
16929
16704
  /**
@@ -16965,12 +16740,7 @@ export default class Client extends OpenApi {
16965
16740
  reqBodyType: "formData",
16966
16741
  bodyType: "json",
16967
16742
  });
16968
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
16969
- return $dara.cast<ListImageLibResponse>(await this.callApi(params, req, runtime), new ListImageLibResponse({}));
16970
- } else {
16971
- return $dara.cast<ListImageLibResponse>(await this.execute(params, req, runtime), new ListImageLibResponse({}));
16972
- }
16973
-
16743
+ return $dara.cast<ListImageLibResponse>(await this.callApi(params, req, runtime), new ListImageLibResponse({}));
16974
16744
  }
16975
16745
 
16976
16746
  /**
@@ -17048,12 +16818,7 @@ export default class Client extends OpenApi {
17048
16818
  reqBodyType: "formData",
17049
16819
  bodyType: "json",
17050
16820
  });
17051
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17052
- return $dara.cast<ListImagesFromLibResponse>(await this.callApi(params, req, runtime), new ListImagesFromLibResponse({}));
17053
- } else {
17054
- return $dara.cast<ListImagesFromLibResponse>(await this.execute(params, req, runtime), new ListImagesFromLibResponse({}));
17055
- }
17056
-
16821
+ return $dara.cast<ListImagesFromLibResponse>(await this.callApi(params, req, runtime), new ListImagesFromLibResponse({}));
17057
16822
  }
17058
16823
 
17059
16824
  /**
@@ -17095,12 +16860,7 @@ export default class Client extends OpenApi {
17095
16860
  reqBodyType: "formData",
17096
16861
  bodyType: "json",
17097
16862
  });
17098
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17099
- return $dara.cast<ListKeywordLibsResponse>(await this.callApi(params, req, runtime), new ListKeywordLibsResponse({}));
17100
- } else {
17101
- return $dara.cast<ListKeywordLibsResponse>(await this.execute(params, req, runtime), new ListKeywordLibsResponse({}));
17102
- }
17103
-
16863
+ return $dara.cast<ListKeywordLibsResponse>(await this.callApi(params, req, runtime), new ListKeywordLibsResponse({}));
17104
16864
  }
17105
16865
 
17106
16866
  /**
@@ -17170,12 +16930,7 @@ export default class Client extends OpenApi {
17170
16930
  reqBodyType: "formData",
17171
16931
  bodyType: "json",
17172
16932
  });
17173
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17174
- return $dara.cast<ListKeywordsResponse>(await this.callApi(params, req, runtime), new ListKeywordsResponse({}));
17175
- } else {
17176
- return $dara.cast<ListKeywordsResponse>(await this.execute(params, req, runtime), new ListKeywordsResponse({}));
17177
- }
17178
-
16933
+ return $dara.cast<ListKeywordsResponse>(await this.callApi(params, req, runtime), new ListKeywordsResponse({}));
17179
16934
  }
17180
16935
 
17181
16936
  /**
@@ -17255,12 +17010,7 @@ export default class Client extends OpenApi {
17255
17010
  reqBodyType: "formData",
17256
17011
  bodyType: "json",
17257
17012
  });
17258
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17259
- return $dara.cast<ListOssCheckResultResponse>(await this.callApi(params, req, runtime), new ListOssCheckResultResponse({}));
17260
- } else {
17261
- return $dara.cast<ListOssCheckResultResponse>(await this.execute(params, req, runtime), new ListOssCheckResultResponse({}));
17262
- }
17263
-
17013
+ return $dara.cast<ListOssCheckResultResponse>(await this.callApi(params, req, runtime), new ListOssCheckResultResponse({}));
17264
17014
  }
17265
17015
 
17266
17016
  /**
@@ -17316,12 +17066,7 @@ export default class Client extends OpenApi {
17316
17066
  reqBodyType: "formData",
17317
17067
  bodyType: "json",
17318
17068
  });
17319
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17320
- return $dara.cast<ListServiceConfigsResponse>(await this.callApi(params, req, runtime), new ListServiceConfigsResponse({}));
17321
- } else {
17322
- return $dara.cast<ListServiceConfigsResponse>(await this.execute(params, req, runtime), new ListServiceConfigsResponse({}));
17323
- }
17324
-
17069
+ return $dara.cast<ListServiceConfigsResponse>(await this.callApi(params, req, runtime), new ListServiceConfigsResponse({}));
17325
17070
  }
17326
17071
 
17327
17072
  /**
@@ -17371,12 +17116,7 @@ export default class Client extends OpenApi {
17371
17116
  reqBodyType: "formData",
17372
17117
  bodyType: "json",
17373
17118
  });
17374
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17375
- return $dara.cast<ModifyAnswerLibResponse>(await this.callApi(params, req, runtime), new ModifyAnswerLibResponse({}));
17376
- } else {
17377
- return $dara.cast<ModifyAnswerLibResponse>(await this.execute(params, req, runtime), new ModifyAnswerLibResponse({}));
17378
- }
17379
-
17119
+ return $dara.cast<ModifyAnswerLibResponse>(await this.callApi(params, req, runtime), new ModifyAnswerLibResponse({}));
17380
17120
  }
17381
17121
 
17382
17122
  /**
@@ -17440,12 +17180,7 @@ export default class Client extends OpenApi {
17440
17180
  reqBodyType: "formData",
17441
17181
  bodyType: "json",
17442
17182
  });
17443
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17444
- return $dara.cast<ModifyCallbackResponse>(await this.callApi(params, req, runtime), new ModifyCallbackResponse({}));
17445
- } else {
17446
- return $dara.cast<ModifyCallbackResponse>(await this.execute(params, req, runtime), new ModifyCallbackResponse({}));
17447
- }
17448
-
17183
+ return $dara.cast<ModifyCallbackResponse>(await this.callApi(params, req, runtime), new ModifyCallbackResponse({}));
17449
17184
  }
17450
17185
 
17451
17186
  /**
@@ -17513,12 +17248,7 @@ export default class Client extends OpenApi {
17513
17248
  reqBodyType: "formData",
17514
17249
  bodyType: "json",
17515
17250
  });
17516
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17517
- return $dara.cast<ModifyFeatureConfigResponse>(await this.callApi(params, req, runtime), new ModifyFeatureConfigResponse({}));
17518
- } else {
17519
- return $dara.cast<ModifyFeatureConfigResponse>(await this.execute(params, req, runtime), new ModifyFeatureConfigResponse({}));
17520
- }
17521
-
17251
+ return $dara.cast<ModifyFeatureConfigResponse>(await this.callApi(params, req, runtime), new ModifyFeatureConfigResponse({}));
17522
17252
  }
17523
17253
 
17524
17254
  /**
@@ -17578,12 +17308,7 @@ export default class Client extends OpenApi {
17578
17308
  reqBodyType: "formData",
17579
17309
  bodyType: "json",
17580
17310
  });
17581
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17582
- return $dara.cast<ModifyServiceInfoResponse>(await this.callApi(params, req, runtime), new ModifyServiceInfoResponse({}));
17583
- } else {
17584
- return $dara.cast<ModifyServiceInfoResponse>(await this.execute(params, req, runtime), new ModifyServiceInfoResponse({}));
17585
- }
17586
-
17311
+ return $dara.cast<ModifyServiceInfoResponse>(await this.callApi(params, req, runtime), new ModifyServiceInfoResponse({}));
17587
17312
  }
17588
17313
 
17589
17314
  /**
@@ -17651,12 +17376,7 @@ export default class Client extends OpenApi {
17651
17376
  reqBodyType: "formData",
17652
17377
  bodyType: "json",
17653
17378
  });
17654
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17655
- return $dara.cast<QueryAnswerSampleByPageResponse>(await this.callApi(params, req, runtime), new QueryAnswerSampleByPageResponse({}));
17656
- } else {
17657
- return $dara.cast<QueryAnswerSampleByPageResponse>(await this.execute(params, req, runtime), new QueryAnswerSampleByPageResponse({}));
17658
- }
17659
-
17379
+ return $dara.cast<QueryAnswerSampleByPageResponse>(await this.callApi(params, req, runtime), new QueryAnswerSampleByPageResponse({}));
17660
17380
  }
17661
17381
 
17662
17382
  /**
@@ -17708,12 +17428,7 @@ export default class Client extends OpenApi {
17708
17428
  reqBodyType: "formData",
17709
17429
  bodyType: "json",
17710
17430
  });
17711
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17712
- return $dara.cast<QueryCallbackResponse>(await this.callApi(params, req, runtime), new QueryCallbackResponse({}));
17713
- } else {
17714
- return $dara.cast<QueryCallbackResponse>(await this.execute(params, req, runtime), new QueryCallbackResponse({}));
17715
- }
17716
-
17431
+ return $dara.cast<QueryCallbackResponse>(await this.callApi(params, req, runtime), new QueryCallbackResponse({}));
17717
17432
  }
17718
17433
 
17719
17434
  /**
@@ -17765,12 +17480,7 @@ export default class Client extends OpenApi {
17765
17480
  reqBodyType: "formData",
17766
17481
  bodyType: "json",
17767
17482
  });
17768
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17769
- return $dara.cast<QueryCallbackByPageResponse>(await this.callApi(params, req, runtime), new QueryCallbackByPageResponse({}));
17770
- } else {
17771
- return $dara.cast<QueryCallbackByPageResponse>(await this.execute(params, req, runtime), new QueryCallbackByPageResponse({}));
17772
- }
17773
-
17483
+ return $dara.cast<QueryCallbackByPageResponse>(await this.callApi(params, req, runtime), new QueryCallbackByPageResponse({}));
17774
17484
  }
17775
17485
 
17776
17486
  /**
@@ -17824,12 +17534,7 @@ export default class Client extends OpenApi {
17824
17534
  reqBodyType: "formData",
17825
17535
  bodyType: "json",
17826
17536
  });
17827
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17828
- return $dara.cast<UpdateBackupConfigResponse>(await this.callApi(params, req, runtime), new UpdateBackupConfigResponse({}));
17829
- } else {
17830
- return $dara.cast<UpdateBackupConfigResponse>(await this.execute(params, req, runtime), new UpdateBackupConfigResponse({}));
17831
- }
17832
-
17537
+ return $dara.cast<UpdateBackupConfigResponse>(await this.callApi(params, req, runtime), new UpdateBackupConfigResponse({}));
17833
17538
  }
17834
17539
 
17835
17540
  /**
@@ -17889,12 +17594,7 @@ export default class Client extends OpenApi {
17889
17594
  reqBodyType: "formData",
17890
17595
  bodyType: "json",
17891
17596
  });
17892
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17893
- return $dara.cast<UpdateImageLibResponse>(await this.callApi(params, req, runtime), new UpdateImageLibResponse({}));
17894
- } else {
17895
- return $dara.cast<UpdateImageLibResponse>(await this.execute(params, req, runtime), new UpdateImageLibResponse({}));
17896
- }
17897
-
17597
+ return $dara.cast<UpdateImageLibResponse>(await this.callApi(params, req, runtime), new UpdateImageLibResponse({}));
17898
17598
  }
17899
17599
 
17900
17600
  /**
@@ -17948,12 +17648,7 @@ export default class Client extends OpenApi {
17948
17648
  reqBodyType: "formData",
17949
17649
  bodyType: "json",
17950
17650
  });
17951
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
17952
- return $dara.cast<UpdateImageLibFreeInspectionResponse>(await this.callApi(params, req, runtime), new UpdateImageLibFreeInspectionResponse({}));
17953
- } else {
17954
- return $dara.cast<UpdateImageLibFreeInspectionResponse>(await this.execute(params, req, runtime), new UpdateImageLibFreeInspectionResponse({}));
17955
- }
17956
-
17651
+ return $dara.cast<UpdateImageLibFreeInspectionResponse>(await this.callApi(params, req, runtime), new UpdateImageLibFreeInspectionResponse({}));
17957
17652
  }
17958
17653
 
17959
17654
  /**
@@ -18005,12 +17700,7 @@ export default class Client extends OpenApi {
18005
17700
  reqBodyType: "formData",
18006
17701
  bodyType: "json",
18007
17702
  });
18008
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
18009
- return $dara.cast<UpdateKeywordLibResponse>(await this.callApi(params, req, runtime), new UpdateKeywordLibResponse({}));
18010
- } else {
18011
- return $dara.cast<UpdateKeywordLibResponse>(await this.execute(params, req, runtime), new UpdateKeywordLibResponse({}));
18012
- }
18013
-
17703
+ return $dara.cast<UpdateKeywordLibResponse>(await this.callApi(params, req, runtime), new UpdateKeywordLibResponse({}));
18014
17704
  }
18015
17705
 
18016
17706
  /**
@@ -18066,12 +17756,7 @@ export default class Client extends OpenApi {
18066
17756
  reqBodyType: "formData",
18067
17757
  bodyType: "json",
18068
17758
  });
18069
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
18070
- return $dara.cast<UpdateScanResultFeedbackResponse>(await this.callApi(params, req, runtime), new UpdateScanResultFeedbackResponse({}));
18071
- } else {
18072
- return $dara.cast<UpdateScanResultFeedbackResponse>(await this.execute(params, req, runtime), new UpdateScanResultFeedbackResponse({}));
18073
- }
18074
-
17759
+ return $dara.cast<UpdateScanResultFeedbackResponse>(await this.callApi(params, req, runtime), new UpdateScanResultFeedbackResponse({}));
18075
17760
  }
18076
17761
 
18077
17762
  /**
@@ -18147,12 +17832,7 @@ export default class Client extends OpenApi {
18147
17832
  reqBodyType: "formData",
18148
17833
  bodyType: "json",
18149
17834
  });
18150
- if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
18151
- return $dara.cast<UpdateServiceConfigResponse>(await this.callApi(params, req, runtime), new UpdateServiceConfigResponse({}));
18152
- } else {
18153
- return $dara.cast<UpdateServiceConfigResponse>(await this.execute(params, req, runtime), new UpdateServiceConfigResponse({}));
18154
- }
18155
-
17835
+ return $dara.cast<UpdateServiceConfigResponse>(await this.callApi(params, req, runtime), new UpdateServiceConfigResponse({}));
18156
17836
  }
18157
17837
 
18158
17838
  /**