tencentcloud-sdk-cwp 3.0.934 → 3.0.935

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 31039c6500f45f1211f5a3e944a9200603e0c60b
4
- data.tar.gz: 17a6af6dd0a324463d069ed8258ab8027002f637
3
+ metadata.gz: 3b730fb1f103b939288e7278fbf1d2c6a7625b1b
4
+ data.tar.gz: b326a2fb07f872661e2201d4f44d163d870cd501
5
5
  SHA512:
6
- metadata.gz: f06888adc6fd07a9bd8237fecbc0e9c4069f821409428e2c86ca499ffdea038a58bfa55561d4e31139b66e3b45bb62664f065bb48870a1e69501393db504cc32
7
- data.tar.gz: 0b992d30891f41a9fb1d559963fb5812c39568591dd7cfb1b89b3578b11963a7a05a711a0020439a17a13540ce0040edf94bb4aef698e034836bcfb33511f205
6
+ metadata.gz: c05e928e18f6ea9c7ffbda3c4aecd1edba83bb15cbeea4e85c9bc057ae8fad26db4e3df4bfa7b8ac9046c55ff0dbeb0bb7f1a2383e8a117f16f749ed4da3fc85
7
+ data.tar.gz: d2b6e4bbe01d90bbb509177f793d72f71e22dad51801c2d16ac4bb0d4a2ce597b1a4591bd84446ea9b03d5590b80d4f860ecedc76021f5eccf4c553e1a49a963
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.934
1
+ 3.0.935
@@ -4242,6 +4242,8 @@ module TencentCloud
4242
4242
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
4243
4243
  end
4244
4244
 
4245
+ # 接口已无效
4246
+
4245
4247
  # 本接口 (DescribeComponentStatistics) 用于获取组件统计列表数据。
4246
4248
 
4247
4249
  # @param request: Request instance for DescribeComponentStatistics.
@@ -3055,7 +3055,6 @@ module TencentCloud
3055
3055
  # @param ParentCategoryId: 父分类ID,如果为0则没有父分类
3056
3056
  # @type ParentCategoryId: Integer
3057
3057
  # @param ItemCount: 子分类下检测项总数
3058
- # 注意:此字段可能返回 null,表示取不到有效值。
3059
3058
  # @type ItemCount: Integer
3060
3059
 
3061
3060
  attr_accessor :CategoryId, :CategoryName, :ParentCategoryId, :ItemCount
@@ -3078,10 +3077,8 @@ module TencentCloud
3078
3077
  # 基线自定规则ID和名字
3079
3078
  class BaselineCustomRuleIdName < TencentCloud::Common::AbstractModel
3080
3079
  # @param RuleId: 自定义规则ID
3081
- # 注意:此字段可能返回 null,表示取不到有效值。
3082
3080
  # @type RuleId: Integer
3083
3081
  # @param RuleName: 自定义规则名字
3084
- # 注意:此字段可能返回 null,表示取不到有效值。
3085
3082
  # @type RuleName: String
3086
3083
 
3087
3084
  attr_accessor :RuleId, :RuleName
@@ -3263,10 +3260,8 @@ module TencentCloud
3263
3260
  # 服务器风险Top的主机信息
3264
3261
  class BaselineEventLevelInfo < TencentCloud::Common::AbstractModel
3265
3262
  # @param EventLevel: 危害等级:1-低危;2-中危;3-高危;4-严重
3266
- # 注意:此字段可能返回 null,表示取不到有效值。
3267
3263
  # @type EventLevel: Integer
3268
3264
  # @param EventCount: 漏洞数量
3269
- # 注意:此字段可能返回 null,表示取不到有效值。
3270
3265
  # @type EventCount: Integer
3271
3266
 
3272
3267
  attr_accessor :EventLevel, :EventCount
@@ -5194,9 +5189,13 @@ module TencentCloud
5194
5189
  # @type DomainPort: Integer
5195
5190
  # @param Vip: 虚拟ip
5196
5191
  # @type Vip: String
5197
- # @param VipType: 虚拟ip类型
5192
+ # @param VipType: 虚拟ip类型1:外网TGW 2:基础网络 3:VPC网络 4:支撑网络(标准版) 5:SSL外网访问方式访问 6:黑石环境vpc 7:支撑网络(专业版)
5198
5193
  # @type VipType: Integer
5199
5194
  # @param AccessType: 接入类型
5195
+ # 0:PLAINTEXT (明文方式,没有带用户信息老版本及社区版本都支持)
5196
+ # 1:SASL_PLAINTEXT(明文方式,不过在数据开始时,会通过SASL方式登录鉴权,仅社区版本支持)
5197
+ # 2:SSL(SSL加密通信,没有带用户信息,老版本及社区版本都支持)
5198
+ # 3:SASL_SSL(SSL加密通信,在数据开始时,会通过SASL方式登录鉴权,仅社区版本支持)
5200
5199
  # @type AccessType: Integer
5201
5200
 
5202
5201
  attr_accessor :RouteID, :Domain, :DomainPort, :Vip, :VipType, :AccessType
@@ -7582,15 +7581,19 @@ module TencentCloud
7582
7581
  class DeleteMalwaresRequest < TencentCloud::Common::AbstractModel
7583
7582
  # @param Ids: 木马记录ID数组 (最大100条)
7584
7583
  # @type Ids: Array
7584
+ # @param All: 是否删除全部
7585
+ # @type All: Boolean
7585
7586
 
7586
- attr_accessor :Ids
7587
+ attr_accessor :Ids, :All
7587
7588
 
7588
- def initialize(ids=nil)
7589
+ def initialize(ids=nil, all=nil)
7589
7590
  @Ids = ids
7591
+ @All = all
7590
7592
  end
7591
7593
 
7592
7594
  def deserialize(params)
7593
7595
  @Ids = params['Ids']
7596
+ @All = params['All']
7594
7597
  end
7595
7598
  end
7596
7599
 
@@ -7690,15 +7693,19 @@ module TencentCloud
7690
7693
  class DeletePrivilegeEventsRequest < TencentCloud::Common::AbstractModel
7691
7694
  # @param Ids: ID数组. (最大100条)
7692
7695
  # @type Ids: Array
7696
+ # @param All: 是否删除全部
7697
+ # @type All: Boolean
7693
7698
 
7694
- attr_accessor :Ids
7699
+ attr_accessor :Ids, :All
7695
7700
 
7696
- def initialize(ids=nil)
7701
+ def initialize(ids=nil, all=nil)
7697
7702
  @Ids = ids
7703
+ @All = all
7698
7704
  end
7699
7705
 
7700
7706
  def deserialize(params)
7701
7707
  @Ids = params['Ids']
7708
+ @All = params['All']
7702
7709
  end
7703
7710
  end
7704
7711
 
@@ -17200,16 +17207,20 @@ module TencentCloud
17200
17207
 
17201
17208
  # DescribeLicense返回参数结构体
17202
17209
  class DescribeLicenseResponse < TencentCloud::Common::AbstractModel
17210
+ # @param FunctionsEn: 支持功能
17211
+ # @type FunctionsEn: Array
17203
17212
  # @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17204
17213
  # @type RequestId: String
17205
17214
 
17206
- attr_accessor :RequestId
17215
+ attr_accessor :FunctionsEn, :RequestId
17207
17216
 
17208
- def initialize(requestid=nil)
17217
+ def initialize(functionsen=nil, requestid=nil)
17218
+ @FunctionsEn = functionsen
17209
17219
  @RequestId = requestid
17210
17220
  end
17211
17221
 
17212
17222
  def deserialize(params)
17223
+ @FunctionsEn = params['FunctionsEn']
17213
17224
  @RequestId = params['RequestId']
17214
17225
  end
17215
17226
  end
@@ -30436,7 +30447,6 @@ module TencentCloud
30436
30447
  # <li>read 读取文件</li>
30437
30448
  # <li>write 修改文件</li>
30438
30449
  # <li>read-write 读取修改文件</li>
30439
- # 注意:此字段可能返回 null,表示取不到有效值。
30440
30450
  # @type FileAction: String
30441
30451
 
30442
30452
  attr_accessor :ProcessPath, :Target, :Action, :FileAction
@@ -30874,9 +30884,9 @@ module TencentCloud
30874
30884
 
30875
30885
  # 添加登录审计白名单的主机信息实体
30876
30886
  class HostInfo < TencentCloud::Common::AbstractModel
30877
- # @param Quuid: Quuid
30887
+ # @param Quuid: 主机Quuid
30878
30888
  # @type Quuid: String
30879
- # @param Uuid: Uuid
30889
+ # @param Uuid: Uuid主机
30880
30890
  # @type Uuid: String
30881
30891
 
30882
30892
  attr_accessor :Quuid, :Uuid
@@ -31117,40 +31127,28 @@ module TencentCloud
31117
31127
  # 主机与主机标签信息
31118
31128
  class HostTagInfo < TencentCloud::Common::AbstractModel
31119
31129
  # @param Quuid: 主机Quuid
31120
- # 注意:此字段可能返回 null,表示取不到有效值。
31121
31130
  # @type Quuid: String
31122
31131
  # @param TagList: 主机标签名数组
31123
- # 注意:此字段可能返回 null,表示取不到有效值。
31124
31132
  # @type TagList: Array
31125
31133
  # @param HostIp: 主机内网Ip
31126
- # 注意:此字段可能返回 null,表示取不到有效值。
31127
31134
  # @type HostIp: String
31128
31135
  # @param AliasName: 主机名
31129
- # 注意:此字段可能返回 null,表示取不到有效值。
31130
31136
  # @type AliasName: String
31131
31137
  # @param MachineWanIp: 主机公网ip
31132
- # 注意:此字段可能返回 null,表示取不到有效值。
31133
31138
  # @type MachineWanIp: String
31134
31139
  # @param Uuid: 主机uuid
31135
- # 注意:此字段可能返回 null,表示取不到有效值。
31136
31140
  # @type Uuid: String
31137
31141
  # @param KernelVersion: 内核版本号
31138
- # 注意:此字段可能返回 null,表示取不到有效值。
31139
31142
  # @type KernelVersion: String
31140
31143
  # @param MachineStatus: 主机在线状态 ONLINE,OFFLINE
31141
- # 注意:此字段可能返回 null,表示取不到有效值。
31142
31144
  # @type MachineStatus: String
31143
31145
  # @param ProtectType: 防护版本 BASIC_VERSION 基础版, PRO_VERSION 专业版 Flagship 旗舰版
31144
- # 注意:此字段可能返回 null,表示取不到有效值。
31145
31146
  # @type ProtectType: String
31146
31147
  # @param VulNum: 漏洞数
31147
- # 注意:此字段可能返回 null,表示取不到有效值。
31148
31148
  # @type VulNum: Integer
31149
31149
  # @param CloudTags: 云标签信息
31150
- # 注意:此字段可能返回 null,表示取不到有效值。
31151
31150
  # @type CloudTags: Array
31152
31151
  # @param InstanceID: 主机instance ID
31153
- # 注意:此字段可能返回 null,表示取不到有效值。
31154
31152
  # @type InstanceID: String
31155
31153
 
31156
31154
  attr_accessor :Quuid, :TagList, :HostIp, :AliasName, :MachineWanIp, :Uuid, :KernelVersion, :MachineStatus, :ProtectType, :VulNum, :CloudTags, :InstanceID
@@ -31265,25 +31263,18 @@ module TencentCloud
31265
31263
  # 忽略检测项影响主机信息
31266
31264
  class IgnoreRuleEffectHostInfo < TencentCloud::Common::AbstractModel
31267
31265
  # @param HostName: 主机名称
31268
- # 注意:此字段可能返回 null,表示取不到有效值。
31269
31266
  # @type HostName: String
31270
31267
  # @param Level: 危害等级:1-低位,2-中危,3-高危,4-严重
31271
- # 注意:此字段可能返回 null,表示取不到有效值。
31272
31268
  # @type Level: Integer
31273
31269
  # @param TagList: 主机标签数组
31274
- # 注意:此字段可能返回 null,表示取不到有效值。
31275
31270
  # @type TagList: Array
31276
31271
  # @param Status: 状态:0-未通过,1-忽略,3-已通过,5-检测中
31277
- # 注意:此字段可能返回 null,表示取不到有效值。
31278
31272
  # @type Status: Integer
31279
31273
  # @param LastScanTime: 最后检测时间
31280
- # 注意:此字段可能返回 null,表示取不到有效值。
31281
31274
  # @type LastScanTime: String
31282
31275
  # @param EventId: 事件id
31283
- # 注意:此字段可能返回 null,表示取不到有效值。
31284
31276
  # @type EventId: Integer
31285
31277
  # @param Quuid: 主机quuid
31286
- # 注意:此字段可能返回 null,表示取不到有效值。
31287
31278
  # @type Quuid: String
31288
31279
 
31289
31280
  attr_accessor :HostName, :Level, :TagList, :Status, :LastScanTime, :EventId, :Quuid
@@ -31355,10 +31346,8 @@ module TencentCloud
31355
31346
  # @param ItemName: 名称
31356
31347
  # @type ItemName: String
31357
31348
  # @param CustomItemValues: 自定义阈值
31358
- # 注意:此字段可能返回 null,表示取不到有效值。
31359
31349
  # @type CustomItemValues: Array
31360
31350
  # @param CategoryId: 检测项所属分类
31361
- # 注意:此字段可能返回 null,表示取不到有效值。
31362
31351
  # @type CategoryId: Integer
31363
31352
 
31364
31353
  attr_accessor :ItemId, :ItemName, :CustomItemValues, :CategoryId
@@ -32256,24 +32245,18 @@ module TencentCloud
32256
32245
  # @param ProtectType: 防护版本:BASIC_VERSION 基础版, PRO_VERSION 专业版,Flagship 旗舰版,GENERAL_DISCOUNT 普惠版
32257
32246
  # @type ProtectType: String
32258
32247
  # @param CloudTags: 云标签信息
32259
- # 注意:此字段可能返回 null,表示取不到有效值。
32260
32248
  # @type CloudTags: Array
32261
32249
  # @param IsAddedOnTheFifteen: 是否15天内新增的主机 0:非15天内新增的主机,1:15天内增加的主机
32262
- # 注意:此字段可能返回 null,表示取不到有效值。
32263
32250
  # @type IsAddedOnTheFifteen: Integer
32264
32251
  # @param IpList: 主机ip列表
32265
- # 注意:此字段可能返回 null,表示取不到有效值。
32266
32252
  # @type IpList: String
32267
32253
  # @param VpcId: 所属网络
32268
- # 注意:此字段可能返回 null,表示取不到有效值。
32269
32254
  # @type VpcId: String
32270
32255
  # @param MachineExtraInfo: 附加信息
32271
- # 注意:此字段可能返回 null,表示取不到有效值。
32272
32256
  # @type MachineExtraInfo: :class:`Tencentcloud::Cwp.v20180228.models.MachineExtraInfo`
32273
32257
  # @param InstanceId: 实例ID
32274
32258
  # @type InstanceId: String
32275
32259
  # @param Remark: 备注信息
32276
- # 注意:此字段可能返回 null,表示取不到有效值。
32277
32260
  # @type Remark: String
32278
32261
 
32279
32262
  attr_accessor :MachineName, :MachineOs, :MachineStatus, :Uuid, :Quuid, :VulNum, :MachineIp, :IsProVersion, :MachineWanIp, :PayMode, :MalwareNum, :Tag, :BaselineNum, :CyberAttackNum, :SecurityStatus, :InvasionNum, :RegionInfo, :InstanceState, :LicenseStatus, :ProjectId, :HasAssetScan, :MachineType, :KernelVersion, :ProtectType, :CloudTags, :IsAddedOnTheFifteen, :IpList, :VpcId, :MachineExtraInfo, :InstanceId, :Remark
@@ -32410,22 +32393,16 @@ module TencentCloud
32410
32393
  # 服务器基础信息
32411
32394
  class MachineExtraInfo < TencentCloud::Common::AbstractModel
32412
32395
  # @param WanIP: 公网IP
32413
- # 注意:此字段可能返回 null,表示取不到有效值。
32414
32396
  # @type WanIP: String
32415
32397
  # @param PrivateIP: 内网IP
32416
- # 注意:此字段可能返回 null,表示取不到有效值。
32417
32398
  # @type PrivateIP: String
32418
32399
  # @param NetworkType: 网络类型,1:vpc网络 2:基础网络 3:非腾讯云网络
32419
- # 注意:此字段可能返回 null,表示取不到有效值。
32420
32400
  # @type NetworkType: Integer
32421
32401
  # @param NetworkName: 网络名,vpc网络情况下会返回vpc_id
32422
- # 注意:此字段可能返回 null,表示取不到有效值。
32423
32402
  # @type NetworkName: String
32424
32403
  # @param InstanceID: 实例ID
32425
- # 注意:此字段可能返回 null,表示取不到有效值。
32426
32404
  # @type InstanceID: String
32427
32405
  # @param HostName: 主机名
32428
- # 注意:此字段可能返回 null,表示取不到有效值。
32429
32406
  # @type HostName: String
32430
32407
 
32431
32408
  attr_accessor :WanIP, :PrivateIP, :NetworkType, :NetworkName, :InstanceID, :HostName
@@ -36289,16 +36266,12 @@ module TencentCloud
36289
36266
  # 登录地信息
36290
36267
  class Place < TencentCloud::Common::AbstractModel
36291
36268
  # @param CityId: 城市 ID。
36292
- # 注意:此字段可能返回 null,表示取不到有效值。
36293
36269
  # @type CityId: Integer
36294
36270
  # @param ProvinceId: 省份 ID。
36295
- # 注意:此字段可能返回 null,表示取不到有效值。
36296
36271
  # @type ProvinceId: Integer
36297
36272
  # @param CountryId: 国家ID,暂只支持国内:1。
36298
- # 注意:此字段可能返回 null,表示取不到有效值。
36299
36273
  # @type CountryId: Integer
36300
36274
  # @param Location: 位置名称
36301
- # 注意:此字段可能返回 null,表示取不到有效值。
36302
36275
  # @type Location: String
36303
36276
 
36304
36277
  attr_accessor :CityId, :ProvinceId, :CountryId, :Location
@@ -36828,10 +36801,8 @@ module TencentCloud
36828
36801
  # @param FileType: 文件类型 0-常规文件;1-目录;2-软链
36829
36802
  # @type FileType: Integer
36830
36803
  # @param MachineExtraInfo: 主机额外信息
36831
- # 注意:此字段可能返回 null,表示取不到有效值。
36832
36804
  # @type MachineExtraInfo: :class:`Tencentcloud::Cwp.v20180228.models.MachineExtraInfo`
36833
36805
  # @param Quuid: 机器实例uuid
36834
- # 注意:此字段可能返回 null,表示取不到有效值。
36835
36806
  # @type Quuid: String
36836
36807
 
36837
36808
  attr_accessor :HostName, :HostIp, :EventDir, :EventType, :EventStatus, :CreateTime, :RestoreTime, :Id, :FileType, :MachineExtraInfo, :Quuid
@@ -39375,7 +39346,6 @@ module TencentCloud
39375
39346
  # @param CoreVersion: 内核版本
39376
39347
  # @type CoreVersion: String
39377
39348
  # @param MachineExtraInfo: 附加信息
39378
- # 注意:此字段可能返回 null,表示取不到有效值。
39379
39349
  # @type MachineExtraInfo: :class:`Tencentcloud::Cwp.v20180228.models.MachineExtraInfo`
39380
39350
 
39381
39351
  attr_accessor :MachineName, :MachineOs, :Uuid, :MachineStatus, :Quuid, :VulNum, :MachineIp, :MachineWanIp, :BaselineNum, :CyberAttackNum, :SecurityStatus, :InvasionNum, :MachineType, :CpuLoad, :CpuSize, :DiskLoad, :DiskSize, :MemLoad, :MemSize, :CoreVersion, :MachineExtraInfo
@@ -41072,32 +41042,24 @@ module TencentCloud
41072
41042
  # @param IsLeaf: 是否叶子
41073
41043
  # @type IsLeaf: Boolean
41074
41044
  # @param ProcNamePrefix: 进程名,当Type=1时使用
41075
- # 注意:此字段可能返回 null,表示取不到有效值。
41076
41045
  # @type ProcNamePrefix: String
41077
41046
  # @param ProcNameMd5: 进程名md5,当Type=1时使用
41078
- # 注意:此字段可能返回 null,表示取不到有效值。
41079
41047
  # @type ProcNameMd5: String
41080
41048
  # @param CmdLinePrefix: 命令行,当Type=1时使用
41081
- # 注意:此字段可能返回 null,表示取不到有效值。
41082
41049
  # @type CmdLinePrefix: String
41083
41050
  # @param CmdLineMd5: 命令行md5,当Type=1时使用
41084
- # 注意:此字段可能返回 null,表示取不到有效值。
41085
41051
  # @type CmdLineMd5: String
41086
41052
  # @param FilePathPrefix: 文件路径,当Type=3时使用
41087
- # 注意:此字段可能返回 null,表示取不到有效值。
41088
41053
  # @type FilePathPrefix: String
41089
41054
  # @param AddressPrefix: 请求目的地址,当Type=2时使用
41090
- # 注意:此字段可能返回 null,表示取不到有效值。
41091
41055
  # @type AddressPrefix: String
41092
41056
  # @param IsWeDetect: 是否漏洞节点
41093
41057
  # @type IsWeDetect: Boolean
41094
41058
  # @param IsAlarm: 是否告警节点
41095
41059
  # @type IsAlarm: Boolean
41096
41060
  # @param FilePathMd5: 文件路径md5,当Type=3时使用
41097
- # 注意:此字段可能返回 null,表示取不到有效值。
41098
41061
  # @type FilePathMd5: String
41099
41062
  # @param AddressMd5: 请求目的地址md5,当Type=2时使用
41100
- # 注意:此字段可能返回 null,表示取不到有效值。
41101
41063
  # @type AddressMd5: String
41102
41064
 
41103
41065
  attr_accessor :Type, :Vid, :ParentVid, :IsLeaf, :ProcNamePrefix, :ProcNameMd5, :CmdLinePrefix, :CmdLineMd5, :FilePathPrefix, :AddressPrefix, :IsWeDetect, :IsAlarm, :FilePathMd5, :AddressMd5
@@ -41751,7 +41713,6 @@ module TencentCloud
41751
41713
  # @param ModifyTime: 修复时间
41752
41714
  # @type ModifyTime: String
41753
41715
  # @param FailReason: 修复失败原因
41754
- # 注意:此字段可能返回 null,表示取不到有效值。
41755
41716
  # @type FailReason: String
41756
41717
 
41757
41718
  attr_accessor :HostName, :HostIp, :Quuid, :Status, :ModifyTime, :FailReason
@@ -41944,25 +41905,18 @@ module TencentCloud
41944
41905
  # 批量修复漏洞二次弹窗
41945
41906
  class VulInfoHostInfo < TencentCloud::Common::AbstractModel
41946
41907
  # @param HostName: 主机名
41947
- # 注意:此字段可能返回 null,表示取不到有效值。
41948
41908
  # @type HostName: String
41949
41909
  # @param HostIp: 主机ip
41950
- # 注意:此字段可能返回 null,表示取不到有效值。
41951
41910
  # @type HostIp: String
41952
41911
  # @param Tags: 主机标签
41953
- # 注意:此字段可能返回 null,表示取不到有效值。
41954
41912
  # @type Tags: Array
41955
41913
  # @param Quuid: 主机quuid
41956
- # 注意:此字段可能返回 null,表示取不到有效值。
41957
41914
  # @type Quuid: String
41958
41915
  # @param IsSupportAutoFix: 0 :漏洞不可自动修复, 1:可自动修复, 2:客户端已离线, 3:主机不是旗舰版只能手动修复, 4:机型不允许 ,5:修复中 ,6:已修复, 7:检测中, 9:修复失败, 10:已忽略 ,11:漏洞只支持linux不支持Windows, 12:漏洞只支持Windows不支持linux
41959
- # 注意:此字段可能返回 null,表示取不到有效值。
41960
41916
  # @type IsSupportAutoFix: Integer
41961
41917
  # @param Uuid: 主机uuid
41962
- # 注意:此字段可能返回 null,表示取不到有效值。
41963
41918
  # @type Uuid: String
41964
41919
  # @param InstanceId: 主机InstanceId
41965
- # 注意:此字段可能返回 null,表示取不到有效值。
41966
41920
  # @type InstanceId: String
41967
41921
 
41968
41922
  attr_accessor :HostName, :HostIp, :Tags, :Quuid, :IsSupportAutoFix, :Uuid, :InstanceId
@@ -42362,10 +42316,8 @@ module TencentCloud
42362
42316
  # 自定义透传字段结构
42363
42317
  class WebHookCustomField < TencentCloud::Common::AbstractModel
42364
42318
  # @param Key: key
42365
- # 注意:此字段可能返回 null,表示取不到有效值。
42366
42319
  # @type Key: String
42367
42320
  # @param Value: value
42368
- # 注意:此字段可能返回 null,表示取不到有效值。
42369
42321
  # @type Value: String
42370
42322
 
42371
42323
  attr_accessor :Key, :Value
@@ -42514,13 +42466,10 @@ module TencentCloud
42514
42466
  # 告警接收人
42515
42467
  class WebHookReceiver < TencentCloud::Common::AbstractModel
42516
42468
  # @param Id: id
42517
- # 注意:此字段可能返回 null,表示取不到有效值。
42518
42469
  # @type Id: Integer
42519
42470
  # @param Name: 接收人名称
42520
- # 注意:此字段可能返回 null,表示取不到有效值。
42521
42471
  # @type Name: String
42522
42472
  # @param Addr: webhook地址
42523
- # 注意:此字段可能返回 null,表示取不到有效值。
42524
42473
  # @type Addr: String
42525
42474
 
42526
42475
  attr_accessor :Id, :Name, :Addr
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cwp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.934
4
+ version: 3.0.935
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-31 00:00:00.000000000 Z
11
+ date: 2024-11-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common