tencentcloud-sdk-lke 3.0.1089 → 3.0.1090
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/v20231130/models.rb +13 -5
- 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: 8bc8355dd3e636d24cb7f917c4a5a1b17953fee7
|
4
|
+
data.tar.gz: 133538986351768243c361e8e5f6beafc5fd1450
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 323fb20fb2bafaafa01ffdb1d9021cb2aa80304a64b4f7edff2ea521841d11f65e601e68e044b934cef70d166c878d55cca8e9aa69dbbda49d489873f7c56293
|
7
|
+
data.tar.gz: 8f565f01356e7d3782d2edb3b2b1045dabbd6111a3f3068f786811160168b7f3c6a1463d13a0c5fcade35321ef1bdda91253061f3687bd7e005884f675dd4779
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1090
|
data/lib/v20231130/models.rb
CHANGED
@@ -6304,19 +6304,23 @@ module TencentCloud
|
|
6304
6304
|
# @param Proportion: 当前应用对于总用量的占比
|
6305
6305
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6306
6306
|
# @type Proportion: Float
|
6307
|
+
# @param KnowledgeType: 知识库类型:0默认1共享
|
6308
|
+
# @type KnowledgeType: Integer
|
6307
6309
|
|
6308
|
-
attr_accessor :AppName, :UsedCharSize, :Proportion
|
6310
|
+
attr_accessor :AppName, :UsedCharSize, :Proportion, :KnowledgeType
|
6309
6311
|
|
6310
|
-
def initialize(appname=nil, usedcharsize=nil, proportion=nil)
|
6312
|
+
def initialize(appname=nil, usedcharsize=nil, proportion=nil, knowledgetype=nil)
|
6311
6313
|
@AppName = appname
|
6312
6314
|
@UsedCharSize = usedcharsize
|
6313
6315
|
@Proportion = proportion
|
6316
|
+
@KnowledgeType = knowledgetype
|
6314
6317
|
end
|
6315
6318
|
|
6316
6319
|
def deserialize(params)
|
6317
6320
|
@AppName = params['AppName']
|
6318
6321
|
@UsedCharSize = params['UsedCharSize']
|
6319
6322
|
@Proportion = params['Proportion']
|
6323
|
+
@KnowledgeType = params['KnowledgeType']
|
6320
6324
|
end
|
6321
6325
|
end
|
6322
6326
|
|
@@ -6334,18 +6338,21 @@ module TencentCloud
|
|
6334
6338
|
# @param ExceedCharSize: 超量字符数
|
6335
6339
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6336
6340
|
# @type ExceedCharSize: String
|
6337
|
-
# @param IsSharedKnowledge:
|
6341
|
+
# @param IsSharedKnowledge: 废弃
|
6338
6342
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6339
6343
|
# @type IsSharedKnowledge: Boolean
|
6344
|
+
# @param KnowledgeType: 知识库类型:0默认1共享
|
6345
|
+
# @type KnowledgeType: Integer
|
6340
6346
|
|
6341
|
-
attr_accessor :AppName, :UsedCharSize, :Proportion, :ExceedCharSize, :IsSharedKnowledge
|
6347
|
+
attr_accessor :AppName, :UsedCharSize, :Proportion, :ExceedCharSize, :IsSharedKnowledge, :KnowledgeType
|
6342
6348
|
|
6343
|
-
def initialize(appname=nil, usedcharsize=nil, proportion=nil, exceedcharsize=nil, issharedknowledge=nil)
|
6349
|
+
def initialize(appname=nil, usedcharsize=nil, proportion=nil, exceedcharsize=nil, issharedknowledge=nil, knowledgetype=nil)
|
6344
6350
|
@AppName = appname
|
6345
6351
|
@UsedCharSize = usedcharsize
|
6346
6352
|
@Proportion = proportion
|
6347
6353
|
@ExceedCharSize = exceedcharsize
|
6348
6354
|
@IsSharedKnowledge = issharedknowledge
|
6355
|
+
@KnowledgeType = knowledgetype
|
6349
6356
|
end
|
6350
6357
|
|
6351
6358
|
def deserialize(params)
|
@@ -6354,6 +6361,7 @@ module TencentCloud
|
|
6354
6361
|
@Proportion = params['Proportion']
|
6355
6362
|
@ExceedCharSize = params['ExceedCharSize']
|
6356
6363
|
@IsSharedKnowledge = params['IsSharedKnowledge']
|
6364
|
+
@KnowledgeType = params['KnowledgeType']
|
6357
6365
|
end
|
6358
6366
|
end
|
6359
6367
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-lke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1090
|
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-06-
|
11
|
+
date: 2025-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|