Class: TencentCloud::Cwp::V20180228::DescribeReverseShellEventInfoResponse

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

Overview

DescribeReverseShellEventInfo返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reverseshelleventinfo = nil, requestid = nil) ⇒ DescribeReverseShellEventInfoResponse

Returns a new instance of DescribeReverseShellEventInfoResponse.



20366
20367
20368
20369
# File 'lib/v20180228/models.rb', line 20366

def initialize(reverseshelleventinfo=nil, requestid=nil)
  @ReverseShellEventInfo = reverseshelleventinfo
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • ReverseShellEventInfo:

    反弹shell详情信息

  • RequestId:

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



20364
20365
20366
# File 'lib/v20180228/models.rb', line 20364

def RequestId
  @RequestId
end

#ReverseShellEventInfoObject

Parameters:

  • ReverseShellEventInfo:

    反弹shell详情信息

  • RequestId:

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



20364
20365
20366
# File 'lib/v20180228/models.rb', line 20364

def ReverseShellEventInfo
  @ReverseShellEventInfo
end

Instance Method Details

#deserialize(params) ⇒ Object



20371
20372
20373
20374
20375
20376
20377
# File 'lib/v20180228/models.rb', line 20371

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