tencentcloud-sdk-wedata 3.0.627 → 3.0.628
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 +149 -20
- 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: bcadb93a2668a404d73d30750a72e92ce2ffc766
|
4
|
+
data.tar.gz: 3c3db89610e864cb13df29612e23f1bd185e7e47
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 961c860457740da308cac5df969bbfd4253f81499acf9080e37926036e8907b6a325c1b6aa9e25662ba1608299643fdab2c66603cc81eae9380bd1c8b7ba855f
|
7
|
+
data.tar.gz: c8c3992f63cd1cc466321c3ef93deacc1e038e33ffd1e092c2b5dab4356846fb9f88d31229aaca1abaeabff56d04cd5f27feffba44fc8b01392cf1cd88e26575
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.628
|
data/lib/v20210820/models.rb
CHANGED
@@ -92,6 +92,33 @@ module TencentCloud
|
|
92
92
|
end
|
93
93
|
end
|
94
94
|
|
95
|
+
# Agent采集器状态统计
|
96
|
+
class AgentStatus < TencentCloud::Common::AbstractModel
|
97
|
+
# @param Running: 运行中的数量
|
98
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
99
|
+
# @type Running: Integer
|
100
|
+
# @param Abnormal: 异常的数量
|
101
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
102
|
+
# @type Abnormal: Integer
|
103
|
+
# @param InOperation: 操作中的数量
|
104
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
105
|
+
# @type InOperation: Integer
|
106
|
+
|
107
|
+
attr_accessor :Running, :Abnormal, :InOperation
|
108
|
+
|
109
|
+
def initialize(running=nil, abnormal=nil, inoperation=nil)
|
110
|
+
@Running = running
|
111
|
+
@Abnormal = abnormal
|
112
|
+
@InOperation = inoperation
|
113
|
+
end
|
114
|
+
|
115
|
+
def deserialize(params)
|
116
|
+
@Running = params['Running']
|
117
|
+
@Abnormal = params['Abnormal']
|
118
|
+
@InOperation = params['InOperation']
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
95
122
|
# 告警事件详情
|
96
123
|
class AlarmEventInfo < TencentCloud::Common::AbstractModel
|
97
124
|
# @param AlarmId: 告警ID
|
@@ -1044,19 +1071,23 @@ module TencentCloud
|
|
1044
1071
|
# @type TaskType: Integer
|
1045
1072
|
# @param ProjectId: 项目id
|
1046
1073
|
# @type ProjectId: String
|
1074
|
+
# @param DeleteKFFlag: 是否删除开发态任务。默认不删除开发态,为 0 不删除 , 为 1 删除
|
1075
|
+
# @type DeleteKFFlag: Integer
|
1047
1076
|
|
1048
|
-
attr_accessor :TaskIds, :TaskType, :ProjectId
|
1077
|
+
attr_accessor :TaskIds, :TaskType, :ProjectId, :DeleteKFFlag
|
1049
1078
|
|
1050
|
-
def initialize(taskids=nil, tasktype=nil, projectid=nil)
|
1079
|
+
def initialize(taskids=nil, tasktype=nil, projectid=nil, deletekfflag=nil)
|
1051
1080
|
@TaskIds = taskids
|
1052
1081
|
@TaskType = tasktype
|
1053
1082
|
@ProjectId = projectid
|
1083
|
+
@DeleteKFFlag = deletekfflag
|
1054
1084
|
end
|
1055
1085
|
|
1056
1086
|
def deserialize(params)
|
1057
1087
|
@TaskIds = params['TaskIds']
|
1058
1088
|
@TaskType = params['TaskType']
|
1059
1089
|
@ProjectId = params['ProjectId']
|
1090
|
+
@DeleteKFFlag = params['DeleteKFFlag']
|
1060
1091
|
end
|
1061
1092
|
end
|
1062
1093
|
|
@@ -2250,8 +2281,8 @@ module TencentCloud
|
|
2250
2281
|
|
2251
2282
|
attr_accessor :ProjectId, :AlarmRegularName, :TaskId, :Id, :TaskType
|
2252
2283
|
extend Gem::Deprecate
|
2253
|
-
deprecate :TaskId, :none, 2023,
|
2254
|
-
deprecate :TaskId=, :none, 2023,
|
2284
|
+
deprecate :TaskId, :none, 2023, 8
|
2285
|
+
deprecate :TaskId=, :none, 2023, 8
|
2255
2286
|
|
2256
2287
|
def initialize(projectid=nil, alarmregularname=nil, taskid=nil, id=nil, tasktype=nil)
|
2257
2288
|
@ProjectId = projectid
|
@@ -2923,15 +2954,21 @@ module TencentCloud
|
|
2923
2954
|
# @type TaskType: Integer
|
2924
2955
|
# @param ExtConfig: 额外参数
|
2925
2956
|
# @type ExtConfig: Array
|
2957
|
+
# @param VersionDesc: 提交版本描述
|
2958
|
+
# @type VersionDesc: String
|
2959
|
+
# @param InstanceVersion: 提交版本号
|
2960
|
+
# @type InstanceVersion: Integer
|
2926
2961
|
|
2927
|
-
attr_accessor :TaskId, :ProjectId, :CommitType, :TaskType, :ExtConfig
|
2962
|
+
attr_accessor :TaskId, :ProjectId, :CommitType, :TaskType, :ExtConfig, :VersionDesc, :InstanceVersion
|
2928
2963
|
|
2929
|
-
def initialize(taskid=nil, projectid=nil, committype=nil, tasktype=nil, extconfig=nil)
|
2964
|
+
def initialize(taskid=nil, projectid=nil, committype=nil, tasktype=nil, extconfig=nil, versiondesc=nil, instanceversion=nil)
|
2930
2965
|
@TaskId = taskid
|
2931
2966
|
@ProjectId = projectid
|
2932
2967
|
@CommitType = committype
|
2933
2968
|
@TaskType = tasktype
|
2934
2969
|
@ExtConfig = extconfig
|
2970
|
+
@VersionDesc = versiondesc
|
2971
|
+
@InstanceVersion = instanceversion
|
2935
2972
|
end
|
2936
2973
|
|
2937
2974
|
def deserialize(params)
|
@@ -2947,6 +2984,8 @@ module TencentCloud
|
|
2947
2984
|
@ExtConfig << recordfield_tmp
|
2948
2985
|
end
|
2949
2986
|
end
|
2987
|
+
@VersionDesc = params['VersionDesc']
|
2988
|
+
@InstanceVersion = params['InstanceVersion']
|
2950
2989
|
end
|
2951
2990
|
end
|
2952
2991
|
|
@@ -5640,18 +5679,31 @@ module TencentCloud
|
|
5640
5679
|
class DeleteIntegrationTaskResponse < TencentCloud::Common::AbstractModel
|
5641
5680
|
# @param Data: 任务删除成功与否标识
|
5642
5681
|
# @type Data: Boolean
|
5682
|
+
# @param DeleteFlag: 任务删除成功与否标识
|
5683
|
+
# 0表示删除成功
|
5684
|
+
# 1 表示失败,失败原因见 DeleteErrInfo
|
5685
|
+
# 100 表示running or suspend task can't be deleted失败,失败原因也会写到DeleteErrInfo里面
|
5686
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5687
|
+
# @type DeleteFlag: Integer
|
5688
|
+
# @param DeleteErrInfo: 删除失败原因
|
5689
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5690
|
+
# @type DeleteErrInfo: String
|
5643
5691
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5644
5692
|
# @type RequestId: String
|
5645
5693
|
|
5646
|
-
attr_accessor :Data, :RequestId
|
5694
|
+
attr_accessor :Data, :DeleteFlag, :DeleteErrInfo, :RequestId
|
5647
5695
|
|
5648
|
-
def initialize(data=nil, requestid=nil)
|
5696
|
+
def initialize(data=nil, deleteflag=nil, deleteerrinfo=nil, requestid=nil)
|
5649
5697
|
@Data = data
|
5698
|
+
@DeleteFlag = deleteflag
|
5699
|
+
@DeleteErrInfo = deleteerrinfo
|
5650
5700
|
@RequestId = requestid
|
5651
5701
|
end
|
5652
5702
|
|
5653
5703
|
def deserialize(params)
|
5654
5704
|
@Data = params['Data']
|
5705
|
+
@DeleteFlag = params['DeleteFlag']
|
5706
|
+
@DeleteErrInfo = params['DeleteErrInfo']
|
5655
5707
|
@RequestId = params['RequestId']
|
5656
5708
|
end
|
5657
5709
|
end
|
@@ -10551,19 +10603,23 @@ module TencentCloud
|
|
10551
10603
|
# @type ProjectId: String
|
10552
10604
|
# @param TaskType: 任务类型:201. stream, 202. offline
|
10553
10605
|
# @type TaskType: Integer
|
10606
|
+
# @param InstanceVersion: 提交版本号
|
10607
|
+
# @type InstanceVersion: Integer
|
10554
10608
|
|
10555
|
-
attr_accessor :TaskId, :ProjectId, :TaskType
|
10609
|
+
attr_accessor :TaskId, :ProjectId, :TaskType, :InstanceVersion
|
10556
10610
|
|
10557
|
-
def initialize(taskid=nil, projectid=nil, tasktype=nil)
|
10611
|
+
def initialize(taskid=nil, projectid=nil, tasktype=nil, instanceversion=nil)
|
10558
10612
|
@TaskId = taskid
|
10559
10613
|
@ProjectId = projectid
|
10560
10614
|
@TaskType = tasktype
|
10615
|
+
@InstanceVersion = instanceversion
|
10561
10616
|
end
|
10562
10617
|
|
10563
10618
|
def deserialize(params)
|
10564
10619
|
@TaskId = params['TaskId']
|
10565
10620
|
@ProjectId = params['ProjectId']
|
10566
10621
|
@TaskType = params['TaskType']
|
10622
|
+
@InstanceVersion = params['InstanceVersion']
|
10567
10623
|
end
|
10568
10624
|
end
|
10569
10625
|
|
@@ -10572,13 +10628,21 @@ module TencentCloud
|
|
10572
10628
|
# @param TaskInfo: 任务信息
|
10573
10629
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
10574
10630
|
# @type TaskInfo: :class:`Tencentcloud::Wedata.v20210820.models.IntegrationTaskInfo`
|
10631
|
+
# @param AgentStatus: 采集器统计信息
|
10632
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10633
|
+
# @type AgentStatus: :class:`Tencentcloud::Wedata.v20210820.models.AgentStatus`
|
10634
|
+
# @param TaskVersion: 任务版本信息
|
10635
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
10636
|
+
# @type TaskVersion: :class:`Tencentcloud::Wedata.v20210820.models.TaskVersionInstance`
|
10575
10637
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
10576
10638
|
# @type RequestId: String
|
10577
10639
|
|
10578
|
-
attr_accessor :TaskInfo, :RequestId
|
10640
|
+
attr_accessor :TaskInfo, :AgentStatus, :TaskVersion, :RequestId
|
10579
10641
|
|
10580
|
-
def initialize(taskinfo=nil, requestid=nil)
|
10642
|
+
def initialize(taskinfo=nil, agentstatus=nil, taskversion=nil, requestid=nil)
|
10581
10643
|
@TaskInfo = taskinfo
|
10644
|
+
@AgentStatus = agentstatus
|
10645
|
+
@TaskVersion = taskversion
|
10582
10646
|
@RequestId = requestid
|
10583
10647
|
end
|
10584
10648
|
|
@@ -10587,6 +10651,14 @@ module TencentCloud
|
|
10587
10651
|
@TaskInfo = IntegrationTaskInfo.new
|
10588
10652
|
@TaskInfo.deserialize(params['TaskInfo'])
|
10589
10653
|
end
|
10654
|
+
unless params['AgentStatus'].nil?
|
10655
|
+
@AgentStatus = AgentStatus.new
|
10656
|
+
@AgentStatus.deserialize(params['AgentStatus'])
|
10657
|
+
end
|
10658
|
+
unless params['TaskVersion'].nil?
|
10659
|
+
@TaskVersion = TaskVersionInstance.new
|
10660
|
+
@TaskVersion.deserialize(params['TaskVersion'])
|
10661
|
+
end
|
10590
10662
|
@RequestId = params['RequestId']
|
10591
10663
|
end
|
10592
10664
|
end
|
@@ -16049,8 +16121,8 @@ module TencentCloud
|
|
16049
16121
|
|
16050
16122
|
attr_accessor :DimType, :Count, :QualityDim
|
16051
16123
|
extend Gem::Deprecate
|
16052
|
-
deprecate :DimType, :none, 2023,
|
16053
|
-
deprecate :DimType=, :none, 2023,
|
16124
|
+
deprecate :DimType, :none, 2023, 8
|
16125
|
+
deprecate :DimType=, :none, 2023, 8
|
16054
16126
|
|
16055
16127
|
def initialize(dimtype=nil, count=nil, qualitydim=nil)
|
16056
16128
|
@DimType = dimtype
|
@@ -19830,10 +19902,19 @@ module TencentCloud
|
|
19830
19902
|
# @param TaskAlarmRegularList: 该任务关联的告警规则
|
19831
19903
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
19832
19904
|
# @type TaskAlarmRegularList: Array
|
19905
|
+
# @param SwitchResource: 资源分层情况: 0:进行中,1:成功 ,2:失败
|
19906
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
19907
|
+
# @type SwitchResource: Integer
|
19908
|
+
# @param ReadPhase: 读取阶段:0:全部全量,1:部分全量,2:全部增量
|
19909
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
19910
|
+
# @type ReadPhase: Integer
|
19911
|
+
# @param InstanceVersion: 版本号
|
19912
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
19913
|
+
# @type InstanceVersion: Integer
|
19833
19914
|
|
19834
|
-
attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit, :InputDatasourceType, :OutputDatasourceType, :NumRecordsIn, :NumRecordsOut, :ReaderDelay, :NumRestarts, :CreateTime, :UpdateTime, :LastRunTime, :StopTime, :HasVersion, :Locked, :Locker, :RunningCu, :TaskAlarmRegularList
|
19915
|
+
attr_accessor :TaskName, :Description, :SyncType, :TaskType, :WorkflowId, :TaskId, :ScheduleTaskId, :TaskGroupId, :ProjectId, :CreatorUin, :OperatorUin, :OwnerUin, :AppId, :Status, :Nodes, :ExecutorId, :Config, :ExtConfig, :ExecuteContext, :Mappings, :TaskMode, :Incharge, :OfflineTaskAddEntity, :ExecutorGroupName, :InLongManagerUrl, :InLongStreamId, :InLongManagerVersion, :DataProxyUrl, :Submit, :InputDatasourceType, :OutputDatasourceType, :NumRecordsIn, :NumRecordsOut, :ReaderDelay, :NumRestarts, :CreateTime, :UpdateTime, :LastRunTime, :StopTime, :HasVersion, :Locked, :Locker, :RunningCu, :TaskAlarmRegularList, :SwitchResource, :ReadPhase, :InstanceVersion
|
19835
19916
|
|
19836
|
-
def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil, inputdatasourcetype=nil, outputdatasourcetype=nil, numrecordsin=nil, numrecordsout=nil, readerdelay=nil, numrestarts=nil, createtime=nil, updatetime=nil, lastruntime=nil, stoptime=nil, hasversion=nil, locked=nil, locker=nil, runningcu=nil, taskalarmregularlist=nil)
|
19917
|
+
def initialize(taskname=nil, description=nil, synctype=nil, tasktype=nil, workflowid=nil, taskid=nil, scheduletaskid=nil, taskgroupid=nil, projectid=nil, creatoruin=nil, operatoruin=nil, owneruin=nil, appid=nil, status=nil, nodes=nil, executorid=nil, config=nil, extconfig=nil, executecontext=nil, mappings=nil, taskmode=nil, incharge=nil, offlinetaskaddentity=nil, executorgroupname=nil, inlongmanagerurl=nil, inlongstreamid=nil, inlongmanagerversion=nil, dataproxyurl=nil, submit=nil, inputdatasourcetype=nil, outputdatasourcetype=nil, numrecordsin=nil, numrecordsout=nil, readerdelay=nil, numrestarts=nil, createtime=nil, updatetime=nil, lastruntime=nil, stoptime=nil, hasversion=nil, locked=nil, locker=nil, runningcu=nil, taskalarmregularlist=nil, switchresource=nil, readphase=nil, instanceversion=nil)
|
19837
19918
|
@TaskName = taskname
|
19838
19919
|
@Description = description
|
19839
19920
|
@SyncType = synctype
|
@@ -19878,6 +19959,9 @@ module TencentCloud
|
|
19878
19959
|
@Locker = locker
|
19879
19960
|
@RunningCu = runningcu
|
19880
19961
|
@TaskAlarmRegularList = taskalarmregularlist
|
19962
|
+
@SwitchResource = switchresource
|
19963
|
+
@ReadPhase = readphase
|
19964
|
+
@InstanceVersion = instanceversion
|
19881
19965
|
end
|
19882
19966
|
|
19883
19967
|
def deserialize(params)
|
@@ -19963,6 +20047,9 @@ module TencentCloud
|
|
19963
20047
|
@Locker = params['Locker']
|
19964
20048
|
@RunningCu = params['RunningCu']
|
19965
20049
|
@TaskAlarmRegularList = params['TaskAlarmRegularList']
|
20050
|
+
@SwitchResource = params['SwitchResource']
|
20051
|
+
@ReadPhase = params['ReadPhase']
|
20052
|
+
@InstanceVersion = params['InstanceVersion']
|
19966
20053
|
end
|
19967
20054
|
end
|
19968
20055
|
|
@@ -26770,10 +26857,10 @@ module TencentCloud
|
|
26770
26857
|
|
26771
26858
|
attr_accessor :SourceObjectDataTypeName, :SourceObjectValue, :ObjectDataTypeName, :ObjectValue, :ObjectType
|
26772
26859
|
extend Gem::Deprecate
|
26773
|
-
deprecate :SourceObjectDataTypeName, :none, 2023,
|
26774
|
-
deprecate :SourceObjectDataTypeName=, :none, 2023,
|
26775
|
-
deprecate :SourceObjectValue, :none, 2023,
|
26776
|
-
deprecate :SourceObjectValue=, :none, 2023,
|
26860
|
+
deprecate :SourceObjectDataTypeName, :none, 2023, 8
|
26861
|
+
deprecate :SourceObjectDataTypeName=, :none, 2023, 8
|
26862
|
+
deprecate :SourceObjectValue, :none, 2023, 8
|
26863
|
+
deprecate :SourceObjectValue=, :none, 2023, 8
|
26777
26864
|
|
26778
26865
|
def initialize(sourceobjectdatatypename=nil, sourceobjectvalue=nil, objectdatatypename=nil, objectvalue=nil, objecttype=nil)
|
26779
26866
|
@SourceObjectDataTypeName = sourceobjectdatatypename
|
@@ -29787,6 +29874,48 @@ module TencentCloud
|
|
29787
29874
|
end
|
29788
29875
|
end
|
29789
29876
|
|
29877
|
+
# 任务实例基本信息
|
29878
|
+
class TaskVersionInstance < TencentCloud::Common::AbstractModel
|
29879
|
+
# @param InstanceVersion: 实例版本号
|
29880
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29881
|
+
# @type InstanceVersion: Integer
|
29882
|
+
# @param VersionDesc: 实例描述
|
29883
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29884
|
+
# @type VersionDesc: String
|
29885
|
+
# @param ChangeType: 0, "新增",1, "修改"
|
29886
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29887
|
+
# @type ChangeType: Integer
|
29888
|
+
# @param SubmitterUin: 版本提交人UIN
|
29889
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29890
|
+
# @type SubmitterUin: String
|
29891
|
+
# @param InstanceDate: 提交日期
|
29892
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29893
|
+
# @type InstanceDate: String
|
29894
|
+
# @param InstanceStatus: 0, "未启用",1, "启用(生产态)"
|
29895
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
29896
|
+
# @type InstanceStatus: Integer
|
29897
|
+
|
29898
|
+
attr_accessor :InstanceVersion, :VersionDesc, :ChangeType, :SubmitterUin, :InstanceDate, :InstanceStatus
|
29899
|
+
|
29900
|
+
def initialize(instanceversion=nil, versiondesc=nil, changetype=nil, submitteruin=nil, instancedate=nil, instancestatus=nil)
|
29901
|
+
@InstanceVersion = instanceversion
|
29902
|
+
@VersionDesc = versiondesc
|
29903
|
+
@ChangeType = changetype
|
29904
|
+
@SubmitterUin = submitteruin
|
29905
|
+
@InstanceDate = instancedate
|
29906
|
+
@InstanceStatus = instancestatus
|
29907
|
+
end
|
29908
|
+
|
29909
|
+
def deserialize(params)
|
29910
|
+
@InstanceVersion = params['InstanceVersion']
|
29911
|
+
@VersionDesc = params['VersionDesc']
|
29912
|
+
@ChangeType = params['ChangeType']
|
29913
|
+
@SubmitterUin = params['SubmitterUin']
|
29914
|
+
@InstanceDate = params['InstanceDate']
|
29915
|
+
@InstanceStatus = params['InstanceStatus']
|
29916
|
+
end
|
29917
|
+
end
|
29918
|
+
|
29790
29919
|
# 数据质量阈值
|
29791
29920
|
class ThresholdValue < TencentCloud::Common::AbstractModel
|
29792
29921
|
# @param ValueType: 阈值类型 1.低阈值 2.高阈值 3.普通阈值 4.枚举值
|
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.628
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-08-
|
11
|
+
date: 2023-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|