tencentcloud-sdk-csip 3.0.1127 → 3.0.1138
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20221121/models.rb +28 -8
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc7d18e6b3af1d2165bfe706caea3d5c95874712
|
4
|
+
data.tar.gz: 615e07e0e6882d0d243d8798657be4f10c0fed75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4c6d3e9a558e03e748f444ce2dda4c02e947217f3c14c6150ffc178d4eb5b87a24ee26929c27350e3f60f975e3b984ce980323885953048d8b190d00cd61c661
|
7
|
+
data.tar.gz: ab2be99c1554b5a0da942cf2948669451ac90b72d5af8af6cb8954b4d52388cc9ec4adb9ecbf27ca2e6ac03fbef4a60d753f4112a4e49cb223668d0d67c30756
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1138
|
data/lib/v20221121/models.rb
CHANGED
@@ -21,8 +21,7 @@ module TencentCloud
|
|
21
21
|
class AKInfo < TencentCloud::Common::AbstractModel
|
22
22
|
# @param ID: ak对应id
|
23
23
|
# @type ID: Integer
|
24
|
-
# @param Name: ak
|
25
|
-
# 临时密钥时返回临时密钥
|
24
|
+
# @param Name: ak具体值 临时密钥时返回临时密钥
|
26
25
|
# @type Name: String
|
27
26
|
# @param User: 所属账号
|
28
27
|
# @type User: String
|
@@ -91,10 +90,16 @@ module TencentCloud
|
|
91
90
|
# @type AppID: Integer
|
92
91
|
# @param LeakEvidence: 泄漏证据
|
93
92
|
# @type LeakEvidence: Array
|
93
|
+
# @param IsSupportEditWhiteAccount: 是否支持编辑信任账号
|
94
|
+
# @type IsSupportEditWhiteAccount: Boolean
|
95
|
+
# @param Evidence: 告警证据
|
96
|
+
# @type Evidence: String
|
97
|
+
# @param RuleKey: 告警规则标识
|
98
|
+
# @type RuleKey: String
|
94
99
|
|
95
|
-
attr_accessor :Name, :Level, :ID, :AlarmRuleID, :AlarmType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :LastAlarmTime, :Status, :Date, :Tag, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :AppID, :LeakEvidence
|
100
|
+
attr_accessor :Name, :Level, :ID, :AlarmRuleID, :AlarmType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :LastAlarmTime, :Status, :Date, :Tag, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :AppID, :LeakEvidence, :IsSupportEditWhiteAccount, :Evidence, :RuleKey
|
96
101
|
|
97
|
-
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)
|
102
|
+
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)
|
98
103
|
@Name = name
|
99
104
|
@Level = level
|
100
105
|
@ID = id
|
@@ -114,6 +119,9 @@ module TencentCloud
|
|
114
119
|
@Type = type
|
115
120
|
@AppID = appid
|
116
121
|
@LeakEvidence = leakevidence
|
122
|
+
@IsSupportEditWhiteAccount = issupporteditwhiteaccount
|
123
|
+
@Evidence = evidence
|
124
|
+
@RuleKey = rulekey
|
117
125
|
end
|
118
126
|
|
119
127
|
def deserialize(params)
|
@@ -136,6 +144,9 @@ module TencentCloud
|
|
136
144
|
@Type = params['Type']
|
137
145
|
@AppID = params['AppID']
|
138
146
|
@LeakEvidence = params['LeakEvidence']
|
147
|
+
@IsSupportEditWhiteAccount = params['IsSupportEditWhiteAccount']
|
148
|
+
@Evidence = params['Evidence']
|
149
|
+
@RuleKey = params['RuleKey']
|
139
150
|
end
|
140
151
|
end
|
141
152
|
|
@@ -231,6 +242,7 @@ module TencentCloud
|
|
231
242
|
# @param Status: AK状态
|
232
243
|
# 0:禁用
|
233
244
|
# 1:已启用
|
245
|
+
# 2:已删除(已在cam侧删除,安全中心仍然存留之前的记录)
|
234
246
|
# @type Status: Integer
|
235
247
|
# @param CheckStatus: 0 表示已检测
|
236
248
|
# 1 表示检测中
|
@@ -342,10 +354,12 @@ module TencentCloud
|
|
342
354
|
# @type CheckStatus: Integer
|
343
355
|
# @param AppID: 所属appid
|
344
356
|
# @type AppID: Integer
|
357
|
+
# @param QueryParam: 对应风险的查询参数
|
358
|
+
# @type QueryParam: String
|
345
359
|
|
346
|
-
attr_accessor :Name, :Level, :ID, :RiskRuleID, :RiskType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :RiskTime, :Status, :Tag, :Evidence, :Description, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :CheckStatus, :AppID
|
360
|
+
attr_accessor :Name, :Level, :ID, :RiskRuleID, :RiskType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :RiskTime, :Status, :Tag, :Evidence, :Description, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :CheckStatus, :AppID, :QueryParam
|
347
361
|
|
348
|
-
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)
|
362
|
+
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)
|
349
363
|
@Name = name
|
350
364
|
@Level = level
|
351
365
|
@ID = id
|
@@ -366,6 +380,7 @@ module TencentCloud
|
|
366
380
|
@Type = type
|
367
381
|
@CheckStatus = checkstatus
|
368
382
|
@AppID = appid
|
383
|
+
@QueryParam = queryparam
|
369
384
|
end
|
370
385
|
|
371
386
|
def deserialize(params)
|
@@ -389,6 +404,7 @@ module TencentCloud
|
|
389
404
|
@Type = params['Type']
|
390
405
|
@CheckStatus = params['CheckStatus']
|
391
406
|
@AppID = params['AppID']
|
407
|
+
@QueryParam = params['QueryParam']
|
392
408
|
end
|
393
409
|
end
|
394
410
|
|
@@ -2838,10 +2854,12 @@ module TencentCloud
|
|
2838
2854
|
# @type ISP: String
|
2839
2855
|
# @param VpcInfo: 账号外vpc信息列表
|
2840
2856
|
# @type VpcInfo: Array
|
2857
|
+
# @param ReqClient: 调用请求客户端列表
|
2858
|
+
# @type ReqClient: Array
|
2841
2859
|
|
2842
|
-
attr_accessor :CallID, :AccessKey, :AccessKeyRemark, :AccessKeyID, :SourceIP, :SourceIPRemark, :Region, :IPType, :EventName, :ProductName, :EventType, :UserType, :UserName, :PolicySet, :CallCount, :Code, :FirstCallTime, :LastCallTime, :InstanceID, :InstanceName, :Date, :AppID, :ShowStatus, :ISP, :VpcInfo
|
2860
|
+
attr_accessor :CallID, :AccessKey, :AccessKeyRemark, :AccessKeyID, :SourceIP, :SourceIPRemark, :Region, :IPType, :EventName, :ProductName, :EventType, :UserType, :UserName, :PolicySet, :CallCount, :Code, :FirstCallTime, :LastCallTime, :InstanceID, :InstanceName, :Date, :AppID, :ShowStatus, :ISP, :VpcInfo, :ReqClient
|
2843
2861
|
|
2844
|
-
def initialize(callid=nil, accesskey=nil, accesskeyremark=nil, accesskeyid=nil, sourceip=nil, sourceipremark=nil, region=nil, iptype=nil, eventname=nil, productname=nil, eventtype=nil, usertype=nil, username=nil, policyset=nil, callcount=nil, code=nil, firstcalltime=nil, lastcalltime=nil, instanceid=nil, instancename=nil, date=nil, appid=nil, showstatus=nil, isp=nil, vpcinfo=nil)
|
2862
|
+
def initialize(callid=nil, accesskey=nil, accesskeyremark=nil, accesskeyid=nil, sourceip=nil, sourceipremark=nil, region=nil, iptype=nil, eventname=nil, productname=nil, eventtype=nil, usertype=nil, username=nil, policyset=nil, callcount=nil, code=nil, firstcalltime=nil, lastcalltime=nil, instanceid=nil, instancename=nil, date=nil, appid=nil, showstatus=nil, isp=nil, vpcinfo=nil, reqclient=nil)
|
2845
2863
|
@CallID = callid
|
2846
2864
|
@AccessKey = accesskey
|
2847
2865
|
@AccessKeyRemark = accesskeyremark
|
@@ -2867,6 +2885,7 @@ module TencentCloud
|
|
2867
2885
|
@ShowStatus = showstatus
|
2868
2886
|
@ISP = isp
|
2869
2887
|
@VpcInfo = vpcinfo
|
2888
|
+
@ReqClient = reqclient
|
2870
2889
|
end
|
2871
2890
|
|
2872
2891
|
def deserialize(params)
|
@@ -2902,6 +2921,7 @@ module TencentCloud
|
|
2902
2921
|
@VpcInfo << sourceipvpcinfo_tmp
|
2903
2922
|
end
|
2904
2923
|
end
|
2924
|
+
@ReqClient = params['ReqClient']
|
2905
2925
|
end
|
2906
2926
|
end
|
2907
2927
|
|
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.
|
4
|
+
version: 3.0.1138
|
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-
|
11
|
+
date: 2025-09-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|