Class: TencentCloud::Wedata::V20210820::DescribeTableInfoListRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::DescribeTableInfoListRequest
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeTableInfoList请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, connectiontype = nil, catalog = nil) ⇒ DescribeTableInfoListRequest
constructor
A new instance of DescribeTableInfoListRequest.
Constructor Details
#initialize(filters = nil, connectiontype = nil, catalog = nil) ⇒ DescribeTableInfoListRequest
Returns a new instance of DescribeTableInfoListRequest.
15585 15586 15587 15588 15589 |
# File 'lib/v20210820/models.rb', line 15585 def initialize(filters=nil, connectiontype=nil, catalog=nil) @Filters = filters @ConnectionType = connectiontype @Catalog = catalog end |
Instance Attribute Details
#Catalog ⇒ Object
15583 15584 15585 |
# File 'lib/v20210820/models.rb', line 15583 def Catalog @Catalog end |
#ConnectionType ⇒ Object
15583 15584 15585 |
# File 'lib/v20210820/models.rb', line 15583 def ConnectionType @ConnectionType end |
#Filters ⇒ Object
15583 15584 15585 |
# File 'lib/v20210820/models.rb', line 15583 def Filters @Filters end |
Instance Method Details
#deserialize(params) ⇒ Object
15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 |
# File 'lib/v20210820/models.rb', line 15591 def deserialize(params) unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| filter_tmp = Filter.new filter_tmp.deserialize(i) @Filters << filter_tmp end end @ConnectionType = params['ConnectionType'] @Catalog = params['Catalog'] end |