tencentcloud-sdk-wedata 3.0.997 → 3.0.998
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/client.rb +6 -0
- data/lib/v20210820/models.rb +21 -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: 4d166de0c5c92d5a51ac7ab53d3a27922b2703e4
|
4
|
+
data.tar.gz: 01234cec4fd1ccda7753397a95644274952d3aa0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 689690813aaaadc4709d1c50395f67c2983c7485502e435a5a159d38bce5bf0bf189136ed93392f210130b5c7266d1fd81a0c3cf70094076ff132fe0ed1458ce
|
7
|
+
data.tar.gz: f66b4a1dcce7133d9bbc8874376a80fc456d7b0e9431cfb346f0ab5f21003cf71f87f1c07aa7566a3fd553b11d8ddac9516c29f1851a245fdabe0bf88b587660
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.998
|
data/lib/v20210820/client.rb
CHANGED
@@ -1949,6 +1949,8 @@ module TencentCloud
|
|
1949
1949
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1950
1950
|
end
|
1951
1951
|
|
1952
|
+
# 无效API,没有上线过的业务功能
|
1953
|
+
|
1952
1954
|
# 分页查询试运行实例列表
|
1953
1955
|
|
1954
1956
|
# @param request: Request instance for DescribeDrInstancePage.
|
@@ -3944,6 +3946,10 @@ module TencentCloud
|
|
3944
3946
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
3945
3947
|
end
|
3946
3948
|
|
3949
|
+
# 能够调通但该API已经没有使用了,看北京数据最后一次上报是23年10月,有接近一千万条数据历史无效数据。当前策略,云API示例修订然后已经分析出来的无效API走预下线流程。
|
3950
|
+
# https://capi.woa.com/api/detail?product=wedata&env=api_formal&version=2021-08-20&action=DescribeTaskByCycleReport
|
3951
|
+
# 这两天在分析API的时候 有较多运维大屏的原始API当前已经没有使用了,但API没有下线。预计需要专项去梳理这一系列待下线API。
|
3952
|
+
|
3947
3953
|
# 任务状态周期增长趋势
|
3948
3954
|
|
3949
3955
|
# @param request: Request instance for DescribeTaskByCycleReport.
|
data/lib/v20210820/models.rb
CHANGED
@@ -6303,11 +6303,11 @@ module TencentCloud
|
|
6303
6303
|
class DeleteResourceFilesRequest < TencentCloud::Common::AbstractModel
|
6304
6304
|
# @param ProjectId: 项目id
|
6305
6305
|
# @type ProjectId: String
|
6306
|
-
# @param UseStatus:
|
6306
|
+
# @param UseStatus: 使用状态, 为ture 判断资源的使用状态,如果使用中则不能删除
|
6307
6307
|
# @type UseStatus: Boolean
|
6308
6308
|
# @param ResourceIds: 资源id列表
|
6309
6309
|
# @type ResourceIds: Array
|
6310
|
-
# @param FilePaths:
|
6310
|
+
# @param FilePaths: 需要删除的资源路径列表 即资源管理中的目录结构
|
6311
6311
|
# @type FilePaths: Array
|
6312
6312
|
|
6313
6313
|
attr_accessor :ProjectId, :UseStatus, :ResourceIds, :FilePaths
|
@@ -17778,10 +17778,12 @@ module TencentCloud
|
|
17778
17778
|
# @type FileSize: String
|
17779
17779
|
# @param MatchedBrokerIp: 日志匹配节点信息
|
17780
17780
|
# @type MatchedBrokerIp: String
|
17781
|
+
# @param ExecutionExtendedProps: 执行平台通用协议
|
17782
|
+
# @type ExecutionExtendedProps: Array
|
17781
17783
|
|
17782
|
-
attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount, :ExtInfo, :IsEnd, :FileSize, :MatchedBrokerIp
|
17784
|
+
attr_accessor :LogInfo, :YarnLogInfo, :DataLogInfo, :ThirdTaskRunLogInfo, :ThirdTaskLogUrlDesc, :LineCount, :ExtInfo, :IsEnd, :FileSize, :MatchedBrokerIp, :ExecutionExtendedProps
|
17783
17785
|
|
17784
|
-
def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil, extinfo=nil, isend=nil, filesize=nil, matchedbrokerip=nil)
|
17786
|
+
def initialize(loginfo=nil, yarnloginfo=nil, dataloginfo=nil, thirdtaskrunloginfo=nil, thirdtasklogurldesc=nil, linecount=nil, extinfo=nil, isend=nil, filesize=nil, matchedbrokerip=nil, executionextendedprops=nil)
|
17785
17787
|
@LogInfo = loginfo
|
17786
17788
|
@YarnLogInfo = yarnloginfo
|
17787
17789
|
@DataLogInfo = dataloginfo
|
@@ -17792,6 +17794,7 @@ module TencentCloud
|
|
17792
17794
|
@IsEnd = isend
|
17793
17795
|
@FileSize = filesize
|
17794
17796
|
@MatchedBrokerIp = matchedbrokerip
|
17797
|
+
@ExecutionExtendedProps = executionextendedprops
|
17795
17798
|
end
|
17796
17799
|
|
17797
17800
|
def deserialize(params)
|
@@ -17805,6 +17808,14 @@ module TencentCloud
|
|
17805
17808
|
@IsEnd = params['IsEnd']
|
17806
17809
|
@FileSize = params['FileSize']
|
17807
17810
|
@MatchedBrokerIp = params['MatchedBrokerIp']
|
17811
|
+
unless params['ExecutionExtendedProps'].nil?
|
17812
|
+
@ExecutionExtendedProps = []
|
17813
|
+
params['ExecutionExtendedProps'].each do |i|
|
17814
|
+
pairdto_tmp = PairDto.new
|
17815
|
+
pairdto_tmp.deserialize(i)
|
17816
|
+
@ExecutionExtendedProps << pairdto_tmp
|
17817
|
+
end
|
17818
|
+
end
|
17808
17819
|
end
|
17809
17820
|
end
|
17810
17821
|
|
@@ -22121,17 +22132,21 @@ module TencentCloud
|
|
22121
22132
|
# @param Value: 值
|
22122
22133
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
22123
22134
|
# @type Value: String
|
22135
|
+
# @param Description: 描述
|
22136
|
+
# @type Description: String
|
22124
22137
|
|
22125
|
-
attr_accessor :Key, :Value
|
22138
|
+
attr_accessor :Key, :Value, :Description
|
22126
22139
|
|
22127
|
-
def initialize(key=nil, value=nil)
|
22140
|
+
def initialize(key=nil, value=nil, description=nil)
|
22128
22141
|
@Key = key
|
22129
22142
|
@Value = value
|
22143
|
+
@Description = description
|
22130
22144
|
end
|
22131
22145
|
|
22132
22146
|
def deserialize(params)
|
22133
22147
|
@Key = params['Key']
|
22134
22148
|
@Value = params['Value']
|
22149
|
+
@Description = params['Description']
|
22135
22150
|
end
|
22136
22151
|
end
|
22137
22152
|
|
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.998
|
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-02-
|
11
|
+
date: 2025-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|