tencentcloud-sdk-csip 3.0.1127 → 3.0.1158
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 +63 -14
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 02e9c62acac066af9fee8081c3a31a9fd29ea070
|
|
4
|
+
data.tar.gz: 37350048fba9d6d56217e4faf8f867e46874cd5e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f95edd1c3d6c332f30fa55b95dedf0786ce971747c578abe39b4b717f62ac76b6464493adf30775b336575fa164895080c31b2b96d22ce753f71be0791bbbb12
|
|
7
|
+
data.tar.gz: b218d4a88a1c5830468ee8b47556d1fc336a3a42c6acc7e3ba5d1aa18d3e99a49329290b5d1dc2c957a4cc8146829e4db6ee365351bd0d37b34280bcf80789e4
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1158
|
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,18 @@ 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
|
|
99
|
+
# @param CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
100
|
+
# @type CloudType: Integer
|
|
94
101
|
|
|
95
|
-
attr_accessor :Name, :Level, :ID, :AlarmRuleID, :AlarmType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :LastAlarmTime, :Status, :Date, :Tag, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :AppID, :LeakEvidence
|
|
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
|
|
96
103
|
|
|
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)
|
|
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)
|
|
98
105
|
@Name = name
|
|
99
106
|
@Level = level
|
|
100
107
|
@ID = id
|
|
@@ -114,6 +121,10 @@ module TencentCloud
|
|
|
114
121
|
@Type = type
|
|
115
122
|
@AppID = appid
|
|
116
123
|
@LeakEvidence = leakevidence
|
|
124
|
+
@IsSupportEditWhiteAccount = issupporteditwhiteaccount
|
|
125
|
+
@Evidence = evidence
|
|
126
|
+
@RuleKey = rulekey
|
|
127
|
+
@CloudType = cloudtype
|
|
117
128
|
end
|
|
118
129
|
|
|
119
130
|
def deserialize(params)
|
|
@@ -136,6 +147,10 @@ module TencentCloud
|
|
|
136
147
|
@Type = params['Type']
|
|
137
148
|
@AppID = params['AppID']
|
|
138
149
|
@LeakEvidence = params['LeakEvidence']
|
|
150
|
+
@IsSupportEditWhiteAccount = params['IsSupportEditWhiteAccount']
|
|
151
|
+
@Evidence = params['Evidence']
|
|
152
|
+
@RuleKey = params['RuleKey']
|
|
153
|
+
@CloudType = params['CloudType']
|
|
139
154
|
end
|
|
140
155
|
end
|
|
141
156
|
|
|
@@ -231,14 +246,17 @@ module TencentCloud
|
|
|
231
246
|
# @param Status: AK状态
|
|
232
247
|
# 0:禁用
|
|
233
248
|
# 1:已启用
|
|
249
|
+
# 2:已删除(已在cam侧删除,安全中心仍然存留之前的记录)
|
|
234
250
|
# @type Status: Integer
|
|
235
251
|
# @param CheckStatus: 0 表示已检测
|
|
236
252
|
# 1 表示检测中
|
|
237
253
|
# @type CheckStatus: Integer
|
|
254
|
+
# @param CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
255
|
+
# @type CloudType: Integer
|
|
238
256
|
|
|
239
|
-
attr_accessor :ID, :Name, :Remark, :AppID, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :Advice, :AccessKeyAlarmList, :AccessKeyRiskList, :IPCount, :CreateTime, :LastAccessTime, :Status, :CheckStatus
|
|
257
|
+
attr_accessor :ID, :Name, :Remark, :AppID, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :Advice, :AccessKeyAlarmList, :AccessKeyRiskList, :IPCount, :CreateTime, :LastAccessTime, :Status, :CheckStatus, :CloudType
|
|
240
258
|
|
|
241
|
-
def initialize(id=nil, name=nil, remark=nil, appid=nil, uin=nil, nickname=nil, subuin=nil, subnickname=nil, type=nil, advice=nil, accesskeyalarmlist=nil, accesskeyrisklist=nil, ipcount=nil, createtime=nil, lastaccesstime=nil, status=nil, checkstatus=nil)
|
|
259
|
+
def initialize(id=nil, name=nil, remark=nil, appid=nil, uin=nil, nickname=nil, subuin=nil, subnickname=nil, type=nil, advice=nil, accesskeyalarmlist=nil, accesskeyrisklist=nil, ipcount=nil, createtime=nil, lastaccesstime=nil, status=nil, checkstatus=nil, cloudtype=nil)
|
|
242
260
|
@ID = id
|
|
243
261
|
@Name = name
|
|
244
262
|
@Remark = remark
|
|
@@ -256,6 +274,7 @@ module TencentCloud
|
|
|
256
274
|
@LastAccessTime = lastaccesstime
|
|
257
275
|
@Status = status
|
|
258
276
|
@CheckStatus = checkstatus
|
|
277
|
+
@CloudType = cloudtype
|
|
259
278
|
end
|
|
260
279
|
|
|
261
280
|
def deserialize(params)
|
|
@@ -290,6 +309,7 @@ module TencentCloud
|
|
|
290
309
|
@LastAccessTime = params['LastAccessTime']
|
|
291
310
|
@Status = params['Status']
|
|
292
311
|
@CheckStatus = params['CheckStatus']
|
|
312
|
+
@CloudType = params['CloudType']
|
|
293
313
|
end
|
|
294
314
|
end
|
|
295
315
|
|
|
@@ -342,10 +362,12 @@ module TencentCloud
|
|
|
342
362
|
# @type CheckStatus: Integer
|
|
343
363
|
# @param AppID: 所属appid
|
|
344
364
|
# @type AppID: Integer
|
|
365
|
+
# @param QueryParam: 对应风险的查询参数
|
|
366
|
+
# @type QueryParam: String
|
|
345
367
|
|
|
346
|
-
attr_accessor :Name, :Level, :ID, :RiskRuleID, :RiskType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :RiskTime, :Status, :Tag, :Evidence, :Description, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :CheckStatus, :AppID
|
|
368
|
+
attr_accessor :Name, :Level, :ID, :RiskRuleID, :RiskType, :AccessKey, :AccessKeyID, :AccessKeyRemark, :RiskTime, :Status, :Tag, :Evidence, :Description, :Uin, :Nickname, :SubUin, :SubNickname, :Type, :CheckStatus, :AppID, :QueryParam
|
|
347
369
|
|
|
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)
|
|
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)
|
|
349
371
|
@Name = name
|
|
350
372
|
@Level = level
|
|
351
373
|
@ID = id
|
|
@@ -366,6 +388,7 @@ module TencentCloud
|
|
|
366
388
|
@Type = type
|
|
367
389
|
@CheckStatus = checkstatus
|
|
368
390
|
@AppID = appid
|
|
391
|
+
@QueryParam = queryparam
|
|
369
392
|
end
|
|
370
393
|
|
|
371
394
|
def deserialize(params)
|
|
@@ -389,6 +412,7 @@ module TencentCloud
|
|
|
389
412
|
@Type = params['Type']
|
|
390
413
|
@CheckStatus = params['CheckStatus']
|
|
391
414
|
@AppID = params['AppID']
|
|
415
|
+
@QueryParam = params['QueryParam']
|
|
392
416
|
end
|
|
393
417
|
end
|
|
394
418
|
|
|
@@ -438,10 +462,12 @@ module TencentCloud
|
|
|
438
462
|
# @type LoginFlag: Integer
|
|
439
463
|
# @param CheckStatus: 0 表示已检测 1 表示检测中
|
|
440
464
|
# @type CheckStatus: Integer
|
|
465
|
+
# @param CloudType: 云厂商类型 0:腾讯云 1:亚马逊云 2:微软云 3:谷歌云 4:阿里云 5:华为云
|
|
466
|
+
# @type CloudType: Integer
|
|
441
467
|
|
|
442
|
-
attr_accessor :ID, :Name, :Type, :AccessType, :Advice, :AccessKeyAlarmList, :AccessKeyRiskList, :AppID, :Nickname, :SubNickname, :Uin, :SubUin, :LoginIP, :LoginLocation, :LoginTime, :ISP, :ActionFlag, :LoginFlag, :CheckStatus
|
|
468
|
+
attr_accessor :ID, :Name, :Type, :AccessType, :Advice, :AccessKeyAlarmList, :AccessKeyRiskList, :AppID, :Nickname, :SubNickname, :Uin, :SubUin, :LoginIP, :LoginLocation, :LoginTime, :ISP, :ActionFlag, :LoginFlag, :CheckStatus, :CloudType
|
|
443
469
|
|
|
444
|
-
def initialize(id=nil, name=nil, type=nil, accesstype=nil, advice=nil, accesskeyalarmlist=nil, accesskeyrisklist=nil, appid=nil, nickname=nil, subnickname=nil, uin=nil, subuin=nil, loginip=nil, loginlocation=nil, logintime=nil, isp=nil, actionflag=nil, loginflag=nil, checkstatus=nil)
|
|
470
|
+
def initialize(id=nil, name=nil, type=nil, accesstype=nil, advice=nil, accesskeyalarmlist=nil, accesskeyrisklist=nil, appid=nil, nickname=nil, subnickname=nil, uin=nil, subuin=nil, loginip=nil, loginlocation=nil, logintime=nil, isp=nil, actionflag=nil, loginflag=nil, checkstatus=nil, cloudtype=nil)
|
|
445
471
|
@ID = id
|
|
446
472
|
@Name = name
|
|
447
473
|
@Type = type
|
|
@@ -461,6 +487,7 @@ module TencentCloud
|
|
|
461
487
|
@ActionFlag = actionflag
|
|
462
488
|
@LoginFlag = loginflag
|
|
463
489
|
@CheckStatus = checkstatus
|
|
490
|
+
@CloudType = cloudtype
|
|
464
491
|
end
|
|
465
492
|
|
|
466
493
|
def deserialize(params)
|
|
@@ -497,6 +524,7 @@ module TencentCloud
|
|
|
497
524
|
@ActionFlag = params['ActionFlag']
|
|
498
525
|
@LoginFlag = params['LoginFlag']
|
|
499
526
|
@CheckStatus = params['CheckStatus']
|
|
527
|
+
@CloudType = params['CloudType']
|
|
500
528
|
end
|
|
501
529
|
end
|
|
502
530
|
|
|
@@ -2838,10 +2866,12 @@ module TencentCloud
|
|
|
2838
2866
|
# @type ISP: String
|
|
2839
2867
|
# @param VpcInfo: 账号外vpc信息列表
|
|
2840
2868
|
# @type VpcInfo: Array
|
|
2869
|
+
# @param ReqClient: 调用请求客户端列表
|
|
2870
|
+
# @type ReqClient: Array
|
|
2841
2871
|
|
|
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
|
|
2872
|
+
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
2873
|
|
|
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)
|
|
2874
|
+
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
2875
|
@CallID = callid
|
|
2846
2876
|
@AccessKey = accesskey
|
|
2847
2877
|
@AccessKeyRemark = accesskeyremark
|
|
@@ -2867,6 +2897,7 @@ module TencentCloud
|
|
|
2867
2897
|
@ShowStatus = showstatus
|
|
2868
2898
|
@ISP = isp
|
|
2869
2899
|
@VpcInfo = vpcinfo
|
|
2900
|
+
@ReqClient = reqclient
|
|
2870
2901
|
end
|
|
2871
2902
|
|
|
2872
2903
|
def deserialize(params)
|
|
@@ -2902,6 +2933,7 @@ module TencentCloud
|
|
|
2902
2933
|
@VpcInfo << sourceipvpcinfo_tmp
|
|
2903
2934
|
end
|
|
2904
2935
|
end
|
|
2936
|
+
@ReqClient = params['ReqClient']
|
|
2905
2937
|
end
|
|
2906
2938
|
end
|
|
2907
2939
|
|
|
@@ -11816,6 +11848,7 @@ module TencentCloud
|
|
|
11816
11848
|
# @param Region: IP地域
|
|
11817
11849
|
# @type Region: String
|
|
11818
11850
|
# @param EventType: 调用方式
|
|
11851
|
+
# -1:未统计
|
|
11819
11852
|
# 0:控制台调用
|
|
11820
11853
|
# 1:API
|
|
11821
11854
|
# @type EventType: Integer
|
|
@@ -11845,10 +11878,15 @@ module TencentCloud
|
|
|
11845
11878
|
# @type ShowStatus: Boolean
|
|
11846
11879
|
# @param ISP: 运营商字段
|
|
11847
11880
|
# @type ISP: String
|
|
11881
|
+
# @param VpcInfo: 账号外vpc信息
|
|
11882
|
+
# @type VpcInfo: Array
|
|
11883
|
+
# @param CloudType: 云类型
|
|
11884
|
+
# 0为腾讯云
|
|
11885
|
+
# @type CloudType: Integer
|
|
11848
11886
|
|
|
11849
|
-
attr_accessor :ID, :SourceIP, :Remark, :AppID, :Region, :EventType, :IPType, :AccessKeyAlarmList, :AKInfo, :ActionCount, :LastAccessTime, :InstanceID, :InstanceName, :Uin, :Nickname, :ShowStatus, :ISP
|
|
11887
|
+
attr_accessor :ID, :SourceIP, :Remark, :AppID, :Region, :EventType, :IPType, :AccessKeyAlarmList, :AKInfo, :ActionCount, :LastAccessTime, :InstanceID, :InstanceName, :Uin, :Nickname, :ShowStatus, :ISP, :VpcInfo, :CloudType
|
|
11850
11888
|
|
|
11851
|
-
def initialize(id=nil, sourceip=nil, remark=nil, appid=nil, region=nil, eventtype=nil, iptype=nil, accesskeyalarmlist=nil, akinfo=nil, actioncount=nil, lastaccesstime=nil, instanceid=nil, instancename=nil, uin=nil, nickname=nil, showstatus=nil, isp=nil)
|
|
11889
|
+
def initialize(id=nil, sourceip=nil, remark=nil, appid=nil, region=nil, eventtype=nil, iptype=nil, accesskeyalarmlist=nil, akinfo=nil, actioncount=nil, lastaccesstime=nil, instanceid=nil, instancename=nil, uin=nil, nickname=nil, showstatus=nil, isp=nil, vpcinfo=nil, cloudtype=nil)
|
|
11852
11890
|
@ID = id
|
|
11853
11891
|
@SourceIP = sourceip
|
|
11854
11892
|
@Remark = remark
|
|
@@ -11866,6 +11904,8 @@ module TencentCloud
|
|
|
11866
11904
|
@Nickname = nickname
|
|
11867
11905
|
@ShowStatus = showstatus
|
|
11868
11906
|
@ISP = isp
|
|
11907
|
+
@VpcInfo = vpcinfo
|
|
11908
|
+
@CloudType = cloudtype
|
|
11869
11909
|
end
|
|
11870
11910
|
|
|
11871
11911
|
def deserialize(params)
|
|
@@ -11900,6 +11940,15 @@ module TencentCloud
|
|
|
11900
11940
|
@Nickname = params['Nickname']
|
|
11901
11941
|
@ShowStatus = params['ShowStatus']
|
|
11902
11942
|
@ISP = params['ISP']
|
|
11943
|
+
unless params['VpcInfo'].nil?
|
|
11944
|
+
@VpcInfo = []
|
|
11945
|
+
params['VpcInfo'].each do |i|
|
|
11946
|
+
sourceipvpcinfo_tmp = SourceIPVpcInfo.new
|
|
11947
|
+
sourceipvpcinfo_tmp.deserialize(i)
|
|
11948
|
+
@VpcInfo << sourceipvpcinfo_tmp
|
|
11949
|
+
end
|
|
11950
|
+
end
|
|
11951
|
+
@CloudType = params['CloudType']
|
|
11903
11952
|
end
|
|
11904
11953
|
end
|
|
11905
11954
|
|
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.1158
|
|
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-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -34,8 +34,8 @@ extensions: []
|
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
36
|
- lib/tencentcloud-sdk-csip.rb
|
|
37
|
-
- lib/v20221121/client.rb
|
|
38
37
|
- lib/v20221121/models.rb
|
|
38
|
+
- lib/v20221121/client.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|