Class: TencentCloud::Wedata::V20210820::ReportTableRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::ReportTableRequest
- Defined in:
- lib/v20210820/models.rb
Overview
ReportTable请求参数结构体
Instance Attribute Summary collapse
- #Columns ⇒ Object
- #CreateTime ⇒ Object
- #DatabaseName ⇒ Object
- #DatasourceId ⇒ Object
- #Description ⇒ Object
- #ModifiedTime ⇒ Object
- #SchemaName ⇒ Object
- #TableName ⇒ Object
- #Type ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(datasourceid = nil, databasename = nil, tablename = nil, type = nil, schemaname = nil, description = nil, createtime = nil, modifiedtime = nil, columns = nil) ⇒ ReportTableRequest
constructor
A new instance of ReportTableRequest.
Constructor Details
#initialize(datasourceid = nil, databasename = nil, tablename = nil, type = nil, schemaname = nil, description = nil, createtime = nil, modifiedtime = nil, columns = nil) ⇒ ReportTableRequest
Returns a new instance of ReportTableRequest.
30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 |
# File 'lib/v20210820/models.rb', line 30262 def initialize(datasourceid=nil, databasename=nil, tablename=nil, type=nil, schemaname=nil, description=nil, createtime=nil, modifiedtime=nil, columns=nil) @DatasourceId = datasourceid @DatabaseName = databasename @TableName = tablename @Type = type @SchemaName = schemaname @Description = description @CreateTime = createtime @ModifiedTime = modifiedtime @Columns = columns end |
Instance Attribute Details
#Columns ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def Columns @Columns end |
#CreateTime ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def CreateTime @CreateTime end |
#DatabaseName ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def DatabaseName @DatabaseName end |
#DatasourceId ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def DatasourceId @DatasourceId end |
#Description ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def Description @Description end |
#ModifiedTime ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def ModifiedTime @ModifiedTime end |
#SchemaName ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def SchemaName @SchemaName end |
#TableName ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def TableName @TableName end |
#Type ⇒ Object
30260 30261 30262 |
# File 'lib/v20210820/models.rb', line 30260 def Type @Type end |
Instance Method Details
#deserialize(params) ⇒ Object
30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 |
# File 'lib/v20210820/models.rb', line 30274 def deserialize(params) @DatasourceId = params['DatasourceId'] @DatabaseName = params['DatabaseName'] @TableName = params['TableName'] @Type = params['Type'] @SchemaName = params['SchemaName'] @Description = params['Description'] @CreateTime = params['CreateTime'] @ModifiedTime = params['ModifiedTime'] unless params['Columns'].nil? @Columns = [] params['Columns'].each do |i| reportcolumninfo_tmp = ReportColumnInfo.new reportcolumninfo_tmp.deserialize(i) @Columns << reportcolumninfo_tmp end end end |