tencentcloud-sdk-ctem 3.0.1126 → 3.0.1145

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 +151 -10
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0077c28faa8f0b33d1772c57627451a299803619
4
- data.tar.gz: eb6580c3506ed7a595577ff71ba18586da995527
3
+ metadata.gz: cb1c4dd91dafe696dea5d7ed7a8c9a1e8e025a6a
4
+ data.tar.gz: 88cadb9f843c88fa307706acc3405bb6905afa89
5
5
  SHA512:
6
- metadata.gz: 48d354152863896d31f77b39ff6fdb5450a240e7d8632d0628b5e294e794fd9b8374ee1e868dab50d043e032c967e5e0a9da878247832437496c491675e501dc
7
- data.tar.gz: 07c4d918c4b0fd368765fecc48ab4c8e1b10fb2e715997f3c799bed274998f7c745c45cc8949d419b2d832e09368f8d0aa6d075fbb480d63c67437a3c6a1f273
6
+ metadata.gz: 49ab8858de81beb8c226cf4c0e605685c8b8978408db6dd8ed87aa66a468a7516ee16db42f50bc7a6217ad670431ac4e2387d507b630ffbe25ee9f08f11a314a
7
+ data.tar.gz: 3b8ad64ae9a1bf45b0bfa6c7b0ab6d789506c223e330cd1fd30848cb384ebd329182dff21ceac996b9261ef9a6575c5e001be29c5696c611161bc3c678cf8dd9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1126
1
+ 3.0.1145
@@ -3147,10 +3147,18 @@ module TencentCloud
3147
3147
  # @type Isp: String
3148
3148
  # @param DisplayToolCommon: 公共字段
3149
3149
  # @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
3150
-
3151
- attr_accessor :Id, :Os, :Ip, :Country, :Province, :City, :Isp, :DisplayToolCommon
3152
-
3153
- def initialize(id=nil, os=nil, ip=nil, country=nil, province=nil, city=nil, isp=nil, displaytoolcommon=nil)
3150
+ # @param Ports: 端口数据
3151
+ # @type Ports: String
3152
+ # @param Services: 服务数据
3153
+ # @type Services: String
3154
+ # @param Domains: 域名数据
3155
+ # @type Domains: String
3156
+ # @param LastModify: 端口和服务最近更新时间
3157
+ # @type LastModify: String
3158
+
3159
+ attr_accessor :Id, :Os, :Ip, :Country, :Province, :City, :Isp, :DisplayToolCommon, :Ports, :Services, :Domains, :LastModify
3160
+
3161
+ def initialize(id=nil, os=nil, ip=nil, country=nil, province=nil, city=nil, isp=nil, displaytoolcommon=nil, ports=nil, services=nil, domains=nil, lastmodify=nil)
3154
3162
  @Id = id
3155
3163
  @Os = os
3156
3164
  @Ip = ip
@@ -3159,6 +3167,10 @@ module TencentCloud
3159
3167
  @City = city
3160
3168
  @Isp = isp
3161
3169
  @DisplayToolCommon = displaytoolcommon
3170
+ @Ports = ports
3171
+ @Services = services
3172
+ @Domains = domains
3173
+ @LastModify = lastmodify
3162
3174
  end
3163
3175
 
3164
3176
  def deserialize(params)
@@ -3173,6 +3185,10 @@ module TencentCloud
3173
3185
  @DisplayToolCommon = DisplayToolCommon.new
3174
3186
  @DisplayToolCommon.deserialize(params['DisplayToolCommon'])
3175
3187
  end
3188
+ @Ports = params['Ports']
3189
+ @Services = params['Services']
3190
+ @Domains = params['Domains']
3191
+ @LastModify = params['LastModify']
3176
3192
  end
3177
3193
  end
3178
3194
 
@@ -3826,19 +3842,66 @@ module TencentCloud
3826
3842
  class DisplayLeakageCode < TencentCloud::Common::AbstractModel
3827
3843
  # @param Id: 主键ID
3828
3844
  # @type Id: Integer
3845
+ # @param DisplayToolCommon: 公共字段
3846
+ # @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
3847
+ # @param Name: 事件名称
3848
+ # @type Name: String
3849
+ # @param Description: 事件描述
3850
+ # @type Description: String
3851
+ # @param Source: 数据源
3852
+ # @type Source: String
3853
+ # @param RiskLevel: 风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
3854
+ # @type RiskLevel: Integer
3855
+ # @param HubName: 仓库名称
3856
+ # @type HubName: String
3829
3857
  # @param Url: 链接
3830
3858
  # @type Url: String
3859
+ # @param Screenshot: 截图
3860
+ # @type Screenshot: String
3861
+ # @param Suggestion: 建议
3862
+ # @type Suggestion: String
3863
+ # @param Keyword: 关键词
3864
+ # @type Keyword: String
3865
+ # @param HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
3866
+ # @type HandlingStatus: Integer
3867
+ # @param Remark: 备注
3868
+ # @type Remark: String
3831
3869
 
3832
- attr_accessor :Id, :Url
3870
+ attr_accessor :Id, :DisplayToolCommon, :Name, :Description, :Source, :RiskLevel, :HubName, :Url, :Screenshot, :Suggestion, :Keyword, :HandlingStatus, :Remark
3833
3871
 
3834
- def initialize(id=nil, url=nil)
3872
+ def initialize(id=nil, displaytoolcommon=nil, name=nil, description=nil, source=nil, risklevel=nil, hubname=nil, url=nil, screenshot=nil, suggestion=nil, keyword=nil, handlingstatus=nil, remark=nil)
3835
3873
  @Id = id
3874
+ @DisplayToolCommon = displaytoolcommon
3875
+ @Name = name
3876
+ @Description = description
3877
+ @Source = source
3878
+ @RiskLevel = risklevel
3879
+ @HubName = hubname
3836
3880
  @Url = url
3881
+ @Screenshot = screenshot
3882
+ @Suggestion = suggestion
3883
+ @Keyword = keyword
3884
+ @HandlingStatus = handlingstatus
3885
+ @Remark = remark
3837
3886
  end
3838
3887
 
3839
3888
  def deserialize(params)
3840
3889
  @Id = params['Id']
3890
+ unless params['DisplayToolCommon'].nil?
3891
+ @DisplayToolCommon = DisplayToolCommon.new
3892
+ @DisplayToolCommon.deserialize(params['DisplayToolCommon'])
3893
+ end
3894
+ @Name = params['Name']
3895
+ @Description = params['Description']
3896
+ @Source = params['Source']
3897
+ @RiskLevel = params['RiskLevel']
3898
+ @HubName = params['HubName']
3841
3899
  @Url = params['Url']
3900
+ @Screenshot = params['Screenshot']
3901
+ @Suggestion = params['Suggestion']
3902
+ @Keyword = params['Keyword']
3903
+ @HandlingStatus = params['HandlingStatus']
3904
+ @Remark = params['Remark']
3842
3905
  end
3843
3906
  end
3844
3907
 
@@ -3846,19 +3909,62 @@ module TencentCloud
3846
3909
  class DisplayLeakageData < TencentCloud::Common::AbstractModel
3847
3910
  # @param Id: 主键ID
3848
3911
  # @type Id: Integer
3912
+ # @param DisplayToolCommon: 公共字段
3913
+ # @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
3914
+ # @param Name: 事件名称
3915
+ # @type Name: String
3916
+ # @param Description: 事件描述
3917
+ # @type Description: String
3918
+ # @param Source: 数据源
3919
+ # @type Source: String
3920
+ # @param RiskLevel: 风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
3921
+ # @type RiskLevel: Integer
3849
3922
  # @param Url: 链接
3850
3923
  # @type Url: String
3924
+ # @param Screenshot: 截图
3925
+ # @type Screenshot: String
3926
+ # @param Suggestion: 建议
3927
+ # @type Suggestion: String
3928
+ # @param Keyword: 关键词
3929
+ # @type Keyword: String
3930
+ # @param HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
3931
+ # @type HandlingStatus: Integer
3932
+ # @param Remark: 备注
3933
+ # @type Remark: String
3851
3934
 
3852
- attr_accessor :Id, :Url
3935
+ attr_accessor :Id, :DisplayToolCommon, :Name, :Description, :Source, :RiskLevel, :Url, :Screenshot, :Suggestion, :Keyword, :HandlingStatus, :Remark
3853
3936
 
3854
- def initialize(id=nil, url=nil)
3937
+ def initialize(id=nil, displaytoolcommon=nil, name=nil, description=nil, source=nil, risklevel=nil, url=nil, screenshot=nil, suggestion=nil, keyword=nil, handlingstatus=nil, remark=nil)
3855
3938
  @Id = id
3939
+ @DisplayToolCommon = displaytoolcommon
3940
+ @Name = name
3941
+ @Description = description
3942
+ @Source = source
3943
+ @RiskLevel = risklevel
3856
3944
  @Url = url
3945
+ @Screenshot = screenshot
3946
+ @Suggestion = suggestion
3947
+ @Keyword = keyword
3948
+ @HandlingStatus = handlingstatus
3949
+ @Remark = remark
3857
3950
  end
3858
3951
 
3859
3952
  def deserialize(params)
3860
3953
  @Id = params['Id']
3954
+ unless params['DisplayToolCommon'].nil?
3955
+ @DisplayToolCommon = DisplayToolCommon.new
3956
+ @DisplayToolCommon.deserialize(params['DisplayToolCommon'])
3957
+ end
3958
+ @Name = params['Name']
3959
+ @Description = params['Description']
3960
+ @Source = params['Source']
3961
+ @RiskLevel = params['RiskLevel']
3861
3962
  @Url = params['Url']
3963
+ @Screenshot = params['Screenshot']
3964
+ @Suggestion = params['Suggestion']
3965
+ @Keyword = params['Keyword']
3966
+ @HandlingStatus = params['HandlingStatus']
3967
+ @Remark = params['Remark']
3862
3968
  end
3863
3969
  end
3864
3970
 
@@ -3866,19 +3972,54 @@ module TencentCloud
3866
3972
  class DisplayLeakageEmail < TencentCloud::Common::AbstractModel
3867
3973
  # @param Id: 主键ID
3868
3974
  # @type Id: Integer
3975
+ # @param DisplayToolCommon: 公共字段
3976
+ # @type DisplayToolCommon: :class:`Tencentcloud::Ctem.v20231128.models.DisplayToolCommon`
3869
3977
  # @param Email: 邮箱
3870
3978
  # @type Email: String
3979
+ # @param Username: 用户名
3980
+ # @type Username: String
3981
+ # @param Source: 数据源
3982
+ # @type Source: String
3983
+ # @param RiskLevel: 风险等级:1-低危 2-中危 3-高危 4-严重 5-误报
3984
+ # @type RiskLevel: Integer
3985
+ # @param Suggestion: 建议
3986
+ # @type Suggestion: String
3987
+ # @param Keyword: 关键词
3988
+ # @type Keyword: String
3989
+ # @param HandlingStatus: 处置状态:0-待处理 1-处理中 2-已处理
3990
+ # @type HandlingStatus: Integer
3991
+ # @param Remark: 备注
3992
+ # @type Remark: String
3871
3993
 
3872
- attr_accessor :Id, :Email
3994
+ attr_accessor :Id, :DisplayToolCommon, :Email, :Username, :Source, :RiskLevel, :Suggestion, :Keyword, :HandlingStatus, :Remark
3873
3995
 
3874
- def initialize(id=nil, email=nil)
3996
+ def initialize(id=nil, displaytoolcommon=nil, email=nil, username=nil, source=nil, risklevel=nil, suggestion=nil, keyword=nil, handlingstatus=nil, remark=nil)
3875
3997
  @Id = id
3998
+ @DisplayToolCommon = displaytoolcommon
3876
3999
  @Email = email
4000
+ @Username = username
4001
+ @Source = source
4002
+ @RiskLevel = risklevel
4003
+ @Suggestion = suggestion
4004
+ @Keyword = keyword
4005
+ @HandlingStatus = handlingstatus
4006
+ @Remark = remark
3877
4007
  end
3878
4008
 
3879
4009
  def deserialize(params)
3880
4010
  @Id = params['Id']
4011
+ unless params['DisplayToolCommon'].nil?
4012
+ @DisplayToolCommon = DisplayToolCommon.new
4013
+ @DisplayToolCommon.deserialize(params['DisplayToolCommon'])
4014
+ end
3881
4015
  @Email = params['Email']
4016
+ @Username = params['Username']
4017
+ @Source = params['Source']
4018
+ @RiskLevel = params['RiskLevel']
4019
+ @Suggestion = params['Suggestion']
4020
+ @Keyword = params['Keyword']
4021
+ @HandlingStatus = params['HandlingStatus']
4022
+ @Remark = params['Remark']
3882
4023
  end
3883
4024
  end
3884
4025
 
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.1126
4
+ version: 3.0.1145
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-08-19 00:00:00.000000000 Z
11
+ date: 2025-09-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common