Class: TencentCloud::Cwp::V20180228::ExportAssetWebLocationListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetWebLocationListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetWebLocationList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Name - String - 是否必填:否 - 域名
- User - String - 是否必填:否 - 运行用户
- Port - uint64 - 是否必填:否 - 站点端口
- Proto - uint64 - 是否必填:否 - 站点协议:1:HTTP,2:HTTPS
- ServiceType - uint64 - 是否必填:否 - 服务类型: 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 - 是否必填:否 - 域名
- User - String - 是否必填:否 - 运行用户
- Port - uint64 - 是否必填:否 - 站点端口
- Proto - uint64 - 是否必填:否 - 站点协议:1:HTTP,2:HTTPS
- ServiceType - uint64 - 是否必填:否 - 服务类型: 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 - 是否必填:否 - 域名
- User - String - 是否必填:否 - 运行用户
- Port - uint64 - 是否必填:否 - 站点端口
- Proto - uint64 - 是否必填:否 - 站点协议:1:HTTP,2:HTTPS
- ServiceType - uint64 - 是否必填:否 - 服务类型: 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 - 是否必填:否 - 域名
- User - String - 是否必填:否 - 运行用户
- Port - uint64 - 是否必填:否 - 站点端口
- Proto - uint64 - 是否必填:否 - 站点协议:1:HTTP,2:HTTPS
- ServiceType - uint64 - 是否必填:否 - 服务类型: 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) ⇒ ExportAssetWebLocationListRequest
constructor
A new instance of ExportAssetWebLocationListRequest.
Constructor Details
#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetWebLocationListRequest
Returns a new instance of ExportAssetWebLocationListRequest.
26335 26336 26337 26338 26339 26340 |
# File 'lib/v20180228/models.rb', line 26335 def initialize(quuid=nil, filters=nil, order=nil, by=nil) @Quuid = quuid @Filters = filters @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
26333 26334 26335 |
# File 'lib/v20180228/models.rb', line 26333 def By @By end |
#Filters ⇒ Object
26333 26334 26335 |
# File 'lib/v20180228/models.rb', line 26333 def Filters @Filters end |
#Order ⇒ Object
26333 26334 26335 |
# File 'lib/v20180228/models.rb', line 26333 def Order @Order end |
#Quuid ⇒ Object
26333 26334 26335 |
# File 'lib/v20180228/models.rb', line 26333 def Quuid @Quuid end |
Instance Method Details
#deserialize(params) ⇒ Object
26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 |
# File 'lib/v20180228/models.rb', line 26342 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 |