tencentcloud-sdk-cwp 3.0.684 → 3.0.685
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/v20180228/models.rb +58 -4
- 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: 265ca2614e522dc9be38ed84c2516e4b1450dd1f
|
4
|
+
data.tar.gz: 26e8840a7f65bd66cf5028798e568f71076c7d34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c765a3faac28a8bcd4f18d5763da515913e5c370db4b3cf976543f1c93746dd0886080211cc620549c267f8e6d0cfccacea2669e1848022b54cfe64f82dde93c
|
7
|
+
data.tar.gz: cd1f4914dfff4a8521906978f6d2c99922c858a205c623c59c3b6bbeed83394f5abd9d6e2894d06a61e3feda76c03baf2547b975378d55b60ae3a2297534b964
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.685
|
data/lib/v20180228/models.rb
CHANGED
@@ -6407,16 +6407,21 @@ module TencentCloud
|
|
6407
6407
|
|
6408
6408
|
# CreateScanMalwareSetting返回参数结构体
|
6409
6409
|
class CreateScanMalwareSettingResponse < TencentCloud::Common::AbstractModel
|
6410
|
+
# @param TaskId: 任务id
|
6411
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
6412
|
+
# @type TaskId: Integer
|
6410
6413
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
6411
6414
|
# @type RequestId: String
|
6412
6415
|
|
6413
|
-
attr_accessor :RequestId
|
6416
|
+
attr_accessor :TaskId, :RequestId
|
6414
6417
|
|
6415
|
-
def initialize(requestid=nil)
|
6418
|
+
def initialize(taskid=nil, requestid=nil)
|
6419
|
+
@TaskId = taskid
|
6416
6420
|
@RequestId = requestid
|
6417
6421
|
end
|
6418
6422
|
|
6419
6423
|
def deserialize(params)
|
6424
|
+
@TaskId = params['TaskId']
|
6420
6425
|
@RequestId = params['RequestId']
|
6421
6426
|
end
|
6422
6427
|
end
|
@@ -17185,16 +17190,37 @@ module TencentCloud
|
|
17185
17190
|
|
17186
17191
|
# DescribeLicenseWhiteConfig返回参数结构体
|
17187
17192
|
class DescribeLicenseWhiteConfigResponse < TencentCloud::Common::AbstractModel
|
17193
|
+
# @param FlagShip: 旗舰版 配置信息
|
17194
|
+
# @type FlagShip: :class:`Tencentcloud::Cwp.v20180228.models.VersionWhiteConfig`
|
17195
|
+
# @param Professional: 专业版 配置信息
|
17196
|
+
# @type Professional: :class:`Tencentcloud::Cwp.v20180228.models.VersionWhiteConfig`
|
17197
|
+
# @param PrattWhitney: 普惠版 配置信息
|
17198
|
+
# @type PrattWhitney: :class:`Tencentcloud::Cwp.v20180228.models.VersionWhiteConfig`
|
17188
17199
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
17189
17200
|
# @type RequestId: String
|
17190
17201
|
|
17191
|
-
attr_accessor :RequestId
|
17202
|
+
attr_accessor :FlagShip, :Professional, :PrattWhitney, :RequestId
|
17192
17203
|
|
17193
|
-
def initialize(requestid=nil)
|
17204
|
+
def initialize(flagship=nil, professional=nil, prattwhitney=nil, requestid=nil)
|
17205
|
+
@FlagShip = flagship
|
17206
|
+
@Professional = professional
|
17207
|
+
@PrattWhitney = prattwhitney
|
17194
17208
|
@RequestId = requestid
|
17195
17209
|
end
|
17196
17210
|
|
17197
17211
|
def deserialize(params)
|
17212
|
+
unless params['FlagShip'].nil?
|
17213
|
+
@FlagShip = VersionWhiteConfig.new
|
17214
|
+
@FlagShip.deserialize(params['FlagShip'])
|
17215
|
+
end
|
17216
|
+
unless params['Professional'].nil?
|
17217
|
+
@Professional = VersionWhiteConfig.new
|
17218
|
+
@Professional.deserialize(params['Professional'])
|
17219
|
+
end
|
17220
|
+
unless params['PrattWhitney'].nil?
|
17221
|
+
@PrattWhitney = VersionWhiteConfig.new
|
17222
|
+
@PrattWhitney.deserialize(params['PrattWhitney'])
|
17223
|
+
end
|
17198
17224
|
@RequestId = params['RequestId']
|
17199
17225
|
end
|
17200
17226
|
end
|
@@ -40583,6 +40609,34 @@ module TencentCloud
|
|
40583
40609
|
end
|
40584
40610
|
end
|
40585
40611
|
|
40612
|
+
# 授权版本白名单配置信息
|
40613
|
+
class VersionWhiteConfig < TencentCloud::Common::AbstractModel
|
40614
|
+
# @param Deadline: 到期天数
|
40615
|
+
# @type Deadline: Integer
|
40616
|
+
# @param LicenseNum: 授权数量
|
40617
|
+
# @type LicenseNum: Integer
|
40618
|
+
# @param IsApplyFor: 是否可申请
|
40619
|
+
# @type IsApplyFor: Boolean
|
40620
|
+
# @param SourceType: 类型
|
40621
|
+
# @type SourceType: Integer
|
40622
|
+
|
40623
|
+
attr_accessor :Deadline, :LicenseNum, :IsApplyFor, :SourceType
|
40624
|
+
|
40625
|
+
def initialize(deadline=nil, licensenum=nil, isapplyfor=nil, sourcetype=nil)
|
40626
|
+
@Deadline = deadline
|
40627
|
+
@LicenseNum = licensenum
|
40628
|
+
@IsApplyFor = isapplyfor
|
40629
|
+
@SourceType = sourcetype
|
40630
|
+
end
|
40631
|
+
|
40632
|
+
def deserialize(params)
|
40633
|
+
@Deadline = params['Deadline']
|
40634
|
+
@LicenseNum = params['LicenseNum']
|
40635
|
+
@IsApplyFor = params['IsApplyFor']
|
40636
|
+
@SourceType = params['SourceType']
|
40637
|
+
end
|
40638
|
+
end
|
40639
|
+
|
40586
40640
|
# 点详细信息
|
40587
40641
|
class VertexDetail < TencentCloud::Common::AbstractModel
|
40588
40642
|
# @param Type: 该节点类型,进程:1;网络:2;文件:3;ssh:4
|
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.
|
4
|
+
version: 3.0.685
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
+
- lib/tencentcloud-sdk-cwp.rb
|
36
37
|
- lib/v20180228/client.rb
|
37
38
|
- lib/v20180228/models.rb
|
38
|
-
- lib/tencentcloud-sdk-cwp.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|