Class: TencentCloud::Cwp::V20180228::ExportAssetWebAppListRequest

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

Overview

ExportAssetWebAppList请求参数结构体

Instance Attribute Summary collapse

  • #Filters ⇒ Object
  • Name - String - 是否必填:否 - 应用名
  • Domain - String - 是否必填:否 - 站点域名
  • Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine
  • OsType - String - 是否必填:否 - windows/linux
  • .
  • #Order ⇒ Object
  • Name - String - 是否必填:否 - 应用名
  • Domain - String - 是否必填:否 - 站点域名
  • Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine
  • OsType - String - 是否必填:否 - windows/linux
  • .
  • #Quuid ⇒ Object
  • Name - String - 是否必填:否 - 应用名
  • Domain - String - 是否必填:否 - 站点域名
  • Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine
  • OsType - String - 是否必填:否 - windows/linux
  • .

    Instance Method Summary collapse

    Constructor Details

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

    Returns a new instance of ExportAssetWebAppListRequest.

    
    
    26194
    26195
    26196
    26197
    26198
    26199
    # File 'lib/v20180228/models.rb', line 26194
    
    def initialize(quuid=nil, filters=nil, order=nil, by=nil)
      @Quuid = quuid
      @Filters = filters
      @Order = order
      @By = by
    end

    Instance Attribute Details

    #ByObject

  • Name - String - 是否必填:否 - 应用名
  • Domain - String - 是否必填:否 - 站点域名
  • Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine
  • OsType - String - 是否必填:否 - windows/linux
  • Parameters:

    • Quuid:

      查询指定Quuid主机的信息

    • Filters:

      过滤条件。

    • Order:

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

    • By:

      可选排序:[FirstTime|PluginCount]

    
    
    26192
    26193
    26194
    # File 'lib/v20180228/models.rb', line 26192
    
    def By
      @By
    end

    #FiltersObject

  • Name - String - 是否必填:否 - 应用名
  • Domain - String - 是否必填:否 - 站点域名
  • Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine
  • OsType - String - 是否必填:否 - windows/linux
  • Parameters:

    • Quuid:

      查询指定Quuid主机的信息

    • Filters:

      过滤条件。

    • Order:

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

    • By:

      可选排序:[FirstTime|PluginCount]

    
    
    26192
    26193
    26194
    # File 'lib/v20180228/models.rb', line 26192
    
    def Filters
      @Filters
    end

    #OrderObject

  • Name - String - 是否必填:否 - 应用名
  • Domain - String - 是否必填:否 - 站点域名
  • Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine
  • OsType - String - 是否必填:否 - windows/linux
  • Parameters:

    • Quuid:

      查询指定Quuid主机的信息

    • Filters:

      过滤条件。

    • Order:

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

    • By:

      可选排序:[FirstTime|PluginCount]

    
    
    26192
    26193
    26194
    # File 'lib/v20180228/models.rb', line 26192
    
    def Order
      @Order
    end

    #QuuidObject

  • Name - String - 是否必填:否 - 应用名
  • Domain - String - 是否必填:否 - 站点域名
  • Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine
  • OsType - String - 是否必填:否 - windows/linux
  • Parameters:

    • Quuid:

      查询指定Quuid主机的信息

    • Filters:

      过滤条件。

    • Order:

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

    • By:

      可选排序:[FirstTime|PluginCount]

    
    
    26192
    26193
    26194
    # File 'lib/v20180228/models.rb', line 26192
    
    def Quuid
      @Quuid
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    26201
    26202
    26203
    26204
    26205
    26206
    26207
    26208
    26209
    26210
    26211
    26212
    26213
    # File 'lib/v20180228/models.rb', line 26201
    
    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