Class: TencentCloud::Dlc::V20210125::CreateNotebookSessionStatementSupportBatchSQLResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210125/models.rb

Overview

CreateNotebookSessionStatementSupportBatchSQL返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(notebooksessionstatementbatches = nil, requestid = nil) ⇒ CreateNotebookSessionStatementSupportBatchSQLResponse

Returns a new instance of CreateNotebookSessionStatementSupportBatchSQLResponse.



2495
2496
2497
2498
# File 'lib/v20210125/models.rb', line 2495

def initialize(notebooksessionstatementbatches=nil, requestid=nil)
  @NotebookSessionStatementBatches = notebooksessionstatementbatches
  @RequestId = requestid
end

Instance Attribute Details

#NotebookSessionStatementBatchesObject

Parameters:

  • NotebookSessionStatementBatches:

    Session Statement详情

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



2493
2494
2495
# File 'lib/v20210125/models.rb', line 2493

def NotebookSessionStatementBatches
  @NotebookSessionStatementBatches
end

#RequestIdObject

Parameters:

  • NotebookSessionStatementBatches:

    Session Statement详情

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



2493
2494
2495
# File 'lib/v20210125/models.rb', line 2493

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



2500
2501
2502
2503
2504
2505
2506
# File 'lib/v20210125/models.rb', line 2500

def deserialize(params)
  unless params['NotebookSessionStatementBatches'].nil?
    @NotebookSessionStatementBatches = NotebookSessionStatementBatchInformation.new
    @NotebookSessionStatementBatches.deserialize(params['NotebookSessionStatementBatches'])
  end
  @RequestId = params['RequestId']
end