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.
4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 |
# File 'lib/v20190823/models.rb', line 4490 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
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def ApplicationId @ApplicationId end |
#Error ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def Error @Error end |
#TableGroupId ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def TableGroupId @TableGroupId end |
#TableIdlType ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def TableIdlType @TableIdlType end |
#TableInstanceId ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def TableInstanceId @TableInstanceId end |
#TableName ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def TableName @TableName end |
#TableType ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def TableType @TableType end |
#TaskId ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def TaskId @TaskId end |
#TaskIds ⇒ Object
4488 4489 4490 |
# File 'lib/v20190823/models.rb', line 4488 def TaskIds @TaskIds end |
Instance Method Details
#deserialize(params) ⇒ Object
4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 |
# File 'lib/v20190823/models.rb', line 4502 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 |