tencentcloud-sdk-tcss 3.0.925 → 3.0.926
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 +65 -16
- 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: 9812e3157c6c57d7e01eecc8cddd6446aee1e768
|
4
|
+
data.tar.gz: 6c0b0584b350ad3654c77a39f64e3899e66084cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1037aa4966974137a710d06bc8614a82c2cd6a5669cdd9290caaa910b199576d63942d83de64abcfea26a87bbf67edcbdaf5b6924a61b53ab4c9b6453664f75d
|
7
|
+
data.tar.gz: 48d651f714e29def8f4d53cdb9f037e77ea61023e6f2e325cf16996f7702bbb79fefacd5cf7a1e7490fa96d4a2f90321acb20f05136a4742250d8962785d42d6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.926
|
data/lib/v20201101/models.rb
CHANGED
@@ -12849,15 +12849,19 @@ module TencentCloud
|
|
12849
12849
|
class DescribeESAggregationsRequest < TencentCloud::Common::AbstractModel
|
12850
12850
|
# @param Query: ES聚合条件JSON
|
12851
12851
|
# @type Query: String
|
12852
|
+
# @param LogTypes: 日志类型列表
|
12853
|
+
# @type LogTypes: Array
|
12852
12854
|
|
12853
|
-
attr_accessor :Query
|
12855
|
+
attr_accessor :Query, :LogTypes
|
12854
12856
|
|
12855
|
-
def initialize(query=nil)
|
12857
|
+
def initialize(query=nil, logtypes=nil)
|
12856
12858
|
@Query = query
|
12859
|
+
@LogTypes = logtypes
|
12857
12860
|
end
|
12858
12861
|
|
12859
12862
|
def deserialize(params)
|
12860
12863
|
@Query = params['Query']
|
12864
|
+
@LogTypes = params['LogTypes']
|
12861
12865
|
end
|
12862
12866
|
end
|
12863
12867
|
|
@@ -12889,19 +12893,23 @@ module TencentCloud
|
|
12889
12893
|
# @type Offset: Integer
|
12890
12894
|
# @param Limit: 返回数量,最大值为100。
|
12891
12895
|
# @type Limit: Integer
|
12896
|
+
# @param LogTypes: 日志类型列表
|
12897
|
+
# @type LogTypes: Array
|
12892
12898
|
|
12893
|
-
attr_accessor :Query, :Offset, :Limit
|
12899
|
+
attr_accessor :Query, :Offset, :Limit, :LogTypes
|
12894
12900
|
|
12895
|
-
def initialize(query=nil, offset=nil, limit=nil)
|
12901
|
+
def initialize(query=nil, offset=nil, limit=nil, logtypes=nil)
|
12896
12902
|
@Query = query
|
12897
12903
|
@Offset = offset
|
12898
12904
|
@Limit = limit
|
12905
|
+
@LogTypes = logtypes
|
12899
12906
|
end
|
12900
12907
|
|
12901
12908
|
def deserialize(params)
|
12902
12909
|
@Query = params['Query']
|
12903
12910
|
@Offset = params['Offset']
|
12904
12911
|
@Limit = params['Limit']
|
12912
|
+
@LogTypes = params['LogTypes']
|
12905
12913
|
end
|
12906
12914
|
end
|
12907
12915
|
|
@@ -17190,15 +17198,19 @@ module TencentCloud
|
|
17190
17198
|
class DescribeSearchExportListRequest < TencentCloud::Common::AbstractModel
|
17191
17199
|
# @param Query: ES查询条件JSON
|
17192
17200
|
# @type Query: String
|
17201
|
+
# @param LogTypes: 日志类型列表
|
17202
|
+
# @type LogTypes: Array
|
17193
17203
|
|
17194
|
-
attr_accessor :Query
|
17204
|
+
attr_accessor :Query, :LogTypes
|
17195
17205
|
|
17196
|
-
def initialize(query=nil)
|
17206
|
+
def initialize(query=nil, logtypes=nil)
|
17197
17207
|
@Query = query
|
17208
|
+
@LogTypes = logtypes
|
17198
17209
|
end
|
17199
17210
|
|
17200
17211
|
def deserialize(params)
|
17201
17212
|
@Query = params['Query']
|
17213
|
+
@LogTypes = params['LogTypes']
|
17202
17214
|
end
|
17203
17215
|
end
|
17204
17216
|
|
@@ -17704,14 +17716,23 @@ module TencentCloud
|
|
17704
17716
|
# @type TotalCount: Integer
|
17705
17717
|
# @param List: 接入对象列表
|
17706
17718
|
# @type List: Array
|
17719
|
+
# @param RangeType: 日志节点范围类型,0自选 1全部
|
17720
|
+
# @type RangeType: Integer
|
17721
|
+
# @param AutoJoin: 新增资产是否自动加入,节点范围为全部时生效
|
17722
|
+
# @type AutoJoin: Boolean
|
17723
|
+
# @param ExcludedCount: 剔除节点数
|
17724
|
+
# @type ExcludedCount: Integer
|
17707
17725
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
17708
17726
|
# @type RequestId: String
|
17709
17727
|
|
17710
|
-
attr_accessor :TotalCount, :List, :RequestId
|
17728
|
+
attr_accessor :TotalCount, :List, :RangeType, :AutoJoin, :ExcludedCount, :RequestId
|
17711
17729
|
|
17712
|
-
def initialize(totalcount=nil, list=nil, requestid=nil)
|
17730
|
+
def initialize(totalcount=nil, list=nil, rangetype=nil, autojoin=nil, excludedcount=nil, requestid=nil)
|
17713
17731
|
@TotalCount = totalcount
|
17714
17732
|
@List = list
|
17733
|
+
@RangeType = rangetype
|
17734
|
+
@AutoJoin = autojoin
|
17735
|
+
@ExcludedCount = excludedcount
|
17715
17736
|
@RequestId = requestid
|
17716
17737
|
end
|
17717
17738
|
|
@@ -17725,6 +17746,9 @@ module TencentCloud
|
|
17725
17746
|
@List << seclogjoinobjectinfo_tmp
|
17726
17747
|
end
|
17727
17748
|
end
|
17749
|
+
@RangeType = params['RangeType']
|
17750
|
+
@AutoJoin = params['AutoJoin']
|
17751
|
+
@ExcludedCount = params['ExcludedCount']
|
17728
17752
|
@RequestId = params['RequestId']
|
17729
17753
|
end
|
17730
17754
|
end
|
@@ -24569,22 +24593,28 @@ module TencentCloud
|
|
24569
24593
|
# 容器启动: container_launch
|
24570
24594
|
# k8sApi: k8s_api
|
24571
24595
|
# @type LogType: String
|
24572
|
-
# @param BindList:
|
24596
|
+
# @param BindList: 绑定列表
|
24573
24597
|
# @type BindList: Array
|
24574
|
-
# @param UnBindList:
|
24598
|
+
# @param UnBindList: 待解绑列表,节点范围为全部时,含义为需剔除资产列表
|
24575
24599
|
# @type UnBindList: Array
|
24576
24600
|
# @param NodeType: 节点类型:
|
24577
24601
|
# NORMAL: 普通节点(默认值)
|
24578
24602
|
# SUPER: 超级节点
|
24579
24603
|
# @type NodeType: String
|
24604
|
+
# @param RangeType: 日志节点范围类型,0自选 1全部
|
24605
|
+
# @type RangeType: Integer
|
24606
|
+
# @param AutoJoin: 新增资产是否自动加入,节点范围为全部时生效
|
24607
|
+
# @type AutoJoin: Boolean
|
24580
24608
|
|
24581
|
-
attr_accessor :LogType, :BindList, :UnBindList, :NodeType
|
24609
|
+
attr_accessor :LogType, :BindList, :UnBindList, :NodeType, :RangeType, :AutoJoin
|
24582
24610
|
|
24583
|
-
def initialize(logtype=nil, bindlist=nil, unbindlist=nil, nodetype=nil)
|
24611
|
+
def initialize(logtype=nil, bindlist=nil, unbindlist=nil, nodetype=nil, rangetype=nil, autojoin=nil)
|
24584
24612
|
@LogType = logtype
|
24585
24613
|
@BindList = bindlist
|
24586
24614
|
@UnBindList = unbindlist
|
24587
24615
|
@NodeType = nodetype
|
24616
|
+
@RangeType = rangetype
|
24617
|
+
@AutoJoin = autojoin
|
24588
24618
|
end
|
24589
24619
|
|
24590
24620
|
def deserialize(params)
|
@@ -24592,6 +24622,8 @@ module TencentCloud
|
|
24592
24622
|
@BindList = params['BindList']
|
24593
24623
|
@UnBindList = params['UnBindList']
|
24594
24624
|
@NodeType = params['NodeType']
|
24625
|
+
@RangeType = params['RangeType']
|
24626
|
+
@AutoJoin = params['AutoJoin']
|
24595
24627
|
end
|
24596
24628
|
end
|
24597
24629
|
|
@@ -27317,14 +27349,17 @@ module TencentCloud
|
|
27317
27349
|
# k8sApi: "k8s_api"
|
27318
27350
|
# )
|
27319
27351
|
# @type LogType: String
|
27352
|
+
# @param ClusterCount: 已接入集群数量
|
27353
|
+
# @type ClusterCount: Integer
|
27320
27354
|
|
27321
|
-
attr_accessor :Count, :SuperNodeCount, :IsJoined, :LogType
|
27355
|
+
attr_accessor :Count, :SuperNodeCount, :IsJoined, :LogType, :ClusterCount
|
27322
27356
|
|
27323
|
-
def initialize(count=nil, supernodecount=nil, isjoined=nil, logtype=nil)
|
27357
|
+
def initialize(count=nil, supernodecount=nil, isjoined=nil, logtype=nil, clustercount=nil)
|
27324
27358
|
@Count = count
|
27325
27359
|
@SuperNodeCount = supernodecount
|
27326
27360
|
@IsJoined = isjoined
|
27327
27361
|
@LogType = logtype
|
27362
|
+
@ClusterCount = clustercount
|
27328
27363
|
end
|
27329
27364
|
|
27330
27365
|
def deserialize(params)
|
@@ -27332,6 +27367,7 @@ module TencentCloud
|
|
27332
27367
|
@SuperNodeCount = params['SuperNodeCount']
|
27333
27368
|
@IsJoined = params['IsJoined']
|
27334
27369
|
@LogType = params['LogType']
|
27370
|
+
@ClusterCount = params['ClusterCount']
|
27335
27371
|
end
|
27336
27372
|
end
|
27337
27373
|
|
@@ -27363,10 +27399,17 @@ module TencentCloud
|
|
27363
27399
|
# @type ClusterVersion: String
|
27364
27400
|
# @param ClusterMainAddress: 集群主节点地址
|
27365
27401
|
# @type ClusterMainAddress: String
|
27402
|
+
# @param ContainerCnt: 容器数
|
27403
|
+
# @type ContainerCnt: Integer
|
27404
|
+
# @param ClusterType: 集群类型
|
27405
|
+
# @type ClusterType: String
|
27406
|
+
# @param ClusterStatus: 集群状态
|
27407
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27408
|
+
# @type ClusterStatus: String
|
27366
27409
|
|
27367
|
-
attr_accessor :HostID, :HostName, :HostIP, :HostStatus, :ClusterID, :ClusterName, :PublicIP, :JoinState, :ClusterVersion, :ClusterMainAddress
|
27410
|
+
attr_accessor :HostID, :HostName, :HostIP, :HostStatus, :ClusterID, :ClusterName, :PublicIP, :JoinState, :ClusterVersion, :ClusterMainAddress, :ContainerCnt, :ClusterType, :ClusterStatus
|
27368
27411
|
|
27369
|
-
def initialize(hostid=nil, hostname=nil, hostip=nil, hoststatus=nil, clusterid=nil, clustername=nil, publicip=nil, joinstate=nil, clusterversion=nil, clustermainaddress=nil)
|
27412
|
+
def initialize(hostid=nil, hostname=nil, hostip=nil, hoststatus=nil, clusterid=nil, clustername=nil, publicip=nil, joinstate=nil, clusterversion=nil, clustermainaddress=nil, containercnt=nil, clustertype=nil, clusterstatus=nil)
|
27370
27413
|
@HostID = hostid
|
27371
27414
|
@HostName = hostname
|
27372
27415
|
@HostIP = hostip
|
@@ -27377,6 +27420,9 @@ module TencentCloud
|
|
27377
27420
|
@JoinState = joinstate
|
27378
27421
|
@ClusterVersion = clusterversion
|
27379
27422
|
@ClusterMainAddress = clustermainaddress
|
27423
|
+
@ContainerCnt = containercnt
|
27424
|
+
@ClusterType = clustertype
|
27425
|
+
@ClusterStatus = clusterstatus
|
27380
27426
|
end
|
27381
27427
|
|
27382
27428
|
def deserialize(params)
|
@@ -27390,6 +27436,9 @@ module TencentCloud
|
|
27390
27436
|
@JoinState = params['JoinState']
|
27391
27437
|
@ClusterVersion = params['ClusterVersion']
|
27392
27438
|
@ClusterMainAddress = params['ClusterMainAddress']
|
27439
|
+
@ContainerCnt = params['ContainerCnt']
|
27440
|
+
@ClusterType = params['ClusterType']
|
27441
|
+
@ClusterStatus = params['ClusterStatus']
|
27393
27442
|
end
|
27394
27443
|
end
|
27395
27444
|
|
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.926
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-10-
|
11
|
+
date: 2024-10-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|