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.
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
#Data ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8934 8935 8936 |
# File 'lib/v20210820/models.rb', line 8934 def Data @Data end |
#Direction ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8934 8935 8936 |
# File 'lib/v20210820/models.rb', line 8934 def Direction @Direction end |
#ExtParams ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8934 8935 8936 |
# File 'lib/v20210820/models.rb', line 8934 def ExtParams @ExtParams end |
#IgnoreTemp ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8934 8935 8936 |
# File 'lib/v20210820/models.rb', line 8934 def IgnoreTemp @IgnoreTemp end |
#InputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
8934 8935 8936 |
# File 'lib/v20210820/models.rb', line 8934 def InputDepth @InputDepth end |
#OutputDepth ⇒ Object
-
INPUT
-
OUTPUT
-
BOTH
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 |