tencentcloud-sdk-tcss 1.0.281 → 1.0.282

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201101/models.rb +210 -30
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a35735296b6792d4eeef1ba1884bebb389e07e02
4
- data.tar.gz: c408330402d9037710fcc39652e2cb177bd9460b
3
+ metadata.gz: ea92a87858aebb2bed9c6c3ccf5b85b9d00aaa11
4
+ data.tar.gz: ef67fcdd908f42607659adea45f27373b1faa7df
5
5
  SHA512:
6
- metadata.gz: 8ab1d25ed6a466c86d11832650d027ae488df3ee35f8886a8c718f51f71872c439633cbc2bf01b74541dc407c078db7737ae5874a1ff3257d89fe510584b1ad9
7
- data.tar.gz: c06dd2046e2e71992ace729aacc8d8773c2d51925629223fd148cf759f46c5e968615a318fef4ff92d9d1e42d2dd0802b1f3106a68ac852bcecf2054f04e8c2e
6
+ metadata.gz: a433e22be7388d2b9d96be896e007e050641368da32986f07fb133ea05b9f5db38ff5c612fbe373eb3a33024a7507a986fa8a444baeaacd88a2ccd1324ed1c01
7
+ data.tar.gz: a57558d590b19ce5b43700afa8b05b4fcc6559028dfb1ce468b1d61543211104dc405578d9849f2777ee78c997f15f3b87f5ed7c230c76617e5f66a678c8c394
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.281
1
+ 1.0.282
@@ -59,16 +59,20 @@ module TencentCloud
59
59
  # @type RuleName: String
60
60
  # @param RuleId: 命中规则的id
61
61
  # @type RuleId: String
62
+ # @param OperationTime: 事件最后一次处理的时间
63
+ # 注意:此字段可能返回 null,表示取不到有效值。
64
+ # @type OperationTime: String
62
65
 
63
- attr_accessor :Description, :Solution, :Remark, :MatchRule, :RuleName, :RuleId
66
+ attr_accessor :Description, :Solution, :Remark, :MatchRule, :RuleName, :RuleId, :OperationTime
64
67
 
65
- def initialize(description=nil, solution=nil, remark=nil, matchrule=nil, rulename=nil, ruleid=nil)
68
+ def initialize(description=nil, solution=nil, remark=nil, matchrule=nil, rulename=nil, ruleid=nil, operationtime=nil)
66
69
  @Description = description
67
70
  @Solution = solution
68
71
  @Remark = remark
69
72
  @MatchRule = matchrule
70
73
  @RuleName = rulename
71
74
  @RuleId = ruleid
75
+ @OperationTime = operationtime
72
76
  end
73
77
 
74
78
  def deserialize(params)
@@ -81,6 +85,7 @@ module TencentCloud
81
85
  end
82
86
  @RuleName = params['RuleName']
83
87
  @RuleId = params['RuleId']
88
+ @OperationTime = params['OperationTime']
84
89
  end
85
90
  end
86
91
 
@@ -200,16 +205,19 @@ module TencentCloud
200
205
  # @type RuleId: String
201
206
  # @param SystemChildRules: 系统策略的子策略数组
202
207
  # @type SystemChildRules: Array
208
+ # @param IsDefault: 是否是系统默认策略
209
+ # @type IsDefault: Boolean
203
210
 
204
- attr_accessor :IsEnable, :ImageIds, :ChildRules, :RuleName, :RuleId, :SystemChildRules
211
+ attr_accessor :IsEnable, :ImageIds, :ChildRules, :RuleName, :RuleId, :SystemChildRules, :IsDefault
205
212
 
206
- def initialize(isenable=nil, imageids=nil, childrules=nil, rulename=nil, ruleid=nil, systemchildrules=nil)
213
+ def initialize(isenable=nil, imageids=nil, childrules=nil, rulename=nil, ruleid=nil, systemchildrules=nil, isdefault=nil)
207
214
  @IsEnable = isenable
208
215
  @ImageIds = imageids
209
216
  @ChildRules = childrules
210
217
  @RuleName = rulename
211
218
  @RuleId = ruleid
212
219
  @SystemChildRules = systemchildrules
220
+ @IsDefault = isdefault
213
221
  end
214
222
 
215
223
  def deserialize(params)
@@ -233,6 +241,7 @@ module TencentCloud
233
241
  @SystemChildRules << abnormalprocesssystemchildruleinfo_tmp
234
242
  end
235
243
  end
244
+ @IsDefault = params['IsDefault']
236
245
  end
237
246
  end
238
247
 
@@ -319,16 +328,20 @@ module TencentCloud
319
328
  # @type RuleName: String
320
329
  # @param RuleId: 命中规则id
321
330
  # @type RuleId: String
331
+ # @param OperationTime: 事件最后一次处理的时间
332
+ # 注意:此字段可能返回 null,表示取不到有效值。
333
+ # @type OperationTime: String
322
334
 
323
- attr_accessor :Description, :Solution, :Remark, :MatchRule, :RuleName, :RuleId
335
+ attr_accessor :Description, :Solution, :Remark, :MatchRule, :RuleName, :RuleId, :OperationTime
324
336
 
325
- def initialize(description=nil, solution=nil, remark=nil, matchrule=nil, rulename=nil, ruleid=nil)
337
+ def initialize(description=nil, solution=nil, remark=nil, matchrule=nil, rulename=nil, ruleid=nil, operationtime=nil)
326
338
  @Description = description
327
339
  @Solution = solution
328
340
  @Remark = remark
329
341
  @MatchRule = matchrule
330
342
  @RuleName = rulename
331
343
  @RuleId = ruleid
344
+ @OperationTime = operationtime
332
345
  end
333
346
 
334
347
  def deserialize(params)
@@ -341,6 +354,7 @@ module TencentCloud
341
354
  end
342
355
  @RuleName = params['RuleName']
343
356
  @RuleId = params['RuleId']
357
+ @OperationTime = params['OperationTime']
344
358
  end
345
359
  end
346
360
 
@@ -472,16 +486,19 @@ module TencentCloud
472
486
  # @type RuleId: String
473
487
  # @param SystemChildRules: 系统策略的子策略数组
474
488
  # @type SystemChildRules: Array
489
+ # @param IsDefault: 是否是系统默认策略
490
+ # @type IsDefault: Boolean
475
491
 
476
- attr_accessor :IsEnable, :ImageIds, :ChildRules, :RuleName, :RuleId, :SystemChildRules
492
+ attr_accessor :IsEnable, :ImageIds, :ChildRules, :RuleName, :RuleId, :SystemChildRules, :IsDefault
477
493
 
478
- def initialize(isenable=nil, imageids=nil, childrules=nil, rulename=nil, ruleid=nil, systemchildrules=nil)
494
+ def initialize(isenable=nil, imageids=nil, childrules=nil, rulename=nil, ruleid=nil, systemchildrules=nil, isdefault=nil)
479
495
  @IsEnable = isenable
480
496
  @ImageIds = imageids
481
497
  @ChildRules = childrules
482
498
  @RuleName = rulename
483
499
  @RuleId = ruleid
484
500
  @SystemChildRules = systemchildrules
501
+ @IsDefault = isdefault
485
502
  end
486
503
 
487
504
  def deserialize(params)
@@ -505,6 +522,7 @@ module TencentCloud
505
522
  @SystemChildRules << accesscontrolsystemchildruleinfo_tmp
506
523
  end
507
524
  end
525
+ @IsDefault = params['IsDefault']
508
526
  end
509
527
  end
510
528
 
@@ -3092,16 +3110,20 @@ module TencentCloud
3092
3110
  # @type ParentProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessDetailBaseInfo`
3093
3111
  # @param EventDetail: 事件描述
3094
3112
  # @type EventDetail: :class:`Tencentcloud::Tcss.v20201101.models.AbnormalProcessEventDescription`
3113
+ # @param AncestorProcessInfo: 祖先进程信息
3114
+ # 注意:此字段可能返回 null,表示取不到有效值。
3115
+ # @type AncestorProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessBaseInfo`
3095
3116
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3096
3117
  # @type RequestId: String
3097
3118
 
3098
- attr_accessor :EventBaseInfo, :ProcessInfo, :ParentProcessInfo, :EventDetail, :RequestId
3119
+ attr_accessor :EventBaseInfo, :ProcessInfo, :ParentProcessInfo, :EventDetail, :AncestorProcessInfo, :RequestId
3099
3120
 
3100
- def initialize(eventbaseinfo=nil, processinfo=nil, parentprocessinfo=nil, eventdetail=nil, requestid=nil)
3121
+ def initialize(eventbaseinfo=nil, processinfo=nil, parentprocessinfo=nil, eventdetail=nil, ancestorprocessinfo=nil, requestid=nil)
3101
3122
  @EventBaseInfo = eventbaseinfo
3102
3123
  @ProcessInfo = processinfo
3103
3124
  @ParentProcessInfo = parentprocessinfo
3104
3125
  @EventDetail = eventdetail
3126
+ @AncestorProcessInfo = ancestorprocessinfo
3105
3127
  @RequestId = requestid
3106
3128
  end
3107
3129
 
@@ -3122,6 +3144,10 @@ module TencentCloud
3122
3144
  @EventDetail = AbnormalProcessEventDescription.new
3123
3145
  @EventDetail.deserialize(params['EventDetail'])
3124
3146
  end
3147
+ unless params['AncestorProcessInfo'].nil?
3148
+ @AncestorProcessInfo = ProcessBaseInfo.new
3149
+ @AncestorProcessInfo.deserialize(params['AncestorProcessInfo'])
3150
+ end
3125
3151
  @RequestId = params['RequestId']
3126
3152
  end
3127
3153
  end
@@ -3266,17 +3292,25 @@ module TencentCloud
3266
3292
  # @type RuleId: String
3267
3293
  # @param ImageId: 镜像id, 在添加白名单的时候使用
3268
3294
  # @type ImageId: String
3295
+ # @param Limit: 需要返回的数量,默认为10,最大值为100
3296
+ # @type Limit: Integer
3297
+ # @param Offset: 偏移量,默认为0。
3298
+ # @type Offset: Integer
3269
3299
 
3270
- attr_accessor :RuleId, :ImageId
3300
+ attr_accessor :RuleId, :ImageId, :Limit, :Offset
3271
3301
 
3272
- def initialize(ruleid=nil, imageid=nil)
3302
+ def initialize(ruleid=nil, imageid=nil, limit=nil, offset=nil)
3273
3303
  @RuleId = ruleid
3274
3304
  @ImageId = imageid
3305
+ @Limit = limit
3306
+ @Offset = offset
3275
3307
  end
3276
3308
 
3277
3309
  def deserialize(params)
3278
3310
  @RuleId = params['RuleId']
3279
3311
  @ImageId = params['ImageId']
3312
+ @Limit = params['Limit']
3313
+ @Offset = params['Offset']
3280
3314
  end
3281
3315
  end
3282
3316
 
@@ -3463,16 +3497,23 @@ module TencentCloud
3463
3497
  # @type TamperedFileInfo: :class:`Tencentcloud::Tcss.v20201101.models.FileAttributeInfo`
3464
3498
  # @param EventDetail: 事件描述
3465
3499
  # @type EventDetail: :class:`Tencentcloud::Tcss.v20201101.models.AccessControlEventDescription`
3500
+ # @param ParentProcessInfo: 父进程信息
3501
+ # @type ParentProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessBaseInfo`
3502
+ # @param AncestorProcessInfo: 祖先进程信息
3503
+ # 注意:此字段可能返回 null,表示取不到有效值。
3504
+ # @type AncestorProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessBaseInfo`
3466
3505
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3467
3506
  # @type RequestId: String
3468
3507
 
3469
- attr_accessor :EventBaseInfo, :ProcessInfo, :TamperedFileInfo, :EventDetail, :RequestId
3508
+ attr_accessor :EventBaseInfo, :ProcessInfo, :TamperedFileInfo, :EventDetail, :ParentProcessInfo, :AncestorProcessInfo, :RequestId
3470
3509
 
3471
- def initialize(eventbaseinfo=nil, processinfo=nil, tamperedfileinfo=nil, eventdetail=nil, requestid=nil)
3510
+ def initialize(eventbaseinfo=nil, processinfo=nil, tamperedfileinfo=nil, eventdetail=nil, parentprocessinfo=nil, ancestorprocessinfo=nil, requestid=nil)
3472
3511
  @EventBaseInfo = eventbaseinfo
3473
3512
  @ProcessInfo = processinfo
3474
3513
  @TamperedFileInfo = tamperedfileinfo
3475
3514
  @EventDetail = eventdetail
3515
+ @ParentProcessInfo = parentprocessinfo
3516
+ @AncestorProcessInfo = ancestorprocessinfo
3476
3517
  @RequestId = requestid
3477
3518
  end
3478
3519
 
@@ -3493,6 +3534,14 @@ module TencentCloud
3493
3534
  @EventDetail = AccessControlEventDescription.new
3494
3535
  @EventDetail.deserialize(params['EventDetail'])
3495
3536
  end
3537
+ unless params['ParentProcessInfo'].nil?
3538
+ @ParentProcessInfo = ProcessBaseInfo.new
3539
+ @ParentProcessInfo.deserialize(params['ParentProcessInfo'])
3540
+ end
3541
+ unless params['AncestorProcessInfo'].nil?
3542
+ @AncestorProcessInfo = ProcessBaseInfo.new
3543
+ @AncestorProcessInfo.deserialize(params['AncestorProcessInfo'])
3544
+ end
3496
3545
  @RequestId = params['RequestId']
3497
3546
  end
3498
3547
  end
@@ -3637,17 +3686,25 @@ module TencentCloud
3637
3686
  # @type RuleId: String
3638
3687
  # @param ImageId: 镜像id, 仅仅在事件加白的时候使用
3639
3688
  # @type ImageId: String
3689
+ # @param Limit: 需要返回的数量,默认为10,最大值为100
3690
+ # @type Limit: Integer
3691
+ # @param Offset: 偏移量,默认为0。
3692
+ # @type Offset: Integer
3640
3693
 
3641
- attr_accessor :RuleId, :ImageId
3694
+ attr_accessor :RuleId, :ImageId, :Limit, :Offset
3642
3695
 
3643
- def initialize(ruleid=nil, imageid=nil)
3696
+ def initialize(ruleid=nil, imageid=nil, limit=nil, offset=nil)
3644
3697
  @RuleId = ruleid
3645
3698
  @ImageId = imageid
3699
+ @Limit = limit
3700
+ @Offset = offset
3646
3701
  end
3647
3702
 
3648
3703
  def deserialize(params)
3649
3704
  @RuleId = params['RuleId']
3650
3705
  @ImageId = params['ImageId']
3706
+ @Limit = params['Limit']
3707
+ @Offset = params['Offset']
3651
3708
  end
3652
3709
  end
3653
3710
 
@@ -8021,15 +8078,22 @@ module TencentCloud
8021
8078
  # @type ProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessDetailInfo`
8022
8079
  # @param EventDetail: 事件描述
8023
8080
  # @type EventDetail: :class:`Tencentcloud::Tcss.v20201101.models.EscapeEventDescription`
8081
+ # @param ParentProcessInfo: 父进程信息
8082
+ # @type ParentProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessBaseInfo`
8083
+ # @param AncestorProcessInfo: 祖先进程信息
8084
+ # 注意:此字段可能返回 null,表示取不到有效值。
8085
+ # @type AncestorProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessBaseInfo`
8024
8086
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8025
8087
  # @type RequestId: String
8026
8088
 
8027
- attr_accessor :EventBaseInfo, :ProcessInfo, :EventDetail, :RequestId
8089
+ attr_accessor :EventBaseInfo, :ProcessInfo, :EventDetail, :ParentProcessInfo, :AncestorProcessInfo, :RequestId
8028
8090
 
8029
- def initialize(eventbaseinfo=nil, processinfo=nil, eventdetail=nil, requestid=nil)
8091
+ def initialize(eventbaseinfo=nil, processinfo=nil, eventdetail=nil, parentprocessinfo=nil, ancestorprocessinfo=nil, requestid=nil)
8030
8092
  @EventBaseInfo = eventbaseinfo
8031
8093
  @ProcessInfo = processinfo
8032
8094
  @EventDetail = eventdetail
8095
+ @ParentProcessInfo = parentprocessinfo
8096
+ @AncestorProcessInfo = ancestorprocessinfo
8033
8097
  @RequestId = requestid
8034
8098
  end
8035
8099
 
@@ -8046,6 +8110,14 @@ module TencentCloud
8046
8110
  @EventDetail = EscapeEventDescription.new
8047
8111
  @EventDetail.deserialize(params['EventDetail'])
8048
8112
  end
8113
+ unless params['ParentProcessInfo'].nil?
8114
+ @ParentProcessInfo = ProcessBaseInfo.new
8115
+ @ParentProcessInfo.deserialize(params['ParentProcessInfo'])
8116
+ end
8117
+ unless params['AncestorProcessInfo'].nil?
8118
+ @AncestorProcessInfo = ProcessBaseInfo.new
8119
+ @AncestorProcessInfo.deserialize(params['AncestorProcessInfo'])
8120
+ end
8049
8121
  @RequestId = params['RequestId']
8050
8122
  end
8051
8123
  end
@@ -8825,16 +8897,20 @@ module TencentCloud
8825
8897
  # @type ParentProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessDetailBaseInfo`
8826
8898
  # @param EventDetail: 事件描述
8827
8899
  # @type EventDetail: :class:`Tencentcloud::Tcss.v20201101.models.ReverseShellEventDescription`
8900
+ # @param AncestorProcessInfo: 祖先进程信息
8901
+ # 注意:此字段可能返回 null,表示取不到有效值。
8902
+ # @type AncestorProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessBaseInfo`
8828
8903
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
8829
8904
  # @type RequestId: String
8830
8905
 
8831
- attr_accessor :EventBaseInfo, :ProcessInfo, :ParentProcessInfo, :EventDetail, :RequestId
8906
+ attr_accessor :EventBaseInfo, :ProcessInfo, :ParentProcessInfo, :EventDetail, :AncestorProcessInfo, :RequestId
8832
8907
 
8833
- def initialize(eventbaseinfo=nil, processinfo=nil, parentprocessinfo=nil, eventdetail=nil, requestid=nil)
8908
+ def initialize(eventbaseinfo=nil, processinfo=nil, parentprocessinfo=nil, eventdetail=nil, ancestorprocessinfo=nil, requestid=nil)
8834
8909
  @EventBaseInfo = eventbaseinfo
8835
8910
  @ProcessInfo = processinfo
8836
8911
  @ParentProcessInfo = parentprocessinfo
8837
8912
  @EventDetail = eventdetail
8913
+ @AncestorProcessInfo = ancestorprocessinfo
8838
8914
  @RequestId = requestid
8839
8915
  end
8840
8916
 
@@ -8855,6 +8931,10 @@ module TencentCloud
8855
8931
  @EventDetail = ReverseShellEventDescription.new
8856
8932
  @EventDetail.deserialize(params['EventDetail'])
8857
8933
  end
8934
+ unless params['AncestorProcessInfo'].nil?
8935
+ @AncestorProcessInfo = ProcessBaseInfo.new
8936
+ @AncestorProcessInfo.deserialize(params['AncestorProcessInfo'])
8937
+ end
8858
8938
  @RequestId = params['RequestId']
8859
8939
  end
8860
8940
  end
@@ -9203,16 +9283,20 @@ module TencentCloud
9203
9283
  # @type ParentProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessDetailBaseInfo`
9204
9284
  # @param EventDetail: 事件描述
9205
9285
  # @type EventDetail: :class:`Tencentcloud::Tcss.v20201101.models.RiskSyscallEventDescription`
9286
+ # @param AncestorProcessInfo: 祖先进程信息
9287
+ # 注意:此字段可能返回 null,表示取不到有效值。
9288
+ # @type AncestorProcessInfo: :class:`Tencentcloud::Tcss.v20201101.models.ProcessBaseInfo`
9206
9289
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9207
9290
  # @type RequestId: String
9208
9291
 
9209
- attr_accessor :EventBaseInfo, :ProcessInfo, :ParentProcessInfo, :EventDetail, :RequestId
9292
+ attr_accessor :EventBaseInfo, :ProcessInfo, :ParentProcessInfo, :EventDetail, :AncestorProcessInfo, :RequestId
9210
9293
 
9211
- def initialize(eventbaseinfo=nil, processinfo=nil, parentprocessinfo=nil, eventdetail=nil, requestid=nil)
9294
+ def initialize(eventbaseinfo=nil, processinfo=nil, parentprocessinfo=nil, eventdetail=nil, ancestorprocessinfo=nil, requestid=nil)
9212
9295
  @EventBaseInfo = eventbaseinfo
9213
9296
  @ProcessInfo = processinfo
9214
9297
  @ParentProcessInfo = parentprocessinfo
9215
9298
  @EventDetail = eventdetail
9299
+ @AncestorProcessInfo = ancestorprocessinfo
9216
9300
  @RequestId = requestid
9217
9301
  end
9218
9302
 
@@ -9233,6 +9317,10 @@ module TencentCloud
9233
9317
  @EventDetail = RiskSyscallEventDescription.new
9234
9318
  @EventDetail.deserialize(params['EventDetail'])
9235
9319
  end
9320
+ unless params['AncestorProcessInfo'].nil?
9321
+ @AncestorProcessInfo = ProcessBaseInfo.new
9322
+ @AncestorProcessInfo.deserialize(params['AncestorProcessInfo'])
9323
+ end
9236
9324
  @RequestId = params['RequestId']
9237
9325
  end
9238
9326
  end
@@ -9884,12 +9972,39 @@ module TencentCloud
9884
9972
  # @param ClientIP: 外网ip
9885
9973
  # 注意:此字段可能返回 null,表示取不到有效值。
9886
9974
  # @type ClientIP: String
9975
+ # @param PProcessStartUser: 父进程启动用户
9976
+ # 注意:此字段可能返回 null,表示取不到有效值。
9977
+ # @type PProcessStartUser: String
9978
+ # @param PProcessUserGroup: 父进程用户组
9979
+ # 注意:此字段可能返回 null,表示取不到有效值。
9980
+ # @type PProcessUserGroup: String
9981
+ # @param PProcessPath: 父进程路径
9982
+ # 注意:此字段可能返回 null,表示取不到有效值。
9983
+ # @type PProcessPath: String
9984
+ # @param PProcessParam: 父进程命令行参数
9985
+ # 注意:此字段可能返回 null,表示取不到有效值。
9986
+ # @type PProcessParam: String
9987
+ # @param AncestorProcessStartUser: 祖先进程启动用户
9988
+ # 注意:此字段可能返回 null,表示取不到有效值。
9989
+ # @type AncestorProcessStartUser: String
9990
+ # @param AncestorProcessUserGroup: 祖先进程用户组
9991
+ # 注意:此字段可能返回 null,表示取不到有效值。
9992
+ # @type AncestorProcessUserGroup: String
9993
+ # @param AncestorProcessPath: 祖先进程路径
9994
+ # 注意:此字段可能返回 null,表示取不到有效值。
9995
+ # @type AncestorProcessPath: String
9996
+ # @param AncestorProcessParam: 祖先进程命令行参数
9997
+ # 注意:此字段可能返回 null,表示取不到有效值。
9998
+ # @type AncestorProcessParam: String
9999
+ # @param OperationTime: 事件最后一次处理的时间
10000
+ # 注意:此字段可能返回 null,表示取不到有效值。
10001
+ # @type OperationTime: String
9887
10002
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
9888
10003
  # @type RequestId: String
9889
10004
 
9890
- attr_accessor :ImageId, :ImageName, :CreateTime, :Size, :FilePath, :ModifyTime, :VirusName, :RiskLevel, :ContainerName, :ContainerId, :HostName, :HostId, :ProcessName, :ProcessPath, :ProcessMd5, :ProcessId, :ProcessArgv, :ProcessChan, :ProcessAccountGroup, :ProcessStartAccount, :ProcessFileAuthority, :SourceType, :PodName, :Tags, :HarmDescribe, :SuggestScheme, :Mark, :FileName, :FileMd5, :EventType, :Status, :SubStatus, :HostIP, :ClientIP, :RequestId
10005
+ attr_accessor :ImageId, :ImageName, :CreateTime, :Size, :FilePath, :ModifyTime, :VirusName, :RiskLevel, :ContainerName, :ContainerId, :HostName, :HostId, :ProcessName, :ProcessPath, :ProcessMd5, :ProcessId, :ProcessArgv, :ProcessChan, :ProcessAccountGroup, :ProcessStartAccount, :ProcessFileAuthority, :SourceType, :PodName, :Tags, :HarmDescribe, :SuggestScheme, :Mark, :FileName, :FileMd5, :EventType, :Status, :SubStatus, :HostIP, :ClientIP, :PProcessStartUser, :PProcessUserGroup, :PProcessPath, :PProcessParam, :AncestorProcessStartUser, :AncestorProcessUserGroup, :AncestorProcessPath, :AncestorProcessParam, :OperationTime, :RequestId
9891
10006
 
9892
- def initialize(imageid=nil, imagename=nil, createtime=nil, size=nil, filepath=nil, modifytime=nil, virusname=nil, risklevel=nil, containername=nil, containerid=nil, hostname=nil, hostid=nil, processname=nil, processpath=nil, processmd5=nil, processid=nil, processargv=nil, processchan=nil, processaccountgroup=nil, processstartaccount=nil, processfileauthority=nil, sourcetype=nil, podname=nil, tags=nil, harmdescribe=nil, suggestscheme=nil, mark=nil, filename=nil, filemd5=nil, eventtype=nil, status=nil, substatus=nil, hostip=nil, clientip=nil, requestid=nil)
10007
+ def initialize(imageid=nil, imagename=nil, createtime=nil, size=nil, filepath=nil, modifytime=nil, virusname=nil, risklevel=nil, containername=nil, containerid=nil, hostname=nil, hostid=nil, processname=nil, processpath=nil, processmd5=nil, processid=nil, processargv=nil, processchan=nil, processaccountgroup=nil, processstartaccount=nil, processfileauthority=nil, sourcetype=nil, podname=nil, tags=nil, harmdescribe=nil, suggestscheme=nil, mark=nil, filename=nil, filemd5=nil, eventtype=nil, status=nil, substatus=nil, hostip=nil, clientip=nil, pprocessstartuser=nil, pprocessusergroup=nil, pprocesspath=nil, pprocessparam=nil, ancestorprocessstartuser=nil, ancestorprocessusergroup=nil, ancestorprocesspath=nil, ancestorprocessparam=nil, operationtime=nil, requestid=nil)
9893
10008
  @ImageId = imageid
9894
10009
  @ImageName = imagename
9895
10010
  @CreateTime = createtime
@@ -9924,6 +10039,15 @@ module TencentCloud
9924
10039
  @SubStatus = substatus
9925
10040
  @HostIP = hostip
9926
10041
  @ClientIP = clientip
10042
+ @PProcessStartUser = pprocessstartuser
10043
+ @PProcessUserGroup = pprocessusergroup
10044
+ @PProcessPath = pprocesspath
10045
+ @PProcessParam = pprocessparam
10046
+ @AncestorProcessStartUser = ancestorprocessstartuser
10047
+ @AncestorProcessUserGroup = ancestorprocessusergroup
10048
+ @AncestorProcessPath = ancestorprocesspath
10049
+ @AncestorProcessParam = ancestorprocessparam
10050
+ @OperationTime = operationtime
9927
10051
  @RequestId = requestid
9928
10052
  end
9929
10053
 
@@ -9962,6 +10086,15 @@ module TencentCloud
9962
10086
  @SubStatus = params['SubStatus']
9963
10087
  @HostIP = params['HostIP']
9964
10088
  @ClientIP = params['ClientIP']
10089
+ @PProcessStartUser = params['PProcessStartUser']
10090
+ @PProcessUserGroup = params['PProcessUserGroup']
10091
+ @PProcessPath = params['PProcessPath']
10092
+ @PProcessParam = params['PProcessParam']
10093
+ @AncestorProcessStartUser = params['AncestorProcessStartUser']
10094
+ @AncestorProcessUserGroup = params['AncestorProcessUserGroup']
10095
+ @AncestorProcessPath = params['AncestorProcessPath']
10096
+ @AncestorProcessParam = params['AncestorProcessParam']
10097
+ @OperationTime = params['OperationTime']
9965
10098
  @RequestId = params['RequestId']
9966
10099
  end
9967
10100
  end
@@ -10459,19 +10592,24 @@ module TencentCloud
10459
10592
  # @param Remark: 事件备注信息
10460
10593
  # 注意:此字段可能返回 null,表示取不到有效值。
10461
10594
  # @type Remark: String
10595
+ # @param OperationTime: 事件最后一次处理的时间
10596
+ # 注意:此字段可能返回 null,表示取不到有效值。
10597
+ # @type OperationTime: String
10462
10598
 
10463
- attr_accessor :Description, :Solution, :Remark
10599
+ attr_accessor :Description, :Solution, :Remark, :OperationTime
10464
10600
 
10465
- def initialize(description=nil, solution=nil, remark=nil)
10601
+ def initialize(description=nil, solution=nil, remark=nil, operationtime=nil)
10466
10602
  @Description = description
10467
10603
  @Solution = solution
10468
10604
  @Remark = remark
10605
+ @OperationTime = operationtime
10469
10606
  end
10470
10607
 
10471
10608
  def deserialize(params)
10472
10609
  @Description = params['Description']
10473
10610
  @Solution = params['Solution']
10474
10611
  @Remark = params['Remark']
10612
+ @OperationTime = params['OperationTime']
10475
10613
  end
10476
10614
  end
10477
10615
 
@@ -12583,6 +12721,38 @@ module TencentCloud
12583
12721
  end
12584
12722
  end
12585
12723
 
12724
+ # 运行时安全,进程基础信息
12725
+ class ProcessBaseInfo < TencentCloud::Common::AbstractModel
12726
+ # @param ProcessStartUser: 进程启动用户
12727
+ # 注意:此字段可能返回 null,表示取不到有效值。
12728
+ # @type ProcessStartUser: String
12729
+ # @param ProcessUserGroup: 进程用户组
12730
+ # 注意:此字段可能返回 null,表示取不到有效值。
12731
+ # @type ProcessUserGroup: String
12732
+ # @param ProcessPath: 进程路径
12733
+ # 注意:此字段可能返回 null,表示取不到有效值。
12734
+ # @type ProcessPath: String
12735
+ # @param ProcessParam: 进程命令行参数
12736
+ # 注意:此字段可能返回 null,表示取不到有效值。
12737
+ # @type ProcessParam: String
12738
+
12739
+ attr_accessor :ProcessStartUser, :ProcessUserGroup, :ProcessPath, :ProcessParam
12740
+
12741
+ def initialize(processstartuser=nil, processusergroup=nil, processpath=nil, processparam=nil)
12742
+ @ProcessStartUser = processstartuser
12743
+ @ProcessUserGroup = processusergroup
12744
+ @ProcessPath = processpath
12745
+ @ProcessParam = processparam
12746
+ end
12747
+
12748
+ def deserialize(params)
12749
+ @ProcessStartUser = params['ProcessStartUser']
12750
+ @ProcessUserGroup = params['ProcessUserGroup']
12751
+ @ProcessPath = params['ProcessPath']
12752
+ @ProcessParam = params['ProcessParam']
12753
+ end
12754
+ end
12755
+
12586
12756
  # 运行是安全详情,进程基础信息
12587
12757
  class ProcessDetailBaseInfo < TencentCloud::Common::AbstractModel
12588
12758
  # @param ProcessName: 进程名称
@@ -12806,14 +12976,18 @@ module TencentCloud
12806
12976
  # @type Remark: String
12807
12977
  # @param DstAddress: 目标地址
12808
12978
  # @type DstAddress: String
12979
+ # @param OperationTime: 事件最后一次处理的时间
12980
+ # 注意:此字段可能返回 null,表示取不到有效值。
12981
+ # @type OperationTime: String
12809
12982
 
12810
- attr_accessor :Description, :Solution, :Remark, :DstAddress
12983
+ attr_accessor :Description, :Solution, :Remark, :DstAddress, :OperationTime
12811
12984
 
12812
- def initialize(description=nil, solution=nil, remark=nil, dstaddress=nil)
12985
+ def initialize(description=nil, solution=nil, remark=nil, dstaddress=nil, operationtime=nil)
12813
12986
  @Description = description
12814
12987
  @Solution = solution
12815
12988
  @Remark = remark
12816
12989
  @DstAddress = dstaddress
12990
+ @OperationTime = operationtime
12817
12991
  end
12818
12992
 
12819
12993
  def deserialize(params)
@@ -12821,6 +12995,7 @@ module TencentCloud
12821
12995
  @Solution = params['Solution']
12822
12996
  @Remark = params['Remark']
12823
12997
  @DstAddress = params['DstAddress']
12998
+ @OperationTime = params['OperationTime']
12824
12999
  end
12825
13000
  end
12826
13001
 
@@ -12994,14 +13169,18 @@ module TencentCloud
12994
13169
  # @type Remark: String
12995
13170
  # @param SyscallName: 系统调用名称
12996
13171
  # @type SyscallName: String
13172
+ # @param OperationTime: 事件最后一次处理的时间
13173
+ # 注意:此字段可能返回 null,表示取不到有效值。
13174
+ # @type OperationTime: String
12997
13175
 
12998
- attr_accessor :Description, :Solution, :Remark, :SyscallName
13176
+ attr_accessor :Description, :Solution, :Remark, :SyscallName, :OperationTime
12999
13177
 
13000
- def initialize(description=nil, solution=nil, remark=nil, syscallname=nil)
13178
+ def initialize(description=nil, solution=nil, remark=nil, syscallname=nil, operationtime=nil)
13001
13179
  @Description = description
13002
13180
  @Solution = solution
13003
13181
  @Remark = remark
13004
13182
  @SyscallName = syscallname
13183
+ @OperationTime = operationtime
13005
13184
  end
13006
13185
 
13007
13186
  def deserialize(params)
@@ -13009,6 +13188,7 @@ module TencentCloud
13009
13188
  @Solution = params['Solution']
13010
13189
  @Remark = params['Remark']
13011
13190
  @SyscallName = params['SyscallName']
13191
+ @OperationTime = params['OperationTime']
13012
13192
  end
13013
13193
  end
13014
13194
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-tcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.281
4
+ version: 1.0.282
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-22 00:00:00.000000000 Z
11
+ date: 2022-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common