Class: TencentCloud::Emr::V20190103::DAGInfo

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190103/models.rb

Overview

DAG信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, type = nil, content = nil) ⇒ DAGInfo

Returns a new instance of DAGInfo.



2565
2566
2567
2568
2569
# File 'lib/v20190103/models.rb', line 2565

def initialize(id=nil, type=nil, content=nil)
  @ID = id
  @Type = type
  @Content = content
end

Instance Attribute Details

#ContentObject

Parameters:

  • ID:

    查询ID

  • Type:

    DAG类型,目前只支持starrocks

  • Content:

    返回的DAG的JSON字符串



2563
2564
2565
# File 'lib/v20190103/models.rb', line 2563

def Content
  @Content
end

#IDObject

Parameters:

  • ID:

    查询ID

  • Type:

    DAG类型,目前只支持starrocks

  • Content:

    返回的DAG的JSON字符串



2563
2564
2565
# File 'lib/v20190103/models.rb', line 2563

def ID
  @ID
end

#TypeObject

Parameters:

  • ID:

    查询ID

  • Type:

    DAG类型,目前只支持starrocks

  • Content:

    返回的DAG的JSON字符串



2563
2564
2565
# File 'lib/v20190103/models.rb', line 2563

def Type
  @Type
end

Instance Method Details

#deserialize(params) ⇒ Object



2571
2572
2573
2574
2575
# File 'lib/v20190103/models.rb', line 2571

def deserialize(params)
  @ID = params['ID']
  @Type = params['Type']
  @Content = params['Content']
end