Class: TencentCloud::Cwp::V20180228::ExportAssetSystemPackageListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetSystemPackageListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetSystemPackageList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Name - String - 是否必填:否 - 包 名
- StartTime - String - 是否必填:否 - 安装开始时间
- EndTime - String - 是否必填:否 - 安装开始时间
- Type - int - 是否必填:否 - 安装包类型: 1:rpm 2:dpkg 3:java 4:system
. -
#Filters ⇒ Object
- Name - String - 是否必填:否 - 包 名
- StartTime - String - 是否必填:否 - 安装开始时间
- EndTime - String - 是否必填:否 - 安装开始时间
- Type - int - 是否必填:否 - 安装包类型: 1:rpm 2:dpkg 3:java 4:system
. -
#Order ⇒ Object
- Name - String - 是否必填:否 - 包 名
- StartTime - String - 是否必填:否 - 安装开始时间
- EndTime - String - 是否必填:否 - 安装开始时间
- Type - int - 是否必填:否 - 安装包类型: 1:rpm 2:dpkg 3:java 4:system
. -
#Quuid ⇒ Object
- Name - String - 是否必填:否 - 包 名
- StartTime - String - 是否必填:否 - 安装开始时间
- EndTime - String - 是否必填:否 - 安装开始时间
- Type - int - 是否必填:否 - 安装包类型: 1:rpm 2:dpkg 3:java 4:system
. -
#Uuid ⇒ Object
- Name - String - 是否必填:否 - 包 名
- StartTime - String - 是否必填:否 - 安装开始时间
- EndTime - String - 是否必填:否 - 安装开始时间
- Type - int - 是否必填:否 - 安装包类型: 1:rpm 2:dpkg 3:java 4:system
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(uuid = nil, quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetSystemPackageListRequest
constructor
A new instance of ExportAssetSystemPackageListRequest.
Constructor Details
#initialize(uuid = nil, quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetSystemPackageListRequest
Returns a new instance of ExportAssetSystemPackageListRequest.
26067 26068 26069 26070 26071 26072 26073 |
# File 'lib/v20180228/models.rb', line 26067 def initialize(uuid=nil, quuid=nil, filters=nil, order=nil, by=nil) @Uuid = uuid @Quuid = quuid @Filters = filters @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
26065 26066 26067 |
# File 'lib/v20180228/models.rb', line 26065 def By @By end |
#Filters ⇒ Object
26065 26066 26067 |
# File 'lib/v20180228/models.rb', line 26065 def Filters @Filters end |
#Order ⇒ Object
26065 26066 26067 |
# File 'lib/v20180228/models.rb', line 26065 def Order @Order end |
#Quuid ⇒ Object
26065 26066 26067 |
# File 'lib/v20180228/models.rb', line 26065 def Quuid @Quuid end |
#Uuid ⇒ Object
26065 26066 26067 |
# File 'lib/v20180228/models.rb', line 26065 def Uuid @Uuid end |
Instance Method Details
#deserialize(params) ⇒ Object
26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 |
# File 'lib/v20180228/models.rb', line 26075 def deserialize(params) @Uuid = params['Uuid'] @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 |