tencentcloud-sdk-nodejs-intl-en 3.0.1383 → 3.0.1384

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.
@@ -840,6 +840,146 @@ Note: This field may return null, indicating that no valid values can be obtaine
840
840
  }
841
841
  }
842
842
 
843
+ /**
844
+ * 1
845
+ * @class
846
+ */
847
+ class ParamCreateDTO extends AbstractModel {
848
+ constructor(){
849
+ super();
850
+
851
+ /**
852
+ * Parameter name.
853
+ Note: This field may return null, indicating that no valid values can be obtained.
854
+ * @type {string || null}
855
+ */
856
+ this.ParamName = null;
857
+
858
+ /**
859
+ * Default value
860
+ Note: This field may return null, indicating that no valid values can be obtained.
861
+ * @type {string || null}
862
+ */
863
+ this.DefaultValue = null;
864
+
865
+ /**
866
+ * Parameter type, string/datetime/number
867
+ Note: This field may return null, indicating that no valid values can be obtained.
868
+ * @type {string || null}
869
+ */
870
+ this.ParamType = null;
871
+
872
+ /**
873
+ * Format type, yyyy-MM-dd HH:mm:ss.SSS (only time required)
874
+ Note: This field may return null, indicating that no valid values can be obtained.
875
+ * @type {string || null}
876
+ */
877
+ this.FormatRule = null;
878
+
879
+ /**
880
+ * Complex type, another format expression, such as YYYY-MM
881
+ Note: This field may return null, indicating that no valid values can be obtained.
882
+ * @type {string || null}
883
+ */
884
+ this.ComplexType = null;
885
+
886
+ /**
887
+ * Application scope
888
+ Note: This field may return null, indicating that no valid values can be obtained.
889
+ * @type {string || null}
890
+ */
891
+ this.Scope = null;
892
+
893
+ }
894
+
895
+ /**
896
+ * @private
897
+ */
898
+ deserialize(params) {
899
+ if (!params) {
900
+ return;
901
+ }
902
+ this.ParamName = 'ParamName' in params ? params.ParamName : null;
903
+ this.DefaultValue = 'DefaultValue' in params ? params.DefaultValue : null;
904
+ this.ParamType = 'ParamType' in params ? params.ParamType : null;
905
+ this.FormatRule = 'FormatRule' in params ? params.FormatRule : null;
906
+ this.ComplexType = 'ComplexType' in params ? params.ComplexType : null;
907
+ this.Scope = 'Scope' in params ? params.Scope : null;
908
+
909
+ }
910
+ }
911
+
912
+ /**
913
+ * EditCorpTag response structure.
914
+ * @class
915
+ */
916
+ class EditCorpTagResponse extends AbstractModel {
917
+ constructor(){
918
+ super();
919
+
920
+ /**
921
+ * Custom error information object
922
+ Note: This field may return null, indicating that no valid values can be obtained.
923
+ * @type {ErrorInfo || null}
924
+ */
925
+ this.ErrorInfo = null;
926
+
927
+ /**
928
+ * Expansion.
929
+ Note: This field may return null, indicating that no valid values can be obtained.
930
+ * @type {string || null}
931
+ */
932
+ this.Extra = null;
933
+
934
+ /**
935
+ * Message.
936
+ Note: This field may return null, indicating that no valid values can be obtained.
937
+ * @type {string || null}
938
+ */
939
+ this.Msg = null;
940
+
941
+ /**
942
+ * Data.
943
+
944
+ Note: This field may return null, indicating that no valid values can be obtained.
945
+ * @type {EditTagVO || null}
946
+ */
947
+ this.Data = null;
948
+
949
+ /**
950
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
951
+ * @type {string || null}
952
+ */
953
+ this.RequestId = null;
954
+
955
+ }
956
+
957
+ /**
958
+ * @private
959
+ */
960
+ deserialize(params) {
961
+ if (!params) {
962
+ return;
963
+ }
964
+
965
+ if (params.ErrorInfo) {
966
+ let obj = new ErrorInfo();
967
+ obj.deserialize(params.ErrorInfo)
968
+ this.ErrorInfo = obj;
969
+ }
970
+ this.Extra = 'Extra' in params ? params.Extra : null;
971
+ this.Msg = 'Msg' in params ? params.Msg : null;
972
+
973
+ if (params.Data) {
974
+ let obj = new EditTagVO();
975
+ obj.deserialize(params.Data)
976
+ this.Data = obj;
977
+ }
978
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
979
+
980
+ }
981
+ }
982
+
843
983
  /**
844
984
  * CreateUserRole response structure.
845
985
  * @class
@@ -1354,6 +1494,78 @@ Note: This field may return null, indicating that no valid values can be obtaine
1354
1494
  }
1355
1495
  }
1356
1496
 
1497
+ /**
1498
+ * ModifyUserTag request structure.
1499
+ * @class
1500
+ */
1501
+ class ModifyUserTagRequest extends AbstractModel {
1502
+ constructor(){
1503
+ super();
1504
+
1505
+ /**
1506
+ * User ID.
1507
+ * @type {string || null}
1508
+ */
1509
+ this.UserId = null;
1510
+
1511
+ /**
1512
+ * Tag information.
1513
+ * @type {Array.<UserTagInfo> || null}
1514
+ */
1515
+ this.TagList = null;
1516
+
1517
+ }
1518
+
1519
+ /**
1520
+ * @private
1521
+ */
1522
+ deserialize(params) {
1523
+ if (!params) {
1524
+ return;
1525
+ }
1526
+ this.UserId = 'UserId' in params ? params.UserId : null;
1527
+
1528
+ if (params.TagList) {
1529
+ this.TagList = new Array();
1530
+ for (let z in params.TagList) {
1531
+ let obj = new UserTagInfo();
1532
+ obj.deserialize(params.TagList[z]);
1533
+ this.TagList.push(obj);
1534
+ }
1535
+ }
1536
+
1537
+ }
1538
+ }
1539
+
1540
+ /**
1541
+ * Create tag output parameters
1542
+ * @class
1543
+ */
1544
+ class CreateTagTableVO extends AbstractModel {
1545
+ constructor(){
1546
+ super();
1547
+
1548
+ /**
1549
+ * Tag table id
1550
+ Note: This field may return null, indicating that no valid values can be obtained.
1551
+ * @type {number || null}
1552
+ */
1553
+ this.Id = null;
1554
+
1555
+ }
1556
+
1557
+ /**
1558
+ * @private
1559
+ */
1560
+ deserialize(params) {
1561
+ if (!params) {
1562
+ return;
1563
+ }
1564
+ this.Id = 'Id' in params ? params.Id : null;
1565
+
1566
+ }
1567
+ }
1568
+
1357
1569
  /**
1358
1570
  * CreateUserRoleProject request structure.
1359
1571
  * @class
@@ -1715,6 +1927,77 @@ Value range:.
1715
1927
  }
1716
1928
  }
1717
1929
 
1930
+ /**
1931
+ * ModifyTagTable response structure.
1932
+ * @class
1933
+ */
1934
+ class ModifyTagTableResponse extends AbstractModel {
1935
+ constructor(){
1936
+ super();
1937
+
1938
+ /**
1939
+ * Custom error information object
1940
+ Note: This field may return null, indicating that no valid values can be obtained.
1941
+ * @type {ErrorInfo || null}
1942
+ */
1943
+ this.ErrorInfo = null;
1944
+
1945
+ /**
1946
+ * Data.
1947
+
1948
+ Note: This field may return null, indicating that no valid values can be obtained.
1949
+ * @type {ModifyTagTableVO || null}
1950
+ */
1951
+ this.Data = null;
1952
+
1953
+ /**
1954
+ * Expansion.
1955
+ Note: This field may return null, indicating that no valid values can be obtained.
1956
+ * @type {string || null}
1957
+ */
1958
+ this.Extra = null;
1959
+
1960
+ /**
1961
+ * Information.
1962
+ Note: This field may return null, indicating that no valid values can be obtained.
1963
+ * @type {string || null}
1964
+ */
1965
+ this.Msg = null;
1966
+
1967
+ /**
1968
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
1969
+ * @type {string || null}
1970
+ */
1971
+ this.RequestId = null;
1972
+
1973
+ }
1974
+
1975
+ /**
1976
+ * @private
1977
+ */
1978
+ deserialize(params) {
1979
+ if (!params) {
1980
+ return;
1981
+ }
1982
+
1983
+ if (params.ErrorInfo) {
1984
+ let obj = new ErrorInfo();
1985
+ obj.deserialize(params.ErrorInfo)
1986
+ this.ErrorInfo = obj;
1987
+ }
1988
+
1989
+ if (params.Data) {
1990
+ let obj = new ModifyTagTableVO();
1991
+ obj.deserialize(params.Data)
1992
+ this.Data = obj;
1993
+ }
1994
+ this.Extra = 'Extra' in params ? params.Extra : null;
1995
+ this.Msg = 'Msg' in params ? params.Msg : null;
1996
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
1997
+
1998
+ }
1999
+ }
2000
+
1718
2001
  /**
1719
2002
  * ApplyEmbedInterval request structure.
1720
2003
  * @class
@@ -2574,6 +2857,34 @@ Currently supported operators.
2574
2857
  }
2575
2858
  }
2576
2859
 
2860
+ /**
2861
+ * CreateCorpTag request structure.
2862
+ * @class
2863
+ */
2864
+ class CreateCorpTagRequest extends AbstractModel {
2865
+ constructor(){
2866
+ super();
2867
+
2868
+ /**
2869
+ * Tag name
2870
+ * @type {string || null}
2871
+ */
2872
+ this.Name = null;
2873
+
2874
+ }
2875
+
2876
+ /**
2877
+ * @private
2878
+ */
2879
+ deserialize(params) {
2880
+ if (!params) {
2881
+ return;
2882
+ }
2883
+ this.Name = 'Name' in params ? params.Name : null;
2884
+
2885
+ }
2886
+ }
2887
+
2577
2888
  /**
2578
2889
  * ModifyDatasource request structure.
2579
2890
  * @class
@@ -3624,6 +3935,77 @@ Note: This field may return null, indicating that no valid values can be obtaine
3624
3935
  }
3625
3936
  }
3626
3937
 
3938
+ /**
3939
+ * CreateCorpTag response structure.
3940
+ * @class
3941
+ */
3942
+ class CreateCorpTagResponse extends AbstractModel {
3943
+ constructor(){
3944
+ super();
3945
+
3946
+ /**
3947
+ * Custom error information object
3948
+ Note: This field may return null, indicating that no valid values can be obtained.
3949
+ * @type {ErrorInfo || null}
3950
+ */
3951
+ this.ErrorInfo = null;
3952
+
3953
+ /**
3954
+ * Expansion.
3955
+ Note: This field may return null, indicating that no valid values can be obtained.
3956
+ * @type {string || null}
3957
+ */
3958
+ this.Extra = null;
3959
+
3960
+ /**
3961
+ * Message.
3962
+ Note: This field may return null, indicating that no valid values can be obtained.
3963
+ * @type {string || null}
3964
+ */
3965
+ this.Msg = null;
3966
+
3967
+ /**
3968
+ * Data.
3969
+
3970
+ Note: This field may return null, indicating that no valid values can be obtained.
3971
+ * @type {DataId || null}
3972
+ */
3973
+ this.Data = null;
3974
+
3975
+ /**
3976
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
3977
+ * @type {string || null}
3978
+ */
3979
+ this.RequestId = null;
3980
+
3981
+ }
3982
+
3983
+ /**
3984
+ * @private
3985
+ */
3986
+ deserialize(params) {
3987
+ if (!params) {
3988
+ return;
3989
+ }
3990
+
3991
+ if (params.ErrorInfo) {
3992
+ let obj = new ErrorInfo();
3993
+ obj.deserialize(params.ErrorInfo)
3994
+ this.ErrorInfo = obj;
3995
+ }
3996
+ this.Extra = 'Extra' in params ? params.Extra : null;
3997
+ this.Msg = 'Msg' in params ? params.Msg : null;
3998
+
3999
+ if (params.Data) {
4000
+ let obj = new DataId();
4001
+ obj.deserialize(params.Data)
4002
+ this.Data = obj;
4003
+ }
4004
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
4005
+
4006
+ }
4007
+ }
4008
+
3627
4009
  /**
3628
4010
  * Row/column permission tag input/output parameter
3629
4011
  * @class
@@ -4309,6 +4691,75 @@ Note: This field may return null, indicating that no valid values can be obtaine
4309
4691
  }
4310
4692
  }
4311
4693
 
4694
+ /**
4695
+ * User tag info
4696
+ * @class
4697
+ */
4698
+ class UserTagInfo extends AbstractModel {
4699
+ constructor(){
4700
+ super();
4701
+
4702
+ /**
4703
+ * tag ID
4704
+ Note: This field may return null, indicating that no valid values can be obtained.
4705
+ * @type {number || null}
4706
+ */
4707
+ this.Id = null;
4708
+
4709
+ /**
4710
+ * Tag name
4711
+ Note: This field may return null, indicating that no valid values can be obtained.
4712
+ * @type {string || null}
4713
+ */
4714
+ this.Name = null;
4715
+
4716
+ /**
4717
+ * Tag value.
4718
+ Note: This field may return null, indicating that no valid values can be obtained.
4719
+ * @type {string || null}
4720
+ */
4721
+ this.Value = null;
4722
+
4723
+ /**
4724
+ * Managed or not
4725
+ Note: This field may return null, indicating that no valid values can be obtained.
4726
+ * @type {boolean || null}
4727
+ */
4728
+ this.IsExternalManage = null;
4729
+
4730
+ /**
4731
+ * Tag hosting platform
4732
+ Note: This field may return null, indicating that no valid values can be obtained.
4733
+ * @type {string || null}
4734
+ */
4735
+ this.ManagePlatform = null;
4736
+
4737
+ /**
4738
+ * Import type
4739
+ Note: This field may return null, indicating that no valid values can be obtained.
4740
+ * @type {string || null}
4741
+ */
4742
+ this.ImportType = null;
4743
+
4744
+ }
4745
+
4746
+ /**
4747
+ * @private
4748
+ */
4749
+ deserialize(params) {
4750
+ if (!params) {
4751
+ return;
4752
+ }
4753
+ this.Id = 'Id' in params ? params.Id : null;
4754
+ this.Name = 'Name' in params ? params.Name : null;
4755
+ this.Value = 'Value' in params ? params.Value : null;
4756
+ this.IsExternalManage = 'IsExternalManage' in params ? params.IsExternalManage : null;
4757
+ this.ManagePlatform = 'ManagePlatform' in params ? params.ManagePlatform : null;
4758
+ this.ImportType = 'ImportType' in params ? params.ImportType : null;
4759
+
4760
+ }
4761
+ }
4762
+
4312
4763
  /**
4313
4764
  * DescribePageWidgetList request structure.
4314
4765
  * @class
@@ -4960,54 +5411,91 @@ Note: This field may return null, indicating that no valid values can be obtaine
4960
5411
  }
4961
5412
 
4962
5413
  /**
4963
- * 1
5414
+ * CreateTagTable request structure.
4964
5415
  * @class
4965
5416
  */
4966
- class ParamCreateDTO extends AbstractModel {
5417
+ class CreateTagTableRequest extends AbstractModel {
4967
5418
  constructor(){
4968
5419
  super();
4969
5420
 
4970
5421
  /**
4971
- * Parameter name.
4972
- Note: This field may return null, indicating that no valid values can be obtained.
5422
+ * Tag table name
4973
5423
  * @type {string || null}
4974
5424
  */
4975
- this.ParamName = null;
5425
+ this.Name = null;
4976
5426
 
4977
5427
  /**
4978
- * Default value
4979
- Note: This field may return null, indicating that no valid values can be obtained.
4980
- * @type {string || null}
5428
+ * Project id associated with the tag table
5429
+ * @type {number || null}
4981
5430
  */
4982
- this.DefaultValue = null;
5431
+ this.AutoImportProjectId = null;
4983
5432
 
4984
5433
  /**
4985
- * Parameter type, string/datetime/number
4986
- Note: This field may return null, indicating that no valid values can be obtained.
4987
- * @type {string || null}
5434
+ * id of the data table associated with the tag table
5435
+ * @type {number || null}
4988
5436
  */
4989
- this.ParamType = null;
5437
+ this.AutoImportTableId = null;
4990
5438
 
4991
5439
  /**
4992
- * Format type, yyyy-MM-dd HH:mm:ss.SSS (only time required)
4993
- Note: This field may return null, indicating that no valid values can be obtained.
5440
+ * Corresponding field of uin
4994
5441
  * @type {string || null}
4995
5442
  */
4996
- this.FormatRule = null;
5443
+ this.AutoImportUinField = null;
5444
+
5445
+ }
5446
+
5447
+ /**
5448
+ * @private
5449
+ */
5450
+ deserialize(params) {
5451
+ if (!params) {
5452
+ return;
5453
+ }
5454
+ this.Name = 'Name' in params ? params.Name : null;
5455
+ this.AutoImportProjectId = 'AutoImportProjectId' in params ? params.AutoImportProjectId : null;
5456
+ this.AutoImportTableId = 'AutoImportTableId' in params ? params.AutoImportTableId : null;
5457
+ this.AutoImportUinField = 'AutoImportUinField' in params ? params.AutoImportUinField : null;
5458
+
5459
+ }
5460
+ }
5461
+
5462
+ /**
5463
+ * ModifyTagTable request structure.
5464
+ * @class
5465
+ */
5466
+ class ModifyTagTableRequest extends AbstractModel {
5467
+ constructor(){
5468
+ super();
4997
5469
 
4998
5470
  /**
4999
- * Complex type, another format expression, such as YYYY-MM
5000
- Note: This field may return null, indicating that no valid values can be obtained.
5471
+ * Tag table name
5001
5472
  * @type {string || null}
5002
5473
  */
5003
- this.ComplexType = null;
5474
+ this.Name = null;
5004
5475
 
5005
5476
  /**
5006
- * Application scope
5007
- Note: This field may return null, indicating that no valid values can be obtained.
5477
+ * Project id associated with the tag table
5478
+ * @type {number || null}
5479
+ */
5480
+ this.AutoImportProjectId = null;
5481
+
5482
+ /**
5483
+ * id of the data table associated with the tag table
5484
+ * @type {number || null}
5485
+ */
5486
+ this.AutoImportTableId = null;
5487
+
5488
+ /**
5489
+ * Corresponding field of uin
5008
5490
  * @type {string || null}
5009
5491
  */
5010
- this.Scope = null;
5492
+ this.AutoImportUinField = null;
5493
+
5494
+ /**
5495
+ * Tag table id
5496
+ * @type {number || null}
5497
+ */
5498
+ this.Id = null;
5011
5499
 
5012
5500
  }
5013
5501
 
@@ -5018,12 +5506,11 @@ Note: This field may return null, indicating that no valid values can be obtaine
5018
5506
  if (!params) {
5019
5507
  return;
5020
5508
  }
5021
- this.ParamName = 'ParamName' in params ? params.ParamName : null;
5022
- this.DefaultValue = 'DefaultValue' in params ? params.DefaultValue : null;
5023
- this.ParamType = 'ParamType' in params ? params.ParamType : null;
5024
- this.FormatRule = 'FormatRule' in params ? params.FormatRule : null;
5025
- this.ComplexType = 'ComplexType' in params ? params.ComplexType : null;
5026
- this.Scope = 'Scope' in params ? params.Scope : null;
5509
+ this.Name = 'Name' in params ? params.Name : null;
5510
+ this.AutoImportProjectId = 'AutoImportProjectId' in params ? params.AutoImportProjectId : null;
5511
+ this.AutoImportTableId = 'AutoImportTableId' in params ? params.AutoImportTableId : null;
5512
+ this.AutoImportUinField = 'AutoImportUinField' in params ? params.AutoImportUinField : null;
5513
+ this.Id = 'Id' in params ? params.Id : null;
5027
5514
 
5028
5515
  }
5029
5516
  }
@@ -5247,26 +5734,56 @@ Note: This field may return null, indicating that no valid values can be obtaine
5247
5734
  }
5248
5735
 
5249
5736
  /**
5250
- * Field remarks
5737
+ * Field remarks
5738
+ * @class
5739
+ */
5740
+ class FieldRemarkDTO extends AbstractModel {
5741
+ constructor(){
5742
+ super();
5743
+
5744
+ /**
5745
+ * field name
5746
+ Note: This field may return null, indicating that no valid values can be obtained.
5747
+ * @type {string || null}
5748
+ */
5749
+ this.FieldName = null;
5750
+
5751
+ /**
5752
+ * Field remarks list
5753
+ Note: This field may return null, indicating that no valid values can be obtained.
5754
+ * @type {Array.<string> || null}
5755
+ */
5756
+ this.Comment = null;
5757
+
5758
+ }
5759
+
5760
+ /**
5761
+ * @private
5762
+ */
5763
+ deserialize(params) {
5764
+ if (!params) {
5765
+ return;
5766
+ }
5767
+ this.FieldName = 'FieldName' in params ? params.FieldName : null;
5768
+ this.Comment = 'Comment' in params ? params.Comment : null;
5769
+
5770
+ }
5771
+ }
5772
+
5773
+ /**
5774
+ * Create tag output parameters
5251
5775
  * @class
5252
5776
  */
5253
- class FieldRemarkDTO extends AbstractModel {
5777
+ class ModifyTagTableVO extends AbstractModel {
5254
5778
  constructor(){
5255
5779
  super();
5256
5780
 
5257
5781
  /**
5258
- * field name
5259
- Note: This field may return null, indicating that no valid values can be obtained.
5260
- * @type {string || null}
5261
- */
5262
- this.FieldName = null;
5263
-
5264
- /**
5265
- * Field remarks list
5782
+ * Tag table id
5266
5783
  Note: This field may return null, indicating that no valid values can be obtained.
5267
- * @type {Array.<string> || null}
5784
+ * @type {number || null}
5268
5785
  */
5269
- this.Comment = null;
5786
+ this.Id = null;
5270
5787
 
5271
5788
  }
5272
5789
 
@@ -5277,8 +5794,7 @@ Note: This field may return null, indicating that no valid values can be obtaine
5277
5794
  if (!params) {
5278
5795
  return;
5279
5796
  }
5280
- this.FieldName = 'FieldName' in params ? params.FieldName : null;
5281
- this.Comment = 'Comment' in params ? params.Comment : null;
5797
+ this.Id = 'Id' in params ? params.Id : null;
5282
5798
 
5283
5799
  }
5284
5800
  }
@@ -6156,6 +6672,72 @@ Note: This field may return null, indicating that no valid values can be obtaine
6156
6672
  }
6157
6673
  }
6158
6674
 
6675
+ /**
6676
+ * ModifyUserTag response structure.
6677
+ * @class
6678
+ */
6679
+ class ModifyUserTagResponse extends AbstractModel {
6680
+ constructor(){
6681
+ super();
6682
+
6683
+ /**
6684
+ * Custom error information object
6685
+ Note: This field may return null, indicating that no valid values can be obtained.
6686
+ * @type {ErrorInfo || null}
6687
+ */
6688
+ this.ErrorInfo = null;
6689
+
6690
+ /**
6691
+ * Message.
6692
+ Note: This field may return null, indicating that no valid values can be obtained.
6693
+ * @type {string || null}
6694
+ */
6695
+ this.Msg = null;
6696
+
6697
+ /**
6698
+ * Additional Information
6699
+ Note: This field may return null, indicating that no valid values can be obtained.
6700
+ * @type {string || null}
6701
+ */
6702
+ this.Extra = null;
6703
+
6704
+ /**
6705
+ * Data.
6706
+
6707
+ Note: This field may return null, indicating that no valid values can be obtained.
6708
+ * @type {string || null}
6709
+ */
6710
+ this.Data = null;
6711
+
6712
+ /**
6713
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6714
+ * @type {string || null}
6715
+ */
6716
+ this.RequestId = null;
6717
+
6718
+ }
6719
+
6720
+ /**
6721
+ * @private
6722
+ */
6723
+ deserialize(params) {
6724
+ if (!params) {
6725
+ return;
6726
+ }
6727
+
6728
+ if (params.ErrorInfo) {
6729
+ let obj = new ErrorInfo();
6730
+ obj.deserialize(params.ErrorInfo)
6731
+ this.ErrorInfo = obj;
6732
+ }
6733
+ this.Msg = 'Msg' in params ? params.Msg : null;
6734
+ this.Extra = 'Extra' in params ? params.Extra : null;
6735
+ this.Data = 'Data' in params ? params.Data : null;
6736
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
6737
+
6738
+ }
6739
+ }
6740
+
6159
6741
  /**
6160
6742
  * ModifyDatasource response structure.
6161
6743
  * @class
@@ -6361,6 +6943,77 @@ Note: This field may return null, indicating that no valid values can be obtaine
6361
6943
  }
6362
6944
  }
6363
6945
 
6946
+ /**
6947
+ * CreateTagTable response structure.
6948
+ * @class
6949
+ */
6950
+ class CreateTagTableResponse extends AbstractModel {
6951
+ constructor(){
6952
+ super();
6953
+
6954
+ /**
6955
+ * Custom error information object
6956
+ Note: This field may return null, indicating that no valid values can be obtained.
6957
+ * @type {ErrorInfo || null}
6958
+ */
6959
+ this.ErrorInfo = null;
6960
+
6961
+ /**
6962
+ * Data.
6963
+
6964
+ Note: This field may return null, indicating that no valid values can be obtained.
6965
+ * @type {CreateTagTableVO || null}
6966
+ */
6967
+ this.Data = null;
6968
+
6969
+ /**
6970
+ * Expansion.
6971
+ Note: This field may return null, indicating that no valid values can be obtained.
6972
+ * @type {string || null}
6973
+ */
6974
+ this.Extra = null;
6975
+
6976
+ /**
6977
+ * Information.
6978
+ Note: This field may return null, indicating that no valid values can be obtained.
6979
+ * @type {string || null}
6980
+ */
6981
+ this.Msg = null;
6982
+
6983
+ /**
6984
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
6985
+ * @type {string || null}
6986
+ */
6987
+ this.RequestId = null;
6988
+
6989
+ }
6990
+
6991
+ /**
6992
+ * @private
6993
+ */
6994
+ deserialize(params) {
6995
+ if (!params) {
6996
+ return;
6997
+ }
6998
+
6999
+ if (params.ErrorInfo) {
7000
+ let obj = new ErrorInfo();
7001
+ obj.deserialize(params.ErrorInfo)
7002
+ this.ErrorInfo = obj;
7003
+ }
7004
+
7005
+ if (params.Data) {
7006
+ let obj = new CreateTagTableVO();
7007
+ obj.deserialize(params.Data)
7008
+ this.Data = obj;
7009
+ }
7010
+ this.Extra = 'Extra' in params ? params.Extra : null;
7011
+ this.Msg = 'Msg' in params ? params.Msg : null;
7012
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7013
+
7014
+ }
7015
+ }
7016
+
6364
7017
  /**
6365
7018
  * Customized query
6366
7019
  * @class
@@ -7964,6 +8617,51 @@ Note: This field may return null, indicating that no valid values can be obtaine
7964
8617
  }
7965
8618
  }
7966
8619
 
8620
+ /**
8621
+ * Sync tag data output parameters
8622
+ * @class
8623
+ */
8624
+ class EditTagVO extends AbstractModel {
8625
+ constructor(){
8626
+ super();
8627
+
8628
+ /**
8629
+ * Transaction ID.
8630
+ Note: This field may return null, indicating that no valid values can be obtained.
8631
+ * @type {string || null}
8632
+ */
8633
+ this.TranId = null;
8634
+
8635
+ /**
8636
+ * Transaction status
8637
+ Note: This field may return null, indicating that no valid values can be obtained.
8638
+ * @type {number || null}
8639
+ */
8640
+ this.TranStatus = null;
8641
+
8642
+ /**
8643
+ * Tag information.
8644
+ Note: This field may return null, indicating that no valid values can be obtained.
8645
+ * @type {number || null}
8646
+ */
8647
+ this.Id = null;
8648
+
8649
+ }
8650
+
8651
+ /**
8652
+ * @private
8653
+ */
8654
+ deserialize(params) {
8655
+ if (!params) {
8656
+ return;
8657
+ }
8658
+ this.TranId = 'TranId' in params ? params.TranId : null;
8659
+ this.TranStatus = 'TranStatus' in params ? params.TranStatus : null;
8660
+ this.Id = 'Id' in params ? params.Id : null;
8661
+
8662
+ }
8663
+ }
8664
+
7967
8665
  /**
7968
8666
  * Project list data
7969
8667
  * @class
@@ -8375,6 +9073,83 @@ Note: This field may return null, indicating that no valid values can be obtaine
8375
9073
  }
8376
9074
  }
8377
9075
 
9076
+ /**
9077
+ * EditCorpTag request structure.
9078
+ * @class
9079
+ */
9080
+ class EditCorpTagRequest extends AbstractModel {
9081
+ constructor(){
9082
+ super();
9083
+
9084
+ /**
9085
+ * tag ID
9086
+ * @type {number || null}
9087
+ */
9088
+ this.Id = null;
9089
+
9090
+ /**
9091
+ * Tag name.
9092
+ * @type {string || null}
9093
+ */
9094
+ this.Name = null;
9095
+
9096
+ /**
9097
+ * Import tag mode (manual/auto)
9098
+ * @type {string || null}
9099
+ */
9100
+ this.ImportType = null;
9101
+
9102
+ /**
9103
+ * id of the tag table for automatic import
9104
+ * @type {number || null}
9105
+ */
9106
+ this.AutoImportTagTableId = null;
9107
+
9108
+ /**
9109
+ * Automatic import of associated tag fields
9110
+ * @type {string || null}
9111
+ */
9112
+ this.AutoImportField = null;
9113
+
9114
+ /**
9115
+ * Whether it is an async request.
9116
+ * @type {boolean || null}
9117
+ */
9118
+ this.AsyncRequest = null;
9119
+
9120
+ /**
9121
+ * Name of the tag table for automatic import
9122
+ * @type {string || null}
9123
+ */
9124
+ this.AutoImportTagTableName = null;
9125
+
9126
+ /**
9127
+ * Transaction ID.
9128
+ * @type {string || null}
9129
+ */
9130
+ this.TranId = null;
9131
+
9132
+ }
9133
+
9134
+ /**
9135
+ * @private
9136
+ */
9137
+ deserialize(params) {
9138
+ if (!params) {
9139
+ return;
9140
+ }
9141
+ this.Id = 'Id' in params ? params.Id : null;
9142
+ this.Name = 'Name' in params ? params.Name : null;
9143
+ this.ImportType = 'ImportType' in params ? params.ImportType : null;
9144
+ this.AutoImportTagTableId = 'AutoImportTagTableId' in params ? params.AutoImportTagTableId : null;
9145
+ this.AutoImportField = 'AutoImportField' in params ? params.AutoImportField : null;
9146
+ this.AsyncRequest = 'AsyncRequest' in params ? params.AsyncRequest : null;
9147
+ this.AutoImportTagTableName = 'AutoImportTagTableName' in params ? params.AutoImportTagTableName : null;
9148
+ this.TranId = 'TranId' in params ? params.TranId : null;
9149
+
9150
+ }
9151
+ }
9152
+
8378
9153
  /**
8379
9154
  * Business edition permission unit
8380
9155
  * @class
@@ -8460,17 +9235,22 @@ module.exports = {
8460
9235
  DescribeSourceFieldListResponse: DescribeSourceFieldListResponse,
8461
9236
  UserResourceDTO: UserResourceDTO,
8462
9237
  ModifyDatasourceCloudResponse: ModifyDatasourceCloudResponse,
9238
+ ParamCreateDTO: ParamCreateDTO,
9239
+ EditCorpTagResponse: EditCorpTagResponse,
8463
9240
  CreateUserRoleResponse: CreateUserRoleResponse,
8464
9241
  ApplyEmbedTokenInfo: ApplyEmbedTokenInfo,
8465
9242
  Project: Project,
8466
9243
  ExportScreenPageRequest: ExportScreenPageRequest,
8467
9244
  JoinSourceTable: JoinSourceTable,
9245
+ ModifyUserTagRequest: ModifyUserTagRequest,
9246
+ CreateTagTableVO: CreateTagTableVO,
8468
9247
  CreateUserRoleProjectRequest: CreateUserRoleProjectRequest,
8469
9248
  WidgetVO: WidgetVO,
8470
9249
  CreateDatasourceResponse: CreateDatasourceResponse,
8471
9250
  TableColumnListData: TableColumnListData,
8472
9251
  DeleteDatasourceResponse: DeleteDatasourceResponse,
8473
9252
  CreateProjectRequest: CreateProjectRequest,
9253
+ ModifyTagTableResponse: ModifyTagTableResponse,
8474
9254
  ApplyEmbedIntervalRequest: ApplyEmbedIntervalRequest,
8475
9255
  ModifyResourceUserResponse: ModifyResourceUserResponse,
8476
9256
  CreateDataTableRequest: CreateDataTableRequest,
@@ -8480,6 +9260,7 @@ module.exports = {
8480
9260
  ModifyUserRoleRequest: ModifyUserRoleRequest,
8481
9261
  CreateUserRoleRequest: CreateUserRoleRequest,
8482
9262
  CreateEmbedTokenRequest: CreateEmbedTokenRequest,
9263
+ CreateCorpTagRequest: CreateCorpTagRequest,
8483
9264
  ModifyDatasourceRequest: ModifyDatasourceRequest,
8484
9265
  CreatePermissionRanksResponse: CreatePermissionRanksResponse,
8485
9266
  CreateDataTableResponse: CreateDataTableResponse,
@@ -8492,6 +9273,7 @@ module.exports = {
8492
9273
  UserIdAndUserName: UserIdAndUserName,
8493
9274
  EmptyValue: EmptyValue,
8494
9275
  DescribeUserRoleListResponse: DescribeUserRoleListResponse,
9276
+ CreateCorpTagResponse: CreateCorpTagResponse,
8495
9277
  RowColumnTagValue: RowColumnTagValue,
8496
9278
  UserRoleListDataRoleInfo: UserRoleListDataRoleInfo,
8497
9279
  EmbedTokenInfo: EmbedTokenInfo,
@@ -8499,6 +9281,7 @@ module.exports = {
8499
9281
  DescribeProjectListResponse: DescribeProjectListResponse,
8500
9282
  TableColumn: TableColumn,
8501
9283
  DatasourceInfoData: DatasourceInfoData,
9284
+ UserTagInfo: UserTagInfo,
8502
9285
  DescribePageWidgetListRequest: DescribePageWidgetListRequest,
8503
9286
  DescribeUserRoleProjectListRequest: DescribeUserRoleProjectListRequest,
8504
9287
  BaseStateAction: BaseStateAction,
@@ -8510,11 +9293,13 @@ module.exports = {
8510
9293
  DeleteUserRoleProjectRequest: DeleteUserRoleProjectRequest,
8511
9294
  DescribeUserRoleListRequest: DescribeUserRoleListRequest,
8512
9295
  ClearEmbedTokenResponse: ClearEmbedTokenResponse,
8513
- ParamCreateDTO: ParamCreateDTO,
9296
+ CreateTagTableRequest: CreateTagTableRequest,
9297
+ ModifyTagTableRequest: ModifyTagTableRequest,
8514
9298
  DescribeSourceFieldListRequest: DescribeSourceFieldListRequest,
8515
9299
  EmptyValueConfig: EmptyValueConfig,
8516
9300
  DeleteUserRoleProjectResponse: DeleteUserRoleProjectResponse,
8517
9301
  FieldRemarkDTO: FieldRemarkDTO,
9302
+ ModifyTagTableVO: ModifyTagTableVO,
8518
9303
  IdDTO: IdDTO,
8519
9304
  ModifyDatasourceCloudRequest: ModifyDatasourceCloudRequest,
8520
9305
  CreateDatasourceCloudRequest: CreateDatasourceCloudRequest,
@@ -8524,9 +9309,11 @@ module.exports = {
8524
9309
  CreateDatasourceRequest: CreateDatasourceRequest,
8525
9310
  DeleteDatasourceRequest: DeleteDatasourceRequest,
8526
9311
  WidgetListVO: WidgetListVO,
9312
+ ModifyUserTagResponse: ModifyUserTagResponse,
8527
9313
  ModifyDatasourceResponse: ModifyDatasourceResponse,
8528
9314
  DescribePageWidgetListResponse: DescribePageWidgetListResponse,
8529
9315
  CreateDatasourceCloudResponse: CreateDatasourceCloudResponse,
9316
+ CreateTagTableResponse: CreateTagTableResponse,
8530
9317
  ProjectConfigList: ProjectConfigList,
8531
9318
  PermissionGroup: PermissionGroup,
8532
9319
  ApiDatasourceConfig: ApiDatasourceConfig,
@@ -8541,12 +9328,14 @@ module.exports = {
8541
9328
  DescribeProjectListRequest: DescribeProjectListRequest,
8542
9329
  UserRoleListDataUserRoleInfo: UserRoleListDataUserRoleInfo,
8543
9330
  DatasourceInfo: DatasourceInfo,
9331
+ EditTagVO: EditTagVO,
8544
9332
  ProjectListData: ProjectListData,
8545
9333
  CreateEmbedTokenResponse: CreateEmbedTokenResponse,
8546
9334
  DescribeDatasourceListRequest: DescribeDatasourceListRequest,
8547
9335
  FrequencyConfig: FrequencyConfig,
8548
9336
  DescribeDatasourceListResponse: DescribeDatasourceListResponse,
8549
9337
  ErrorInfo: ErrorInfo,
9338
+ EditCorpTagRequest: EditCorpTagRequest,
8550
9339
  PermissionComponent: PermissionComponent,
8551
9340
 
8552
9341
  }