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.
15813 15814 15815 15816 15817 15818 15819 15820 15821 |
# File 'lib/v20210820/models.rb', line 15813 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
15811 15812 15813 |
# File 'lib/v20210820/models.rb', line 15811 def Data @Data end |
#Direction ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15811 15812 15813 |
# File 'lib/v20210820/models.rb', line 15811 def Direction @Direction end |
#ExtParams ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15811 15812 15813 |
# File 'lib/v20210820/models.rb', line 15811 def ExtParams @ExtParams end |
#IgnoreTemp ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15811 15812 15813 |
# File 'lib/v20210820/models.rb', line 15811 def IgnoreTemp @IgnoreTemp end |
#InputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15811 15812 15813 |
# File 'lib/v20210820/models.rb', line 15811 def InputDepth @InputDepth end |
#OutputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15811 15812 15813 |
# File 'lib/v20210820/models.rb', line 15811 def OutputDepth @OutputDepth end |
#RecursiveSecond ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
15811 15812 15813 |
# File 'lib/v20210820/models.rb', line 15811 def RecursiveSecond @RecursiveSecond end |
Instance Method Details
#deserialize(params) ⇒ Object
15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 |
# File 'lib/v20210820/models.rb', line 15823 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 |