Class: TencentCloud::Wedata::V20210820::DescribeTableLineageRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeTableLineageRequest
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeTableLineage请求参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
- INPUT - OUTPUT - BOTH.
-
#Direction ⇒ Object
- INPUT - OUTPUT - BOTH.
-
#ExtParams ⇒ Object
- INPUT - OUTPUT - BOTH.
-
#IgnoreTemp ⇒ Object
- INPUT - OUTPUT - BOTH.
-
#InputDepth ⇒ Object
- INPUT - OUTPUT - BOTH.
-
#OutputDepth ⇒ Object
- INPUT - OUTPUT - BOTH.
-
#RecursiveSecond ⇒ Object
- INPUT - OUTPUT - BOTH.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(direction = nil, data = nil, inputdepth = nil, outputdepth = nil, extparams = nil, ignoretemp = nil, recursivesecond = nil) ⇒ DescribeTableLineageRequest
constructor
A new instance of DescribeTableLineageRequest.
Constructor Details
#initialize(direction = nil, data = nil, inputdepth = nil, outputdepth = nil, extparams = nil, ignoretemp = nil, recursivesecond = nil) ⇒ DescribeTableLineageRequest
Returns a new instance of DescribeTableLineageRequest.
16381 16382 16383 16384 16385 16386 16387 16388 16389 |
# File 'lib/v20210820/models.rb', line 16381 def initialize(direction=nil, data=nil, inputdepth=nil, outputdepth=nil, extparams=nil, ignoretemp=nil, recursivesecond=nil) @Direction = direction @Data = data @InputDepth = inputdepth @OutputDepth = outputdepth @ExtParams = extparams @IgnoreTemp = ignoretemp @RecursiveSecond = recursivesecond end |
Instance Attribute Details
#Data ⇒ Object
- INPUT
- OUTPUT
- BOTH
16379 16380 16381 |
# File 'lib/v20210820/models.rb', line 16379 def Data @Data end |
#Direction ⇒ Object
- INPUT
- OUTPUT
- BOTH
16379 16380 16381 |
# File 'lib/v20210820/models.rb', line 16379 def Direction @Direction end |
#ExtParams ⇒ Object
- INPUT
- OUTPUT
- BOTH
16379 16380 16381 |
# File 'lib/v20210820/models.rb', line 16379 def ExtParams @ExtParams end |
#IgnoreTemp ⇒ Object
- INPUT
- OUTPUT
- BOTH
16379 16380 16381 |
# File 'lib/v20210820/models.rb', line 16379 def IgnoreTemp @IgnoreTemp end |
#InputDepth ⇒ Object
- INPUT
- OUTPUT
- BOTH
16379 16380 16381 |
# File 'lib/v20210820/models.rb', line 16379 def InputDepth @InputDepth end |
#OutputDepth ⇒ Object
- INPUT
- OUTPUT
- BOTH
16379 16380 16381 |
# File 'lib/v20210820/models.rb', line 16379 def OutputDepth @OutputDepth end |
#RecursiveSecond ⇒ Object
- INPUT
- OUTPUT
- BOTH
16379 16380 16381 |
# File 'lib/v20210820/models.rb', line 16379 def RecursiveSecond @RecursiveSecond end |
Instance Method Details
#deserialize(params) ⇒ Object
16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 |
# File 'lib/v20210820/models.rb', line 16391 def deserialize(params) @Direction = params['Direction'] unless params['Data'].nil? @Data = TableLineageInfo.new @Data.deserialize(params['Data']) end @InputDepth = params['InputDepth'] @OutputDepth = params['OutputDepth'] unless params['ExtParams'].nil? @ExtParams = [] params['ExtParams'].each do |i| lineageparamrecord_tmp = LineageParamRecord.new lineageparamrecord_tmp.deserialize(i) @ExtParams << lineageparamrecord_tmp end end @IgnoreTemp = params['IgnoreTemp'] @RecursiveSecond = params['RecursiveSecond'] end |