tencentcloud-sdk-csip 3.0.1187 → 3.0.1196

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/v20221121/models.rb +52 -8
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 78c5eaff9d80163d110889c26b4fde37aed0cf6d
4
- data.tar.gz: 3b081b2badd4c212fc94ecf100559b5e16f07838
3
+ metadata.gz: 437b9cd6c926fee96d7d30de1d338e335856de4b
4
+ data.tar.gz: a298a05418e8f9cf1cbecd72dbd59f98f1fa4d77
5
5
  SHA512:
6
- metadata.gz: 2dae9949e8209d84ce1ba815bae33e5cf8c23396a8bbaca61c8dc3decd9ad54fc0de7abacfa1be1b892412b7835f0f27c5529e92dc2aa31d82e919f370a45625
7
- data.tar.gz: c8283b2cf3e8ad2cf0f1a05b80ec943720a32740a68f6d348360420e320dac293f73db2b4548ef6af7d3f7e05aff8409f769cf51482b7320b5538a9a9de3213a
6
+ metadata.gz: 198009bd855ce40fa84caf08078ea338db56a407862ecc5fc6b63d6f58e2f365ebef5d4144adcb2ffb96452b9ed8e12478fe6610b1705f45cde949ff5979771a
7
+ data.tar.gz: 307198ff0be082570348b407f25377c9beaa13a4a4f798cf29bbf6d02a30eb945499d94af5b3864c881e8e692842589a915658aeaf0d922c6599da51afae4710
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1187
1
+ 3.0.1196
@@ -98,10 +98,21 @@ module TencentCloud
98
98
  # @type RuleKey: String
99
99
  # @param CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
100
100
  # @type CloudType: Integer
101
-
102
- attr_accessor :Name, :Level, :ID, :AlarmRuleID, :AlarmType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :LastAlarmTime, :Status, :Date, :Tag, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :AppID, :LeakEvidence, :IsSupportEditWhiteAccount, :Evidence, :RuleKey, :CloudType
103
-
104
- def initialize(name=nil, level=nil, id=nil, alarmruleid=nil, alarmtype=nil, accesskey=nil, accesskeyid=nil, accesskeyremark=nil, lastalarmtime=nil, status=nil, date=nil, tag=nil, uin=nil, nickname=nil, subuin=nil, subnickname=nil, type=nil, appid=nil, leakevidence=nil, issupporteditwhiteaccount=nil, evidence=nil, rulekey=nil, cloudtype=nil)
101
+ # @param AIStatus: 告警AI分析状态
102
+ # -1 分析失败
103
+ # 0 未分析
104
+ # 1 分析中
105
+ # 2 分析成功,真实告警
106
+ # 3 分析成功,可疑告警
107
+ # @type AIStatus: Integer
108
+ # @param FirstAlarmTimestamp: 首次告警时间戳(秒级)
109
+ # @type FirstAlarmTimestamp: Integer
110
+ # @param LastAlarmTimestamp: 最后告警时间戳(秒级)
111
+ # @type LastAlarmTimestamp: Integer
112
+
113
+ attr_accessor :Name, :Level, :ID, :AlarmRuleID, :AlarmType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :LastAlarmTime, :Status, :Date, :Tag, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :AppID, :LeakEvidence, :IsSupportEditWhiteAccount, :Evidence, :RuleKey, :CloudType, :AIStatus, :FirstAlarmTimestamp, :LastAlarmTimestamp
114
+
115
+ def initialize(name=nil, level=nil, id=nil, alarmruleid=nil, alarmtype=nil, accesskey=nil, accesskeyid=nil, accesskeyremark=nil, lastalarmtime=nil, status=nil, date=nil, tag=nil, uin=nil, nickname=nil, subuin=nil, subnickname=nil, type=nil, appid=nil, leakevidence=nil, issupporteditwhiteaccount=nil, evidence=nil, rulekey=nil, cloudtype=nil, aistatus=nil, firstalarmtimestamp=nil, lastalarmtimestamp=nil)
105
116
  @Name = name
106
117
  @Level = level
107
118
  @ID = id
@@ -125,6 +136,9 @@ module TencentCloud
125
136
  @Evidence = evidence
126
137
  @RuleKey = rulekey
127
138
  @CloudType = cloudtype
139
+ @AIStatus = aistatus
140
+ @FirstAlarmTimestamp = firstalarmtimestamp
141
+ @LastAlarmTimestamp = lastalarmtimestamp
128
142
  end
129
143
 
130
144
  def deserialize(params)
@@ -151,6 +165,9 @@ module TencentCloud
151
165
  @Evidence = params['Evidence']
152
166
  @RuleKey = params['RuleKey']
153
167
  @CloudType = params['CloudType']
168
+ @AIStatus = params['AIStatus']
169
+ @FirstAlarmTimestamp = params['FirstAlarmTimestamp']
170
+ @LastAlarmTimestamp = params['LastAlarmTimestamp']
154
171
  end
155
172
  end
156
173
 
@@ -162,19 +179,31 @@ module TencentCloud
162
179
  # @type AccessKey: String
163
180
  # @param AlarmCount: 告警数量
164
181
  # @type AlarmCount: Integer
182
+ # @param AccessKeyStatus: 访问密钥状态 0 禁用 1 已启用 2 已删除
183
+ # @type AccessKeyStatus: Integer
184
+ # @param AccessKeyCreateTime: AK创建时间
185
+ # @type AccessKeyCreateTime: String
186
+ # @param LastAccessTime: AK最后使用时间,从未使用过则返回“-”
187
+ # @type LastAccessTime: String
165
188
 
166
- attr_accessor :ID, :AccessKey, :AlarmCount
189
+ attr_accessor :ID, :AccessKey, :AlarmCount, :AccessKeyStatus, :AccessKeyCreateTime, :LastAccessTime
167
190
 
168
- def initialize(id=nil, accesskey=nil, alarmcount=nil)
191
+ def initialize(id=nil, accesskey=nil, alarmcount=nil, accesskeystatus=nil, accesskeycreatetime=nil, lastaccesstime=nil)
169
192
  @ID = id
170
193
  @AccessKey = accesskey
171
194
  @AlarmCount = alarmcount
195
+ @AccessKeyStatus = accesskeystatus
196
+ @AccessKeyCreateTime = accesskeycreatetime
197
+ @LastAccessTime = lastaccesstime
172
198
  end
173
199
 
174
200
  def deserialize(params)
175
201
  @ID = params['ID']
176
202
  @AccessKey = params['AccessKey']
177
203
  @AlarmCount = params['AlarmCount']
204
+ @AccessKeyStatus = params['AccessKeyStatus']
205
+ @AccessKeyCreateTime = params['AccessKeyCreateTime']
206
+ @LastAccessTime = params['LastAccessTime']
178
207
  end
179
208
  end
180
209
 
@@ -364,10 +393,14 @@ module TencentCloud
364
393
  # @type AppID: Integer
365
394
  # @param QueryParam: 对应风险的查询参数
366
395
  # @type QueryParam: String
396
+ # @param CloudType: 云类型 0-腾讯云 4-阿里云
397
+ # @type CloudType: Integer
398
+ # @param RelatedAK: 相关的AK列表,包含AK名和AK备注
399
+ # @type RelatedAK: Array
367
400
 
368
- attr_accessor :Name, :Level, :ID, :RiskRuleID, :RiskType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :RiskTime, :Status, :Tag, :Evidence, :Description, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :CheckStatus, :AppID, :QueryParam
401
+ attr_accessor :Name, :Level, :ID, :RiskRuleID, :RiskType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :RiskTime, :Status, :Tag, :Evidence, :Description, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :CheckStatus, :AppID, :QueryParam, :CloudType, :RelatedAK
369
402
 
370
- def initialize(name=nil, level=nil, id=nil, riskruleid=nil, risktype=nil, accesskey=nil, accesskeyid=nil, accesskeyremark=nil, risktime=nil, status=nil, tag=nil, evidence=nil, description=nil, uin=nil, nickname=nil, subuin=nil, subnickname=nil, type=nil, checkstatus=nil, appid=nil, queryparam=nil)
403
+ def initialize(name=nil, level=nil, id=nil, riskruleid=nil, risktype=nil, accesskey=nil, accesskeyid=nil, accesskeyremark=nil, risktime=nil, status=nil, tag=nil, evidence=nil, description=nil, uin=nil, nickname=nil, subuin=nil, subnickname=nil, type=nil, checkstatus=nil, appid=nil, queryparam=nil, cloudtype=nil, relatedak=nil)
371
404
  @Name = name
372
405
  @Level = level
373
406
  @ID = id
@@ -389,6 +422,8 @@ module TencentCloud
389
422
  @CheckStatus = checkstatus
390
423
  @AppID = appid
391
424
  @QueryParam = queryparam
425
+ @CloudType = cloudtype
426
+ @RelatedAK = relatedak
392
427
  end
393
428
 
394
429
  def deserialize(params)
@@ -413,6 +448,15 @@ module TencentCloud
413
448
  @CheckStatus = params['CheckStatus']
414
449
  @AppID = params['AppID']
415
450
  @QueryParam = params['QueryParam']
451
+ @CloudType = params['CloudType']
452
+ unless params['RelatedAK'].nil?
453
+ @RelatedAK = []
454
+ params['RelatedAK'].each do |i|
455
+ akinfo_tmp = AKInfo.new
456
+ akinfo_tmp.deserialize(i)
457
+ @RelatedAK << akinfo_tmp
458
+ end
459
+ end
416
460
  end
417
461
  end
418
462
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-csip
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.1187
4
+ version: 3.0.1196
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-12-22 00:00:00.000000000 Z
11
+ date: 2026-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common