tencentcloud-sdk-tcss 1.0.255 → 1.0.259
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 +15 -6
- 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: 8b4aa2a1f197d0bbb870e7c650aa0066244d0025
|
4
|
+
data.tar.gz: b3efd39e2027f84dc2828a5813cdbf5cd4da5df2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5376a55fa6d63eeed60989f17c2f9d050db2d08eb37c7fe8ed5302e705fa22522fa6c30b65d1e12b7350964bb8141777b5174901e12e115ee97cae91807adef8
|
7
|
+
data.tar.gz: c5303ead0e507192e8c3cb5f8fa4fd1786fa5b9f544ff9ac851bfefbb8bc66b05a53c614acc2595df2a67b2f2164263933e8e1a55c17f411a54ba40b02f95d5b
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.259
|
data/lib/v20201101/models.rb
CHANGED
@@ -1826,15 +1826,20 @@ module TencentCloud
|
|
1826
1826
|
# @param ClusterName: K8S集群的名称。
|
1827
1827
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1828
1828
|
# @type ClusterName: String
|
1829
|
+
# @param ClusterVersion: K8S集群的版本。
|
1830
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1831
|
+
# @type ClusterVersion: String
|
1829
1832
|
|
1830
|
-
attr_accessor :ClusterName
|
1833
|
+
attr_accessor :ClusterName, :ClusterVersion
|
1831
1834
|
|
1832
|
-
def initialize(clustername=nil)
|
1835
|
+
def initialize(clustername=nil, clusterversion=nil)
|
1833
1836
|
@ClusterName = clustername
|
1837
|
+
@ClusterVersion = clusterversion
|
1834
1838
|
end
|
1835
1839
|
|
1836
1840
|
def deserialize(params)
|
1837
1841
|
@ClusterName = params['ClusterName']
|
1842
|
+
@ClusterVersion = params['ClusterVersion']
|
1838
1843
|
end
|
1839
1844
|
end
|
1840
1845
|
|
@@ -5073,15 +5078,19 @@ module TencentCloud
|
|
5073
5078
|
class DescribeAssetImageRegistryDetailRequest < TencentCloud::Common::AbstractModel
|
5074
5079
|
# @param Id: 仓库列表id
|
5075
5080
|
# @type Id: Integer
|
5081
|
+
# @param ImageId: 镜像ID
|
5082
|
+
# @type ImageId: String
|
5076
5083
|
|
5077
|
-
attr_accessor :Id
|
5084
|
+
attr_accessor :Id, :ImageId
|
5078
5085
|
|
5079
|
-
def initialize(id=nil)
|
5086
|
+
def initialize(id=nil, imageid=nil)
|
5080
5087
|
@Id = id
|
5088
|
+
@ImageId = imageid
|
5081
5089
|
end
|
5082
5090
|
|
5083
5091
|
def deserialize(params)
|
5084
5092
|
@Id = params['Id']
|
5093
|
+
@ImageId = params['ImageId']
|
5085
5094
|
end
|
5086
5095
|
end
|
5087
5096
|
|
@@ -10359,7 +10368,7 @@ module TencentCloud
|
|
10359
10368
|
class DescribeVirusTaskListResponse < TencentCloud::Common::AbstractModel
|
10360
10369
|
# @param List: 文件查杀列表
|
10361
10370
|
# @type List: Array
|
10362
|
-
# @param TotalCount: 总数量
|
10371
|
+
# @param TotalCount: 总数量(容器任务数量)
|
10363
10372
|
# @type TotalCount: Integer
|
10364
10373
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
10365
10374
|
# @type RequestId: String
|
@@ -12343,7 +12352,7 @@ module TencentCloud
|
|
12343
12352
|
# @type EnableScan: Boolean
|
12344
12353
|
# @param ScanPathAll: 扫描全部路径
|
12345
12354
|
# @type ScanPathAll: Boolean
|
12346
|
-
# @param ScanPathType: 当ScanPathAll为true 生效 0扫描以下路径 1、扫描除以下路径
|
12355
|
+
# @param ScanPathType: 当ScanPathAll为true 生效 0扫描以下路径 1、扫描除以下路径(扫描范围只能小于等于1)
|
12347
12356
|
# @type ScanPathType: Integer
|
12348
12357
|
# @param ScanPath: 自选排除或扫描的地址
|
12349
12358
|
# @type ScanPath: Array
|
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: 1.0.
|
4
|
+
version: 1.0.259
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-02-
|
11
|
+
date: 2022-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|