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.
16236 16237 16238 16239 16240 |
# File 'lib/v20210820/models.rb', line 16236 def initialize(filters=nil, connectiontype=nil, catalog=nil) @Filters = filters @ConnectionType = connectiontype @Catalog = catalog end |
Instance Attribute Details
#Catalog ⇒ Object
16234 16235 16236 |
# File 'lib/v20210820/models.rb', line 16234 def Catalog @Catalog end |
#ConnectionType ⇒ Object
16234 16235 16236 |
# File 'lib/v20210820/models.rb', line 16234 def ConnectionType @ConnectionType end |
#Filters ⇒ Object
16234 16235 16236 |
# File 'lib/v20210820/models.rb', line 16234 def Filters @Filters end |
Instance Method Details
#deserialize(params) ⇒ Object
16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 |
# File 'lib/v20210820/models.rb', line 16242 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 |