Class: TencentCloud::Cwp::V20180228::ExportAssetWebAppListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetWebAppListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetWebAppList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>.
-
#Filters ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>.
-
#Order ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>.
-
#Quuid ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetWebAppListRequest
constructor
A new instance of ExportAssetWebAppListRequest.
Constructor Details
#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetWebAppListRequest
Returns a new instance of ExportAssetWebAppListRequest.
26655 26656 26657 26658 26659 26660 |
# File 'lib/v20180228/models.rb', line 26655 def initialize(quuid=nil, filters=nil, order=nil, by=nil) @Quuid = quuid @Filters = filters @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>
26653 26654 26655 |
# File 'lib/v20180228/models.rb', line 26653 def By @By end |
#Filters ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>
26653 26654 26655 |
# File 'lib/v20180228/models.rb', line 26653 def Filters @Filters end |
#Order ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>
26653 26654 26655 |
# File 'lib/v20180228/models.rb', line 26653 def Order @Order end |
#Quuid ⇒ Object
<li>Name - String - 是否必填:否 - 应用名</li> <li>Domain - String - 是否必填:否 - 站点域名</li> <li>Type - int - 是否必填:否 - 服务类型:0:全部1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:Jetty 8:IHS 9:Tengine</li> <li>OsType - String - 是否必填:否 - windows/linux</li>
26653 26654 26655 |
# File 'lib/v20180228/models.rb', line 26653 def Quuid @Quuid end |
Instance Method Details
#deserialize(params) ⇒ Object
26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 |
# File 'lib/v20180228/models.rb', line 26662 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 |