tencentcloud-sdk-ctem 3.0.1108 → 3.0.1126

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 +168 -56
  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: 0077c28faa8f0b33d1772c57627451a299803619
4
+ data.tar.gz: eb6580c3506ed7a595577ff71ba18586da995527
5
5
  SHA512:
6
- metadata.gz: 1db27ce0c2964c969a8187a3d5b8c5c66b876a43fc4bcdb758d2ec5e95769ed9a83ecfae3b8a6bc4ed308dd462747e02dd88e1b308908421e2d854fcd46924ff
7
- data.tar.gz: 2b0f71661fd75ac3f86087fb5436de5f1cc3c4981d98ae1d5b9def70e2813a4d97aad06a7fe630be97900188473a47127ad2950581efae3b625c6c099d7bf7fc
6
+ metadata.gz: 48d354152863896d31f77b39ff6fdb5450a240e7d8632d0628b5e294e794fd9b8374ee1e868dab50d043e032c967e5e0a9da878247832437496c491675e501dc
7
+ data.tar.gz: 07c4d918c4b0fd368765fecc48ab4c8e1b10fb2e715997f3c799bed274998f7c745c45cc8949d419b2d832e09368f8d0aa6d075fbb480d63c67437a3c6a1f273
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1108
1
+ 3.0.1126
@@ -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: 是否新增数据
@@ -494,10 +504,13 @@ module TencentCloud
494
504
  # @type Filters: Array
495
505
  # @param Ignored: 是否显示被忽略的数据
496
506
  # @type Ignored: Boolean
507
+ # @param OrderBy: 支持按照响应长度排序,例如:+ContentLength或-ContentLength,+是递增,-是递减
508
+ # @type OrderBy: String
497
509
 
498
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
510
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :OrderBy
499
511
 
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)
512
+ 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, orderby=nil)
513
+ @CustomerIdList = customeridlist
501
514
  @IsAggregation = isaggregation
502
515
  @IsNew = isnew
503
516
  @CustomerId = customerid
@@ -511,9 +524,11 @@ module TencentCloud
511
524
  @UpdateAtEnd = updateatend
512
525
  @Filters = filters
513
526
  @Ignored = ignored
527
+ @OrderBy = orderby
514
528
  end
515
529
 
516
530
  def deserialize(params)
531
+ @CustomerIdList = params['CustomerIdList']
517
532
  @IsAggregation = params['IsAggregation']
518
533
  @IsNew = params['IsNew']
519
534
  @CustomerId = params['CustomerId']
@@ -534,6 +549,7 @@ module TencentCloud
534
549
  end
535
550
  end
536
551
  @Ignored = params['Ignored']
552
+ @OrderBy = params['OrderBy']
537
553
  end
538
554
  end
539
555
 
@@ -644,6 +660,8 @@ module TencentCloud
644
660
 
645
661
  # DescribeDarkWebs请求参数结构体
646
662
  class DescribeDarkWebsRequest < TencentCloud::Common::AbstractModel
663
+ # @param CustomerIdList: 企业ID列表,可多选
664
+ # @type CustomerIdList: Array
647
665
  # @param IsNew: 是否新增数据
648
666
  # @type IsNew: Boolean
649
667
  # @param CustomerId: 企业ID
@@ -669,9 +687,10 @@ module TencentCloud
669
687
  # @param Ignored: 是否显示被忽略的数据
670
688
  # @type Ignored: Boolean
671
689
 
672
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
690
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
673
691
 
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)
692
+ 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)
693
+ @CustomerIdList = customeridlist
675
694
  @IsNew = isnew
676
695
  @CustomerId = customerid
677
696
  @Limit = limit
@@ -687,6 +706,7 @@ module TencentCloud
687
706
  end
688
707
 
689
708
  def deserialize(params)
709
+ @CustomerIdList = params['CustomerIdList']
690
710
  @IsNew = params['IsNew']
691
711
  @CustomerId = params['CustomerId']
692
712
  @Limit = params['Limit']
@@ -742,6 +762,8 @@ module TencentCloud
742
762
 
743
763
  # DescribeDomains请求参数结构体
744
764
  class DescribeDomainsRequest < TencentCloud::Common::AbstractModel
765
+ # @param CustomerIdList: 企业ID列表,可多选
766
+ # @type CustomerIdList: Array
745
767
  # @param IsNew: 是否新增数据
746
768
  # @type IsNew: Boolean
747
769
  # @param CustomerId: 企业ID
@@ -767,9 +789,10 @@ module TencentCloud
767
789
  # @param Ignored: 是否显示被忽略的数据
768
790
  # @type Ignored: Boolean
769
791
 
770
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
792
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
771
793
 
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)
794
+ 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)
795
+ @CustomerIdList = customeridlist
773
796
  @IsNew = isnew
774
797
  @CustomerId = customerid
775
798
  @Limit = limit
@@ -785,6 +808,7 @@ module TencentCloud
785
808
  end
786
809
 
787
810
  def deserialize(params)
811
+ @CustomerIdList = params['CustomerIdList']
788
812
  @IsNew = params['IsNew']
789
813
  @CustomerId = params['CustomerId']
790
814
  @Limit = params['Limit']
@@ -840,6 +864,8 @@ module TencentCloud
840
864
 
841
865
  # DescribeEnterprises请求参数结构体
842
866
  class DescribeEnterprisesRequest < TencentCloud::Common::AbstractModel
867
+ # @param CustomerIdList: 企业ID列表,可多选
868
+ # @type CustomerIdList: Array
843
869
  # @param IsNew: 是否新增数据
844
870
  # @type IsNew: Boolean
845
871
  # @param CustomerId: 企业ID
@@ -867,9 +893,10 @@ module TencentCloud
867
893
  # @param IsShowStatistics: 是否展示统计数据
868
894
  # @type IsShowStatistics: Boolean
869
895
 
870
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowStatistics
896
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowStatistics
871
897
 
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)
898
+ 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)
899
+ @CustomerIdList = customeridlist
873
900
  @IsNew = isnew
874
901
  @CustomerId = customerid
875
902
  @Limit = limit
@@ -886,6 +913,7 @@ module TencentCloud
886
913
  end
887
914
 
888
915
  def deserialize(params)
916
+ @CustomerIdList = params['CustomerIdList']
889
917
  @IsNew = params['IsNew']
890
918
  @CustomerId = params['CustomerId']
891
919
  @Limit = params['Limit']
@@ -942,6 +970,8 @@ module TencentCloud
942
970
 
943
971
  # DescribeFakeApps请求参数结构体
944
972
  class DescribeFakeAppsRequest < TencentCloud::Common::AbstractModel
973
+ # @param CustomerIdList: 企业ID列表,可多选
974
+ # @type CustomerIdList: Array
945
975
  # @param IsNew: 是否新增数据
946
976
  # @type IsNew: Boolean
947
977
  # @param CustomerId: 企业ID
@@ -967,9 +997,10 @@ module TencentCloud
967
997
  # @param Ignored: 是否显示被忽略的数据
968
998
  # @type Ignored: Boolean
969
999
 
970
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1000
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
971
1001
 
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)
1002
+ 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)
1003
+ @CustomerIdList = customeridlist
973
1004
  @IsNew = isnew
974
1005
  @CustomerId = customerid
975
1006
  @Limit = limit
@@ -985,6 +1016,7 @@ module TencentCloud
985
1016
  end
986
1017
 
987
1018
  def deserialize(params)
1019
+ @CustomerIdList = params['CustomerIdList']
988
1020
  @IsNew = params['IsNew']
989
1021
  @CustomerId = params['CustomerId']
990
1022
  @Limit = params['Limit']
@@ -1041,6 +1073,8 @@ module TencentCloud
1041
1073
 
1042
1074
  # DescribeFakeMiniPrograms请求参数结构体
1043
1075
  class DescribeFakeMiniProgramsRequest < TencentCloud::Common::AbstractModel
1076
+ # @param CustomerIdList: 企业ID列表,可多选
1077
+ # @type CustomerIdList: Array
1044
1078
  # @param IsNew: 是否新增数据
1045
1079
  # @type IsNew: Boolean
1046
1080
  # @param CustomerId: 企业ID
@@ -1066,9 +1100,10 @@ module TencentCloud
1066
1100
  # @param Ignored: 是否显示被忽略的数据
1067
1101
  # @type Ignored: Boolean
1068
1102
 
1069
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1103
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1070
1104
 
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)
1105
+ 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)
1106
+ @CustomerIdList = customeridlist
1072
1107
  @IsNew = isnew
1073
1108
  @CustomerId = customerid
1074
1109
  @Limit = limit
@@ -1084,6 +1119,7 @@ module TencentCloud
1084
1119
  end
1085
1120
 
1086
1121
  def deserialize(params)
1122
+ @CustomerIdList = params['CustomerIdList']
1087
1123
  @IsNew = params['IsNew']
1088
1124
  @CustomerId = params['CustomerId']
1089
1125
  @Limit = params['Limit']
@@ -1140,6 +1176,8 @@ module TencentCloud
1140
1176
 
1141
1177
  # DescribeFakeWebsites请求参数结构体
1142
1178
  class DescribeFakeWebsitesRequest < TencentCloud::Common::AbstractModel
1179
+ # @param CustomerIdList: 企业ID列表,可多选
1180
+ # @type CustomerIdList: Array
1143
1181
  # @param IsNew: 是否新增数据
1144
1182
  # @type IsNew: Boolean
1145
1183
  # @param CustomerId: 企业ID
@@ -1165,9 +1203,10 @@ module TencentCloud
1165
1203
  # @param Ignored: 是否显示被忽略的数据
1166
1204
  # @type Ignored: Boolean
1167
1205
 
1168
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1206
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1169
1207
 
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)
1208
+ 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)
1209
+ @CustomerIdList = customeridlist
1171
1210
  @IsNew = isnew
1172
1211
  @CustomerId = customerid
1173
1212
  @Limit = limit
@@ -1183,6 +1222,7 @@ module TencentCloud
1183
1222
  end
1184
1223
 
1185
1224
  def deserialize(params)
1225
+ @CustomerIdList = params['CustomerIdList']
1186
1226
  @IsNew = params['IsNew']
1187
1227
  @CustomerId = params['CustomerId']
1188
1228
  @Limit = params['Limit']
@@ -1239,6 +1279,8 @@ module TencentCloud
1239
1279
 
1240
1280
  # DescribeFakeWechatOfficials请求参数结构体
1241
1281
  class DescribeFakeWechatOfficialsRequest < TencentCloud::Common::AbstractModel
1282
+ # @param CustomerIdList: 企业ID列表,可多选
1283
+ # @type CustomerIdList: Array
1242
1284
  # @param IsNew: 是否新增数据
1243
1285
  # @type IsNew: Boolean
1244
1286
  # @param CustomerId: 企业ID
@@ -1264,9 +1306,10 @@ module TencentCloud
1264
1306
  # @param Ignored: 是否显示被忽略的数据
1265
1307
  # @type Ignored: Boolean
1266
1308
 
1267
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1309
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1268
1310
 
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)
1311
+ 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)
1312
+ @CustomerIdList = customeridlist
1270
1313
  @IsNew = isnew
1271
1314
  @CustomerId = customerid
1272
1315
  @Limit = limit
@@ -1282,6 +1325,7 @@ module TencentCloud
1282
1325
  end
1283
1326
 
1284
1327
  def deserialize(params)
1328
+ @CustomerIdList = params['CustomerIdList']
1285
1329
  @IsNew = params['IsNew']
1286
1330
  @CustomerId = params['CustomerId']
1287
1331
  @Limit = params['Limit']
@@ -1436,6 +1480,8 @@ module TencentCloud
1436
1480
 
1437
1481
  # DescribeHttps请求参数结构体
1438
1482
  class DescribeHttpsRequest < TencentCloud::Common::AbstractModel
1483
+ # @param CustomerIdList: 企业ID列表,可多选
1484
+ # @type CustomerIdList: Array
1439
1485
  # @param IsAggregation: 是否聚合数据
1440
1486
  # @type IsAggregation: Boolean
1441
1487
  # @param IsNew: 是否新增数据
@@ -1467,9 +1513,10 @@ module TencentCloud
1467
1513
  # @param HasExpirationRisk: 是否仅显示过期风险资产
1468
1514
  # @type HasExpirationRisk: Boolean
1469
1515
 
1470
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowChange, :HasExpirationRisk
1516
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored, :IsShowChange, :HasExpirationRisk
1471
1517
 
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)
1518
+ 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)
1519
+ @CustomerIdList = customeridlist
1473
1520
  @IsAggregation = isaggregation
1474
1521
  @IsNew = isnew
1475
1522
  @CustomerId = customerid
@@ -1488,6 +1535,7 @@ module TencentCloud
1488
1535
  end
1489
1536
 
1490
1537
  def deserialize(params)
1538
+ @CustomerIdList = params['CustomerIdList']
1491
1539
  @IsAggregation = params['IsAggregation']
1492
1540
  @IsNew = params['IsNew']
1493
1541
  @CustomerId = params['CustomerId']
@@ -1663,6 +1711,8 @@ module TencentCloud
1663
1711
 
1664
1712
  # DescribeLeakageCodes请求参数结构体
1665
1713
  class DescribeLeakageCodesRequest < TencentCloud::Common::AbstractModel
1714
+ # @param CustomerIdList: 企业ID列表,可多选
1715
+ # @type CustomerIdList: Array
1666
1716
  # @param IsAggregation: 是否聚合数据
1667
1717
  # @type IsAggregation: Boolean
1668
1718
  # @param IsNew: 是否新增数据
@@ -1690,9 +1740,10 @@ module TencentCloud
1690
1740
  # @param Ignored: 是否显示被忽略的数据
1691
1741
  # @type Ignored: Boolean
1692
1742
 
1693
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1743
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1694
1744
 
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)
1745
+ 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)
1746
+ @CustomerIdList = customeridlist
1696
1747
  @IsAggregation = isaggregation
1697
1748
  @IsNew = isnew
1698
1749
  @CustomerId = customerid
@@ -1709,6 +1760,7 @@ module TencentCloud
1709
1760
  end
1710
1761
 
1711
1762
  def deserialize(params)
1763
+ @CustomerIdList = params['CustomerIdList']
1712
1764
  @IsAggregation = params['IsAggregation']
1713
1765
  @IsNew = params['IsNew']
1714
1766
  @CustomerId = params['CustomerId']
@@ -1766,6 +1818,8 @@ module TencentCloud
1766
1818
 
1767
1819
  # DescribeLeakageDatas请求参数结构体
1768
1820
  class DescribeLeakageDatasRequest < TencentCloud::Common::AbstractModel
1821
+ # @param CustomerIdList: 企业ID列表,可多选
1822
+ # @type CustomerIdList: Array
1769
1823
  # @param IsAggregation: 是否聚合数据
1770
1824
  # @type IsAggregation: Boolean
1771
1825
  # @param IsNew: 是否新增数据
@@ -1793,9 +1847,10 @@ module TencentCloud
1793
1847
  # @param Ignored: 是否显示被忽略的数据
1794
1848
  # @type Ignored: Boolean
1795
1849
 
1796
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1850
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1797
1851
 
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)
1852
+ 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)
1853
+ @CustomerIdList = customeridlist
1799
1854
  @IsAggregation = isaggregation
1800
1855
  @IsNew = isnew
1801
1856
  @CustomerId = customerid
@@ -1812,6 +1867,7 @@ module TencentCloud
1812
1867
  end
1813
1868
 
1814
1869
  def deserialize(params)
1870
+ @CustomerIdList = params['CustomerIdList']
1815
1871
  @IsAggregation = params['IsAggregation']
1816
1872
  @IsNew = params['IsNew']
1817
1873
  @CustomerId = params['CustomerId']
@@ -1869,6 +1925,8 @@ module TencentCloud
1869
1925
 
1870
1926
  # DescribeLeakageEmails请求参数结构体
1871
1927
  class DescribeLeakageEmailsRequest < TencentCloud::Common::AbstractModel
1928
+ # @param CustomerIdList: 企业ID列表,可多选
1929
+ # @type CustomerIdList: Array
1872
1930
  # @param IsAggregation: 是否聚合数据
1873
1931
  # @type IsAggregation: Boolean
1874
1932
  # @param IsNew: 是否新增数据
@@ -1896,9 +1954,10 @@ module TencentCloud
1896
1954
  # @param Ignored: 是否显示被忽略的数据
1897
1955
  # @type Ignored: Boolean
1898
1956
 
1899
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1957
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
1900
1958
 
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)
1959
+ 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)
1960
+ @CustomerIdList = customeridlist
1902
1961
  @IsAggregation = isaggregation
1903
1962
  @IsNew = isnew
1904
1963
  @CustomerId = customerid
@@ -1915,6 +1974,7 @@ module TencentCloud
1915
1974
  end
1916
1975
 
1917
1976
  def deserialize(params)
1977
+ @CustomerIdList = params['CustomerIdList']
1918
1978
  @IsAggregation = params['IsAggregation']
1919
1979
  @IsNew = params['IsNew']
1920
1980
  @CustomerId = params['CustomerId']
@@ -1972,6 +2032,8 @@ module TencentCloud
1972
2032
 
1973
2033
  # DescribeManages请求参数结构体
1974
2034
  class DescribeManagesRequest < TencentCloud::Common::AbstractModel
2035
+ # @param CustomerIdList: 企业ID列表,可多选
2036
+ # @type CustomerIdList: Array
1975
2037
  # @param IsAggregation: 是否聚合数据
1976
2038
  # @type IsAggregation: Boolean
1977
2039
  # @param IsNew: 是否新增数据
@@ -1999,9 +2061,10 @@ module TencentCloud
1999
2061
  # @param Ignored: 是否显示被忽略的数据
2000
2062
  # @type Ignored: Boolean
2001
2063
 
2002
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2064
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2003
2065
 
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)
2066
+ 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)
2067
+ @CustomerIdList = customeridlist
2005
2068
  @IsAggregation = isaggregation
2006
2069
  @IsNew = isnew
2007
2070
  @CustomerId = customerid
@@ -2018,6 +2081,7 @@ module TencentCloud
2018
2081
  end
2019
2082
 
2020
2083
  def deserialize(params)
2084
+ @CustomerIdList = params['CustomerIdList']
2021
2085
  @IsAggregation = params['IsAggregation']
2022
2086
  @IsNew = params['IsNew']
2023
2087
  @CustomerId = params['CustomerId']
@@ -2074,6 +2138,8 @@ module TencentCloud
2074
2138
 
2075
2139
  # DescribeNetDisks请求参数结构体
2076
2140
  class DescribeNetDisksRequest < TencentCloud::Common::AbstractModel
2141
+ # @param CustomerIdList: 企业ID列表,可多选
2142
+ # @type CustomerIdList: Array
2077
2143
  # @param IsNew: 是否新增数据
2078
2144
  # @type IsNew: Boolean
2079
2145
  # @param CustomerId: 企业ID
@@ -2099,9 +2165,10 @@ module TencentCloud
2099
2165
  # @param Ignored: 是否显示被忽略的数据
2100
2166
  # @type Ignored: Boolean
2101
2167
 
2102
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2168
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2103
2169
 
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)
2170
+ 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)
2171
+ @CustomerIdList = customeridlist
2105
2172
  @IsNew = isnew
2106
2173
  @CustomerId = customerid
2107
2174
  @Limit = limit
@@ -2117,6 +2184,7 @@ module TencentCloud
2117
2184
  end
2118
2185
 
2119
2186
  def deserialize(params)
2187
+ @CustomerIdList = params['CustomerIdList']
2120
2188
  @IsNew = params['IsNew']
2121
2189
  @CustomerId = params['CustomerId']
2122
2190
  @Limit = params['Limit']
@@ -2172,6 +2240,8 @@ module TencentCloud
2172
2240
 
2173
2241
  # DescribePorts请求参数结构体
2174
2242
  class DescribePortsRequest < TencentCloud::Common::AbstractModel
2243
+ # @param CustomerIdList: 企业ID列表,可多选
2244
+ # @type CustomerIdList: Array
2175
2245
  # @param IsAggregation: 是否聚合数据
2176
2246
  # @type IsAggregation: Boolean
2177
2247
  # @param IsNew: 是否新增数据
@@ -2199,9 +2269,10 @@ module TencentCloud
2199
2269
  # @param Ignored: 是否显示被忽略的数据
2200
2270
  # @type Ignored: Boolean
2201
2271
 
2202
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2272
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2203
2273
 
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)
2274
+ 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)
2275
+ @CustomerIdList = customeridlist
2205
2276
  @IsAggregation = isaggregation
2206
2277
  @IsNew = isnew
2207
2278
  @CustomerId = customerid
@@ -2218,6 +2289,7 @@ module TencentCloud
2218
2289
  end
2219
2290
 
2220
2291
  def deserialize(params)
2292
+ @CustomerIdList = params['CustomerIdList']
2221
2293
  @IsAggregation = params['IsAggregation']
2222
2294
  @IsNew = params['IsNew']
2223
2295
  @CustomerId = params['CustomerId']
@@ -2274,6 +2346,8 @@ module TencentCloud
2274
2346
 
2275
2347
  # DescribeSensitiveInfos请求参数结构体
2276
2348
  class DescribeSensitiveInfosRequest < TencentCloud::Common::AbstractModel
2349
+ # @param CustomerIdList: 企业ID列表,可多选
2350
+ # @type CustomerIdList: Array
2277
2351
  # @param IsAggregation: 是否聚合数据
2278
2352
  # @type IsAggregation: Boolean
2279
2353
  # @param IsNew: 是否新增数据
@@ -2301,9 +2375,10 @@ module TencentCloud
2301
2375
  # @param Ignored: 是否显示被忽略的数据
2302
2376
  # @type Ignored: Boolean
2303
2377
 
2304
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2378
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2305
2379
 
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)
2380
+ 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)
2381
+ @CustomerIdList = customeridlist
2307
2382
  @IsAggregation = isaggregation
2308
2383
  @IsNew = isnew
2309
2384
  @CustomerId = customerid
@@ -2320,6 +2395,7 @@ module TencentCloud
2320
2395
  end
2321
2396
 
2322
2397
  def deserialize(params)
2398
+ @CustomerIdList = params['CustomerIdList']
2323
2399
  @IsAggregation = params['IsAggregation']
2324
2400
  @IsNew = params['IsNew']
2325
2401
  @CustomerId = params['CustomerId']
@@ -2376,6 +2452,8 @@ module TencentCloud
2376
2452
 
2377
2453
  # DescribeSubDomains请求参数结构体
2378
2454
  class DescribeSubDomainsRequest < TencentCloud::Common::AbstractModel
2455
+ # @param CustomerIdList: 企业ID列表,可多选
2456
+ # @type CustomerIdList: Array
2379
2457
  # @param IsNew: 是否新增数据
2380
2458
  # @type IsNew: Boolean
2381
2459
  # @param CustomerId: 企业ID
@@ -2403,9 +2481,10 @@ module TencentCloud
2403
2481
  # @param Ignored: 是否显示被忽略的数据
2404
2482
  # @type Ignored: Boolean
2405
2483
 
2406
- attr_accessor :IsNew, :CustomerId, :IsAggregation, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2484
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :IsAggregation, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2407
2485
 
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)
2486
+ 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)
2487
+ @CustomerIdList = customeridlist
2409
2488
  @IsNew = isnew
2410
2489
  @CustomerId = customerid
2411
2490
  @IsAggregation = isaggregation
@@ -2422,6 +2501,7 @@ module TencentCloud
2422
2501
  end
2423
2502
 
2424
2503
  def deserialize(params)
2504
+ @CustomerIdList = params['CustomerIdList']
2425
2505
  @IsNew = params['IsNew']
2426
2506
  @CustomerId = params['CustomerId']
2427
2507
  @IsAggregation = params['IsAggregation']
@@ -2478,6 +2558,8 @@ module TencentCloud
2478
2558
 
2479
2559
  # DescribeSuspiciousAssets请求参数结构体
2480
2560
  class DescribeSuspiciousAssetsRequest < TencentCloud::Common::AbstractModel
2561
+ # @param CustomerIdList: 企业ID列表,可多选
2562
+ # @type CustomerIdList: Array
2481
2563
  # @param IsAggregation: 是否聚合数据
2482
2564
  # @type IsAggregation: Boolean
2483
2565
  # @param IsNew: 是否新增数据
@@ -2505,9 +2587,10 @@ module TencentCloud
2505
2587
  # @param Ignored: 是否显示被忽略的数据
2506
2588
  # @type Ignored: Boolean
2507
2589
 
2508
- attr_accessor :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2590
+ attr_accessor :CustomerIdList, :IsAggregation, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2509
2591
 
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)
2592
+ 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)
2593
+ @CustomerIdList = customeridlist
2511
2594
  @IsAggregation = isaggregation
2512
2595
  @IsNew = isnew
2513
2596
  @CustomerId = customerid
@@ -2524,6 +2607,7 @@ module TencentCloud
2524
2607
  end
2525
2608
 
2526
2609
  def deserialize(params)
2610
+ @CustomerIdList = params['CustomerIdList']
2527
2611
  @IsAggregation = params['IsAggregation']
2528
2612
  @IsNew = params['IsNew']
2529
2613
  @CustomerId = params['CustomerId']
@@ -2580,6 +2664,8 @@ module TencentCloud
2580
2664
 
2581
2665
  # DescribeVuls请求参数结构体
2582
2666
  class DescribeVulsRequest < TencentCloud::Common::AbstractModel
2667
+ # @param CustomerIdList: 企业ID列表,可多选
2668
+ # @type CustomerIdList: Array
2583
2669
  # @param IsNew: 是否新增数据
2584
2670
  # @type IsNew: Boolean
2585
2671
  # @param CustomerId: 企业ID
@@ -2605,9 +2691,10 @@ module TencentCloud
2605
2691
  # @param Ignored: 是否显示被忽略的数据
2606
2692
  # @type Ignored: Boolean
2607
2693
 
2608
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2694
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2609
2695
 
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)
2696
+ 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)
2697
+ @CustomerIdList = customeridlist
2611
2698
  @IsNew = isnew
2612
2699
  @CustomerId = customerid
2613
2700
  @Limit = limit
@@ -2623,6 +2710,7 @@ module TencentCloud
2623
2710
  end
2624
2711
 
2625
2712
  def deserialize(params)
2713
+ @CustomerIdList = params['CustomerIdList']
2626
2714
  @IsNew = params['IsNew']
2627
2715
  @CustomerId = params['CustomerId']
2628
2716
  @Limit = params['Limit']
@@ -2678,6 +2766,8 @@ module TencentCloud
2678
2766
 
2679
2767
  # DescribeWeakPasswords请求参数结构体
2680
2768
  class DescribeWeakPasswordsRequest < TencentCloud::Common::AbstractModel
2769
+ # @param CustomerIdList: 企业ID列表,可多选
2770
+ # @type CustomerIdList: Array
2681
2771
  # @param IsNew: 是否新增数据
2682
2772
  # @type IsNew: Boolean
2683
2773
  # @param CustomerId: 企业ID
@@ -2703,9 +2793,10 @@ module TencentCloud
2703
2793
  # @param Ignored: 是否显示被忽略的数据
2704
2794
  # @type Ignored: Boolean
2705
2795
 
2706
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2796
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2707
2797
 
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)
2798
+ 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)
2799
+ @CustomerIdList = customeridlist
2709
2800
  @IsNew = isnew
2710
2801
  @CustomerId = customerid
2711
2802
  @Limit = limit
@@ -2721,6 +2812,7 @@ module TencentCloud
2721
2812
  end
2722
2813
 
2723
2814
  def deserialize(params)
2815
+ @CustomerIdList = params['CustomerIdList']
2724
2816
  @IsNew = params['IsNew']
2725
2817
  @CustomerId = params['CustomerId']
2726
2818
  @Limit = params['Limit']
@@ -2776,6 +2868,8 @@ module TencentCloud
2776
2868
 
2777
2869
  # DescribeWechatApplets请求参数结构体
2778
2870
  class DescribeWechatAppletsRequest < TencentCloud::Common::AbstractModel
2871
+ # @param CustomerIdList: 企业ID列表,可多选
2872
+ # @type CustomerIdList: Array
2779
2873
  # @param CustomerId: 企业ID
2780
2874
  # @type CustomerId: Integer
2781
2875
  # @param IsNew: 是否新增数据
@@ -2801,9 +2895,10 @@ module TencentCloud
2801
2895
  # @param Ignored: 是否显示被忽略的数据
2802
2896
  # @type Ignored: Boolean
2803
2897
 
2804
- attr_accessor :CustomerId, :IsNew, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2898
+ attr_accessor :CustomerIdList, :CustomerId, :IsNew, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2805
2899
 
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)
2900
+ 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)
2901
+ @CustomerIdList = customeridlist
2807
2902
  @CustomerId = customerid
2808
2903
  @IsNew = isnew
2809
2904
  @Limit = limit
@@ -2819,6 +2914,7 @@ module TencentCloud
2819
2914
  end
2820
2915
 
2821
2916
  def deserialize(params)
2917
+ @CustomerIdList = params['CustomerIdList']
2822
2918
  @CustomerId = params['CustomerId']
2823
2919
  @IsNew = params['IsNew']
2824
2920
  @Limit = params['Limit']
@@ -2874,6 +2970,8 @@ module TencentCloud
2874
2970
 
2875
2971
  # DescribeWechatOfficialAccounts请求参数结构体
2876
2972
  class DescribeWechatOfficialAccountsRequest < TencentCloud::Common::AbstractModel
2973
+ # @param CustomerIdList: 企业ID列表,可多选
2974
+ # @type CustomerIdList: Array
2877
2975
  # @param IsNew: 是否新增数据
2878
2976
  # @type IsNew: Boolean
2879
2977
  # @param CustomerId: 企业ID
@@ -2899,9 +2997,10 @@ module TencentCloud
2899
2997
  # @param Ignored: 是否显示被忽略的数据
2900
2998
  # @type Ignored: Boolean
2901
2999
 
2902
- attr_accessor :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
3000
+ attr_accessor :CustomerIdList, :IsNew, :CustomerId, :Limit, :Offset, :EnterpriseUidList, :Format, :CreateAtStart, :CreateAtEnd, :UpdateAtStart, :UpdateAtEnd, :Filters, :Ignored
2903
3001
 
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)
3002
+ 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)
3003
+ @CustomerIdList = customeridlist
2905
3004
  @IsNew = isnew
2906
3005
  @CustomerId = customerid
2907
3006
  @Limit = limit
@@ -2917,6 +3016,7 @@ module TencentCloud
2917
3016
  end
2918
3017
 
2919
3018
  def deserialize(params)
3019
+ @CustomerIdList = params['CustomerIdList']
2920
3020
  @IsNew = params['IsNew']
2921
3021
  @CustomerId = params['CustomerId']
2922
3022
  @Limit = params['Limit']
@@ -3147,15 +3247,18 @@ module TencentCloud
3147
3247
  # @type Url: String
3148
3248
  # @param DisplayToolCommon: 公共字段
3149
3249
  # @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
3250
+ # @param Status: 状态:unrepaired:未修复,repaired:已修复,ignore:已忽略
3251
+ # @type Status: String
3150
3252
 
3151
- attr_accessor :Id, :Content, :MatchedKeywords, :Url, :DisplayToolCommon
3253
+ attr_accessor :Id, :Content, :MatchedKeywords, :Url, :DisplayToolCommon, :Status
3152
3254
 
3153
- def initialize(id=nil, content=nil, matchedkeywords=nil, url=nil, displaytoolcommon=nil)
3255
+ def initialize(id=nil, content=nil, matchedkeywords=nil, url=nil, displaytoolcommon=nil, status=nil)
3154
3256
  @Id = id
3155
3257
  @Content = content
3156
3258
  @MatchedKeywords = matchedkeywords
3157
3259
  @Url = url
3158
3260
  @DisplayToolCommon = displaytoolcommon
3261
+ @Status = status
3159
3262
  end
3160
3263
 
3161
3264
  def deserialize(params)
@@ -3167,6 +3270,7 @@ module TencentCloud
3167
3270
  @DisplayToolCommon = DisplayToolCommon.new
3168
3271
  @DisplayToolCommon.deserialize(params['DisplayToolCommon'])
3169
3272
  end
3273
+ @Status = params['Status']
3170
3274
  end
3171
3275
  end
3172
3276
 
@@ -4560,33 +4664,41 @@ module TencentCloud
4560
4664
 
4561
4665
  # ModifyLabel请求参数结构体
4562
4666
  class ModifyLabelRequest < TencentCloud::Common::AbstractModel
4667
+ # @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:敏感信息泄露
4668
+ # @type Module: String
4669
+ # @param CustomerIdList: 企业ID列表,可多选
4670
+ # @type CustomerIdList: Array
4563
4671
  # @param Id: 资产或风险主键ID
4564
4672
  # @type Id: Integer
4565
4673
  # @param CustomerId: 企业ID,在企业管理页面查看
4566
4674
  # @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
4675
  # @param IsAggregation: 是否聚合数据
4570
4676
  # @type IsAggregation: Boolean
4571
4677
  # @param Labels: 标签详情
4572
4678
  # @type Labels: String
4679
+ # @param Ids: 资产或风险主键ID列表
4680
+ # @type Ids: Array
4573
4681
 
4574
- attr_accessor :Id, :CustomerId, :Module, :IsAggregation, :Labels
4682
+ attr_accessor :Module, :CustomerIdList, :Id, :CustomerId, :IsAggregation, :Labels, :Ids
4575
4683
 
4576
- def initialize(id=nil, customerid=nil, _module=nil, isaggregation=nil, labels=nil)
4684
+ def initialize(_module=nil, customeridlist=nil, id=nil, customerid=nil, isaggregation=nil, labels=nil, ids=nil)
4685
+ @Module = _module
4686
+ @CustomerIdList = customeridlist
4577
4687
  @Id = id
4578
4688
  @CustomerId = customerid
4579
- @Module = _module
4580
4689
  @IsAggregation = isaggregation
4581
4690
  @Labels = labels
4691
+ @Ids = ids
4582
4692
  end
4583
4693
 
4584
4694
  def deserialize(params)
4695
+ @Module = params['Module']
4696
+ @CustomerIdList = params['CustomerIdList']
4585
4697
  @Id = params['Id']
4586
4698
  @CustomerId = params['CustomerId']
4587
- @Module = params['Module']
4588
4699
  @IsAggregation = params['IsAggregation']
4589
4700
  @Labels = params['Labels']
4701
+ @Ids = params['Ids']
4590
4702
  end
4591
4703
  end
4592
4704
 
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.1126
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-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common