tencentcloud-sdk-wedata 3.0.482 → 3.0.484
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/v20210820/models.rb +53 -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: 42cea3afd962b38cd19caae1e9a11a5ddda83029
|
4
|
+
data.tar.gz: 4b7aa17f5bb84ea6b086ba265ce4da7ddb06c9a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cb0b7c4f8b79f7a4ac343a31a7a10068125cb5550be959fe04e7c4c84d8132dfe9a2fc89c8aaea7e95a6ae8564c0ce74b805a5e61aeafc833d3ed27d822494a
|
7
|
+
data.tar.gz: 4e6bbdc363fc22665ac37ac644883e0b81143c180eeb09be08cb173efe4e83f320cd6a2e261569cad930f6067da14c1b121fedb231dbe2ceaa7fa9ae3a91ba97
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.484
|
data/lib/v20210820/models.rb
CHANGED
@@ -2810,6 +2810,28 @@ module TencentCloud
|
|
2810
2810
|
end
|
2811
2811
|
end
|
2812
2812
|
|
2813
|
+
# 采集器状态统计
|
2814
|
+
class CvmAgentStatus < TencentCloud::Common::AbstractModel
|
2815
|
+
# @param Status: agent状态
|
2816
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2817
|
+
# @type Status: String
|
2818
|
+
# @param Count: 对应状态的agent总数
|
2819
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
2820
|
+
# @type Count: Integer
|
2821
|
+
|
2822
|
+
attr_accessor :Status, :Count
|
2823
|
+
|
2824
|
+
def initialize(status=nil, count=nil)
|
2825
|
+
@Status = status
|
2826
|
+
@Count = count
|
2827
|
+
end
|
2828
|
+
|
2829
|
+
def deserialize(params)
|
2830
|
+
@Status = params['Status']
|
2831
|
+
@Count = params['Count']
|
2832
|
+
end
|
2833
|
+
end
|
2834
|
+
|
2813
2835
|
# 日评分信息
|
2814
2836
|
class DailyScoreInfo < TencentCloud::Common::AbstractModel
|
2815
2837
|
# @param StatisticsDate: 统计日期 时间戳
|
@@ -4850,7 +4872,7 @@ module TencentCloud
|
|
4850
4872
|
# @type AgentId: String
|
4851
4873
|
# @param AgentName: Agent Name
|
4852
4874
|
# @type AgentName: String
|
4853
|
-
# @param AgentType: 集群类型,1:TKE Agent,2:BOSS SDK,默认:1
|
4875
|
+
# @param AgentType: 集群类型,1:TKE Agent,2:BOSS SDK,默认:1,3:CVM,4:自建服务器 【传多个用逗号分割】
|
4854
4876
|
# @type AgentType: Integer
|
4855
4877
|
# @param Status: Agent状态(running运行中,initializing 操作中,failed心跳异常)
|
4856
4878
|
# @type Status: String
|
@@ -4862,10 +4884,12 @@ module TencentCloud
|
|
4862
4884
|
# @type PageSize: Integer
|
4863
4885
|
# @param Like: 名称搜索是否开启模糊匹配,1:开启,0:不开启(精确匹配)
|
4864
4886
|
# @type Like: Integer
|
4887
|
+
# @param AgentTypes: agent类型【多个用逗号分隔】
|
4888
|
+
# @type AgentTypes: String
|
4865
4889
|
|
4866
|
-
attr_accessor :ProjectId, :AgentId, :AgentName, :AgentType, :Status, :VpcId, :PageIndex, :PageSize, :Like
|
4890
|
+
attr_accessor :ProjectId, :AgentId, :AgentName, :AgentType, :Status, :VpcId, :PageIndex, :PageSize, :Like, :AgentTypes
|
4867
4891
|
|
4868
|
-
def initialize(projectid=nil, agentid=nil, agentname=nil, agenttype=nil, status=nil, vpcid=nil, pageindex=nil, pagesize=nil, like=nil)
|
4892
|
+
def initialize(projectid=nil, agentid=nil, agentname=nil, agenttype=nil, status=nil, vpcid=nil, pageindex=nil, pagesize=nil, like=nil, agenttypes=nil)
|
4869
4893
|
@ProjectId = projectid
|
4870
4894
|
@AgentId = agentid
|
4871
4895
|
@AgentName = agentname
|
@@ -4875,6 +4899,7 @@ module TencentCloud
|
|
4875
4899
|
@PageIndex = pageindex
|
4876
4900
|
@PageSize = pagesize
|
4877
4901
|
@Like = like
|
4902
|
+
@AgentTypes = agenttypes
|
4878
4903
|
end
|
4879
4904
|
|
4880
4905
|
def deserialize(params)
|
@@ -4887,6 +4912,7 @@ module TencentCloud
|
|
4887
4912
|
@PageIndex = params['PageIndex']
|
4888
4913
|
@PageSize = params['PageSize']
|
4889
4914
|
@Like = params['Like']
|
4915
|
+
@AgentTypes = params['AgentTypes']
|
4890
4916
|
end
|
4891
4917
|
end
|
4892
4918
|
|
@@ -10086,10 +10112,19 @@ module TencentCloud
|
|
10086
10112
|
# @type ExecutorGroupName: String
|
10087
10113
|
# @param TaskCount: 关联任务数
|
10088
10114
|
# @type TaskCount: Integer
|
10115
|
+
# @param AgentGroupId: 采集器组ID
|
10116
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10117
|
+
# @type AgentGroupId: String
|
10118
|
+
# @param CvmAgentStatusList: agent状态统计
|
10119
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10120
|
+
# @type CvmAgentStatusList: Array
|
10121
|
+
# @param AgentTotal: agent数量
|
10122
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10123
|
+
# @type AgentTotal: Integer
|
10089
10124
|
|
10090
|
-
attr_accessor :AgentId, :AgentName, :Status, :StatusDesc, :AgentType, :Source, :VpcId, :ExecutorGroupId, :ExecutorGroupName, :TaskCount
|
10125
|
+
attr_accessor :AgentId, :AgentName, :Status, :StatusDesc, :AgentType, :Source, :VpcId, :ExecutorGroupId, :ExecutorGroupName, :TaskCount, :AgentGroupId, :CvmAgentStatusList, :AgentTotal
|
10091
10126
|
|
10092
|
-
def initialize(agentid=nil, agentname=nil, status=nil, statusdesc=nil, agenttype=nil, source=nil, vpcid=nil, executorgroupid=nil, executorgroupname=nil, taskcount=nil)
|
10127
|
+
def initialize(agentid=nil, agentname=nil, status=nil, statusdesc=nil, agenttype=nil, source=nil, vpcid=nil, executorgroupid=nil, executorgroupname=nil, taskcount=nil, agentgroupid=nil, cvmagentstatuslist=nil, agenttotal=nil)
|
10093
10128
|
@AgentId = agentid
|
10094
10129
|
@AgentName = agentname
|
10095
10130
|
@Status = status
|
@@ -10100,6 +10135,9 @@ module TencentCloud
|
|
10100
10135
|
@ExecutorGroupId = executorgroupid
|
10101
10136
|
@ExecutorGroupName = executorgroupname
|
10102
10137
|
@TaskCount = taskcount
|
10138
|
+
@AgentGroupId = agentgroupid
|
10139
|
+
@CvmAgentStatusList = cvmagentstatuslist
|
10140
|
+
@AgentTotal = agenttotal
|
10103
10141
|
end
|
10104
10142
|
|
10105
10143
|
def deserialize(params)
|
@@ -10113,6 +10151,16 @@ module TencentCloud
|
|
10113
10151
|
@ExecutorGroupId = params['ExecutorGroupId']
|
10114
10152
|
@ExecutorGroupName = params['ExecutorGroupName']
|
10115
10153
|
@TaskCount = params['TaskCount']
|
10154
|
+
@AgentGroupId = params['AgentGroupId']
|
10155
|
+
unless params['CvmAgentStatusList'].nil?
|
10156
|
+
@CvmAgentStatusList = []
|
10157
|
+
params['CvmAgentStatusList'].each do |i|
|
10158
|
+
cvmagentstatus_tmp = CvmAgentStatus.new
|
10159
|
+
cvmagentstatus_tmp.deserialize(i)
|
10160
|
+
@CvmAgentStatusList << cvmagentstatus_tmp
|
10161
|
+
end
|
10162
|
+
end
|
10163
|
+
@AgentTotal = params['AgentTotal']
|
10116
10164
|
end
|
10117
10165
|
end
|
10118
10166
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-wedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.484
|
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-12-
|
11
|
+
date: 2022-12-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|