Class: TencentCloud::Wedata::V20210820::DependencyConfig
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DependencyConfig
- Defined in:
- lib/v20210820/models.rb
Overview
依赖配置
Instance Attribute Summary collapse
-
#DependConfType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#DependencyStrategy ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#ParentTask ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#SonTask ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#SubordinateCyclicType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(dependconftype = nil, subordinatecyclictype = nil, dependencystrategy = nil, parenttask = nil, sontask = nil, offset = nil) ⇒ DependencyConfig
constructor
A new instance of DependencyConfig.
Constructor Details
#initialize(dependconftype = nil, subordinatecyclictype = nil, dependencystrategy = nil, parenttask = nil, sontask = nil, offset = nil) ⇒ DependencyConfig
Returns a new instance of DependencyConfig.
7996 7997 7998 7999 8000 8001 8002 8003 |
# File 'lib/v20210820/models.rb', line 7996 def initialize(dependconftype=nil, subordinatecyclictype=nil, dependencystrategy=nil, parenttask=nil, sontask=nil, offset=nil) @DependConfType = dependconftype @SubordinateCyclicType = subordinatecyclictype @DependencyStrategy = dependencystrategy @ParentTask = parenttask @SonTask = sontask @Offset = offset end |
Instance Attribute Details
#DependConfType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
7994 7995 7996 |
# File 'lib/v20210820/models.rb', line 7994 def DependConfType @DependConfType end |
#DependencyStrategy ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
7994 7995 7996 |
# File 'lib/v20210820/models.rb', line 7994 def DependencyStrategy @DependencyStrategy end |
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
7994 7995 7996 |
# File 'lib/v20210820/models.rb', line 7994 def Offset @Offset end |
#ParentTask ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
7994 7995 7996 |
# File 'lib/v20210820/models.rb', line 7994 def ParentTask @ParentTask end |
#SonTask ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
7994 7995 7996 |
# File 'lib/v20210820/models.rb', line 7994 def SonTask @SonTask end |
#SubordinateCyclicType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
7994 7995 7996 |
# File 'lib/v20210820/models.rb', line 7994 def SubordinateCyclicType @SubordinateCyclicType end |
Instance Method Details
#deserialize(params) ⇒ Object
8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 |
# File 'lib/v20210820/models.rb', line 8005 def deserialize(params) @DependConfType = params['DependConfType'] @SubordinateCyclicType = params['SubordinateCyclicType'] @DependencyStrategy = params['DependencyStrategy'] unless params['ParentTask'].nil? @ParentTask = TaskInnerInfo.new @ParentTask.deserialize(params['ParentTask']) end unless params['SonTask'].nil? @SonTask = TaskInnerInfo.new @SonTask.deserialize(params['SonTask']) end @Offset = params['Offset'] end |