Class: TencentCloud::Wedata::V20210820::DescribeColumnLineageRequest

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

Overview

DescribeColumnLineage请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(direction = nil, data = nil, inputdepth = nil, outputdepth = nil, extparams = nil, ignoretemp = nil) ⇒ DescribeColumnLineageRequest

Returns a new instance of DescribeColumnLineageRequest.



8936
8937
8938
8939
8940
8941
8942
8943
# File 'lib/v20210820/models.rb', line 8936

def initialize(direction=nil, data=nil, inputdepth=nil, outputdepth=nil, extparams=nil, ignoretemp=nil)
  @Direction = direction
  @Data = data
  @InputDepth = inputdepth
  @OutputDepth = outputdepth
  @ExtParams = extparams
  @IgnoreTemp = ignoretemp
end

Instance Attribute Details

#DataObject

  • INPUT

  • OUTPUT

  • BOTH

Parameters:

  • Data:

    字段信息

  • InputDepth:

    单次查询入度

  • OutputDepth:

    单次查询出度

  • ExtParams:

    额外参数(传递调用方信息)

  • IgnoreTemp:

    是否过滤临时表 默认值为true



8934
8935
8936
# File 'lib/v20210820/models.rb', line 8934

def Data
  @Data
end

#DirectionObject

  • INPUT

  • OUTPUT

  • BOTH

Parameters:

  • Data:

    字段信息

  • InputDepth:

    单次查询入度

  • OutputDepth:

    单次查询出度

  • ExtParams:

    额外参数(传递调用方信息)

  • IgnoreTemp:

    是否过滤临时表 默认值为true



8934
8935
8936
# File 'lib/v20210820/models.rb', line 8934

def Direction
  @Direction
end

#ExtParamsObject

  • INPUT

  • OUTPUT

  • BOTH

Parameters:

  • Data:

    字段信息

  • InputDepth:

    单次查询入度

  • OutputDepth:

    单次查询出度

  • ExtParams:

    额外参数(传递调用方信息)

  • IgnoreTemp:

    是否过滤临时表 默认值为true



8934
8935
8936
# File 'lib/v20210820/models.rb', line 8934

def ExtParams
  @ExtParams
end

#IgnoreTempObject

  • INPUT

  • OUTPUT

  • BOTH

Parameters:

  • Data:

    字段信息

  • InputDepth:

    单次查询入度

  • OutputDepth:

    单次查询出度

  • ExtParams:

    额外参数(传递调用方信息)

  • IgnoreTemp:

    是否过滤临时表 默认值为true



8934
8935
8936
# File 'lib/v20210820/models.rb', line 8934

def IgnoreTemp
  @IgnoreTemp
end

#InputDepthObject

  • INPUT

  • OUTPUT

  • BOTH

Parameters:

  • Data:

    字段信息

  • InputDepth:

    单次查询入度

  • OutputDepth:

    单次查询出度

  • ExtParams:

    额外参数(传递调用方信息)

  • IgnoreTemp:

    是否过滤临时表 默认值为true



8934
8935
8936
# File 'lib/v20210820/models.rb', line 8934

def InputDepth
  @InputDepth
end

#OutputDepthObject

  • INPUT

  • OUTPUT

  • BOTH

Parameters:

  • Data:

    字段信息

  • InputDepth:

    单次查询入度

  • OutputDepth:

    单次查询出度

  • ExtParams:

    额外参数(传递调用方信息)

  • IgnoreTemp:

    是否过滤临时表 默认值为true



8934
8935
8936
# File 'lib/v20210820/models.rb', line 8934

def OutputDepth
  @OutputDepth
end

Instance Method Details

#deserialize(params) ⇒ Object



8945
8946
8947
8948
8949
8950
8951
8952
8953
8954
8955
8956
8957
8958
8959
8960
8961
8962
# File 'lib/v20210820/models.rb', line 8945

def deserialize(params)
  @Direction = params['Direction']
  unless params['Data'].nil?
    @Data = ColumnLineageInfo.new
    @Data.deserialize(params['Data'])
  end
  @InputDepth = params['InputDepth']
  @OutputDepth = params['OutputDepth']
  unless params['ExtParams'].nil?
    @ExtParams = []
    params['ExtParams'].each do |i|
      recordfield_tmp = RecordField.new
      recordfield_tmp.deserialize(i)
      @ExtParams << recordfield_tmp
    end
  end
  @IgnoreTemp = params['IgnoreTemp']
end