tencentcloud-sdk-dlc 3.0.982 → 3.0.983

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20210125/models.rb +46 -12
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a2ccdc15490f65fc41d8b5d1c06622f88aa6aee2
4
- data.tar.gz: c393d1663b49efa4d5691fe12d810b2db34420f8
3
+ metadata.gz: c508200b568206a58027c4efbb21ef24ead72345
4
+ data.tar.gz: e88e8d27e8fe8a23c53f5699ad48114d4c7053c3
5
5
  SHA512:
6
- metadata.gz: 1bd53650c6328bb8f481e572486f5f75586d26e42826fe8090ac03dde42e32515a0f6dc70b7fff770260ca46eb0bae2a664cdf75ec26dead0ef5cd6e37434e5c
7
- data.tar.gz: bd854926106a05a0d333ada3d778d3997af71bbc41ddd2027d47cf6b2147e76be3b99df6b4161c993d9ac77d50395b98e6c099418a049d36242b7880bdb45642
6
+ metadata.gz: cb1525b634a0727e4d616c455f8d5fbe85b54c5ddb6bcbf17022dbcb2730a9d107106e9aaf21102e6710c967ea74a2e48365703f3cc69c89283d57f53848f362
7
+ data.tar.gz: abbdffcafe1ee5e1ebfa7648dad6084e14a90831677116036f9cb1e7151b130cef405843d2d65b8c150c112e24be8a6983ca5334f7faa09cda9e968dc20800aa
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.982
1
+ 3.0.983
@@ -1718,8 +1718,8 @@ module TencentCloud
1718
1718
 
1719
1719
  attr_accessor :EngineType, :DataEngineName, :ClusterType, :Mode, :AutoResume, :MinClusters, :MaxClusters, :DefaultDataEngine, :CidrBlock, :Message, :Size, :PayMode, :TimeSpan, :TimeUnit, :AutoRenew, :Tags, :AutoSuspend, :CrontabResumeSuspend, :CrontabResumeSuspendStrategy, :EngineExecType, :MaxConcurrency, :TolerableQueueTime, :AutoSuspendTime, :ResourceType, :DataEngineConfigPairs, :ImageVersionName, :MainClusterName, :ElasticSwitch, :ElasticLimit, :SessionResourceTemplate, :AutoAuthorization, :EngineNetworkId, :EngineGeneration
1720
1720
  extend Gem::Deprecate
1721
- deprecate :DefaultDataEngine, :none, 2024, 12
1722
- deprecate :DefaultDataEngine=, :none, 2024, 12
1721
+ deprecate :DefaultDataEngine, :none, 2025, 1
1722
+ deprecate :DefaultDataEngine=, :none, 2025, 1
1723
1723
 
1724
1724
  def initialize(enginetype=nil, dataenginename=nil, clustertype=nil, mode=nil, autoresume=nil, minclusters=nil, maxclusters=nil, defaultdataengine=nil, cidrblock=nil, message=nil, size=nil, paymode=nil, timespan=nil, timeunit=nil, autorenew=nil, tags=nil, autosuspend=nil, crontabresumesuspend=nil, crontabresumesuspendstrategy=nil, engineexectype=nil, maxconcurrency=nil, tolerablequeuetime=nil, autosuspendtime=nil, resourcetype=nil, dataengineconfigpairs=nil, imageversionname=nil, mainclustername=nil, elasticswitch=nil, elasticlimit=nil, sessionresourcetemplate=nil, autoauthorization=nil, enginenetworkid=nil, enginegeneration=nil)
1725
1725
  @EngineType = enginetype
@@ -11397,6 +11397,23 @@ module TencentCloud
11397
11397
  end
11398
11398
  end
11399
11399
 
11400
+ # 混合表中,change表的数据保存时间,单位为天
11401
+ class SmartOptimizerChangeTablePolicy < TencentCloud::Common::AbstractModel
11402
+ # @param DataRetentionTime: change表的数据保存时间,单位为天
11403
+ # 注意:此字段可能返回 null,表示取不到有效值。
11404
+ # @type DataRetentionTime: Integer
11405
+
11406
+ attr_accessor :DataRetentionTime
11407
+
11408
+ def initialize(dataretentiontime=nil)
11409
+ @DataRetentionTime = dataretentiontime
11410
+ end
11411
+
11412
+ def deserialize(params)
11413
+ @DataRetentionTime = params['DataRetentionTime']
11414
+ end
11415
+ end
11416
+
11400
11417
  # SmartOptimizerIndexPolicy
11401
11418
  class SmartOptimizerIndexPolicy < TencentCloud::Common::AbstractModel
11402
11419
  # @param IndexEnable: 开启索引
@@ -11468,15 +11485,19 @@ module TencentCloud
11468
11485
  # @param Index: SmartOptimizerIndexPolicy
11469
11486
  # 注意:此字段可能返回 null,表示取不到有效值。
11470
11487
  # @type Index: :class:`Tencentcloud::Dlc.v20210125.models.SmartOptimizerIndexPolicy`
11488
+ # @param ChangeTable: SmartOptimizerChangeTablePolicy
11489
+ # 注意:此字段可能返回 null,表示取不到有效值。
11490
+ # @type ChangeTable: :class:`Tencentcloud::Dlc.v20210125.models.SmartOptimizerChangeTablePolicy`
11471
11491
 
11472
- attr_accessor :Inherit, :Resources, :Written, :Lifecycle, :Index
11492
+ attr_accessor :Inherit, :Resources, :Written, :Lifecycle, :Index, :ChangeTable
11473
11493
 
11474
- def initialize(inherit=nil, resources=nil, written=nil, lifecycle=nil, index=nil)
11494
+ def initialize(inherit=nil, resources=nil, written=nil, lifecycle=nil, index=nil, changetable=nil)
11475
11495
  @Inherit = inherit
11476
11496
  @Resources = resources
11477
11497
  @Written = written
11478
11498
  @Lifecycle = lifecycle
11479
11499
  @Index = index
11500
+ @ChangeTable = changetable
11480
11501
  end
11481
11502
 
11482
11503
  def deserialize(params)
@@ -11501,6 +11522,10 @@ module TencentCloud
11501
11522
  @Index = SmartOptimizerIndexPolicy.new
11502
11523
  @Index.deserialize(params['Index'])
11503
11524
  end
11525
+ unless params['ChangeTable'].nil?
11526
+ @ChangeTable = SmartOptimizerChangeTablePolicy.new
11527
+ @ChangeTable.deserialize(params['ChangeTable'])
11528
+ end
11504
11529
  end
11505
11530
  end
11506
11531
 
@@ -12321,15 +12346,18 @@ module TencentCloud
12321
12346
  # @param SmartPolicy: 智能数据治理配置项
12322
12347
  # 注意:此字段可能返回 null,表示取不到有效值。
12323
12348
  # @type SmartPolicy: :class:`Tencentcloud::Dlc.v20210125.models.SmartPolicy`
12349
+ # @param PrimaryKeys: T-ICEBERG表的主键
12350
+ # 注意:此字段可能返回 null,表示取不到有效值。
12351
+ # @type PrimaryKeys: Array
12324
12352
 
12325
- attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin, :GovernPolicy, :DbGovernPolicyIsDisable, :SmartPolicy
12353
+ attr_accessor :DatabaseName, :TableName, :DatasourceConnectionName, :TableComment, :Type, :TableFormat, :UserAlias, :UserSubUin, :GovernPolicy, :DbGovernPolicyIsDisable, :SmartPolicy, :PrimaryKeys
12326
12354
  extend Gem::Deprecate
12327
- deprecate :GovernPolicy, :none, 2024, 12
12328
- deprecate :GovernPolicy=, :none, 2024, 12
12329
- deprecate :DbGovernPolicyIsDisable, :none, 2024, 12
12330
- deprecate :DbGovernPolicyIsDisable=, :none, 2024, 12
12355
+ deprecate :GovernPolicy, :none, 2025, 1
12356
+ deprecate :GovernPolicy=, :none, 2025, 1
12357
+ deprecate :DbGovernPolicyIsDisable, :none, 2025, 1
12358
+ deprecate :DbGovernPolicyIsDisable=, :none, 2025, 1
12331
12359
 
12332
- def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil, governpolicy=nil, dbgovernpolicyisdisable=nil, smartpolicy=nil)
12360
+ def initialize(databasename=nil, tablename=nil, datasourceconnectionname=nil, tablecomment=nil, type=nil, tableformat=nil, useralias=nil, usersubuin=nil, governpolicy=nil, dbgovernpolicyisdisable=nil, smartpolicy=nil, primarykeys=nil)
12333
12361
  @DatabaseName = databasename
12334
12362
  @TableName = tablename
12335
12363
  @DatasourceConnectionName = datasourceconnectionname
@@ -12341,6 +12369,7 @@ module TencentCloud
12341
12369
  @GovernPolicy = governpolicy
12342
12370
  @DbGovernPolicyIsDisable = dbgovernpolicyisdisable
12343
12371
  @SmartPolicy = smartpolicy
12372
+ @PrimaryKeys = primarykeys
12344
12373
  end
12345
12374
 
12346
12375
  def deserialize(params)
@@ -12361,6 +12390,7 @@ module TencentCloud
12361
12390
  @SmartPolicy = SmartPolicy.new
12362
12391
  @SmartPolicy.deserialize(params['SmartPolicy'])
12363
12392
  end
12393
+ @PrimaryKeys = params['PrimaryKeys']
12364
12394
  end
12365
12395
  end
12366
12396
 
@@ -12453,10 +12483,12 @@ module TencentCloud
12453
12483
  # @param HeatValue: 访问热点
12454
12484
  # 注意:此字段可能返回 null,表示取不到有效值。
12455
12485
  # @type HeatValue: Integer
12486
+ # @param InputFormatShort: InputFormat的缩写
12487
+ # @type InputFormatShort: String
12456
12488
 
12457
- attr_accessor :TableBaseInfo, :Columns, :Partitions, :Location, :Properties, :ModifiedTime, :CreateTime, :InputFormat, :StorageSize, :RecordCount, :MapMaterializedViewName, :HeatValue
12489
+ attr_accessor :TableBaseInfo, :Columns, :Partitions, :Location, :Properties, :ModifiedTime, :CreateTime, :InputFormat, :StorageSize, :RecordCount, :MapMaterializedViewName, :HeatValue, :InputFormatShort
12458
12490
 
12459
- def initialize(tablebaseinfo=nil, columns=nil, partitions=nil, location=nil, properties=nil, modifiedtime=nil, createtime=nil, inputformat=nil, storagesize=nil, recordcount=nil, mapmaterializedviewname=nil, heatvalue=nil)
12491
+ def initialize(tablebaseinfo=nil, columns=nil, partitions=nil, location=nil, properties=nil, modifiedtime=nil, createtime=nil, inputformat=nil, storagesize=nil, recordcount=nil, mapmaterializedviewname=nil, heatvalue=nil, inputformatshort=nil)
12460
12492
  @TableBaseInfo = tablebaseinfo
12461
12493
  @Columns = columns
12462
12494
  @Partitions = partitions
@@ -12469,6 +12501,7 @@ module TencentCloud
12469
12501
  @RecordCount = recordcount
12470
12502
  @MapMaterializedViewName = mapmaterializedviewname
12471
12503
  @HeatValue = heatvalue
12504
+ @InputFormatShort = inputformatshort
12472
12505
  end
12473
12506
 
12474
12507
  def deserialize(params)
@@ -12508,6 +12541,7 @@ module TencentCloud
12508
12541
  @RecordCount = params['RecordCount']
12509
12542
  @MapMaterializedViewName = params['MapMaterializedViewName']
12510
12543
  @HeatValue = params['HeatValue']
12544
+ @InputFormatShort = params['InputFormatShort']
12511
12545
  end
12512
12546
  end
12513
12547
 
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.982
4
+ version: 3.0.983
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-01-14 00:00:00.000000000 Z
11
+ date: 2025-01-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common