tencentcloud-sdk-wedata 3.0.506 → 3.0.509

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 +102 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5231e7d58a398b6d13ea3a21155b0078570e71ed
4
- data.tar.gz: 0267dfb7e7a327f85b6f0383d0df0f6d76df55ab
3
+ metadata.gz: f073bca6cbb70c794ff957a45a721d08400d0014
4
+ data.tar.gz: 2e10ba7a0b847ceea50f98e204274e315a6056be
5
5
  SHA512:
6
- metadata.gz: f22e040329944e454b525b47712d70e41f965aa26119d436962f6170583bc5eb865ee3e302ff2402dda2117d364b6f2317cc2988868a489c114ed104d5e03212
7
- data.tar.gz: be52cf813ac0512816f18f475e2de76885f4b8d9f225e12e0f500d402a8c0923546023c83564e85d99e4cfbf6a2407d77b0d9feea95559a9c6ea7b302a56fee0
6
+ metadata.gz: 7e0cf4f8a825704707d403a9c02d0141155df68a0a47096417ccc84a999c36980ec3a44dde8bb5fc02df0b61fba9209d1df4a02cb26ad86c6349b412bbb835ea
7
+ data.tar.gz: 8169aa58a9e9118017f610ec261b1e8ca8bc3fb5005b37a7d946929aaf7b3e7982230e863098ee56d7a854657c4efe5a9402549bcbe1cd14a4d116f69fde3061
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.506
1
+ 3.0.509
@@ -9844,10 +9844,30 @@ module TencentCloud
9844
9844
  # @type SchemaName: String
9845
9845
  # @param SourceFieldInfoList: 上游节点的字段信息
9846
9846
  # @type SourceFieldInfoList: Array
9847
-
9848
- attr_accessor :ProjectId, :SinkDatabase, :Id, :MsType, :DatasourceId, :SourceDatabase, :TableName, :SinkType, :SchemaName, :SourceFieldInfoList
9849
-
9850
- def initialize(projectid=nil, sinkdatabase=nil, id=nil, mstype=nil, datasourceid=nil, sourcedatabase=nil, tablename=nil, sinktype=nil, schemaname=nil, sourcefieldinfolist=nil)
9847
+ # @param Partitions: 分区字段
9848
+ # @type Partitions: Array
9849
+ # @param Properties: 建表属性
9850
+ # @type Properties: Array
9851
+ # @param TableMode: 建表模式,0:向导模式,1:ddl
9852
+ # @type TableMode: Integer
9853
+ # @param TableVersion: DLC表版本,v1/v2
9854
+ # @type TableVersion: String
9855
+ # @param UpsertFlag: 是否upsert写入
9856
+ # @type UpsertFlag: Boolean
9857
+ # @param TableComment: 表描述信息
9858
+ # @type TableComment: String
9859
+ # @param AddDataFiles: 增加的文件数量阈值, 超过值将触发小文件合并
9860
+ # @type AddDataFiles: Integer
9861
+ # @param AddEqualityDeletes: 增加的Equality delete数量阈值, 超过值将触发小文件合并
9862
+ # @type AddEqualityDeletes: Integer
9863
+ # @param AddPositionDeletes: 增加的Position delete数量阈值, 超过值将触发小文件合并
9864
+ # @type AddPositionDeletes: Integer
9865
+ # @param AddDeleteFiles: 增加的delete file数量阈值
9866
+ # @type AddDeleteFiles: Integer
9867
+
9868
+ attr_accessor :ProjectId, :SinkDatabase, :Id, :MsType, :DatasourceId, :SourceDatabase, :TableName, :SinkType, :SchemaName, :SourceFieldInfoList, :Partitions, :Properties, :TableMode, :TableVersion, :UpsertFlag, :TableComment, :AddDataFiles, :AddEqualityDeletes, :AddPositionDeletes, :AddDeleteFiles
9869
+
9870
+ def initialize(projectid=nil, sinkdatabase=nil, id=nil, mstype=nil, datasourceid=nil, sourcedatabase=nil, tablename=nil, sinktype=nil, schemaname=nil, sourcefieldinfolist=nil, partitions=nil, properties=nil, tablemode=nil, tableversion=nil, upsertflag=nil, tablecomment=nil, adddatafiles=nil, addequalitydeletes=nil, addpositiondeletes=nil, adddeletefiles=nil)
9851
9871
  @ProjectId = projectid
9852
9872
  @SinkDatabase = sinkdatabase
9853
9873
  @Id = id
@@ -9858,6 +9878,16 @@ module TencentCloud
9858
9878
  @SinkType = sinktype
9859
9879
  @SchemaName = schemaname
9860
9880
  @SourceFieldInfoList = sourcefieldinfolist
9881
+ @Partitions = partitions
9882
+ @Properties = properties
9883
+ @TableMode = tablemode
9884
+ @TableVersion = tableversion
9885
+ @UpsertFlag = upsertflag
9886
+ @TableComment = tablecomment
9887
+ @AddDataFiles = adddatafiles
9888
+ @AddEqualityDeletes = addequalitydeletes
9889
+ @AddPositionDeletes = addpositiondeletes
9890
+ @AddDeleteFiles = adddeletefiles
9861
9891
  end
9862
9892
 
9863
9893
  def deserialize(params)
@@ -9878,6 +9908,30 @@ module TencentCloud
9878
9908
  @SourceFieldInfoList << sourcefieldinfo_tmp
9879
9909
  end
9880
9910
  end
9911
+ unless params['Partitions'].nil?
9912
+ @Partitions = []
9913
+ params['Partitions'].each do |i|
9914
+ partition_tmp = Partition.new
9915
+ partition_tmp.deserialize(i)
9916
+ @Partitions << partition_tmp
9917
+ end
9918
+ end
9919
+ unless params['Properties'].nil?
9920
+ @Properties = []
9921
+ params['Properties'].each do |i|
9922
+ property_tmp = Property.new
9923
+ property_tmp.deserialize(i)
9924
+ @Properties << property_tmp
9925
+ end
9926
+ end
9927
+ @TableMode = params['TableMode']
9928
+ @TableVersion = params['TableVersion']
9929
+ @UpsertFlag = params['UpsertFlag']
9930
+ @TableComment = params['TableComment']
9931
+ @AddDataFiles = params['AddDataFiles']
9932
+ @AddEqualityDeletes = params['AddEqualityDeletes']
9933
+ @AddPositionDeletes = params['AddPositionDeletes']
9934
+ @AddDeleteFiles = params['AddDeleteFiles']
9881
9935
  end
9882
9936
  end
9883
9937
 
@@ -12980,6 +13034,30 @@ module TencentCloud
12980
13034
  end
12981
13035
  end
12982
13036
 
13037
+ # 分区参数
13038
+ class Partition < TencentCloud::Common::AbstractModel
13039
+ # @param Transform: 分区转换策略
13040
+ # @type Transform: String
13041
+ # @param Name: 分区字段名
13042
+ # @type Name: String
13043
+ # @param TransformArgs: 策略参数
13044
+ # @type TransformArgs: Array
13045
+
13046
+ attr_accessor :Transform, :Name, :TransformArgs
13047
+
13048
+ def initialize(transform=nil, name=nil, transformargs=nil)
13049
+ @Transform = transform
13050
+ @Name = name
13051
+ @TransformArgs = transformargs
13052
+ end
13053
+
13054
+ def deserialize(params)
13055
+ @Transform = params['Transform']
13056
+ @Name = params['Name']
13057
+ @TransformArgs = params['TransformArgs']
13058
+ end
13059
+ end
13060
+
12983
13061
  # 数据质量生产调度任务业务实体
12984
13062
  class ProdSchedulerTask < TencentCloud::Common::AbstractModel
12985
13063
  # @param WorkflowId: 生产调度任务工作流ID
@@ -13007,6 +13085,26 @@ module TencentCloud
13007
13085
  end
13008
13086
  end
13009
13087
 
13088
+ # dlc建表属性
13089
+ class Property < TencentCloud::Common::AbstractModel
13090
+ # @param Key: key值
13091
+ # @type Key: String
13092
+ # @param Value: value值
13093
+ # @type Value: String
13094
+
13095
+ attr_accessor :Key, :Value
13096
+
13097
+ def initialize(key=nil, value=nil)
13098
+ @Key = key
13099
+ @Value = value
13100
+ end
13101
+
13102
+ def deserialize(params)
13103
+ @Key = params['Key']
13104
+ @Value = params['Value']
13105
+ end
13106
+ end
13107
+
13010
13108
  # 质量评分
13011
13109
  class QualityScore < TencentCloud::Common::AbstractModel
13012
13110
  # @param CompositeScore: 综合分数
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.506
4
+ version: 3.0.509
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-02-10 00:00:00.000000000 Z
11
+ date: 2023-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common