Class: TencentCloud::Wedata::V20210820::RuleGroupTable
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::RuleGroupTable
- Defined in:
- lib/v20210820/models.rb
Overview
表绑定规则组信息
Instance Attribute Summary collapse
-
#RuleGroups ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Subscriptions ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TableInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tableinfo = nil, rulegroups = nil, subscriptions = nil) ⇒ RuleGroupTable
constructor
A new instance of RuleGroupTable.
Constructor Details
#initialize(tableinfo = nil, rulegroups = nil, subscriptions = nil) ⇒ RuleGroupTable
Returns a new instance of RuleGroupTable.
33855 33856 33857 33858 33859 |
# File 'lib/v20210820/models.rb', line 33855 def initialize(tableinfo=nil, rulegroups=nil, subscriptions=nil) @TableInfo = tableinfo @RuleGroups = rulegroups @Subscriptions = subscriptions end |
Instance Attribute Details
#RuleGroups ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
33853 33854 33855 |
# File 'lib/v20210820/models.rb', line 33853 def RuleGroups @RuleGroups end |
#Subscriptions ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
33853 33854 33855 |
# File 'lib/v20210820/models.rb', line 33853 def Subscriptions @Subscriptions end |
#TableInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
33853 33854 33855 |
# File 'lib/v20210820/models.rb', line 33853 def TableInfo @TableInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
33861 33862 33863 33864 33865 33866 33867 33868 33869 33870 33871 33872 33873 33874 33875 33876 33877 33878 33879 33880 33881 33882 |
# File 'lib/v20210820/models.rb', line 33861 def deserialize(params) unless params['TableInfo'].nil? @TableInfo = RuleGroupTableInnerInfo.new @TableInfo.deserialize(params['TableInfo']) end unless params['RuleGroups'].nil? @RuleGroups = [] params['RuleGroups'].each do |i| rulegroupschedulerinfo_tmp = RuleGroupSchedulerInfo.new rulegroupschedulerinfo_tmp.deserialize(i) @RuleGroups << rulegroupschedulerinfo_tmp end end unless params['Subscriptions'].nil? @Subscriptions = [] params['Subscriptions'].each do |i| rulegroupsubscribe_tmp = RuleGroupSubscribe.new rulegroupsubscribe_tmp.deserialize(i) @Subscriptions << rulegroupsubscribe_tmp end end end |