Class: TencentCloud::Cwp::V20180228::ExportAssetWebFrameListRequest

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

Overview

ExportAssetWebFrameList请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetWebFrameListRequest

Returns a new instance of ExportAssetWebFrameListRequest.



26725
26726
26727
26728
26729
26730
# File 'lib/v20180228/models.rb', line 26725

def initialize(quuid=nil, filters=nil, order=nil, by=nil)
  @Quuid = quuid
  @Filters = filters
  @Order = order
  @By = by
end

Instance Attribute Details

#ByObject

<li>Name - String - 是否必填:否 - 框架名</li> <li>Lang - String - 是否必填:否 - 框架语言:java/python</li> <li>Type - String - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>

Parameters:

  • Quuid:

    查询指定Quuid主机的信息

  • Filters:

    过滤条件。

  • Order:

    排序方式,asc升序 或 desc降序

  • By:


26723
26724
26725
# File 'lib/v20180228/models.rb', line 26723

def By
  @By
end

#FiltersObject

<li>Name - String - 是否必填:否 - 框架名</li> <li>Lang - String - 是否必填:否 - 框架语言:java/python</li> <li>Type - String - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>

Parameters:

  • Quuid:

    查询指定Quuid主机的信息

  • Filters:

    过滤条件。

  • Order:

    排序方式,asc升序 或 desc降序

  • By:


26723
26724
26725
# File 'lib/v20180228/models.rb', line 26723

def Filters
  @Filters
end

#OrderObject

<li>Name - String - 是否必填:否 - 框架名</li> <li>Lang - String - 是否必填:否 - 框架语言:java/python</li> <li>Type - String - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>

Parameters:

  • Quuid:

    查询指定Quuid主机的信息

  • Filters:

    过滤条件。

  • Order:

    排序方式,asc升序 或 desc降序

  • By:


26723
26724
26725
# File 'lib/v20180228/models.rb', line 26723

def Order
  @Order
end

#QuuidObject

<li>Name - String - 是否必填:否 - 框架名</li> <li>Lang - String - 是否必填:否 - 框架语言:java/python</li> <li>Type - String - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>

Parameters:

  • Quuid:

    查询指定Quuid主机的信息

  • Filters:

    过滤条件。

  • Order:

    排序方式,asc升序 或 desc降序

  • By:


26723
26724
26725
# File 'lib/v20180228/models.rb', line 26723

def Quuid
  @Quuid
end

Instance Method Details

#deserialize(params) ⇒ Object



26732
26733
26734
26735
26736
26737
26738
26739
26740
26741
26742
26743
26744
# File 'lib/v20180228/models.rb', line 26732

def deserialize(params)
  @Quuid = params['Quuid']
  unless params['Filters'].nil?
    @Filters = []
    params['Filters'].each do |i|
      filter_tmp = Filter.new
      filter_tmp.deserialize(i)
      @Filters << filter_tmp
    end
  end
  @Order = params['Order']
  @By = params['By']
end