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.
8431 8432 8433 8434 8435 8436 8437 8438 |
# File 'lib/v20210820/models.rb', line 8431 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,表示取不到有效值。
8429 8430 8431 |
# File 'lib/v20210820/models.rb', line 8429 def DependConfType @DependConfType end |
#DependencyStrategy ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8429 8430 8431 |
# File 'lib/v20210820/models.rb', line 8429 def DependencyStrategy @DependencyStrategy end |
#Offset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8429 8430 8431 |
# File 'lib/v20210820/models.rb', line 8429 def Offset @Offset end |
#ParentTask ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8429 8430 8431 |
# File 'lib/v20210820/models.rb', line 8429 def ParentTask @ParentTask end |
#SonTask ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8429 8430 8431 |
# File 'lib/v20210820/models.rb', line 8429 def SonTask @SonTask end |
#SubordinateCyclicType ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8429 8430 8431 |
# File 'lib/v20210820/models.rb', line 8429 def SubordinateCyclicType @SubordinateCyclicType end |
Instance Method Details
#deserialize(params) ⇒ Object
8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 |
# File 'lib/v20210820/models.rb', line 8440 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 |