tencentcloud-sdk-wedata 3.0.870 → 3.0.871

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 +29 -6
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 63d8a5a05493c4e6df33cae63c651d17880d3d96
4
- data.tar.gz: aa8704e1abbee40acc6989a056a44816f51b9762
3
+ metadata.gz: 72701814cf5f0b8ef775dfa67e8afbac4db43ac3
4
+ data.tar.gz: b546f11b874f1fb6c544c0d455cc2c4001155c93
5
5
  SHA512:
6
- metadata.gz: 6b5c7dd29e9a61d5bebe1820d3a4ed8e02381c57e44ba4c5b3833ae36629f64aa0eeab061b5311f10a33cb65d42a0cc39c019727b7c5f8bc73a2ded2cbc8b81c
7
- data.tar.gz: b76088f766bf810dc70195c41025413c85ada7fb68189ac97dc7afeb3f326c44210f2a4388d49284216efd46cddc49915c94c5ad5d2a30d025a4e3b885383f3e
6
+ metadata.gz: 507c8b30f2f718acaaf3573881ed350728d162cfcd1478930d2b636c1e2a737ec522a8aa352ee157d89e94a21299e19fbff6b1a57607c9c4318403d5648d8ea3
7
+ data.tar.gz: c530780e1b77f0d6392aa31cf85aff402e4da263f89bdce63571b7ea7bae6f79adbf70371eaf64d4db38c26c2d2c01faa74e531dd1e10f917f74ad571ba94d0b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.870
1
+ 3.0.871
@@ -9567,15 +9567,21 @@ module TencentCloud
9567
9567
  # 标准模式生产环境:PROD
9568
9568
  # 简单模式:ALL
9569
9569
  # @type EnvType: String
9570
+ # @param Filters: 过滤条件
9571
+ # @type Filters: :class:`Tencentcloud::Wedata.v20210820.models.Filter`
9572
+ # @param OrderFields: 排序条件
9573
+ # @type OrderFields: :class:`Tencentcloud::Wedata.v20210820.models.OrderField`
9570
9574
 
9571
- attr_accessor :Type, :ProjectId, :Name, :DisplayName, :EnvType
9575
+ attr_accessor :Type, :ProjectId, :Name, :DisplayName, :EnvType, :Filters, :OrderFields
9572
9576
 
9573
- def initialize(type=nil, projectid=nil, name=nil, displayname=nil, envtype=nil)
9577
+ def initialize(type=nil, projectid=nil, name=nil, displayname=nil, envtype=nil, filters=nil, orderfields=nil)
9574
9578
  @Type = type
9575
9579
  @ProjectId = projectid
9576
9580
  @Name = name
9577
9581
  @DisplayName = displayname
9578
9582
  @EnvType = envtype
9583
+ @Filters = filters
9584
+ @OrderFields = orderfields
9579
9585
  end
9580
9586
 
9581
9587
  def deserialize(params)
@@ -9584,6 +9590,14 @@ module TencentCloud
9584
9590
  @Name = params['Name']
9585
9591
  @DisplayName = params['DisplayName']
9586
9592
  @EnvType = params['EnvType']
9593
+ unless params['Filters'].nil?
9594
+ @Filters = Filter.new
9595
+ @Filters.deserialize(params['Filters'])
9596
+ end
9597
+ unless params['OrderFields'].nil?
9598
+ @OrderFields = OrderField.new
9599
+ @OrderFields.deserialize(params['OrderFields'])
9600
+ end
9587
9601
  end
9588
9602
  end
9589
9603
 
@@ -12034,16 +12048,19 @@ module TencentCloud
12034
12048
  # @type ConnectionType: String
12035
12049
  # @param SchemaName: 元数据Database下的Schema名称
12036
12050
  # @type SchemaName: String
12051
+ # @param ProjectId: 项目空间ID
12052
+ # @type ProjectId: String
12037
12053
 
12038
- attr_accessor :Name, :DatabaseName, :MsType, :DatasourceId, :ConnectionType, :SchemaName
12054
+ attr_accessor :Name, :DatabaseName, :MsType, :DatasourceId, :ConnectionType, :SchemaName, :ProjectId
12039
12055
 
12040
- def initialize(name=nil, databasename=nil, mstype=nil, datasourceid=nil, connectiontype=nil, schemaname=nil)
12056
+ def initialize(name=nil, databasename=nil, mstype=nil, datasourceid=nil, connectiontype=nil, schemaname=nil, projectid=nil)
12041
12057
  @Name = name
12042
12058
  @DatabaseName = databasename
12043
12059
  @MsType = mstype
12044
12060
  @DatasourceId = datasourceid
12045
12061
  @ConnectionType = connectiontype
12046
12062
  @SchemaName = schemaname
12063
+ @ProjectId = projectid
12047
12064
  end
12048
12065
 
12049
12066
  def deserialize(params)
@@ -12053,6 +12070,7 @@ module TencentCloud
12053
12070
  @DatasourceId = params['DatasourceId']
12054
12071
  @ConnectionType = params['ConnectionType']
12055
12072
  @SchemaName = params['SchemaName']
12073
+ @ProjectId = params['ProjectId']
12056
12074
  end
12057
12075
  end
12058
12076
 
@@ -21726,10 +21744,13 @@ module TencentCloud
21726
21744
  # @param TriggerTypes: 触发类型
21727
21745
  # 注意:此字段可能返回 null,表示取不到有效值。
21728
21746
  # @type TriggerTypes: Array
21747
+ # @param DlcGroupName: DLC资源组
21748
+ # 注意:此字段可能返回 null,表示取不到有效值。
21749
+ # @type DlcGroupName: String
21729
21750
 
21730
- attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes
21751
+ attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName
21731
21752
 
21732
- def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil)
21753
+ def initialize(rulegroupid=nil, monitortype=nil, execqueue=nil, executorgroupid=nil, executorgroupname=nil, tasks=nil, starttime=nil, endtime=nil, cycletype=nil, delaytime=nil, cyclestep=nil, taskaction=nil, execenginetype=nil, execplan=nil, ruleid=nil, rulename=nil, triggertypes=nil, dlcgroupname=nil)
21733
21754
  @RuleGroupId = rulegroupid
21734
21755
  @MonitorType = monitortype
21735
21756
  @ExecQueue = execqueue
@@ -21747,6 +21768,7 @@ module TencentCloud
21747
21768
  @RuleId = ruleid
21748
21769
  @RuleName = rulename
21749
21770
  @TriggerTypes = triggertypes
21771
+ @DlcGroupName = dlcgroupname
21750
21772
  end
21751
21773
 
21752
21774
  def deserialize(params)
@@ -21774,6 +21796,7 @@ module TencentCloud
21774
21796
  @RuleId = params['RuleId']
21775
21797
  @RuleName = params['RuleName']
21776
21798
  @TriggerTypes = params['TriggerTypes']
21799
+ @DlcGroupName = params['DlcGroupName']
21777
21800
  end
21778
21801
  end
21779
21802
 
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.870
4
+ version: 3.0.871
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-22 00:00:00.000000000 Z
11
+ date: 2024-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common