Class: TencentCloud::Cwp::V20180228::ExportAssetJarListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetJarListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetJarList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Name- string - 是否必填:否 - 包名
- Type- uint - 是否必填:否 - 类型 1: 应用程序 2 : 系统类库 3 : Web服务自带库 4 : 其他依赖包
- Status- string - 是否必填:否 - 是否可执行:0否,1是
. -
#Filters ⇒ Object
- Name- string - 是否必填:否 - 包名
- Type- uint - 是否必填:否 - 类型 1: 应用程序 2 : 系统类库 3 : Web服务自带库 4 : 其他依赖包
- Status- string - 是否必填:否 - 是否可执行:0否,1是
. -
#Order ⇒ Object
- Name- string - 是否必填:否 - 包名
- Type- uint - 是否必填:否 - 类型 1: 应用程序 2 : 系统类库 3 : Web服务自带库 4 : 其他依赖包
- Status- string - 是否必填:否 - 是否可执行:0否,1是
. -
#Quuid ⇒ Object
- Name- string - 是否必填:否 - 包名
- Type- uint - 是否必填:否 - 类型 1: 应用程序 2 : 系统类库 3 : Web服务自带库 4 : 其他依赖包
- Status- string - 是否必填:否 - 是否可执行:0否,1是
. -
#Uuid ⇒ Object
- Name- string - 是否必填:否 - 包名
- Type- uint - 是否必填:否 - 类型 1: 应用程序 2 : 系统类库 3 : Web服务自带库 4 : 其他依赖包
- Status- string - 是否必填:否 - 是否可执行:0否,1是
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, uuid = nil, quuid = nil, order = nil, by = nil) ⇒ ExportAssetJarListRequest
constructor
A new instance of ExportAssetJarListRequest.
Constructor Details
#initialize(filters = nil, uuid = nil, quuid = nil, order = nil, by = nil) ⇒ ExportAssetJarListRequest
Returns a new instance of ExportAssetJarListRequest.
25657 25658 25659 25660 25661 25662 25663 |
# File 'lib/v20180228/models.rb', line 25657 def initialize(filters=nil, uuid=nil, quuid=nil, order=nil, by=nil) @Filters = filters @Uuid = uuid @Quuid = quuid @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
25655 25656 25657 |
# File 'lib/v20180228/models.rb', line 25655 def By @By end |
#Filters ⇒ Object
25655 25656 25657 |
# File 'lib/v20180228/models.rb', line 25655 def Filters @Filters end |
#Order ⇒ Object
25655 25656 25657 |
# File 'lib/v20180228/models.rb', line 25655 def Order @Order end |
#Quuid ⇒ Object
25655 25656 25657 |
# File 'lib/v20180228/models.rb', line 25655 def Quuid @Quuid end |
#Uuid ⇒ Object
25655 25656 25657 |
# File 'lib/v20180228/models.rb', line 25655 def Uuid @Uuid end |
Instance Method Details
#deserialize(params) ⇒ Object
25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 |
# File 'lib/v20180228/models.rb', line 25665 def deserialize(params) unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| assetfilters_tmp = AssetFilters.new assetfilters_tmp.deserialize(i) @Filters << assetfilters_tmp end end @Uuid = params['Uuid'] @Quuid = params['Quuid'] @Order = params['Order'] @By = params['By'] end |