Class: TencentCloud::Tcaplusdb::V20190823::TableResultNew
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tcaplusdb::V20190823::TableResultNew
- Defined in:
- lib/v20190823/models.rb
Overview
表处理结果信息
Instance Attribute Summary collapse
- #ApplicationId ⇒ Object
- #Error ⇒ Object
- #TableGroupId ⇒ Object
- #TableIdlType ⇒ Object
- #TableInstanceId ⇒ Object
- #TableName ⇒ Object
- #TableType ⇒ Object
- #TaskId ⇒ Object
- #TaskIds ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tableinstanceid = nil, taskid = nil, tablename = nil, tabletype = nil, tableidltype = nil, tablegroupid = nil, error = nil, taskids = nil, applicationid = nil) ⇒ TableResultNew
constructor
A new instance of TableResultNew.
Constructor Details
#initialize(tableinstanceid = nil, taskid = nil, tablename = nil, tabletype = nil, tableidltype = nil, tablegroupid = nil, error = nil, taskids = nil, applicationid = nil) ⇒ TableResultNew
Returns a new instance of TableResultNew.
4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 |
# File 'lib/v20190823/models.rb', line 4556 def initialize(tableinstanceid=nil, taskid=nil, tablename=nil, tabletype=nil, tableidltype=nil, tablegroupid=nil, error=nil, taskids=nil, applicationid=nil) @TableInstanceId = tableinstanceid @TaskId = taskid @TableName = tablename @TableType = tabletype @TableIdlType = tableidltype @TableGroupId = tablegroupid @Error = error @TaskIds = taskids @ApplicationId = applicationid end |
Instance Attribute Details
#ApplicationId ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def ApplicationId @ApplicationId end |
#Error ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def Error @Error end |
#TableGroupId ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def TableGroupId @TableGroupId end |
#TableIdlType ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def TableIdlType @TableIdlType end |
#TableInstanceId ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def TableInstanceId @TableInstanceId end |
#TableName ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def TableName @TableName end |
#TableType ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def TableType @TableType end |
#TaskId ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def TaskId @TaskId end |
#TaskIds ⇒ Object
4554 4555 4556 |
# File 'lib/v20190823/models.rb', line 4554 def TaskIds @TaskIds end |
Instance Method Details
#deserialize(params) ⇒ Object
4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 |
# File 'lib/v20190823/models.rb', line 4568 def deserialize(params) @TableInstanceId = params['TableInstanceId'] @TaskId = params['TaskId'] @TableName = params['TableName'] @TableType = params['TableType'] @TableIdlType = params['TableIdlType'] @TableGroupId = params['TableGroupId'] unless params['Error'].nil? @Error = ErrorInfo.new @Error.deserialize(params['Error']) end @TaskIds = params['TaskIds'] @ApplicationId = params['ApplicationId'] end |