Class: TencentCloud::Wedata::V20210820::DescribeColumnLineageRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeColumnLineageRequest
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeColumnLineage请求参数结构体
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.
-
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(direction = nil, data = nil, inputdepth = nil, outputdepth = nil, extparams = nil, ignoretemp = nil) ⇒ DescribeColumnLineageRequest
constructor
A new instance of DescribeColumnLineageRequest.
Constructor Details
#initialize(direction = nil, data = nil, inputdepth = nil, outputdepth = nil, extparams = nil, ignoretemp = nil) ⇒ DescribeColumnLineageRequest
Returns a new instance of DescribeColumnLineageRequest.
8998 8999 9000 9001 9002 9003 9004 9005 |
# File 'lib/v20210820/models.rb', line 8998 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
#Data ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8996 8997 8998 |
# File 'lib/v20210820/models.rb', line 8996 def Data @Data end |
#Direction ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8996 8997 8998 |
# File 'lib/v20210820/models.rb', line 8996 def Direction @Direction end |
#ExtParams ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8996 8997 8998 |
# File 'lib/v20210820/models.rb', line 8996 def ExtParams @ExtParams end |
#IgnoreTemp ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8996 8997 8998 |
# File 'lib/v20210820/models.rb', line 8996 def IgnoreTemp @IgnoreTemp end |
#InputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8996 8997 8998 |
# File 'lib/v20210820/models.rb', line 8996 def InputDepth @InputDepth end |
#OutputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8996 8997 8998 |
# File 'lib/v20210820/models.rb', line 8996 def OutputDepth @OutputDepth end |
Instance Method Details
#deserialize(params) ⇒ Object
9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 |
# File 'lib/v20210820/models.rb', line 9007 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 |