Class: TencentCloud::Cwp::V20180228::ExportAssetEnvListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetEnvListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetEnvList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Name- string - 是否必填:否 - 环境变量名
- Type- int - 是否必填:否 - 类型:0用户变量,1系统变量
. -
#Filters ⇒ Object
- Name- string - 是否必填:否 - 环境变量名
- Type- int - 是否必填:否 - 类型:0用户变量,1系统变量
. -
#Order ⇒ Object
- Name- string - 是否必填:否 - 环境变量名
- Type- int - 是否必填:否 - 类型:0用户变量,1系统变量
. -
#Quuid ⇒ Object
- Name- string - 是否必填:否 - 环境变量名
- Type- int - 是否必填:否 - 类型:0用户变量,1系统变量
. -
#Uuid ⇒ Object
- Name- string - 是否必填:否 - 环境变量名
- Type- int - 是否必填:否 - 类型:0用户变量,1系统变量
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(uuid = nil, quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetEnvListRequest
constructor
A new instance of ExportAssetEnvListRequest.
Constructor Details
#initialize(uuid = nil, quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetEnvListRequest
Returns a new instance of ExportAssetEnvListRequest.
25514 25515 25516 25517 25518 25519 25520 |
# File 'lib/v20180228/models.rb', line 25514 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
25512 25513 25514 |
# File 'lib/v20180228/models.rb', line 25512 def By @By end |
#Filters ⇒ Object
25512 25513 25514 |
# File 'lib/v20180228/models.rb', line 25512 def Filters @Filters end |
#Order ⇒ Object
25512 25513 25514 |
# File 'lib/v20180228/models.rb', line 25512 def Order @Order end |
#Quuid ⇒ Object
25512 25513 25514 |
# File 'lib/v20180228/models.rb', line 25512 def Quuid @Quuid end |
#Uuid ⇒ Object
25512 25513 25514 |
# File 'lib/v20180228/models.rb', line 25512 def Uuid @Uuid end |
Instance Method Details
#deserialize(params) ⇒ Object
25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 |
# File 'lib/v20180228/models.rb', line 25522 def deserialize(params) @Uuid = params['Uuid'] @Quuid = params['Quuid'] unless params['Filters'].nil? @Filters = [] params['Filters'].each do |i| assetfilters_tmp = AssetFilters.new assetfilters_tmp.deserialize(i) @Filters << assetfilters_tmp end end @Order = params['Order'] @By = params['By'] end |