Class: TencentCloud::Waf::V20180125::CreateAccessExportRequest

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

Overview

CreateAccessExport请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(topicid = nil, from = nil, to = nil, query = nil, count = nil, format = nil, order = nil) ⇒ CreateAccessExportRequest

Returns a new instance of CreateAccessExportRequest.



2050
2051
2052
2053
2054
2055
2056
2057
2058
# File 'lib/v20180125/models.rb', line 2050

def initialize(topicid=nil, from=nil, to=nil, query=nil, count=nil, format=nil, order=nil)
  @TopicId = topicid
  @From = from
  @To = to
  @Query = query
  @Count = count
  @Format = format
  @Order = order
end

Instance Attribute Details

#CountObject

Parameters:

  • TopicId:

    客户要查询的日志主题ID,每个客户都有对应的一个主题

  • From:

    要查询的日志的起始时间,Unix时间戳,单位ms

  • To:

    要查询的日志的结束时间,Unix时间戳,单位ms

  • Query:

    日志导出检索语句

  • Count:

    日志导出数量,最大值100w

  • Format:

    日志导出数据格式。json,csv,默认为json

  • Order:

    日志导出时间排序。desc,asc,默认为desc



2048
2049
2050
# File 'lib/v20180125/models.rb', line 2048

def Count
  @Count
end

#FormatObject

Parameters:

  • TopicId:

    客户要查询的日志主题ID,每个客户都有对应的一个主题

  • From:

    要查询的日志的起始时间,Unix时间戳,单位ms

  • To:

    要查询的日志的结束时间,Unix时间戳,单位ms

  • Query:

    日志导出检索语句

  • Count:

    日志导出数量,最大值100w

  • Format:

    日志导出数据格式。json,csv,默认为json

  • Order:

    日志导出时间排序。desc,asc,默认为desc



2048
2049
2050
# File 'lib/v20180125/models.rb', line 2048

def Format
  @Format
end

#FromObject

Parameters:

  • TopicId:

    客户要查询的日志主题ID,每个客户都有对应的一个主题

  • From:

    要查询的日志的起始时间,Unix时间戳,单位ms

  • To:

    要查询的日志的结束时间,Unix时间戳,单位ms

  • Query:

    日志导出检索语句

  • Count:

    日志导出数量,最大值100w

  • Format:

    日志导出数据格式。json,csv,默认为json

  • Order:

    日志导出时间排序。desc,asc,默认为desc



2048
2049
2050
# File 'lib/v20180125/models.rb', line 2048

def From
  @From
end

#OrderObject

Parameters:

  • TopicId:

    客户要查询的日志主题ID,每个客户都有对应的一个主题

  • From:

    要查询的日志的起始时间,Unix时间戳,单位ms

  • To:

    要查询的日志的结束时间,Unix时间戳,单位ms

  • Query:

    日志导出检索语句

  • Count:

    日志导出数量,最大值100w

  • Format:

    日志导出数据格式。json,csv,默认为json

  • Order:

    日志导出时间排序。desc,asc,默认为desc



2048
2049
2050
# File 'lib/v20180125/models.rb', line 2048

def Order
  @Order
end

#QueryObject

Parameters:

  • TopicId:

    客户要查询的日志主题ID,每个客户都有对应的一个主题

  • From:

    要查询的日志的起始时间,Unix时间戳,单位ms

  • To:

    要查询的日志的结束时间,Unix时间戳,单位ms

  • Query:

    日志导出检索语句

  • Count:

    日志导出数量,最大值100w

  • Format:

    日志导出数据格式。json,csv,默认为json

  • Order:

    日志导出时间排序。desc,asc,默认为desc



2048
2049
2050
# File 'lib/v20180125/models.rb', line 2048

def Query
  @Query
end

#ToObject

Parameters:

  • TopicId:

    客户要查询的日志主题ID,每个客户都有对应的一个主题

  • From:

    要查询的日志的起始时间,Unix时间戳,单位ms

  • To:

    要查询的日志的结束时间,Unix时间戳,单位ms

  • Query:

    日志导出检索语句

  • Count:

    日志导出数量,最大值100w

  • Format:

    日志导出数据格式。json,csv,默认为json

  • Order:

    日志导出时间排序。desc,asc,默认为desc



2048
2049
2050
# File 'lib/v20180125/models.rb', line 2048

def To
  @To
end

#TopicIdObject

Parameters:

  • TopicId:

    客户要查询的日志主题ID,每个客户都有对应的一个主题

  • From:

    要查询的日志的起始时间,Unix时间戳,单位ms

  • To:

    要查询的日志的结束时间,Unix时间戳,单位ms

  • Query:

    日志导出检索语句

  • Count:

    日志导出数量,最大值100w

  • Format:

    日志导出数据格式。json,csv,默认为json

  • Order:

    日志导出时间排序。desc,asc,默认为desc



2048
2049
2050
# File 'lib/v20180125/models.rb', line 2048

def TopicId
  @TopicId
end

Instance Method Details

#deserialize(params) ⇒ Object



2060
2061
2062
2063
2064
2065
2066
2067
2068
# File 'lib/v20180125/models.rb', line 2060

def deserialize(params)
  @TopicId = params['TopicId']
  @From = params['From']
  @To = params['To']
  @Query = params['Query']
  @Count = params['Count']
  @Format = params['Format']
  @Order = params['Order']
end