tencentcloud-sdk-wedata 3.0.599 → 3.0.600

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210820/models.rb +117 -20
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a5fa006937a35dd7a6ef00c218aaeda16a4e48f2
4
- data.tar.gz: 483ee04e1f1be8b5a93d04a61ebfba6356e5db53
3
+ metadata.gz: 8c2d7228f9d0b6fc749c8a8de237c375feb5a62a
4
+ data.tar.gz: e06627ab7ad12afcf860df4fc2d274c0173548cc
5
5
  SHA512:
6
- metadata.gz: bed18316765f8380fc293d8754d70abdcbaffabfec2d730d6f40bd9a82901a8dc487e9d9935396d6410de551e78507e1ca7a37c6b8b82d7f49a865b34eb0af42
7
- data.tar.gz: 8f86aeb9dd147882c3bfb6109e2f7e8128e2f5254f2700474e7bdfb448a6455a7f870f1efb6e8c29989f22613c1f8a9536ca62da20d61aa053634e323f486a32
6
+ metadata.gz: 954728533cda1d6cd20b9c3d7c99b3ccaf8d3975465c7019e75fa5d099ed8545a4264f09697db5eb7a12c16ae53ab04a58754c469b9b1632026b4337f3e4d847
7
+ data.tar.gz: f72c832bfc10b40c1dd5626a604891a7e69bd93dd1506cdb426715b8c850560d0d6934b379417b53f672ff5900cff05c8e93ad399371b92cb41f710e2f16f554
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.599
1
+ 3.0.600
@@ -4624,19 +4624,30 @@ module TencentCloud
4624
4624
  # @type ProjectId: String
4625
4625
  # @param DatasourceId: 数据来源id
4626
4626
  # @type DatasourceId: String
4627
+ # @param Filters: 过滤参数
4628
+ # @type Filters: Array
4627
4629
 
4628
- attr_accessor :StatisticsDate, :ProjectId, :DatasourceId
4630
+ attr_accessor :StatisticsDate, :ProjectId, :DatasourceId, :Filters
4629
4631
 
4630
- def initialize(statisticsdate=nil, projectid=nil, datasourceid=nil)
4632
+ def initialize(statisticsdate=nil, projectid=nil, datasourceid=nil, filters=nil)
4631
4633
  @StatisticsDate = statisticsdate
4632
4634
  @ProjectId = projectid
4633
4635
  @DatasourceId = datasourceid
4636
+ @Filters = filters
4634
4637
  end
4635
4638
 
4636
4639
  def deserialize(params)
4637
4640
  @StatisticsDate = params['StatisticsDate']
4638
4641
  @ProjectId = params['ProjectId']
4639
4642
  @DatasourceId = params['DatasourceId']
4643
+ unless params['Filters'].nil?
4644
+ @Filters = []
4645
+ params['Filters'].each do |i|
4646
+ filter_tmp = Filter.new
4647
+ filter_tmp.deserialize(i)
4648
+ @Filters << filter_tmp
4649
+ end
4650
+ end
4640
4651
  end
4641
4652
  end
4642
4653
 
@@ -6666,19 +6677,34 @@ module TencentCloud
6666
6677
  # @type ProjectId: String
6667
6678
  # @param DatasourceId: 数据来源id
6668
6679
  # @type DatasourceId: String
6680
+ # @param ScoreType: 1:按全维度权重计算,2:按已配置维度权重计算,3:不按维度权重计算,默认1
6681
+ # @type ScoreType: String
6682
+ # @param Filters: 过滤参数
6683
+ # @type Filters: Array
6669
6684
 
6670
- attr_accessor :StatisticsDate, :ProjectId, :DatasourceId
6685
+ attr_accessor :StatisticsDate, :ProjectId, :DatasourceId, :ScoreType, :Filters
6671
6686
 
6672
- def initialize(statisticsdate=nil, projectid=nil, datasourceid=nil)
6687
+ def initialize(statisticsdate=nil, projectid=nil, datasourceid=nil, scoretype=nil, filters=nil)
6673
6688
  @StatisticsDate = statisticsdate
6674
6689
  @ProjectId = projectid
6675
6690
  @DatasourceId = datasourceid
6691
+ @ScoreType = scoretype
6692
+ @Filters = filters
6676
6693
  end
6677
6694
 
6678
6695
  def deserialize(params)
6679
6696
  @StatisticsDate = params['StatisticsDate']
6680
6697
  @ProjectId = params['ProjectId']
6681
6698
  @DatasourceId = params['DatasourceId']
6699
+ @ScoreType = params['ScoreType']
6700
+ unless params['Filters'].nil?
6701
+ @Filters = []
6702
+ params['Filters'].each do |i|
6703
+ filter_tmp = Filter.new
6704
+ filter_tmp.deserialize(i)
6705
+ @Filters << filter_tmp
6706
+ end
6707
+ end
6682
6708
  end
6683
6709
  end
6684
6710
 
@@ -6716,14 +6742,20 @@ module TencentCloud
6716
6742
  # @type ProjectId: String
6717
6743
  # @param DatasourceId: 数据来源id
6718
6744
  # @type DatasourceId: String
6745
+ # @param ScoreType: 1:按全维度权重计算,2:按已配置维度权重计算,3:不按维度权重计算,默认1
6746
+ # @type ScoreType: String
6747
+ # @param Filters: 过滤参数
6748
+ # @type Filters: Array
6719
6749
 
6720
- attr_accessor :StatisticsStartDate, :StatisticsEndDate, :ProjectId, :DatasourceId
6750
+ attr_accessor :StatisticsStartDate, :StatisticsEndDate, :ProjectId, :DatasourceId, :ScoreType, :Filters
6721
6751
 
6722
- def initialize(statisticsstartdate=nil, statisticsenddate=nil, projectid=nil, datasourceid=nil)
6752
+ def initialize(statisticsstartdate=nil, statisticsenddate=nil, projectid=nil, datasourceid=nil, scoretype=nil, filters=nil)
6723
6753
  @StatisticsStartDate = statisticsstartdate
6724
6754
  @StatisticsEndDate = statisticsenddate
6725
6755
  @ProjectId = projectid
6726
6756
  @DatasourceId = datasourceid
6757
+ @ScoreType = scoretype
6758
+ @Filters = filters
6727
6759
  end
6728
6760
 
6729
6761
  def deserialize(params)
@@ -6731,6 +6763,15 @@ module TencentCloud
6731
6763
  @StatisticsEndDate = params['StatisticsEndDate']
6732
6764
  @ProjectId = params['ProjectId']
6733
6765
  @DatasourceId = params['DatasourceId']
6766
+ @ScoreType = params['ScoreType']
6767
+ unless params['Filters'].nil?
6768
+ @Filters = []
6769
+ params['Filters'].each do |i|
6770
+ filter_tmp = Filter.new
6771
+ filter_tmp.deserialize(i)
6772
+ @Filters << filter_tmp
6773
+ end
6774
+ end
6734
6775
  end
6735
6776
  end
6736
6777
 
@@ -8511,10 +8552,12 @@ module TencentCloud
8511
8552
  # @type OrderFields: Array
8512
8553
  # @param DatasourceId: 数据来源id
8513
8554
  # @type DatasourceId: String
8555
+ # @param ScoreType: 1:按全维度权重计算,2:按已配置维度权重计算,3:不按维度权重计算,默认1
8556
+ # @type ScoreType: String
8514
8557
 
8515
- attr_accessor :StatisticsDate, :ProjectId, :PageNumber, :PageSize, :Filters, :OrderFields, :DatasourceId
8558
+ attr_accessor :StatisticsDate, :ProjectId, :PageNumber, :PageSize, :Filters, :OrderFields, :DatasourceId, :ScoreType
8516
8559
 
8517
- def initialize(statisticsdate=nil, projectid=nil, pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil, datasourceid=nil)
8560
+ def initialize(statisticsdate=nil, projectid=nil, pagenumber=nil, pagesize=nil, filters=nil, orderfields=nil, datasourceid=nil, scoretype=nil)
8518
8561
  @StatisticsDate = statisticsdate
8519
8562
  @ProjectId = projectid
8520
8563
  @PageNumber = pagenumber
@@ -8522,6 +8565,7 @@ module TencentCloud
8522
8565
  @Filters = filters
8523
8566
  @OrderFields = orderfields
8524
8567
  @DatasourceId = datasourceid
8568
+ @ScoreType = scoretype
8525
8569
  end
8526
8570
 
8527
8571
  def deserialize(params)
@@ -8546,6 +8590,7 @@ module TencentCloud
8546
8590
  end
8547
8591
  end
8548
8592
  @DatasourceId = params['DatasourceId']
8593
+ @ScoreType = params['ScoreType']
8549
8594
  end
8550
8595
  end
8551
8596
 
@@ -8647,14 +8692,17 @@ module TencentCloud
8647
8692
  # @type StatisticsEndDate: Integer
8648
8693
  # @param TableId: 表id
8649
8694
  # @type TableId: String
8695
+ # @param ScoreType: 1:按全维度权重计算,2:按已配置维度权重计算,3:不按维度权重计算,默认1
8696
+ # @type ScoreType: String
8650
8697
 
8651
- attr_accessor :ProjectId, :StatisticsStartDate, :StatisticsEndDate, :TableId
8698
+ attr_accessor :ProjectId, :StatisticsStartDate, :StatisticsEndDate, :TableId, :ScoreType
8652
8699
 
8653
- def initialize(projectid=nil, statisticsstartdate=nil, statisticsenddate=nil, tableid=nil)
8700
+ def initialize(projectid=nil, statisticsstartdate=nil, statisticsenddate=nil, tableid=nil, scoretype=nil)
8654
8701
  @ProjectId = projectid
8655
8702
  @StatisticsStartDate = statisticsstartdate
8656
8703
  @StatisticsEndDate = statisticsenddate
8657
8704
  @TableId = tableid
8705
+ @ScoreType = scoretype
8658
8706
  end
8659
8707
 
8660
8708
  def deserialize(params)
@@ -8662,6 +8710,7 @@ module TencentCloud
8662
8710
  @StatisticsStartDate = params['StatisticsStartDate']
8663
8711
  @StatisticsEndDate = params['StatisticsEndDate']
8664
8712
  @TableId = params['TableId']
8713
+ @ScoreType = params['ScoreType']
8665
8714
  end
8666
8715
  end
8667
8716
 
@@ -9596,17 +9645,25 @@ module TencentCloud
9596
9645
  # @param Count: 统计值
9597
9646
  # 注意:此字段可能返回 null,表示取不到有效值。
9598
9647
  # @type Count: Integer
9648
+ # @param QualityDim: 维度类型1:准确性,2:唯一性,3:完整性,4:一致性,5:及时性,6:有效性
9649
+ # 注意:此字段可能返回 null,表示取不到有效值。
9650
+ # @type QualityDim: Integer
9599
9651
 
9600
- attr_accessor :DimType, :Count
9652
+ attr_accessor :DimType, :Count, :QualityDim
9653
+ extend Gem::Deprecate
9654
+ deprecate :DimType, :none, 2023, 6
9655
+ deprecate :DimType=, :none, 2023, 6
9601
9656
 
9602
- def initialize(dimtype=nil, count=nil)
9657
+ def initialize(dimtype=nil, count=nil, qualitydim=nil)
9603
9658
  @DimType = dimtype
9604
9659
  @Count = count
9660
+ @QualityDim = qualitydim
9605
9661
  end
9606
9662
 
9607
9663
  def deserialize(params)
9608
9664
  @DimType = params['DimType']
9609
9665
  @Count = params['Count']
9666
+ @QualityDim = params['QualityDim']
9610
9667
  end
9611
9668
  end
9612
9669
 
@@ -14721,10 +14778,16 @@ module TencentCloud
14721
14778
  # @param RelConditionExpr: 源字段与目标字段关联条件on表达式
14722
14779
  # 注意:此字段可能返回 null,表示取不到有效值。
14723
14780
  # @type RelConditionExpr: String
14781
+ # @param StartTime: 执行时间
14782
+ # 注意:此字段可能返回 null,表示取不到有效值。
14783
+ # @type StartTime: String
14784
+ # @param AlarmLevel: 1/2/3:低/中/高
14785
+ # 注意:此字段可能返回 null,表示取不到有效值。
14786
+ # @type AlarmLevel: Integer
14724
14787
 
14725
- attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr
14788
+ attr_accessor :RuleExecId, :RuleGroupExecId, :RuleGroupId, :RuleId, :RuleName, :RuleType, :SourceObjectDataTypeName, :SourceObjectValue, :ConditionExpression, :ExecResultStatus, :TriggerResult, :CompareResult, :TemplateName, :QualityDim, :TargetDBTableName, :TargetObjectValue, :TargetObjectDataType, :FieldConfig, :RelConditionExpr, :StartTime, :AlarmLevel
14726
14789
 
14727
- def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil)
14790
+ def initialize(ruleexecid=nil, rulegroupexecid=nil, rulegroupid=nil, ruleid=nil, rulename=nil, ruletype=nil, sourceobjectdatatypename=nil, sourceobjectvalue=nil, conditionexpression=nil, execresultstatus=nil, triggerresult=nil, compareresult=nil, templatename=nil, qualitydim=nil, targetdbtablename=nil, targetobjectvalue=nil, targetobjectdatatype=nil, fieldconfig=nil, relconditionexpr=nil, starttime=nil, alarmlevel=nil)
14728
14791
  @RuleExecId = ruleexecid
14729
14792
  @RuleGroupExecId = rulegroupexecid
14730
14793
  @RuleGroupId = rulegroupid
@@ -14744,6 +14807,8 @@ module TencentCloud
14744
14807
  @TargetObjectDataType = targetobjectdatatype
14745
14808
  @FieldConfig = fieldconfig
14746
14809
  @RelConditionExpr = relconditionexpr
14810
+ @StartTime = starttime
14811
+ @AlarmLevel = alarmlevel
14747
14812
  end
14748
14813
 
14749
14814
  def deserialize(params)
@@ -14772,6 +14837,8 @@ module TencentCloud
14772
14837
  @FieldConfig.deserialize(params['FieldConfig'])
14773
14838
  end
14774
14839
  @RelConditionExpr = params['RelConditionExpr']
14840
+ @StartTime = params['StartTime']
14841
+ @AlarmLevel = params['AlarmLevel']
14775
14842
  end
14776
14843
  end
14777
14844
 
@@ -14804,10 +14871,13 @@ module TencentCloud
14804
14871
  # @param TableOwnerUserId: 表负责人userId
14805
14872
  # 注意:此字段可能返回 null,表示取不到有效值。
14806
14873
  # @type TableOwnerUserId: Integer
14874
+ # @param DatasourceType: 2.HIVE 3.DLC
14875
+ # 注意:此字段可能返回 null,表示取不到有效值。
14876
+ # @type DatasourceType: Integer
14807
14877
 
14808
- attr_accessor :DatasourceId, :DatasourceName, :DatabaseId, :DatabaseName, :InstanceId, :TableId, :TableName, :RuleExecResult, :TableOwnerUserId
14878
+ attr_accessor :DatasourceId, :DatasourceName, :DatabaseId, :DatabaseName, :InstanceId, :TableId, :TableName, :RuleExecResult, :TableOwnerUserId, :DatasourceType
14809
14879
 
14810
- def initialize(datasourceid=nil, datasourcename=nil, databaseid=nil, databasename=nil, instanceid=nil, tableid=nil, tablename=nil, ruleexecresult=nil, tableowneruserid=nil)
14880
+ def initialize(datasourceid=nil, datasourcename=nil, databaseid=nil, databasename=nil, instanceid=nil, tableid=nil, tablename=nil, ruleexecresult=nil, tableowneruserid=nil, datasourcetype=nil)
14811
14881
  @DatasourceId = datasourceid
14812
14882
  @DatasourceName = datasourcename
14813
14883
  @DatabaseId = databaseid
@@ -14817,6 +14887,7 @@ module TencentCloud
14817
14887
  @TableName = tablename
14818
14888
  @RuleExecResult = ruleexecresult
14819
14889
  @TableOwnerUserId = tableowneruserid
14890
+ @DatasourceType = datasourcetype
14820
14891
  end
14821
14892
 
14822
14893
  def deserialize(params)
@@ -14832,6 +14903,7 @@ module TencentCloud
14832
14903
  @RuleExecResult.deserialize(params['RuleExecResult'])
14833
14904
  end
14834
14905
  @TableOwnerUserId = params['TableOwnerUserId']
14906
+ @DatasourceType = params['DatasourceType']
14835
14907
  end
14836
14908
  end
14837
14909
 
@@ -15036,10 +15108,13 @@ module TencentCloud
15036
15108
  # @param TableOwnerUserId: 表负责人UserId
15037
15109
  # 注意:此字段可能返回 null,表示取不到有效值。
15038
15110
  # @type TableOwnerUserId: Integer
15111
+ # @param InstanceId: 实例ID
15112
+ # 注意:此字段可能返回 null,表示取不到有效值。
15113
+ # @type InstanceId: String
15039
15114
 
15040
- attr_accessor :RuleGroupId, :DatasourceId, :DatasourceName, :DatasourceType, :MonitorType, :UpdateTime, :TableName, :TableId, :TableOwnerName, :ExecStrategy, :Subscription, :DatabaseId, :DatabaseName, :Permission, :RuleCount, :MonitorStatus, :TableOwnerUserId
15115
+ attr_accessor :RuleGroupId, :DatasourceId, :DatasourceName, :DatasourceType, :MonitorType, :UpdateTime, :TableName, :TableId, :TableOwnerName, :ExecStrategy, :Subscription, :DatabaseId, :DatabaseName, :Permission, :RuleCount, :MonitorStatus, :TableOwnerUserId, :InstanceId
15041
15116
 
15042
- def initialize(rulegroupid=nil, datasourceid=nil, datasourcename=nil, datasourcetype=nil, monitortype=nil, updatetime=nil, tablename=nil, tableid=nil, tableownername=nil, execstrategy=nil, subscription=nil, databaseid=nil, databasename=nil, permission=nil, rulecount=nil, monitorstatus=nil, tableowneruserid=nil)
15117
+ def initialize(rulegroupid=nil, datasourceid=nil, datasourcename=nil, datasourcetype=nil, monitortype=nil, updatetime=nil, tablename=nil, tableid=nil, tableownername=nil, execstrategy=nil, subscription=nil, databaseid=nil, databasename=nil, permission=nil, rulecount=nil, monitorstatus=nil, tableowneruserid=nil, instanceid=nil)
15043
15118
  @RuleGroupId = rulegroupid
15044
15119
  @DatasourceId = datasourceid
15045
15120
  @DatasourceName = datasourcename
@@ -15057,6 +15132,7 @@ module TencentCloud
15057
15132
  @RuleCount = rulecount
15058
15133
  @MonitorStatus = monitorstatus
15059
15134
  @TableOwnerUserId = tableowneruserid
15135
+ @InstanceId = instanceid
15060
15136
  end
15061
15137
 
15062
15138
  def deserialize(params)
@@ -15083,6 +15159,7 @@ module TencentCloud
15083
15159
  @RuleCount = params['RuleCount']
15084
15160
  @MonitorStatus = params['MonitorStatus']
15085
15161
  @TableOwnerUserId = params['TableOwnerUserId']
15162
+ @InstanceId = params['InstanceId']
15086
15163
  end
15087
15164
  end
15088
15165
 
@@ -16476,17 +16553,37 @@ module TencentCloud
16476
16553
  # @param SourceObjectValue: 源字段名称
16477
16554
  # 注意:此字段可能返回 null,表示取不到有效值。
16478
16555
  # @type SourceObjectValue: String
16556
+ # @param ObjectDataTypeName: 源字段详细类型,int、string
16557
+ # 注意:此字段可能返回 null,表示取不到有效值。
16558
+ # @type ObjectDataTypeName: String
16559
+ # @param ObjectValue: 源字段名称
16560
+ # 注意:此字段可能返回 null,表示取不到有效值。
16561
+ # @type ObjectValue: String
16562
+ # @param ObjectType: 对象类型 1.常量 2.离线表级 3.离线字段级
16563
+ # 注意:此字段可能返回 null,表示取不到有效值。
16564
+ # @type ObjectType: Integer
16479
16565
 
16480
- attr_accessor :SourceObjectDataTypeName, :SourceObjectValue
16566
+ attr_accessor :SourceObjectDataTypeName, :SourceObjectValue, :ObjectDataTypeName, :ObjectValue, :ObjectType
16567
+ extend Gem::Deprecate
16568
+ deprecate :SourceObjectDataTypeName, :none, 2023, 6
16569
+ deprecate :SourceObjectDataTypeName=, :none, 2023, 6
16570
+ deprecate :SourceObjectValue, :none, 2023, 6
16571
+ deprecate :SourceObjectValue=, :none, 2023, 6
16481
16572
 
16482
- def initialize(sourceobjectdatatypename=nil, sourceobjectvalue=nil)
16573
+ def initialize(sourceobjectdatatypename=nil, sourceobjectvalue=nil, objectdatatypename=nil, objectvalue=nil, objecttype=nil)
16483
16574
  @SourceObjectDataTypeName = sourceobjectdatatypename
16484
16575
  @SourceObjectValue = sourceobjectvalue
16576
+ @ObjectDataTypeName = objectdatatypename
16577
+ @ObjectValue = objectvalue
16578
+ @ObjectType = objecttype
16485
16579
  end
16486
16580
 
16487
16581
  def deserialize(params)
16488
16582
  @SourceObjectDataTypeName = params['SourceObjectDataTypeName']
16489
16583
  @SourceObjectValue = params['SourceObjectValue']
16584
+ @ObjectDataTypeName = params['ObjectDataTypeName']
16585
+ @ObjectValue = params['ObjectValue']
16586
+ @ObjectType = params['ObjectType']
16490
16587
  end
16491
16588
  end
16492
16589
 
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.599
4
+ version: 3.0.600
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-06-26 00:00:00.000000000 Z
11
+ date: 2023-06-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common