tencentcloud-sdk-tcss 3.0.571 → 3.0.572
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/v20201101/models.rb +13 -4
- 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: f57ec22820cc2ad85ea93c56862eb110cce223bf
|
|
4
|
+
data.tar.gz: 92356f551bdbe6e4856ab7ddf2f5dda229babbba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 94598a4125e06538b43df1c72dd4f60a5239b37c58e211c6f2864118713c3a1485f337d97edd7eaccb3178e1b1296d926e06e9101dd10d169ae6558b4e7e637a
|
|
7
|
+
data.tar.gz: f227ddf2d0443c4107bc1f41bc6fe097ef2a54086e59be73d22eec5270b6e75beee6179d2d52d563b13297833a16dd1bae4fefc53d72ca6a4328f27c6925874a
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.572
|
data/lib/v20201101/models.rb
CHANGED
|
@@ -12980,12 +12980,15 @@ module TencentCloud
|
|
|
12980
12980
|
# @param Id: 自动以扫描镜像Id
|
|
12981
12981
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12982
12982
|
# @type Id: Array
|
|
12983
|
+
# @param Latest: 是否扫描最新版本镜像
|
|
12984
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
|
12985
|
+
# @type Latest: Boolean
|
|
12983
12986
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12984
12987
|
# @type RequestId: String
|
|
12985
12988
|
|
|
12986
|
-
attr_accessor :Enable, :ScanTime, :ScanPeriod, :ScanType, :All, :Images, :Id, :RequestId
|
|
12989
|
+
attr_accessor :Enable, :ScanTime, :ScanPeriod, :ScanType, :All, :Images, :Id, :Latest, :RequestId
|
|
12987
12990
|
|
|
12988
|
-
def initialize(enable=nil, scantime=nil, scanperiod=nil, scantype=nil, all=nil, images=nil, id=nil, requestid=nil)
|
|
12991
|
+
def initialize(enable=nil, scantime=nil, scanperiod=nil, scantype=nil, all=nil, images=nil, id=nil, latest=nil, requestid=nil)
|
|
12989
12992
|
@Enable = enable
|
|
12990
12993
|
@ScanTime = scantime
|
|
12991
12994
|
@ScanPeriod = scanperiod
|
|
@@ -12993,6 +12996,7 @@ module TencentCloud
|
|
|
12993
12996
|
@All = all
|
|
12994
12997
|
@Images = images
|
|
12995
12998
|
@Id = id
|
|
12999
|
+
@Latest = latest
|
|
12996
13000
|
@RequestId = requestid
|
|
12997
13001
|
end
|
|
12998
13002
|
|
|
@@ -13011,6 +13015,7 @@ module TencentCloud
|
|
|
13011
13015
|
end
|
|
13012
13016
|
end
|
|
13013
13017
|
@Id = params['Id']
|
|
13018
|
+
@Latest = params['Latest']
|
|
13014
13019
|
@RequestId = params['RequestId']
|
|
13015
13020
|
end
|
|
13016
13021
|
end
|
|
@@ -25433,10 +25438,12 @@ module TencentCloud
|
|
|
25433
25438
|
# @type All: Boolean
|
|
25434
25439
|
# @param Id: 扫描镜像Id
|
|
25435
25440
|
# @type Id: Array
|
|
25441
|
+
# @param Latest: 是否扫描最新版本
|
|
25442
|
+
# @type Latest: Boolean
|
|
25436
25443
|
|
|
25437
|
-
attr_accessor :ScanPeriod, :Enable, :ScanTime, :ScanType, :Images, :All, :Id
|
|
25444
|
+
attr_accessor :ScanPeriod, :Enable, :ScanTime, :ScanType, :Images, :All, :Id, :Latest
|
|
25438
25445
|
|
|
25439
|
-
def initialize(scanperiod=nil, enable=nil, scantime=nil, scantype=nil, images=nil, all=nil, id=nil)
|
|
25446
|
+
def initialize(scanperiod=nil, enable=nil, scantime=nil, scantype=nil, images=nil, all=nil, id=nil, latest=nil)
|
|
25440
25447
|
@ScanPeriod = scanperiod
|
|
25441
25448
|
@Enable = enable
|
|
25442
25449
|
@ScanTime = scantime
|
|
@@ -25444,6 +25451,7 @@ module TencentCloud
|
|
|
25444
25451
|
@Images = images
|
|
25445
25452
|
@All = all
|
|
25446
25453
|
@Id = id
|
|
25454
|
+
@Latest = latest
|
|
25447
25455
|
end
|
|
25448
25456
|
|
|
25449
25457
|
def deserialize(params)
|
|
@@ -25461,6 +25469,7 @@ module TencentCloud
|
|
|
25461
25469
|
end
|
|
25462
25470
|
@All = params['All']
|
|
25463
25471
|
@Id = params['Id']
|
|
25472
|
+
@Latest = params['Latest']
|
|
25464
25473
|
end
|
|
25465
25474
|
end
|
|
25466
25475
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-tcss
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.572
|
|
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-05-
|
|
11
|
+
date: 2023-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|