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.
15730 15731 15732 15733 15734 15735 15736 15737 15738 |
# File 'lib/v20210820/models.rb', line 15730 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
15728 15729 15730 |
# File 'lib/v20210820/models.rb', line 15728 def Data @Data end |
#Direction ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15728 15729 15730 |
# File 'lib/v20210820/models.rb', line 15728 def Direction @Direction end |
#ExtParams ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15728 15729 15730 |
# File 'lib/v20210820/models.rb', line 15728 def ExtParams @ExtParams end |
#IgnoreTemp ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15728 15729 15730 |
# File 'lib/v20210820/models.rb', line 15728 def IgnoreTemp @IgnoreTemp end |
#InputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15728 15729 15730 |
# File 'lib/v20210820/models.rb', line 15728 def InputDepth @InputDepth end |
#OutputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15728 15729 15730 |
# File 'lib/v20210820/models.rb', line 15728 def OutputDepth @OutputDepth end |
#RecursiveSecond ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15728 15729 15730 |
# File 'lib/v20210820/models.rb', line 15728 def RecursiveSecond @RecursiveSecond end |
Instance Method Details
#deserialize(params) ⇒ Object
15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 |
# File 'lib/v20210820/models.rb', line 15740 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 |