tencentcloud-sdk-wedata 3.0.870 → 3.0.872

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 +36 -8
  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: 21e778877913f823bd2dd62f467a7dd574ca0837
4
+ data.tar.gz: 5be3b606d4ee12c876670211a52d13ab86002a94
5
5
  SHA512:
6
- metadata.gz: 6b5c7dd29e9a61d5bebe1820d3a4ed8e02381c57e44ba4c5b3833ae36629f64aa0eeab061b5311f10a33cb65d42a0cc39c019727b7c5f8bc73a2ded2cbc8b81c
7
- data.tar.gz: b76088f766bf810dc70195c41025413c85ada7fb68189ac97dc7afeb3f326c44210f2a4388d49284216efd46cddc49915c94c5ad5d2a30d025a4e3b885383f3e
6
+ metadata.gz: 1bac6c3967bb5b606598d59c7a9a921d0742feda060e7959e2767c18d183243ee6c3b3c670e7966b7b8b99a0129571c57b7228e8019243a7856e85c2e2c4df92
7
+ data.tar.gz: bf40c1009fa0a6d72d5ea7540147f4275201a8507c7981939129995ebe48b38ceb5fb934046850d13d6aa1ab67050b7aa19f750d0dbc591d3db3ee200eed2051
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.870
1
+ 3.0.872
@@ -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
 
@@ -19672,10 +19690,13 @@ module TencentCloud
19672
19690
  # @param OwnerUserIdsStr: 公有云 Owner ID 列表
19673
19691
  # 注意:此字段可能返回 null,表示取不到有效值。
19674
19692
  # @type OwnerUserIdsStr: Array
19693
+ # @param EnvType: 数据库环境
19694
+ # 注意:此字段可能返回 null,表示取不到有效值。
19695
+ # @type EnvType: String
19675
19696
 
19676
- attr_accessor :Name, :DisplayName, :LayerPath, :ParentLayerPath, :Type, :Kind, :Category, :Status, :Description, :Usage, :ParamDesc, :ReturnDesc, :Example, :ClusterIdentifier, :FuncId, :ClassName, :ResourceList, :OperatorUserIds, :OwnerUserIds, :DbName, :SubmitErrorMsg, :SchemaName, :CommandFormat, :OwnerName, :SubmitTimestamp, :Tag, :OperatorUserIdsStr, :OwnerUserIdsStr
19697
+ attr_accessor :Name, :DisplayName, :LayerPath, :ParentLayerPath, :Type, :Kind, :Category, :Status, :Description, :Usage, :ParamDesc, :ReturnDesc, :Example, :ClusterIdentifier, :FuncId, :ClassName, :ResourceList, :OperatorUserIds, :OwnerUserIds, :DbName, :SubmitErrorMsg, :SchemaName, :CommandFormat, :OwnerName, :SubmitTimestamp, :Tag, :OperatorUserIdsStr, :OwnerUserIdsStr, :EnvType
19677
19698
 
19678
- def initialize(name=nil, displayname=nil, layerpath=nil, parentlayerpath=nil, type=nil, kind=nil, category=nil, status=nil, description=nil, usage=nil, paramdesc=nil, returndesc=nil, example=nil, clusteridentifier=nil, funcid=nil, classname=nil, resourcelist=nil, operatoruserids=nil, owneruserids=nil, dbname=nil, submiterrormsg=nil, schemaname=nil, commandformat=nil, ownername=nil, submittimestamp=nil, tag=nil, operatoruseridsstr=nil, owneruseridsstr=nil)
19699
+ def initialize(name=nil, displayname=nil, layerpath=nil, parentlayerpath=nil, type=nil, kind=nil, category=nil, status=nil, description=nil, usage=nil, paramdesc=nil, returndesc=nil, example=nil, clusteridentifier=nil, funcid=nil, classname=nil, resourcelist=nil, operatoruserids=nil, owneruserids=nil, dbname=nil, submiterrormsg=nil, schemaname=nil, commandformat=nil, ownername=nil, submittimestamp=nil, tag=nil, operatoruseridsstr=nil, owneruseridsstr=nil, envtype=nil)
19679
19700
  @Name = name
19680
19701
  @DisplayName = displayname
19681
19702
  @LayerPath = layerpath
@@ -19704,6 +19725,7 @@ module TencentCloud
19704
19725
  @Tag = tag
19705
19726
  @OperatorUserIdsStr = operatoruseridsstr
19706
19727
  @OwnerUserIdsStr = owneruseridsstr
19728
+ @EnvType = envtype
19707
19729
  end
19708
19730
 
19709
19731
  def deserialize(params)
@@ -19742,6 +19764,7 @@ module TencentCloud
19742
19764
  @Tag = params['Tag']
19743
19765
  @OperatorUserIdsStr = params['OperatorUserIdsStr']
19744
19766
  @OwnerUserIdsStr = params['OwnerUserIdsStr']
19767
+ @EnvType = params['EnvType']
19745
19768
  end
19746
19769
  end
19747
19770
 
@@ -21726,10 +21749,13 @@ module TencentCloud
21726
21749
  # @param TriggerTypes: 触发类型
21727
21750
  # 注意:此字段可能返回 null,表示取不到有效值。
21728
21751
  # @type TriggerTypes: Array
21752
+ # @param DlcGroupName: DLC资源组
21753
+ # 注意:此字段可能返回 null,表示取不到有效值。
21754
+ # @type DlcGroupName: String
21729
21755
 
21730
- attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes
21756
+ attr_accessor :RuleGroupId, :MonitorType, :ExecQueue, :ExecutorGroupId, :ExecutorGroupName, :Tasks, :StartTime, :EndTime, :CycleType, :DelayTime, :CycleStep, :TaskAction, :ExecEngineType, :ExecPlan, :RuleId, :RuleName, :TriggerTypes, :DlcGroupName
21731
21757
 
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)
21758
+ 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
21759
  @RuleGroupId = rulegroupid
21734
21760
  @MonitorType = monitortype
21735
21761
  @ExecQueue = execqueue
@@ -21747,6 +21773,7 @@ module TencentCloud
21747
21773
  @RuleId = ruleid
21748
21774
  @RuleName = rulename
21749
21775
  @TriggerTypes = triggertypes
21776
+ @DlcGroupName = dlcgroupname
21750
21777
  end
21751
21778
 
21752
21779
  def deserialize(params)
@@ -21774,6 +21801,7 @@ module TencentCloud
21774
21801
  @RuleId = params['RuleId']
21775
21802
  @RuleName = params['RuleName']
21776
21803
  @TriggerTypes = params['TriggerTypes']
21804
+ @DlcGroupName = params['DlcGroupName']
21777
21805
  end
21778
21806
  end
21779
21807
 
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.872
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-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common