tencentcloud-sdk-lke 3.0.1116 → 3.0.1122
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/client.rb +0 -24
- data/lib/v20231130/models.rb +26 -70
- 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: 7abe4e32f403f630f05f88dfc6dce6749b2360af
|
4
|
+
data.tar.gz: 1136b4e88312b929297faf170110ebf68e659cac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6f0aa68b2928eaba020618d36448a6dae277cecf172b317d72755b6363edb8ec741f5adb714acabf83848875464338da4fd3c74310a97068651661760419536
|
7
|
+
data.tar.gz: d421c926ad2a9d32e5efea7cfc4407c657469c61a445cbcb0849631b15336197bb798308fb8e21ffc040aea40257a08cb1ed16c0c10de27bcce9978e3471e5b3
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1122
|
data/lib/v20231130/client.rb
CHANGED
@@ -1567,30 +1567,6 @@ module TencentCloud
|
|
1567
1567
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1568
1568
|
end
|
1569
1569
|
|
1570
|
-
# 应用类型列表
|
1571
|
-
|
1572
|
-
# @param request: Request instance for ListAppCategory.
|
1573
|
-
# @type request: :class:`Tencentcloud::lke::V20231130::ListAppCategoryRequest`
|
1574
|
-
# @rtype: :class:`Tencentcloud::lke::V20231130::ListAppCategoryResponse`
|
1575
|
-
def ListAppCategory(request)
|
1576
|
-
body = send_request('ListAppCategory', request.serialize)
|
1577
|
-
response = JSON.parse(body)
|
1578
|
-
if response['Response'].key?('Error') == false
|
1579
|
-
model = ListAppCategoryResponse.new
|
1580
|
-
model.deserialize(response['Response'])
|
1581
|
-
model
|
1582
|
-
else
|
1583
|
-
code = response['Response']['Error']['Code']
|
1584
|
-
message = response['Response']['Error']['Message']
|
1585
|
-
reqid = response['Response']['RequestId']
|
1586
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1587
|
-
end
|
1588
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1589
|
-
raise e
|
1590
|
-
rescue StandardError => e
|
1591
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1592
|
-
end
|
1593
|
-
|
1594
1570
|
# 列表查询知识库容量详情
|
1595
1571
|
|
1596
1572
|
# @param request: Request instance for ListAppKnowledgeDetail.
|
data/lib/v20231130/models.rb
CHANGED
@@ -2047,18 +2047,29 @@ module TencentCloud
|
|
2047
2047
|
class CreateAttributeLabelResponse < TencentCloud::Common::AbstractModel
|
2048
2048
|
# @param AttrBizId: 标签ID
|
2049
2049
|
# @type AttrBizId: String
|
2050
|
+
# @param Labels: 标签值ID与名称
|
2051
|
+
# @type Labels: Array
|
2050
2052
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2051
2053
|
# @type RequestId: String
|
2052
2054
|
|
2053
|
-
attr_accessor :AttrBizId, :RequestId
|
2055
|
+
attr_accessor :AttrBizId, :Labels, :RequestId
|
2054
2056
|
|
2055
|
-
def initialize(attrbizid=nil, requestid=nil)
|
2057
|
+
def initialize(attrbizid=nil, labels=nil, requestid=nil)
|
2056
2058
|
@AttrBizId = attrbizid
|
2059
|
+
@Labels = labels
|
2057
2060
|
@RequestId = requestid
|
2058
2061
|
end
|
2059
2062
|
|
2060
2063
|
def deserialize(params)
|
2061
2064
|
@AttrBizId = params['AttrBizId']
|
2065
|
+
unless params['Labels'].nil?
|
2066
|
+
@Labels = []
|
2067
|
+
params['Labels'].each do |i|
|
2068
|
+
attributelabel_tmp = AttributeLabel.new
|
2069
|
+
attributelabel_tmp.deserialize(i)
|
2070
|
+
@Labels << attributelabel_tmp
|
2071
|
+
end
|
2072
|
+
end
|
2062
2073
|
@RequestId = params['RequestId']
|
2063
2074
|
end
|
2064
2075
|
end
|
@@ -6574,72 +6585,6 @@ module TencentCloud
|
|
6574
6585
|
end
|
6575
6586
|
end
|
6576
6587
|
|
6577
|
-
# ListAppCategory请求参数结构体
|
6578
|
-
class ListAppCategoryRequest < TencentCloud::Common::AbstractModel
|
6579
|
-
|
6580
|
-
|
6581
|
-
def initialize()
|
6582
|
-
end
|
6583
|
-
|
6584
|
-
def deserialize(params)
|
6585
|
-
end
|
6586
|
-
end
|
6587
|
-
|
6588
|
-
# ListAppCategory返回参数结构体
|
6589
|
-
class ListAppCategoryResponse < TencentCloud::Common::AbstractModel
|
6590
|
-
# @param List: 应用类型列表
|
6591
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6592
|
-
# @type List: Array
|
6593
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6594
|
-
# @type RequestId: String
|
6595
|
-
|
6596
|
-
attr_accessor :List, :RequestId
|
6597
|
-
|
6598
|
-
def initialize(list=nil, requestid=nil)
|
6599
|
-
@List = list
|
6600
|
-
@RequestId = requestid
|
6601
|
-
end
|
6602
|
-
|
6603
|
-
def deserialize(params)
|
6604
|
-
unless params['List'].nil?
|
6605
|
-
@List = []
|
6606
|
-
params['List'].each do |i|
|
6607
|
-
listappcategoryrspoption_tmp = ListAppCategoryRspOption.new
|
6608
|
-
listappcategoryrspoption_tmp.deserialize(i)
|
6609
|
-
@List << listappcategoryrspoption_tmp
|
6610
|
-
end
|
6611
|
-
end
|
6612
|
-
@RequestId = params['RequestId']
|
6613
|
-
end
|
6614
|
-
end
|
6615
|
-
|
6616
|
-
# 应用类型详情
|
6617
|
-
class ListAppCategoryRspOption < TencentCloud::Common::AbstractModel
|
6618
|
-
# @param Text: 类型名称
|
6619
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6620
|
-
# @type Text: String
|
6621
|
-
# @param Value: 类型值
|
6622
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6623
|
-
# @type Value: String
|
6624
|
-
# @param Logo: 类型log
|
6625
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
6626
|
-
# @type Logo: String
|
6627
|
-
|
6628
|
-
attr_accessor :Text, :Value, :Logo
|
6629
|
-
|
6630
|
-
def initialize(text=nil, value=nil, logo=nil)
|
6631
|
-
@Text = text
|
6632
|
-
@Value = value
|
6633
|
-
@Logo = logo
|
6634
|
-
end
|
6635
|
-
|
6636
|
-
def deserialize(params)
|
6637
|
-
@Text = params['Text']
|
6638
|
-
@Value = params['Value']
|
6639
|
-
@Logo = params['Logo']
|
6640
|
-
end
|
6641
|
-
end
|
6642
|
-
|
6643
6588
|
# ListAppKnowledgeDetail请求参数结构体
|
6644
6589
|
class ListAppKnowledgeDetailRequest < TencentCloud::Common::AbstractModel
|
6645
6590
|
# @param PageNumber: 页码
|
@@ -8637,18 +8582,29 @@ module TencentCloud
|
|
8637
8582
|
class ModifyAttributeLabelResponse < TencentCloud::Common::AbstractModel
|
8638
8583
|
# @param TaskId: 任务ID
|
8639
8584
|
# @type TaskId: String
|
8585
|
+
# @param Labels: 标签ID与名称
|
8586
|
+
# @type Labels: Array
|
8640
8587
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8641
8588
|
# @type RequestId: String
|
8642
8589
|
|
8643
|
-
attr_accessor :TaskId, :RequestId
|
8590
|
+
attr_accessor :TaskId, :Labels, :RequestId
|
8644
8591
|
|
8645
|
-
def initialize(taskid=nil, requestid=nil)
|
8592
|
+
def initialize(taskid=nil, labels=nil, requestid=nil)
|
8646
8593
|
@TaskId = taskid
|
8594
|
+
@Labels = labels
|
8647
8595
|
@RequestId = requestid
|
8648
8596
|
end
|
8649
8597
|
|
8650
8598
|
def deserialize(params)
|
8651
8599
|
@TaskId = params['TaskId']
|
8600
|
+
unless params['Labels'].nil?
|
8601
|
+
@Labels = []
|
8602
|
+
params['Labels'].each do |i|
|
8603
|
+
attributelabel_tmp = AttributeLabel.new
|
8604
|
+
attributelabel_tmp.deserialize(i)
|
8605
|
+
@Labels << attributelabel_tmp
|
8606
|
+
end
|
8607
|
+
end
|
8652
8608
|
@RequestId = params['RequestId']
|
8653
8609
|
end
|
8654
8610
|
end
|
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.1122
|
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-08-
|
11
|
+
date: 2025-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|