tencentcloud-sdk-dsgc 3.0.1065 → 3.0.1066

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1424d1e62eeaf47f4b45a0f9a160263b7bcd4f71
4
- data.tar.gz: 0c136d72552a1f18c2bbcdcf2302bcef4ef78487
3
+ metadata.gz: 8a25d3f5044960216b312ea54517e20d7588e4ca
4
+ data.tar.gz: 3ec00f7c54576ab77499fc416d9afc96490c03f2
5
5
  SHA512:
6
- metadata.gz: 9c7a7b0095531552cc747af203639f1c2c50063d429471b3ff3c986dacc941021972666525ff61dd1894cc6524eb843891ab38be3a8d0ebe177b46bc932ccf32
7
- data.tar.gz: 0967ff6ffc75193be37134c2493e7dad239bdfb1d5ded9ab445ceb8d0bfc7794b98ebee90e5e24e6942c95b4fe3cb50a1e49928a8a5daa6460f06c65943c38ee
6
+ metadata.gz: 704ebe6612d3fbffa72f2a169e34f7d7ab43283e47c40a373bea8210ac444fdade3de9d2104768f144d83b88bef849966be2b932d35de5d0ffc98b91df86da9c
7
+ data.tar.gz: 8142abaae0ea355f59213027c6b1a9615b4f0c7c089941a7808617cabeb2d1252aef2c297645b24e49a407ccb4fec9510bfdf2cee82d1049f1837a6d437b45fa
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1065
1
+ 3.0.1066
@@ -173,32 +173,6 @@ module TencentCloud
173
173
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
174
174
  end
175
175
 
176
- # 旧版本DSGC接口下线
177
-
178
- # 创建识别规则
179
-
180
- # @param request: Request instance for CreateClassificationRule.
181
- # @type request: :class:`Tencentcloud::dsgc::V20190723::CreateClassificationRuleRequest`
182
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::CreateClassificationRuleResponse`
183
- def CreateClassificationRule(request)
184
- body = send_request('CreateClassificationRule', request.serialize)
185
- response = JSON.parse(body)
186
- if response['Response'].key?('Error') == false
187
- model = CreateClassificationRuleResponse.new
188
- model.deserialize(response['Response'])
189
- model
190
- else
191
- code = response['Response']['Error']['Code']
192
- message = response['Response']['Error']['Message']
193
- reqid = response['Response']['RequestId']
194
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
195
- end
196
- rescue TencentCloud::Common::TencentCloudSDKException => e
197
- raise e
198
- rescue StandardError => e
199
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
200
- end
201
-
202
176
  # 风险项页面---创建风险等级
203
177
 
204
178
  # @param request: Request instance for CreateDSPAAssessmentRiskLevel.
@@ -583,58 +557,6 @@ module TencentCloud
583
557
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
584
558
  end
585
559
 
586
- # 旧版本DSGC接口下线
587
-
588
- # 创建新分类
589
-
590
- # @param request: Request instance for CreateNewClassification.
591
- # @type request: :class:`Tencentcloud::dsgc::V20190723::CreateNewClassificationRequest`
592
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::CreateNewClassificationResponse`
593
- def CreateNewClassification(request)
594
- body = send_request('CreateNewClassification', request.serialize)
595
- response = JSON.parse(body)
596
- if response['Response'].key?('Error') == false
597
- model = CreateNewClassificationResponse.new
598
- model.deserialize(response['Response'])
599
- model
600
- else
601
- code = response['Response']['Error']['Code']
602
- message = response['Response']['Error']['Message']
603
- reqid = response['Response']['RequestId']
604
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
605
- end
606
- rescue TencentCloud::Common::TencentCloudSDKException => e
607
- raise e
608
- rescue StandardError => e
609
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
610
- end
611
-
612
- # 旧版本DSGC接口下线
613
-
614
- # 创建或复制分级分类模板
615
-
616
- # @param request: Request instance for CreateOrCopyStandard.
617
- # @type request: :class:`Tencentcloud::dsgc::V20190723::CreateOrCopyStandardRequest`
618
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::CreateOrCopyStandardResponse`
619
- def CreateOrCopyStandard(request)
620
- body = send_request('CreateOrCopyStandard', request.serialize)
621
- response = JSON.parse(body)
622
- if response['Response'].key?('Error') == false
623
- model = CreateOrCopyStandardResponse.new
624
- model.deserialize(response['Response'])
625
- model
626
- else
627
- code = response['Response']['Error']['Code']
628
- message = response['Response']['Error']['Message']
629
- reqid = response['Response']['RequestId']
630
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
631
- end
632
- rescue TencentCloud::Common::TencentCloudSDKException => e
633
- raise e
634
- rescue StandardError => e
635
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
636
- end
637
-
638
560
  # 风险等级的定义页面-创建风险等级的时候生成的一个默认的矩阵
639
561
 
640
562
  # @param request: Request instance for DecribeSuggestRiskLevelMatrix.
@@ -931,58 +853,6 @@ module TencentCloud
931
853
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
932
854
  end
933
855
 
934
- # 旧版本DSGC接口下线
935
-
936
- # 查询分类信息
937
-
938
- # @param request: Request instance for DescribeClassificationInfo.
939
- # @type request: :class:`Tencentcloud::dsgc::V20190723::DescribeClassificationInfoRequest`
940
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::DescribeClassificationInfoResponse`
941
- def DescribeClassificationInfo(request)
942
- body = send_request('DescribeClassificationInfo', request.serialize)
943
- response = JSON.parse(body)
944
- if response['Response'].key?('Error') == false
945
- model = DescribeClassificationInfoResponse.new
946
- model.deserialize(response['Response'])
947
- model
948
- else
949
- code = response['Response']['Error']['Code']
950
- message = response['Response']['Error']['Message']
951
- reqid = response['Response']['RequestId']
952
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
953
- end
954
- rescue TencentCloud::Common::TencentCloudSDKException => e
955
- raise e
956
- rescue StandardError => e
957
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
958
- end
959
-
960
- # 旧版本DSGC接口下线
961
-
962
- # 查询标准下所有分类的识别规则数量(不算子分类下的识别规则)
963
-
964
- # @param request: Request instance for DescribeClassificationRuleCount.
965
- # @type request: :class:`Tencentcloud::dsgc::V20190723::DescribeClassificationRuleCountRequest`
966
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::DescribeClassificationRuleCountResponse`
967
- def DescribeClassificationRuleCount(request)
968
- body = send_request('DescribeClassificationRuleCount', request.serialize)
969
- response = JSON.parse(body)
970
- if response['Response'].key?('Error') == false
971
- model = DescribeClassificationRuleCountResponse.new
972
- model.deserialize(response['Response'])
973
- model
974
- else
975
- code = response['Response']['Error']['Code']
976
- message = response['Response']['Error']['Message']
977
- reqid = response['Response']['RequestId']
978
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
979
- end
980
- rescue TencentCloud::Common::TencentCloudSDKException => e
981
- raise e
982
- rescue StandardError => e
983
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
984
- end
985
-
986
856
  # 查询高风险资产的top10
987
857
 
988
858
  # @param request: Request instance for DescribeDSPAAssessmentHighRiskTop10Overview.
@@ -2454,32 +2324,6 @@ module TencentCloud
2454
2324
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2455
2325
  end
2456
2326
 
2457
- # 旧版本DSGC接口下线
2458
-
2459
- # 查询标准下所有叶子节点分类
2460
-
2461
- # @param request: Request instance for DescribeLeafClassification.
2462
- # @type request: :class:`Tencentcloud::dsgc::V20190723::DescribeLeafClassificationRequest`
2463
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::DescribeLeafClassificationResponse`
2464
- def DescribeLeafClassification(request)
2465
- body = send_request('DescribeLeafClassification', request.serialize)
2466
- response = JSON.parse(body)
2467
- if response['Response'].key?('Error') == false
2468
- model = DescribeLeafClassificationResponse.new
2469
- model.deserialize(response['Response'])
2470
- model
2471
- else
2472
- code = response['Response']['Error']['Code']
2473
- message = response['Response']['Error']['Message']
2474
- reqid = response['Response']['RequestId']
2475
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2476
- end
2477
- rescue TencentCloud::Common::TencentCloudSDKException => e
2478
- raise e
2479
- rescue StandardError => e
2480
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2481
- end
2482
-
2483
2327
  # 数据资产报告-查询mongo 的敏感资产报告,包含(数据库资产,设敏级别数据库top10,资产详情)
2484
2328
 
2485
2329
  # @param request: Request instance for DescribeMongoAssetSensitiveDistribution.
@@ -2576,32 +2420,6 @@ module TencentCloud
2576
2420
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2577
2421
  end
2578
2422
 
2579
- # 旧版本DSGC接口下线
2580
-
2581
- # 查询分类下规则列表
2582
-
2583
- # @param request: Request instance for DescribeRuleList.
2584
- # @type request: :class:`Tencentcloud::dsgc::V20190723::DescribeRuleListRequest`
2585
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::DescribeRuleListResponse`
2586
- def DescribeRuleList(request)
2587
- body = send_request('DescribeRuleList', request.serialize)
2588
- response = JSON.parse(body)
2589
- if response['Response'].key?('Error') == false
2590
- model = DescribeRuleListResponse.new
2591
- model.deserialize(response['Response'])
2592
- model
2593
- else
2594
- code = response['Response']['Error']['Code']
2595
- message = response['Response']['Error']['Message']
2596
- reqid = response['Response']['RequestId']
2597
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2598
- end
2599
- rescue TencentCloud::Common::TencentCloudSDKException => e
2600
- raise e
2601
- rescue StandardError => e
2602
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2603
- end
2604
-
2605
2423
  # 数据资产报告-查询cos的敏感数据分布(分级分布 分类分布 敏感规则分布详情列表)
2606
2424
 
2607
2425
  # @param request: Request instance for DescribeSensitiveCOSDataDistribution.
@@ -2891,58 +2709,6 @@ module TencentCloud
2891
2709
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2892
2710
  end
2893
2711
 
2894
- # 旧版本DSGC接口下线
2895
-
2896
- # 编辑识别规则
2897
-
2898
- # @param request: Request instance for ModifyClassificationRule.
2899
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyClassificationRuleRequest`
2900
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyClassificationRuleResponse`
2901
- def ModifyClassificationRule(request)
2902
- body = send_request('ModifyClassificationRule', request.serialize)
2903
- response = JSON.parse(body)
2904
- if response['Response'].key?('Error') == false
2905
- model = ModifyClassificationRuleResponse.new
2906
- model.deserialize(response['Response'])
2907
- model
2908
- else
2909
- code = response['Response']['Error']['Code']
2910
- message = response['Response']['Error']['Message']
2911
- reqid = response['Response']['RequestId']
2912
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2913
- end
2914
- rescue TencentCloud::Common::TencentCloudSDKException => e
2915
- raise e
2916
- rescue StandardError => e
2917
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2918
- end
2919
-
2920
- # 旧版本DSGC接口下线
2921
-
2922
- # 修改识别规则状态
2923
-
2924
- # @param request: Request instance for ModifyClassificationRuleState.
2925
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyClassificationRuleStateRequest`
2926
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyClassificationRuleStateResponse`
2927
- def ModifyClassificationRuleState(request)
2928
- body = send_request('ModifyClassificationRuleState', request.serialize)
2929
- response = JSON.parse(body)
2930
- if response['Response'].key?('Error') == false
2931
- model = ModifyClassificationRuleStateResponse.new
2932
- model.deserialize(response['Response'])
2933
- model
2934
- else
2935
- code = response['Response']['Error']['Code']
2936
- message = response['Response']['Error']['Message']
2937
- reqid = response['Response']['RequestId']
2938
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
2939
- end
2940
- rescue TencentCloud::Common::TencentCloudSDKException => e
2941
- raise e
2942
- rescue StandardError => e
2943
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
2944
- end
2945
-
2946
2712
  # 修改DSPA评估风险项,支持修改Status
2947
2713
 
2948
2714
  # @param request: Request instance for ModifyDSPAAssessmentRisk.
@@ -3288,162 +3054,6 @@ module TencentCloud
3288
3054
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3289
3055
  end
3290
3056
 
3291
- # 旧版本DSGC接口下线
3292
-
3293
- # 修改敏感级别信息
3294
-
3295
- # @param request: Request instance for ModifyLevelInfo.
3296
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyLevelInfoRequest`
3297
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyLevelInfoResponse`
3298
- def ModifyLevelInfo(request)
3299
- body = send_request('ModifyLevelInfo', request.serialize)
3300
- response = JSON.parse(body)
3301
- if response['Response'].key?('Error') == false
3302
- model = ModifyLevelInfoResponse.new
3303
- model.deserialize(response['Response'])
3304
- model
3305
- else
3306
- code = response['Response']['Error']['Code']
3307
- message = response['Response']['Error']['Message']
3308
- reqid = response['Response']['RequestId']
3309
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3310
- end
3311
- rescue TencentCloud::Common::TencentCloudSDKException => e
3312
- raise e
3313
- rescue StandardError => e
3314
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3315
- end
3316
-
3317
- # 旧版本DSGC接口下线
3318
-
3319
- # 修改级别名称
3320
-
3321
- # @param request: Request instance for ModifyLevelName.
3322
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyLevelNameRequest`
3323
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyLevelNameResponse`
3324
- def ModifyLevelName(request)
3325
- body = send_request('ModifyLevelName', request.serialize)
3326
- response = JSON.parse(body)
3327
- if response['Response'].key?('Error') == false
3328
- model = ModifyLevelNameResponse.new
3329
- model.deserialize(response['Response'])
3330
- model
3331
- else
3332
- code = response['Response']['Error']['Code']
3333
- message = response['Response']['Error']['Message']
3334
- reqid = response['Response']['RequestId']
3335
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3336
- end
3337
- rescue TencentCloud::Common::TencentCloudSDKException => e
3338
- raise e
3339
- rescue StandardError => e
3340
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3341
- end
3342
-
3343
- # 旧版本DSGC接口下线
3344
-
3345
- # 开启级别或关闭级别
3346
-
3347
- # @param request: Request instance for ModifyLevelState.
3348
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyLevelStateRequest`
3349
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyLevelStateResponse`
3350
- def ModifyLevelState(request)
3351
- body = send_request('ModifyLevelState', request.serialize)
3352
- response = JSON.parse(body)
3353
- if response['Response'].key?('Error') == false
3354
- model = ModifyLevelStateResponse.new
3355
- model.deserialize(response['Response'])
3356
- model
3357
- else
3358
- code = response['Response']['Error']['Code']
3359
- message = response['Response']['Error']['Message']
3360
- reqid = response['Response']['RequestId']
3361
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3362
- end
3363
- rescue TencentCloud::Common::TencentCloudSDKException => e
3364
- raise e
3365
- rescue StandardError => e
3366
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3367
- end
3368
-
3369
- # 旧版本DSGC接口下线
3370
-
3371
- # 一个分类合并到另一个分类中(分类拖拽功能)
3372
-
3373
- # @param request: Request instance for ModifyMergeClassification.
3374
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyMergeClassificationRequest`
3375
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyMergeClassificationResponse`
3376
- def ModifyMergeClassification(request)
3377
- body = send_request('ModifyMergeClassification', request.serialize)
3378
- response = JSON.parse(body)
3379
- if response['Response'].key?('Error') == false
3380
- model = ModifyMergeClassificationResponse.new
3381
- model.deserialize(response['Response'])
3382
- model
3383
- else
3384
- code = response['Response']['Error']['Code']
3385
- message = response['Response']['Error']['Message']
3386
- reqid = response['Response']['RequestId']
3387
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3388
- end
3389
- rescue TencentCloud::Common::TencentCloudSDKException => e
3390
- raise e
3391
- rescue StandardError => e
3392
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3393
- end
3394
-
3395
- # 旧版本DSGC接口下线
3396
-
3397
- # 修改分类信息
3398
-
3399
- # @param request: Request instance for ModifyNewClassification.
3400
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyNewClassificationRequest`
3401
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyNewClassificationResponse`
3402
- def ModifyNewClassification(request)
3403
- body = send_request('ModifyNewClassification', request.serialize)
3404
- response = JSON.parse(body)
3405
- if response['Response'].key?('Error') == false
3406
- model = ModifyNewClassificationResponse.new
3407
- model.deserialize(response['Response'])
3408
- model
3409
- else
3410
- code = response['Response']['Error']['Code']
3411
- message = response['Response']['Error']['Message']
3412
- reqid = response['Response']['RequestId']
3413
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3414
- end
3415
- rescue TencentCloud::Common::TencentCloudSDKException => e
3416
- raise e
3417
- rescue StandardError => e
3418
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3419
- end
3420
-
3421
- # 旧版本DSGC接口下线
3422
-
3423
- # 修改分级分类模板信息
3424
-
3425
- # @param request: Request instance for ModifyStandardInfo.
3426
- # @type request: :class:`Tencentcloud::dsgc::V20190723::ModifyStandardInfoRequest`
3427
- # @rtype: :class:`Tencentcloud::dsgc::V20190723::ModifyStandardInfoResponse`
3428
- def ModifyStandardInfo(request)
3429
- body = send_request('ModifyStandardInfo', request.serialize)
3430
- response = JSON.parse(body)
3431
- if response['Response'].key?('Error') == false
3432
- model = ModifyStandardInfoResponse.new
3433
- model.deserialize(response['Response'])
3434
- model
3435
- else
3436
- code = response['Response']['Error']['Code']
3437
- message = response['Response']['Error']['Message']
3438
- reqid = response['Response']['RequestId']
3439
- raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
3440
- end
3441
- rescue TencentCloud::Common::TencentCloudSDKException => e
3442
- raise e
3443
- rescue StandardError => e
3444
- raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
3445
- end
3446
-
3447
3057
  # 查询DSPA实例的db列表
3448
3058
 
3449
3059
  # @param request: Request instance for QueryDSPAMetaResourceDbList.
@@ -1242,33 +1242,6 @@ module TencentCloud
1242
1242
  end
1243
1243
  end
1244
1244
 
1245
- # CreateClassificationRule请求参数结构体
1246
- class CreateClassificationRuleRequest < TencentCloud::Common::AbstractModel
1247
-
1248
-
1249
- def initialize()
1250
- end
1251
-
1252
- def deserialize(params)
1253
- end
1254
- end
1255
-
1256
- # CreateClassificationRule返回参数结构体
1257
- class CreateClassificationRuleResponse < TencentCloud::Common::AbstractModel
1258
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1259
- # @type RequestId: String
1260
-
1261
- attr_accessor :RequestId
1262
-
1263
- def initialize(requestid=nil)
1264
- @RequestId = requestid
1265
- end
1266
-
1267
- def deserialize(params)
1268
- @RequestId = params['RequestId']
1269
- end
1270
- end
1271
-
1272
1245
  # 合规组分类关联规则信息
1273
1246
  class CreateComplianceRules < TencentCloud::Common::AbstractModel
1274
1247
  # @param RuleId: 规则id
@@ -2398,60 +2371,6 @@ module TencentCloud
2398
2371
  end
2399
2372
  end
2400
2373
 
2401
- # CreateNewClassification请求参数结构体
2402
- class CreateNewClassificationRequest < TencentCloud::Common::AbstractModel
2403
-
2404
-
2405
- def initialize()
2406
- end
2407
-
2408
- def deserialize(params)
2409
- end
2410
- end
2411
-
2412
- # CreateNewClassification返回参数结构体
2413
- class CreateNewClassificationResponse < TencentCloud::Common::AbstractModel
2414
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2415
- # @type RequestId: String
2416
-
2417
- attr_accessor :RequestId
2418
-
2419
- def initialize(requestid=nil)
2420
- @RequestId = requestid
2421
- end
2422
-
2423
- def deserialize(params)
2424
- @RequestId = params['RequestId']
2425
- end
2426
- end
2427
-
2428
- # CreateOrCopyStandard请求参数结构体
2429
- class CreateOrCopyStandardRequest < TencentCloud::Common::AbstractModel
2430
-
2431
-
2432
- def initialize()
2433
- end
2434
-
2435
- def deserialize(params)
2436
- end
2437
- end
2438
-
2439
- # CreateOrCopyStandard返回参数结构体
2440
- class CreateOrCopyStandardResponse < TencentCloud::Common::AbstractModel
2441
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2442
- # @type RequestId: String
2443
-
2444
- attr_accessor :RequestId
2445
-
2446
- def initialize(requestid=nil)
2447
- @RequestId = requestid
2448
- end
2449
-
2450
- def deserialize(params)
2451
- @RequestId = params['RequestId']
2452
- end
2453
- end
2454
-
2455
2374
  # 绑定的实例信息
2456
2375
  class DBInstanceInfo < TencentCloud::Common::AbstractModel
2457
2376
  # @param ResourceId: 数据源id
@@ -3514,60 +3433,6 @@ module TencentCloud
3514
3433
  end
3515
3434
  end
3516
3435
 
3517
- # DescribeClassificationInfo请求参数结构体
3518
- class DescribeClassificationInfoRequest < TencentCloud::Common::AbstractModel
3519
-
3520
-
3521
- def initialize()
3522
- end
3523
-
3524
- def deserialize(params)
3525
- end
3526
- end
3527
-
3528
- # DescribeClassificationInfo返回参数结构体
3529
- class DescribeClassificationInfoResponse < TencentCloud::Common::AbstractModel
3530
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3531
- # @type RequestId: String
3532
-
3533
- attr_accessor :RequestId
3534
-
3535
- def initialize(requestid=nil)
3536
- @RequestId = requestid
3537
- end
3538
-
3539
- def deserialize(params)
3540
- @RequestId = params['RequestId']
3541
- end
3542
- end
3543
-
3544
- # DescribeClassificationRuleCount请求参数结构体
3545
- class DescribeClassificationRuleCountRequest < TencentCloud::Common::AbstractModel
3546
-
3547
-
3548
- def initialize()
3549
- end
3550
-
3551
- def deserialize(params)
3552
- end
3553
- end
3554
-
3555
- # DescribeClassificationRuleCount返回参数结构体
3556
- class DescribeClassificationRuleCountResponse < TencentCloud::Common::AbstractModel
3557
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3558
- # @type RequestId: String
3559
-
3560
- attr_accessor :RequestId
3561
-
3562
- def initialize(requestid=nil)
3563
- @RequestId = requestid
3564
- end
3565
-
3566
- def deserialize(params)
3567
- @RequestId = params['RequestId']
3568
- end
3569
- end
3570
-
3571
3436
  # DescribeDSPAAssessmentHighRiskTop10Overview请求参数结构体
3572
3437
  class DescribeDSPAAssessmentHighRiskTop10OverviewRequest < TencentCloud::Common::AbstractModel
3573
3438
  # @param DspaId: dspa实例Id
@@ -7206,33 +7071,6 @@ module TencentCloud
7206
7071
  end
7207
7072
  end
7208
7073
 
7209
- # DescribeLeafClassification请求参数结构体
7210
- class DescribeLeafClassificationRequest < TencentCloud::Common::AbstractModel
7211
-
7212
-
7213
- def initialize()
7214
- end
7215
-
7216
- def deserialize(params)
7217
- end
7218
- end
7219
-
7220
- # DescribeLeafClassification返回参数结构体
7221
- class DescribeLeafClassificationResponse < TencentCloud::Common::AbstractModel
7222
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7223
- # @type RequestId: String
7224
-
7225
- attr_accessor :RequestId
7226
-
7227
- def initialize(requestid=nil)
7228
- @RequestId = requestid
7229
- end
7230
-
7231
- def deserialize(params)
7232
- @RequestId = params['RequestId']
7233
- end
7234
- end
7235
-
7236
7074
  # DescribeMongoAssetSensitiveDistribution请求参数结构体
7237
7075
  class DescribeMongoAssetSensitiveDistributionRequest < TencentCloud::Common::AbstractModel
7238
7076
  # @param DspaId: dspa实例id
@@ -7488,33 +7326,6 @@ module TencentCloud
7488
7326
  end
7489
7327
  end
7490
7328
 
7491
- # DescribeRuleList请求参数结构体
7492
- class DescribeRuleListRequest < TencentCloud::Common::AbstractModel
7493
-
7494
-
7495
- def initialize()
7496
- end
7497
-
7498
- def deserialize(params)
7499
- end
7500
- end
7501
-
7502
- # DescribeRuleList返回参数结构体
7503
- class DescribeRuleListResponse < TencentCloud::Common::AbstractModel
7504
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7505
- # @type RequestId: String
7506
-
7507
- attr_accessor :RequestId
7508
-
7509
- def initialize(requestid=nil)
7510
- @RequestId = requestid
7511
- end
7512
-
7513
- def deserialize(params)
7514
- @RequestId = params['RequestId']
7515
- end
7516
- end
7517
-
7518
7329
  # DescribeSensitiveCOSDataDistribution请求参数结构体
7519
7330
  class DescribeSensitiveCOSDataDistributionRequest < TencentCloud::Common::AbstractModel
7520
7331
  # @param DspaId: dspa实例id
@@ -10617,60 +10428,6 @@ module TencentCloud
10617
10428
  end
10618
10429
  end
10619
10430
 
10620
- # ModifyClassificationRule请求参数结构体
10621
- class ModifyClassificationRuleRequest < TencentCloud::Common::AbstractModel
10622
-
10623
-
10624
- def initialize()
10625
- end
10626
-
10627
- def deserialize(params)
10628
- end
10629
- end
10630
-
10631
- # ModifyClassificationRule返回参数结构体
10632
- class ModifyClassificationRuleResponse < TencentCloud::Common::AbstractModel
10633
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10634
- # @type RequestId: String
10635
-
10636
- attr_accessor :RequestId
10637
-
10638
- def initialize(requestid=nil)
10639
- @RequestId = requestid
10640
- end
10641
-
10642
- def deserialize(params)
10643
- @RequestId = params['RequestId']
10644
- end
10645
- end
10646
-
10647
- # ModifyClassificationRuleState请求参数结构体
10648
- class ModifyClassificationRuleStateRequest < TencentCloud::Common::AbstractModel
10649
-
10650
-
10651
- def initialize()
10652
- end
10653
-
10654
- def deserialize(params)
10655
- end
10656
- end
10657
-
10658
- # ModifyClassificationRuleState返回参数结构体
10659
- class ModifyClassificationRuleStateResponse < TencentCloud::Common::AbstractModel
10660
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10661
- # @type RequestId: String
10662
-
10663
- attr_accessor :RequestId
10664
-
10665
- def initialize(requestid=nil)
10666
- @RequestId = requestid
10667
- end
10668
-
10669
- def deserialize(params)
10670
- @RequestId = params['RequestId']
10671
- end
10672
- end
10673
-
10674
10431
  # ModifyDSPAAssessmentRiskLatest请求参数结构体
10675
10432
  class ModifyDSPAAssessmentRiskLatestRequest < TencentCloud::Common::AbstractModel
10676
10433
  # @param DspaId: dspa实例id
@@ -11500,168 +11257,6 @@ module TencentCloud
11500
11257
  end
11501
11258
  end
11502
11259
 
11503
- # ModifyLevelInfo请求参数结构体
11504
- class ModifyLevelInfoRequest < TencentCloud::Common::AbstractModel
11505
-
11506
-
11507
- def initialize()
11508
- end
11509
-
11510
- def deserialize(params)
11511
- end
11512
- end
11513
-
11514
- # ModifyLevelInfo返回参数结构体
11515
- class ModifyLevelInfoResponse < TencentCloud::Common::AbstractModel
11516
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11517
- # @type RequestId: String
11518
-
11519
- attr_accessor :RequestId
11520
-
11521
- def initialize(requestid=nil)
11522
- @RequestId = requestid
11523
- end
11524
-
11525
- def deserialize(params)
11526
- @RequestId = params['RequestId']
11527
- end
11528
- end
11529
-
11530
- # ModifyLevelName请求参数结构体
11531
- class ModifyLevelNameRequest < TencentCloud::Common::AbstractModel
11532
-
11533
-
11534
- def initialize()
11535
- end
11536
-
11537
- def deserialize(params)
11538
- end
11539
- end
11540
-
11541
- # ModifyLevelName返回参数结构体
11542
- class ModifyLevelNameResponse < TencentCloud::Common::AbstractModel
11543
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11544
- # @type RequestId: String
11545
-
11546
- attr_accessor :RequestId
11547
-
11548
- def initialize(requestid=nil)
11549
- @RequestId = requestid
11550
- end
11551
-
11552
- def deserialize(params)
11553
- @RequestId = params['RequestId']
11554
- end
11555
- end
11556
-
11557
- # ModifyLevelState请求参数结构体
11558
- class ModifyLevelStateRequest < TencentCloud::Common::AbstractModel
11559
-
11560
-
11561
- def initialize()
11562
- end
11563
-
11564
- def deserialize(params)
11565
- end
11566
- end
11567
-
11568
- # ModifyLevelState返回参数结构体
11569
- class ModifyLevelStateResponse < TencentCloud::Common::AbstractModel
11570
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11571
- # @type RequestId: String
11572
-
11573
- attr_accessor :RequestId
11574
-
11575
- def initialize(requestid=nil)
11576
- @RequestId = requestid
11577
- end
11578
-
11579
- def deserialize(params)
11580
- @RequestId = params['RequestId']
11581
- end
11582
- end
11583
-
11584
- # ModifyMergeClassification请求参数结构体
11585
- class ModifyMergeClassificationRequest < TencentCloud::Common::AbstractModel
11586
-
11587
-
11588
- def initialize()
11589
- end
11590
-
11591
- def deserialize(params)
11592
- end
11593
- end
11594
-
11595
- # ModifyMergeClassification返回参数结构体
11596
- class ModifyMergeClassificationResponse < TencentCloud::Common::AbstractModel
11597
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11598
- # @type RequestId: String
11599
-
11600
- attr_accessor :RequestId
11601
-
11602
- def initialize(requestid=nil)
11603
- @RequestId = requestid
11604
- end
11605
-
11606
- def deserialize(params)
11607
- @RequestId = params['RequestId']
11608
- end
11609
- end
11610
-
11611
- # ModifyNewClassification请求参数结构体
11612
- class ModifyNewClassificationRequest < TencentCloud::Common::AbstractModel
11613
-
11614
-
11615
- def initialize()
11616
- end
11617
-
11618
- def deserialize(params)
11619
- end
11620
- end
11621
-
11622
- # ModifyNewClassification返回参数结构体
11623
- class ModifyNewClassificationResponse < TencentCloud::Common::AbstractModel
11624
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11625
- # @type RequestId: String
11626
-
11627
- attr_accessor :RequestId
11628
-
11629
- def initialize(requestid=nil)
11630
- @RequestId = requestid
11631
- end
11632
-
11633
- def deserialize(params)
11634
- @RequestId = params['RequestId']
11635
- end
11636
- end
11637
-
11638
- # ModifyStandardInfo请求参数结构体
11639
- class ModifyStandardInfoRequest < TencentCloud::Common::AbstractModel
11640
-
11641
-
11642
- def initialize()
11643
- end
11644
-
11645
- def deserialize(params)
11646
- end
11647
- end
11648
-
11649
- # ModifyStandardInfo返回参数结构体
11650
- class ModifyStandardInfoResponse < TencentCloud::Common::AbstractModel
11651
- # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11652
- # @type RequestId: String
11653
-
11654
- attr_accessor :RequestId
11655
-
11656
- def initialize(requestid=nil)
11657
- @RequestId = requestid
11658
- end
11659
-
11660
- def deserialize(params)
11661
- @RequestId = params['RequestId']
11662
- end
11663
- end
11664
-
11665
11260
  # mongo的资产统计结果
11666
11261
  class MongoAsset < TencentCloud::Common::AbstractModel
11667
11262
  # @param DbNums: DB总数量
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dsgc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1065
4
+ version: 3.0.1066
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-05-21 00:00:00.000000000 Z
11
+ date: 2025-05-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common