Class: TencentCloud::Cwp::V20180228::DescribeLogExportsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeLogExportsResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeLogExports返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, exports = nil, requestid = nil) ⇒ DescribeLogExportsResponse
constructor
A new instance of DescribeLogExportsResponse.
Constructor Details
#initialize(totalcount = nil, exports = nil, requestid = nil) ⇒ DescribeLogExportsResponse
Returns a new instance of DescribeLogExportsResponse.
16441 16442 16443 16444 16445 |
# File 'lib/v20180228/models.rb', line 16441 def initialize(totalcount=nil, exports=nil, requestid=nil) @TotalCount = totalcount @Exports = exports @RequestId = requestid end |
Instance Attribute Details
#Exports ⇒ Object
16439 16440 16441 |
# File 'lib/v20180228/models.rb', line 16439 def Exports @Exports end |
#RequestId ⇒ Object
16439 16440 16441 |
# File 'lib/v20180228/models.rb', line 16439 def RequestId @RequestId end |
#TotalCount ⇒ Object
16439 16440 16441 |
# File 'lib/v20180228/models.rb', line 16439 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 |
# File 'lib/v20180228/models.rb', line 16447 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Exports'].nil? @Exports = [] params['Exports'].each do |i| exportinfo_tmp = ExportInfo.new exportinfo_tmp.deserialize(i) @Exports << exportinfo_tmp end end @RequestId = params['RequestId'] end |