Class: TencentCloud::Cwp::V20180228::ExportAssetWebFrameListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetWebFrameListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetWebFrameList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Name - String - 是否必填:否 - 框架名
- Lang - String - 是否必填:否 - 框架语言:java/python
- Type - String - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine
- OsType - String - 是否必填:否 - windows/linux
. -
#Filters ⇒ Object
- Name - String - 是否必填:否 - 框架名
- Lang - String - 是否必填:否 - 框架语言:java/python
- Type - String - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine
- OsType - String - 是否必填:否 - windows/linux
. -
#Order ⇒ Object
- Name - String - 是否必填:否 - 框架名
- Lang - String - 是否必填:否 - 框架语言:java/python
- Type - String - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine
- OsType - String - 是否必填:否 - windows/linux
. -
#Quuid ⇒ Object
- Name - String - 是否必填:否 - 框架名
- Lang - String - 是否必填:否 - 框架语言:java/python
- Type - String - 是否必填:否 - 服务类型: 0:全部 1:Tomcat 2:Apache 3:Nginx 4:WebLogic 5:Websphere 6:JBoss 7:WildFly 8:Jetty 9:IHS 10:Tengine
- OsType - String - 是否必填:否 - windows/linux
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetWebFrameListRequest
constructor
A new instance of ExportAssetWebFrameListRequest.
Constructor Details
#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetWebFrameListRequest
Returns a new instance of ExportAssetWebFrameListRequest.
26264 26265 26266 26267 26268 26269 |
# File 'lib/v20180228/models.rb', line 26264 def initialize(quuid=nil, filters=nil, order=nil, by=nil) @Quuid = quuid @Filters = filters @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
26262 26263 26264 |
# File 'lib/v20180228/models.rb', line 26262 def By @By end |
#Filters ⇒ Object
26262 26263 26264 |
# File 'lib/v20180228/models.rb', line 26262 def Filters @Filters end |
#Order ⇒ Object
26262 26263 26264 |
# File 'lib/v20180228/models.rb', line 26262 def Order @Order end |
#Quuid ⇒ Object
26262 26263 26264 |
# File 'lib/v20180228/models.rb', line 26262 def Quuid @Quuid end |
Instance Method Details
#deserialize(params) ⇒ Object
26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 |
# File 'lib/v20180228/models.rb', line 26271 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 |