tencentcloud-sdk-dlc 3.0.568 → 3.0.569

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/v20210125/models.rb +25 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: da8b416c348dd948bc2b70c447a9cea874b103d2
4
- data.tar.gz: d10462fb000f4dfee8ff8bd6725ebf4b0125690e
3
+ metadata.gz: ceec2642020f41ad66e302892ce6f81e3c7ef9b9
4
+ data.tar.gz: ab3119b97a1a198f81f967368856e6a5deec05d8
5
5
  SHA512:
6
- metadata.gz: bd24327f43e053e5338a79770ea3d173cefbbc72c47b42003f410e161311e8fb271b3ecc3b41a7af584c866b9fdfdcf5978848b4a1c492160662e566ccdbedf1
7
- data.tar.gz: c88d4023b21396018f98d481aa01b54c3d7178d3114c70f8e0cc29f0c6e151ac525d54e8d2b43deb6715f545c880c72f6282371e84ffdc1446bfa50011a0c9b9
6
+ metadata.gz: 42fc68a822609a6592af142fc1f170fdb3e9af61b443e01d264ffd69f112dbfba8b977fc7edecb74b821e3d316a7e7a276ecc14b5be214c925d0607b39de6f0b
7
+ data.tar.gz: 760820d1146e519d08ee4b5b0715824234acc089f2d217ba59816186c68119ccc3578e1cf2a1d3db09fd4503e8212fb597f0344539fc31e827624858a2a487d9
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.568
1
+ 3.0.569
@@ -2937,12 +2937,23 @@ module TencentCloud
2937
2937
 
2938
2938
  # 数据治理规则
2939
2939
  class DataGovernPolicy < TencentCloud::Common::AbstractModel
2940
+ # @param RuleType: 治理规则类型,Customize: 自定义;Intelligence: 智能治理
2941
+ # 注意:此字段可能返回 null,表示取不到有效值。
2942
+ # @type RuleType: String
2943
+ # @param GovernEngine: 治理引擎
2944
+ # 注意:此字段可能返回 null,表示取不到有效值。
2945
+ # @type GovernEngine: String
2940
2946
 
2947
+ attr_accessor :RuleType, :GovernEngine
2941
2948
 
2942
- def initialize()
2949
+ def initialize(ruletype=nil, governengine=nil)
2950
+ @RuleType = ruletype
2951
+ @GovernEngine = governengine
2943
2952
  end
2944
2953
 
2945
2954
  def deserialize(params)
2955
+ @RuleType = params['RuleType']
2956
+ @GovernEngine = params['GovernEngine']
2946
2957
  end
2947
2958
  end
2948
2959
 
@@ -5477,14 +5488,17 @@ module TencentCloud
5477
5488
  # @type Partitions: Array
5478
5489
  # @param Properties: 表属性信息
5479
5490
  # @type Properties: Array
5491
+ # @param UpsertKeys: V2 upsert表 upsert键
5492
+ # @type UpsertKeys: Array
5480
5493
 
5481
- attr_accessor :TableBaseInfo, :Columns, :Partitions, :Properties
5494
+ attr_accessor :TableBaseInfo, :Columns, :Partitions, :Properties, :UpsertKeys
5482
5495
 
5483
- def initialize(tablebaseinfo=nil, columns=nil, partitions=nil, properties=nil)
5496
+ def initialize(tablebaseinfo=nil, columns=nil, partitions=nil, properties=nil, upsertkeys=nil)
5484
5497
  @TableBaseInfo = tablebaseinfo
5485
5498
  @Columns = columns
5486
5499
  @Partitions = partitions
5487
5500
  @Properties = properties
5501
+ @UpsertKeys = upsertkeys
5488
5502
  end
5489
5503
 
5490
5504
  def deserialize(params)
@@ -5516,6 +5530,7 @@ module TencentCloud
5516
5530
  @Properties << property_tmp
5517
5531
  end
5518
5532
  end
5533
+ @UpsertKeys = params['UpsertKeys']
5519
5534
  end
5520
5535
  end
5521
5536
 
@@ -7171,10 +7186,13 @@ module TencentCloud
7171
7186
  # @param GovernPolicy: 数据治理配置项
7172
7187
  # 注意:此字段可能返回 null,表示取不到有效值。
7173
7188
  # @type GovernPolicy: :class:`Tencentcloud::Dlc.v20210125.models.DataGovernPolicy`
7189
+ # @param DbGovernPolicyIsDisable: 库数据治理是否关闭,关闭:true,开启:false
7190
+ # 注意:此字段可能返回 null,表示取不到有效值。
7191
+ # @type DbGovernPolicyIsDisable: String
7174
7192
 
7175
- attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin, :GovernPolicy
7193
+ attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin, :GovernPolicy, :DbGovernPolicyIsDisable
7176
7194
 
7177
- def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil, governpolicy=nil)
7195
+ def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil, governpolicy=nil, dbgovernpolicyisdisable=nil)
7178
7196
  @DatabaseName = databasename
7179
7197
  @TableName = tablename
7180
7198
  @DatasourceConnectionName = datasourceconnectionname
@@ -7184,6 +7202,7 @@ module TencentCloud
7184
7202
  @UserAlias = useralias
7185
7203
  @UserSubUin = usersubuin
7186
7204
  @GovernPolicy = governpolicy
7205
+ @DbGovernPolicyIsDisable = dbgovernpolicyisdisable
7187
7206
  end
7188
7207
 
7189
7208
  def deserialize(params)
@@ -7199,6 +7218,7 @@ module TencentCloud
7199
7218
  @GovernPolicy = DataGovernPolicy.new
7200
7219
  @GovernPolicy.deserialize(params['GovernPolicy'])
7201
7220
  end
7221
+ @DbGovernPolicyIsDisable = params['DbGovernPolicyIsDisable']
7202
7222
  end
7203
7223
  end
7204
7224
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-dlc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.568
4
+ version: 3.0.569
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-05-12 00:00:00.000000000 Z
11
+ date: 2023-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common