tencentcloud-sdk-ctem 3.0.1108 → 3.0.1114

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20231128/models.rb +158 -54
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e25757101836a7aacab8f5c7d4963ed0bb9aabc
4
- data.tar.gz: 520cff5c3a8e57fd1ea1ed93d0cffb53c6c08085
3
+ metadata.gz: abcd0c9bc200e41488c07dddb8dfb3863bfaf9f5
4
+ data.tar.gz: 543a97bf544a9356574c5abdad5ac76d3e9cff1c
5
5
  SHA512:
6
- metadata.gz: 1db27ce0c2964c969a8187a3d5b8c5c66b876a43fc4bcdb758d2ec5e95769ed9a83ecfae3b8a6bc4ed308dd462747e02dd88e1b308908421e2d854fcd46924ff
7
- data.tar.gz: 2b0f71661fd75ac3f86087fb5436de5f1cc3c4981d98ae1d5b9def70e2813a4d97aad06a7fe630be97900188473a47127ad2950581efae3b625c6c099d7bf7fc
6
+ metadata.gz: ab9da40945078608e03cc25af9fcc95bf473790019308cb20bad81ff62f33a03498c860bedd81d8bb14be3363eac88196758523a45ba978c6d0f21c22f67fb77
7
+ data.tar.gz: cef1993527beee58a7ba44b3b77c8d8e4beff6684b5611fcd0b5ed635732f38ed1e7bab43e636719ec5d1d95723e404fda2c8cb1bcb5551d7a22672544c41655
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1108
1
+ 3.0.1114
@@ -272,6 +272,8 @@ module TencentCloud
272
272
 
273
273
  # DescribeApps请求参数结构体
274
274
  class DescribeAppsRequest < TencentCloud::Common::AbstractModel
275
+ # @param CustomerIdList: 企业ID列表,可多选
276
+ # @type CustomerIdList: Array
275
277
  # @param EnterpriseUidList: 子公司ID列表
276
278
  # @type EnterpriseUidList: Array
277
279
  # @param IsNew: 是否新增数据
@@ -297,9 +299,10 @@ module TencentCloud
297
299
  # @param Ignored: 是否显示被忽略的数据
298
300
  # @type Ignored: Boolean
299
301
 
300
- attr_accessor :EnterpriseUidList, :IsNew, :CustomerId, :Limit, :Offset, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
302
+ attr_accessor :CustomerIdList, :EnterpriseUidList, :IsNew, :CustomerId, :Limit, :Offset, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
301
303
 
302
- def initialize(enterpriseuidlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
304
+ def initialize(customeridlist=nil, enterpriseuidlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
305
+ @CustomerIdList = customeridlist
303
306
  @EnterpriseUidList = enterpriseuidlist
304
307
  @IsNew = isnew
305
308
  @CustomerId = customerid
@@ -315,6 +318,7 @@ module TencentCloud
315
318
  end
316
319
 
317
320
  def deserialize(params)
321
+ @CustomerIdList = params['CustomerIdList']
318
322
  @EnterpriseUidList = params['EnterpriseUidList']
319
323
  @IsNew = params['IsNew']
320
324
  @CustomerId = params['CustomerId']
@@ -370,6 +374,8 @@ module TencentCloud
370
374
 
371
375
  # DescribeAssets请求参数结构体
372
376
  class DescribeAssetsRequest < TencentCloud::Common::AbstractModel
377
+ # @param CustomerIdList: 企业ID列表,可多选
378
+ # @type CustomerIdList: Array
373
379
  # @param IsNew: 是否新增数据
374
380
  # @type IsNew: Boolean
375
381
  # @param CustomerId: 企业ID
@@ -395,9 +401,10 @@ module TencentCloud
395
401
  # @param Ignored: 是否显示被忽略的数据
396
402
  # @type Ignored: Boolean
397
403
 
398
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
404
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
399
405
 
400
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
406
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
407
+ @CustomerIdList = customeridlist
401
408
  @IsNew = isnew
402
409
  @CustomerId = customerid
403
410
  @Limit = limit
@@ -413,6 +420,7 @@ module TencentCloud
413
420
  end
414
421
 
415
422
  def deserialize(params)
423
+ @CustomerIdList = params['CustomerIdList']
416
424
  @IsNew = params['IsNew']
417
425
  @CustomerId = params['CustomerId']
418
426
  @Limit = params['Limit']
@@ -468,6 +476,8 @@ module TencentCloud
468
476
 
469
477
  # DescribeConfigs请求参数结构体
470
478
  class DescribeConfigsRequest < TencentCloud::Common::AbstractModel
479
+ # @param CustomerIdList: 企业ID列表,可多选
480
+ # @type CustomerIdList: Array
471
481
  # @param IsAggregation: 是否聚合数据
472
482
  # @type IsAggregation: Boolean
473
483
  # @param IsNew: 是否新增数据
@@ -495,9 +505,10 @@ module TencentCloud
495
505
  # @param Ignored: 是否显示被忽略的数据
496
506
  # @type Ignored: Boolean
497
507
 
498
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
508
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
499
509
 
500
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
510
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
511
+ @CustomerIdList = customeridlist
501
512
  @IsAggregation = isaggregation
502
513
  @IsNew = isnew
503
514
  @CustomerId = customerid
@@ -514,6 +525,7 @@ module TencentCloud
514
525
  end
515
526
 
516
527
  def deserialize(params)
528
+ @CustomerIdList = params['CustomerIdList']
517
529
  @IsAggregation = params['IsAggregation']
518
530
  @IsNew = params['IsNew']
519
531
  @CustomerId = params['CustomerId']
@@ -644,6 +656,8 @@ module TencentCloud
644
656
 
645
657
  # DescribeDarkWebs请求参数结构体
646
658
  class DescribeDarkWebsRequest < TencentCloud::Common::AbstractModel
659
+ # @param CustomerIdList: 企业ID列表,可多选
660
+ # @type CustomerIdList: Array
647
661
  # @param IsNew: 是否新增数据
648
662
  # @type IsNew: Boolean
649
663
  # @param CustomerId: 企业ID
@@ -669,9 +683,10 @@ module TencentCloud
669
683
  # @param Ignored: 是否显示被忽略的数据
670
684
  # @type Ignored: Boolean
671
685
 
672
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
686
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
673
687
 
674
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
688
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
689
+ @CustomerIdList = customeridlist
675
690
  @IsNew = isnew
676
691
  @CustomerId = customerid
677
692
  @Limit = limit
@@ -687,6 +702,7 @@ module TencentCloud
687
702
  end
688
703
 
689
704
  def deserialize(params)
705
+ @CustomerIdList = params['CustomerIdList']
690
706
  @IsNew = params['IsNew']
691
707
  @CustomerId = params['CustomerId']
692
708
  @Limit = params['Limit']
@@ -742,6 +758,8 @@ module TencentCloud
742
758
 
743
759
  # DescribeDomains请求参数结构体
744
760
  class DescribeDomainsRequest < TencentCloud::Common::AbstractModel
761
+ # @param CustomerIdList: 企业ID列表,可多选
762
+ # @type CustomerIdList: Array
745
763
  # @param IsNew: 是否新增数据
746
764
  # @type IsNew: Boolean
747
765
  # @param CustomerId: 企业ID
@@ -767,9 +785,10 @@ module TencentCloud
767
785
  # @param Ignored: 是否显示被忽略的数据
768
786
  # @type Ignored: Boolean
769
787
 
770
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
788
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
771
789
 
772
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
790
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
791
+ @CustomerIdList = customeridlist
773
792
  @IsNew = isnew
774
793
  @CustomerId = customerid
775
794
  @Limit = limit
@@ -785,6 +804,7 @@ module TencentCloud
785
804
  end
786
805
 
787
806
  def deserialize(params)
807
+ @CustomerIdList = params['CustomerIdList']
788
808
  @IsNew = params['IsNew']
789
809
  @CustomerId = params['CustomerId']
790
810
  @Limit = params['Limit']
@@ -840,6 +860,8 @@ module TencentCloud
840
860
 
841
861
  # DescribeEnterprises请求参数结构体
842
862
  class DescribeEnterprisesRequest < TencentCloud::Common::AbstractModel
863
+ # @param CustomerIdList: 企业ID列表,可多选
864
+ # @type CustomerIdList: Array
843
865
  # @param IsNew: 是否新增数据
844
866
  # @type IsNew: Boolean
845
867
  # @param CustomerId: 企业ID
@@ -867,9 +889,10 @@ module TencentCloud
867
889
  # @param IsShowStatistics: 是否展示统计数据
868
890
  # @type IsShowStatistics: Boolean
869
891
 
870
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowStatistics
892
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowStatistics
871
893
 
872
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil, isshowstatistics=nil)
894
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil, isshowstatistics=nil)
895
+ @CustomerIdList = customeridlist
873
896
  @IsNew = isnew
874
897
  @CustomerId = customerid
875
898
  @Limit = limit
@@ -886,6 +909,7 @@ module TencentCloud
886
909
  end
887
910
 
888
911
  def deserialize(params)
912
+ @CustomerIdList = params['CustomerIdList']
889
913
  @IsNew = params['IsNew']
890
914
  @CustomerId = params['CustomerId']
891
915
  @Limit = params['Limit']
@@ -942,6 +966,8 @@ module TencentCloud
942
966
 
943
967
  # DescribeFakeApps请求参数结构体
944
968
  class DescribeFakeAppsRequest < TencentCloud::Common::AbstractModel
969
+ # @param CustomerIdList: 企业ID列表,可多选
970
+ # @type CustomerIdList: Array
945
971
  # @param IsNew: 是否新增数据
946
972
  # @type IsNew: Boolean
947
973
  # @param CustomerId: 企业ID
@@ -967,9 +993,10 @@ module TencentCloud
967
993
  # @param Ignored: 是否显示被忽略的数据
968
994
  # @type Ignored: Boolean
969
995
 
970
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
996
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
971
997
 
972
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
998
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
999
+ @CustomerIdList = customeridlist
973
1000
  @IsNew = isnew
974
1001
  @CustomerId = customerid
975
1002
  @Limit = limit
@@ -985,6 +1012,7 @@ module TencentCloud
985
1012
  end
986
1013
 
987
1014
  def deserialize(params)
1015
+ @CustomerIdList = params['CustomerIdList']
988
1016
  @IsNew = params['IsNew']
989
1017
  @CustomerId = params['CustomerId']
990
1018
  @Limit = params['Limit']
@@ -1041,6 +1069,8 @@ module TencentCloud
1041
1069
 
1042
1070
  # DescribeFakeMiniPrograms请求参数结构体
1043
1071
  class DescribeFakeMiniProgramsRequest < TencentCloud::Common::AbstractModel
1072
+ # @param CustomerIdList: 企业ID列表,可多选
1073
+ # @type CustomerIdList: Array
1044
1074
  # @param IsNew: 是否新增数据
1045
1075
  # @type IsNew: Boolean
1046
1076
  # @param CustomerId: 企业ID
@@ -1066,9 +1096,10 @@ module TencentCloud
1066
1096
  # @param Ignored: 是否显示被忽略的数据
1067
1097
  # @type Ignored: Boolean
1068
1098
 
1069
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1099
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1070
1100
 
1071
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1101
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1102
+ @CustomerIdList = customeridlist
1072
1103
  @IsNew = isnew
1073
1104
  @CustomerId = customerid
1074
1105
  @Limit = limit
@@ -1084,6 +1115,7 @@ module TencentCloud
1084
1115
  end
1085
1116
 
1086
1117
  def deserialize(params)
1118
+ @CustomerIdList = params['CustomerIdList']
1087
1119
  @IsNew = params['IsNew']
1088
1120
  @CustomerId = params['CustomerId']
1089
1121
  @Limit = params['Limit']
@@ -1140,6 +1172,8 @@ module TencentCloud
1140
1172
 
1141
1173
  # DescribeFakeWebsites请求参数结构体
1142
1174
  class DescribeFakeWebsitesRequest < TencentCloud::Common::AbstractModel
1175
+ # @param CustomerIdList: 企业ID列表,可多选
1176
+ # @type CustomerIdList: Array
1143
1177
  # @param IsNew: 是否新增数据
1144
1178
  # @type IsNew: Boolean
1145
1179
  # @param CustomerId: 企业ID
@@ -1165,9 +1199,10 @@ module TencentCloud
1165
1199
  # @param Ignored: 是否显示被忽略的数据
1166
1200
  # @type Ignored: Boolean
1167
1201
 
1168
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1202
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1169
1203
 
1170
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1204
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1205
+ @CustomerIdList = customeridlist
1171
1206
  @IsNew = isnew
1172
1207
  @CustomerId = customerid
1173
1208
  @Limit = limit
@@ -1183,6 +1218,7 @@ module TencentCloud
1183
1218
  end
1184
1219
 
1185
1220
  def deserialize(params)
1221
+ @CustomerIdList = params['CustomerIdList']
1186
1222
  @IsNew = params['IsNew']
1187
1223
  @CustomerId = params['CustomerId']
1188
1224
  @Limit = params['Limit']
@@ -1239,6 +1275,8 @@ module TencentCloud
1239
1275
 
1240
1276
  # DescribeFakeWechatOfficials请求参数结构体
1241
1277
  class DescribeFakeWechatOfficialsRequest < TencentCloud::Common::AbstractModel
1278
+ # @param CustomerIdList: 企业ID列表,可多选
1279
+ # @type CustomerIdList: Array
1242
1280
  # @param IsNew: 是否新增数据
1243
1281
  # @type IsNew: Boolean
1244
1282
  # @param CustomerId: 企业ID
@@ -1264,9 +1302,10 @@ module TencentCloud
1264
1302
  # @param Ignored: 是否显示被忽略的数据
1265
1303
  # @type Ignored: Boolean
1266
1304
 
1267
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1305
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1268
1306
 
1269
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1307
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1308
+ @CustomerIdList = customeridlist
1270
1309
  @IsNew = isnew
1271
1310
  @CustomerId = customerid
1272
1311
  @Limit = limit
@@ -1282,6 +1321,7 @@ module TencentCloud
1282
1321
  end
1283
1322
 
1284
1323
  def deserialize(params)
1324
+ @CustomerIdList = params['CustomerIdList']
1285
1325
  @IsNew = params['IsNew']
1286
1326
  @CustomerId = params['CustomerId']
1287
1327
  @Limit = params['Limit']
@@ -1436,6 +1476,8 @@ module TencentCloud
1436
1476
 
1437
1477
  # DescribeHttps请求参数结构体
1438
1478
  class DescribeHttpsRequest < TencentCloud::Common::AbstractModel
1479
+ # @param CustomerIdList: 企业ID列表,可多选
1480
+ # @type CustomerIdList: Array
1439
1481
  # @param IsAggregation: 是否聚合数据
1440
1482
  # @type IsAggregation: Boolean
1441
1483
  # @param IsNew: 是否新增数据
@@ -1467,9 +1509,10 @@ module TencentCloud
1467
1509
  # @param HasExpirationRisk: 是否仅显示过期风险资产
1468
1510
  # @type HasExpirationRisk: Boolean
1469
1511
 
1470
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowChange, :HasExpirationRisk
1512
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowChange, :HasExpirationRisk
1471
1513
 
1472
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil, isshowchange=nil, hasexpirationrisk=nil)
1514
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil, isshowchange=nil, hasexpirationrisk=nil)
1515
+ @CustomerIdList = customeridlist
1473
1516
  @IsAggregation = isaggregation
1474
1517
  @IsNew = isnew
1475
1518
  @CustomerId = customerid
@@ -1488,6 +1531,7 @@ module TencentCloud
1488
1531
  end
1489
1532
 
1490
1533
  def deserialize(params)
1534
+ @CustomerIdList = params['CustomerIdList']
1491
1535
  @IsAggregation = params['IsAggregation']
1492
1536
  @IsNew = params['IsNew']
1493
1537
  @CustomerId = params['CustomerId']
@@ -1663,6 +1707,8 @@ module TencentCloud
1663
1707
 
1664
1708
  # DescribeLeakageCodes请求参数结构体
1665
1709
  class DescribeLeakageCodesRequest < TencentCloud::Common::AbstractModel
1710
+ # @param CustomerIdList: 企业ID列表,可多选
1711
+ # @type CustomerIdList: Array
1666
1712
  # @param IsAggregation: 是否聚合数据
1667
1713
  # @type IsAggregation: Boolean
1668
1714
  # @param IsNew: 是否新增数据
@@ -1690,9 +1736,10 @@ module TencentCloud
1690
1736
  # @param Ignored: 是否显示被忽略的数据
1691
1737
  # @type Ignored: Boolean
1692
1738
 
1693
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1739
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1694
1740
 
1695
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1741
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1742
+ @CustomerIdList = customeridlist
1696
1743
  @IsAggregation = isaggregation
1697
1744
  @IsNew = isnew
1698
1745
  @CustomerId = customerid
@@ -1709,6 +1756,7 @@ module TencentCloud
1709
1756
  end
1710
1757
 
1711
1758
  def deserialize(params)
1759
+ @CustomerIdList = params['CustomerIdList']
1712
1760
  @IsAggregation = params['IsAggregation']
1713
1761
  @IsNew = params['IsNew']
1714
1762
  @CustomerId = params['CustomerId']
@@ -1766,6 +1814,8 @@ module TencentCloud
1766
1814
 
1767
1815
  # DescribeLeakageDatas请求参数结构体
1768
1816
  class DescribeLeakageDatasRequest < TencentCloud::Common::AbstractModel
1817
+ # @param CustomerIdList: 企业ID列表,可多选
1818
+ # @type CustomerIdList: Array
1769
1819
  # @param IsAggregation: 是否聚合数据
1770
1820
  # @type IsAggregation: Boolean
1771
1821
  # @param IsNew: 是否新增数据
@@ -1793,9 +1843,10 @@ module TencentCloud
1793
1843
  # @param Ignored: 是否显示被忽略的数据
1794
1844
  # @type Ignored: Boolean
1795
1845
 
1796
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1846
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1797
1847
 
1798
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1848
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1849
+ @CustomerIdList = customeridlist
1799
1850
  @IsAggregation = isaggregation
1800
1851
  @IsNew = isnew
1801
1852
  @CustomerId = customerid
@@ -1812,6 +1863,7 @@ module TencentCloud
1812
1863
  end
1813
1864
 
1814
1865
  def deserialize(params)
1866
+ @CustomerIdList = params['CustomerIdList']
1815
1867
  @IsAggregation = params['IsAggregation']
1816
1868
  @IsNew = params['IsNew']
1817
1869
  @CustomerId = params['CustomerId']
@@ -1869,6 +1921,8 @@ module TencentCloud
1869
1921
 
1870
1922
  # DescribeLeakageEmails请求参数结构体
1871
1923
  class DescribeLeakageEmailsRequest < TencentCloud::Common::AbstractModel
1924
+ # @param CustomerIdList: 企业ID列表,可多选
1925
+ # @type CustomerIdList: Array
1872
1926
  # @param IsAggregation: 是否聚合数据
1873
1927
  # @type IsAggregation: Boolean
1874
1928
  # @param IsNew: 是否新增数据
@@ -1896,9 +1950,10 @@ module TencentCloud
1896
1950
  # @param Ignored: 是否显示被忽略的数据
1897
1951
  # @type Ignored: Boolean
1898
1952
 
1899
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1953
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1900
1954
 
1901
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1955
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
1956
+ @CustomerIdList = customeridlist
1902
1957
  @IsAggregation = isaggregation
1903
1958
  @IsNew = isnew
1904
1959
  @CustomerId = customerid
@@ -1915,6 +1970,7 @@ module TencentCloud
1915
1970
  end
1916
1971
 
1917
1972
  def deserialize(params)
1973
+ @CustomerIdList = params['CustomerIdList']
1918
1974
  @IsAggregation = params['IsAggregation']
1919
1975
  @IsNew = params['IsNew']
1920
1976
  @CustomerId = params['CustomerId']
@@ -1972,6 +2028,8 @@ module TencentCloud
1972
2028
 
1973
2029
  # DescribeManages请求参数结构体
1974
2030
  class DescribeManagesRequest < TencentCloud::Common::AbstractModel
2031
+ # @param CustomerIdList: 企业ID列表,可多选
2032
+ # @type CustomerIdList: Array
1975
2033
  # @param IsAggregation: 是否聚合数据
1976
2034
  # @type IsAggregation: Boolean
1977
2035
  # @param IsNew: 是否新增数据
@@ -1999,9 +2057,10 @@ module TencentCloud
1999
2057
  # @param Ignored: 是否显示被忽略的数据
2000
2058
  # @type Ignored: Boolean
2001
2059
 
2002
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2060
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2003
2061
 
2004
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2062
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2063
+ @CustomerIdList = customeridlist
2005
2064
  @IsAggregation = isaggregation
2006
2065
  @IsNew = isnew
2007
2066
  @CustomerId = customerid
@@ -2018,6 +2077,7 @@ module TencentCloud
2018
2077
  end
2019
2078
 
2020
2079
  def deserialize(params)
2080
+ @CustomerIdList = params['CustomerIdList']
2021
2081
  @IsAggregation = params['IsAggregation']
2022
2082
  @IsNew = params['IsNew']
2023
2083
  @CustomerId = params['CustomerId']
@@ -2074,6 +2134,8 @@ module TencentCloud
2074
2134
 
2075
2135
  # DescribeNetDisks请求参数结构体
2076
2136
  class DescribeNetDisksRequest < TencentCloud::Common::AbstractModel
2137
+ # @param CustomerIdList: 企业ID列表,可多选
2138
+ # @type CustomerIdList: Array
2077
2139
  # @param IsNew: 是否新增数据
2078
2140
  # @type IsNew: Boolean
2079
2141
  # @param CustomerId: 企业ID
@@ -2099,9 +2161,10 @@ module TencentCloud
2099
2161
  # @param Ignored: 是否显示被忽略的数据
2100
2162
  # @type Ignored: Boolean
2101
2163
 
2102
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2164
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2103
2165
 
2104
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2166
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2167
+ @CustomerIdList = customeridlist
2105
2168
  @IsNew = isnew
2106
2169
  @CustomerId = customerid
2107
2170
  @Limit = limit
@@ -2117,6 +2180,7 @@ module TencentCloud
2117
2180
  end
2118
2181
 
2119
2182
  def deserialize(params)
2183
+ @CustomerIdList = params['CustomerIdList']
2120
2184
  @IsNew = params['IsNew']
2121
2185
  @CustomerId = params['CustomerId']
2122
2186
  @Limit = params['Limit']
@@ -2172,6 +2236,8 @@ module TencentCloud
2172
2236
 
2173
2237
  # DescribePorts请求参数结构体
2174
2238
  class DescribePortsRequest < TencentCloud::Common::AbstractModel
2239
+ # @param CustomerIdList: 企业ID列表,可多选
2240
+ # @type CustomerIdList: Array
2175
2241
  # @param IsAggregation: 是否聚合数据
2176
2242
  # @type IsAggregation: Boolean
2177
2243
  # @param IsNew: 是否新增数据
@@ -2199,9 +2265,10 @@ module TencentCloud
2199
2265
  # @param Ignored: 是否显示被忽略的数据
2200
2266
  # @type Ignored: Boolean
2201
2267
 
2202
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2268
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2203
2269
 
2204
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2270
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2271
+ @CustomerIdList = customeridlist
2205
2272
  @IsAggregation = isaggregation
2206
2273
  @IsNew = isnew
2207
2274
  @CustomerId = customerid
@@ -2218,6 +2285,7 @@ module TencentCloud
2218
2285
  end
2219
2286
 
2220
2287
  def deserialize(params)
2288
+ @CustomerIdList = params['CustomerIdList']
2221
2289
  @IsAggregation = params['IsAggregation']
2222
2290
  @IsNew = params['IsNew']
2223
2291
  @CustomerId = params['CustomerId']
@@ -2274,6 +2342,8 @@ module TencentCloud
2274
2342
 
2275
2343
  # DescribeSensitiveInfos请求参数结构体
2276
2344
  class DescribeSensitiveInfosRequest < TencentCloud::Common::AbstractModel
2345
+ # @param CustomerIdList: 企业ID列表,可多选
2346
+ # @type CustomerIdList: Array
2277
2347
  # @param IsAggregation: 是否聚合数据
2278
2348
  # @type IsAggregation: Boolean
2279
2349
  # @param IsNew: 是否新增数据
@@ -2301,9 +2371,10 @@ module TencentCloud
2301
2371
  # @param Ignored: 是否显示被忽略的数据
2302
2372
  # @type Ignored: Boolean
2303
2373
 
2304
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2374
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2305
2375
 
2306
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2376
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2377
+ @CustomerIdList = customeridlist
2307
2378
  @IsAggregation = isaggregation
2308
2379
  @IsNew = isnew
2309
2380
  @CustomerId = customerid
@@ -2320,6 +2391,7 @@ module TencentCloud
2320
2391
  end
2321
2392
 
2322
2393
  def deserialize(params)
2394
+ @CustomerIdList = params['CustomerIdList']
2323
2395
  @IsAggregation = params['IsAggregation']
2324
2396
  @IsNew = params['IsNew']
2325
2397
  @CustomerId = params['CustomerId']
@@ -2376,6 +2448,8 @@ module TencentCloud
2376
2448
 
2377
2449
  # DescribeSubDomains请求参数结构体
2378
2450
  class DescribeSubDomainsRequest < TencentCloud::Common::AbstractModel
2451
+ # @param CustomerIdList: 企业ID列表,可多选
2452
+ # @type CustomerIdList: Array
2379
2453
  # @param IsNew: 是否新增数据
2380
2454
  # @type IsNew: Boolean
2381
2455
  # @param CustomerId: 企业ID
@@ -2403,9 +2477,10 @@ module TencentCloud
2403
2477
  # @param Ignored: 是否显示被忽略的数据
2404
2478
  # @type Ignored: Boolean
2405
2479
 
2406
- attr_accessor :IsNew, :CustomerId, :IsAggregation, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2480
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :IsAggregation, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2407
2481
 
2408
- def initialize(isnew=nil, customerid=nil, isaggregation=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2482
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, isaggregation=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2483
+ @CustomerIdList = customeridlist
2409
2484
  @IsNew = isnew
2410
2485
  @CustomerId = customerid
2411
2486
  @IsAggregation = isaggregation
@@ -2422,6 +2497,7 @@ module TencentCloud
2422
2497
  end
2423
2498
 
2424
2499
  def deserialize(params)
2500
+ @CustomerIdList = params['CustomerIdList']
2425
2501
  @IsNew = params['IsNew']
2426
2502
  @CustomerId = params['CustomerId']
2427
2503
  @IsAggregation = params['IsAggregation']
@@ -2478,6 +2554,8 @@ module TencentCloud
2478
2554
 
2479
2555
  # DescribeSuspiciousAssets请求参数结构体
2480
2556
  class DescribeSuspiciousAssetsRequest < TencentCloud::Common::AbstractModel
2557
+ # @param CustomerIdList: 企业ID列表,可多选
2558
+ # @type CustomerIdList: Array
2481
2559
  # @param IsAggregation: 是否聚合数据
2482
2560
  # @type IsAggregation: Boolean
2483
2561
  # @param IsNew: 是否新增数据
@@ -2505,9 +2583,10 @@ module TencentCloud
2505
2583
  # @param Ignored: 是否显示被忽略的数据
2506
2584
  # @type Ignored: Boolean
2507
2585
 
2508
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2586
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2509
2587
 
2510
- def initialize(isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2588
+ def initialize(customeridlist=nil, isaggregation=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2589
+ @CustomerIdList = customeridlist
2511
2590
  @IsAggregation = isaggregation
2512
2591
  @IsNew = isnew
2513
2592
  @CustomerId = customerid
@@ -2524,6 +2603,7 @@ module TencentCloud
2524
2603
  end
2525
2604
 
2526
2605
  def deserialize(params)
2606
+ @CustomerIdList = params['CustomerIdList']
2527
2607
  @IsAggregation = params['IsAggregation']
2528
2608
  @IsNew = params['IsNew']
2529
2609
  @CustomerId = params['CustomerId']
@@ -2580,6 +2660,8 @@ module TencentCloud
2580
2660
 
2581
2661
  # DescribeVuls请求参数结构体
2582
2662
  class DescribeVulsRequest < TencentCloud::Common::AbstractModel
2663
+ # @param CustomerIdList: 企业ID列表,可多选
2664
+ # @type CustomerIdList: Array
2583
2665
  # @param IsNew: 是否新增数据
2584
2666
  # @type IsNew: Boolean
2585
2667
  # @param CustomerId: 企业ID
@@ -2605,9 +2687,10 @@ module TencentCloud
2605
2687
  # @param Ignored: 是否显示被忽略的数据
2606
2688
  # @type Ignored: Boolean
2607
2689
 
2608
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2690
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2609
2691
 
2610
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2692
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2693
+ @CustomerIdList = customeridlist
2611
2694
  @IsNew = isnew
2612
2695
  @CustomerId = customerid
2613
2696
  @Limit = limit
@@ -2623,6 +2706,7 @@ module TencentCloud
2623
2706
  end
2624
2707
 
2625
2708
  def deserialize(params)
2709
+ @CustomerIdList = params['CustomerIdList']
2626
2710
  @IsNew = params['IsNew']
2627
2711
  @CustomerId = params['CustomerId']
2628
2712
  @Limit = params['Limit']
@@ -2678,6 +2762,8 @@ module TencentCloud
2678
2762
 
2679
2763
  # DescribeWeakPasswords请求参数结构体
2680
2764
  class DescribeWeakPasswordsRequest < TencentCloud::Common::AbstractModel
2765
+ # @param CustomerIdList: 企业ID列表,可多选
2766
+ # @type CustomerIdList: Array
2681
2767
  # @param IsNew: 是否新增数据
2682
2768
  # @type IsNew: Boolean
2683
2769
  # @param CustomerId: 企业ID
@@ -2703,9 +2789,10 @@ module TencentCloud
2703
2789
  # @param Ignored: 是否显示被忽略的数据
2704
2790
  # @type Ignored: Boolean
2705
2791
 
2706
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2792
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2707
2793
 
2708
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2794
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2795
+ @CustomerIdList = customeridlist
2709
2796
  @IsNew = isnew
2710
2797
  @CustomerId = customerid
2711
2798
  @Limit = limit
@@ -2721,6 +2808,7 @@ module TencentCloud
2721
2808
  end
2722
2809
 
2723
2810
  def deserialize(params)
2811
+ @CustomerIdList = params['CustomerIdList']
2724
2812
  @IsNew = params['IsNew']
2725
2813
  @CustomerId = params['CustomerId']
2726
2814
  @Limit = params['Limit']
@@ -2776,6 +2864,8 @@ module TencentCloud
2776
2864
 
2777
2865
  # DescribeWechatApplets请求参数结构体
2778
2866
  class DescribeWechatAppletsRequest < TencentCloud::Common::AbstractModel
2867
+ # @param CustomerIdList: 企业ID列表,可多选
2868
+ # @type CustomerIdList: Array
2779
2869
  # @param CustomerId: 企业ID
2780
2870
  # @type CustomerId: Integer
2781
2871
  # @param IsNew: 是否新增数据
@@ -2801,9 +2891,10 @@ module TencentCloud
2801
2891
  # @param Ignored: 是否显示被忽略的数据
2802
2892
  # @type Ignored: Boolean
2803
2893
 
2804
- attr_accessor :CustomerId, :IsNew, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2894
+ attr_accessor :CustomerIdList, :CustomerId, :IsNew, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2805
2895
 
2806
- def initialize(customerid=nil, isnew=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2896
+ def initialize(customeridlist=nil, customerid=nil, isnew=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2897
+ @CustomerIdList = customeridlist
2807
2898
  @CustomerId = customerid
2808
2899
  @IsNew = isnew
2809
2900
  @Limit = limit
@@ -2819,6 +2910,7 @@ module TencentCloud
2819
2910
  end
2820
2911
 
2821
2912
  def deserialize(params)
2913
+ @CustomerIdList = params['CustomerIdList']
2822
2914
  @CustomerId = params['CustomerId']
2823
2915
  @IsNew = params['IsNew']
2824
2916
  @Limit = params['Limit']
@@ -2874,6 +2966,8 @@ module TencentCloud
2874
2966
 
2875
2967
  # DescribeWechatOfficialAccounts请求参数结构体
2876
2968
  class DescribeWechatOfficialAccountsRequest < TencentCloud::Common::AbstractModel
2969
+ # @param CustomerIdList: 企业ID列表,可多选
2970
+ # @type CustomerIdList: Array
2877
2971
  # @param IsNew: 是否新增数据
2878
2972
  # @type IsNew: Boolean
2879
2973
  # @param CustomerId: 企业ID
@@ -2899,9 +2993,10 @@ module TencentCloud
2899
2993
  # @param Ignored: 是否显示被忽略的数据
2900
2994
  # @type Ignored: Boolean
2901
2995
 
2902
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2996
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2903
2997
 
2904
- def initialize(isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2998
+ def initialize(customeridlist=nil, isnew=nil, customerid=nil, limit=nil, offset=nil, enterpriseuidlist=nil, format=nil, createatstart=nil, createatend=nil, updateatstart=nil, updateatend=nil, filters=nil, ignored=nil)
2999
+ @CustomerIdList = customeridlist
2905
3000
  @IsNew = isnew
2906
3001
  @CustomerId = customerid
2907
3002
  @Limit = limit
@@ -2917,6 +3012,7 @@ module TencentCloud
2917
3012
  end
2918
3013
 
2919
3014
  def deserialize(params)
3015
+ @CustomerIdList = params['CustomerIdList']
2920
3016
  @IsNew = params['IsNew']
2921
3017
  @CustomerId = params['CustomerId']
2922
3018
  @Limit = params['Limit']
@@ -4560,33 +4656,41 @@ module TencentCloud
4560
4656
 
4561
4657
  # ModifyLabel请求参数结构体
4562
4658
  class ModifyLabelRequest < TencentCloud::Common::AbstractModel
4659
+ # @param Module: 模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
4660
+ # @type Module: String
4661
+ # @param CustomerIdList: 企业ID列表,可多选
4662
+ # @type CustomerIdList: Array
4563
4663
  # @param Id: 资产或风险主键ID
4564
4664
  # @type Id: Integer
4565
4665
  # @param CustomerId: 企业ID,在企业管理页面查看
4566
4666
  # @type CustomerId: Integer
4567
- # @param Module: 模块,包括:enterprise:企业架构,domain:主域名,sub_domain:子域名,asset:IP资产,port:端口服务,http:HTTP资产,vul:漏洞信息,app:APP,wechat_applet:微信小程序,wechat_official_account:微信公众号,github:Github信息泄露,manage:管理后台暴露,config:目录爆破,dark_web:暗网泄露,net_disk:文库网盘泄露,supply_chain:供应链,weak_password:弱口令,sensitive_info:敏感信息泄露
4568
- # @type Module: String
4569
4667
  # @param IsAggregation: 是否聚合数据
4570
4668
  # @type IsAggregation: Boolean
4571
4669
  # @param Labels: 标签详情
4572
4670
  # @type Labels: String
4671
+ # @param Ids: 资产或风险主键ID列表
4672
+ # @type Ids: Array
4573
4673
 
4574
- attr_accessor :Id, :CustomerId, :Module, :IsAggregation, :Labels
4674
+ attr_accessor :Module, :CustomerIdList, :Id, :CustomerId, :IsAggregation, :Labels, :Ids
4575
4675
 
4576
- def initialize(id=nil, customerid=nil, _module=nil, isaggregation=nil, labels=nil)
4676
+ def initialize(_module=nil, customeridlist=nil, id=nil, customerid=nil, isaggregation=nil, labels=nil, ids=nil)
4677
+ @Module = _module
4678
+ @CustomerIdList = customeridlist
4577
4679
  @Id = id
4578
4680
  @CustomerId = customerid
4579
- @Module = _module
4580
4681
  @IsAggregation = isaggregation
4581
4682
  @Labels = labels
4683
+ @Ids = ids
4582
4684
  end
4583
4685
 
4584
4686
  def deserialize(params)
4687
+ @Module = params['Module']
4688
+ @CustomerIdList = params['CustomerIdList']
4585
4689
  @Id = params['Id']
4586
4690
  @CustomerId = params['CustomerId']
4587
- @Module = params['Module']
4588
4691
  @IsAggregation = params['IsAggregation']
4589
4692
  @Labels = params['Labels']
4693
+ @Ids = params['Ids']
4590
4694
  end
4591
4695
  end
4592
4696
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ctem
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1108
4
+ version: 3.0.1114
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-07-24 00:00:00.000000000 Z
11
+ date: 2025-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common