Class: TencentCloud::Cwp::V20180228::ExportAssetDatabaseListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetDatabaseListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetDatabaseList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- User- string - 是否必填:否 - 运行用户
- Ip - String - 是否必填:否 - 绑定IP
- Port - Int - 是否必填:否 - 端口
- Name - Int - 是否必填:否 - 数据库名称 0:全部 1:MySQL 2:Redis 3:Oracle 4:MongoDB 5:MemCache 6:PostgreSQL 7:HBase 8:DB2 9:Sybase 10:TiDB
- Proto - String - 是否必填:否 - 协议:1:TCP, 2:UDP, 3:未知
- OsType - String - 是否必填:否 - 操作系统: linux/windows
. -
#Filters ⇒ Object
- User- string - 是否必填:否 - 运行用户
- Ip - String - 是否必填:否 - 绑定IP
- Port - Int - 是否必填:否 - 端口
- Name - Int - 是否必填:否 - 数据库名称 0:全部 1:MySQL 2:Redis 3:Oracle 4:MongoDB 5:MemCache 6:PostgreSQL 7:HBase 8:DB2 9:Sybase 10:TiDB
- Proto - String - 是否必填:否 - 协议:1:TCP, 2:UDP, 3:未知
- OsType - String - 是否必填:否 - 操作系统: linux/windows
. -
#Order ⇒ Object
- User- string - 是否必填:否 - 运行用户
- Ip - String - 是否必填:否 - 绑定IP
- Port - Int - 是否必填:否 - 端口
- Name - Int - 是否必填:否 - 数据库名称 0:全部 1:MySQL 2:Redis 3:Oracle 4:MongoDB 5:MemCache 6:PostgreSQL 7:HBase 8:DB2 9:Sybase 10:TiDB
- Proto - String - 是否必填:否 - 协议:1:TCP, 2:UDP, 3:未知
- OsType - String - 是否必填:否 - 操作系统: linux/windows
. -
#Quuid ⇒ Object
- User- string - 是否必填:否 - 运行用户
- Ip - String - 是否必填:否 - 绑定IP
- Port - Int - 是否必填:否 - 端口
- Name - Int - 是否必填:否 - 数据库名称 0:全部 1:MySQL 2:Redis 3:Oracle 4:MongoDB 5:MemCache 6:PostgreSQL 7:HBase 8:DB2 9:Sybase 10:TiDB
- Proto - String - 是否必填:否 - 协议:1:TCP, 2:UDP, 3:未知
- OsType - String - 是否必填:否 - 操作系统: linux/windows
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filters = nil, quuid = nil, order = nil, by = nil) ⇒ ExportAssetDatabaseListRequest
constructor
A new instance of ExportAssetDatabaseListRequest.
Constructor Details
#initialize(filters = nil, quuid = nil, order = nil, by = nil) ⇒ ExportAssetDatabaseListRequest
Returns a new instance of ExportAssetDatabaseListRequest.
25455 25456 25457 25458 25459 25460 |
# File 'lib/v20180228/models.rb', line 25455 def initialize(filters=nil, quuid=nil, order=nil, by=nil) @Filters = filters @Quuid = quuid @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
25453 25454 25455 |
# File 'lib/v20180228/models.rb', line 25453 def By @By end |
#Filters ⇒ Object
25453 25454 25455 |
# File 'lib/v20180228/models.rb', line 25453 def Filters @Filters end |
#Order ⇒ Object
25453 25454 25455 |
# File 'lib/v20180228/models.rb', line 25453 def Order @Order end |
#Quuid ⇒ Object
25453 25454 25455 |
# File 'lib/v20180228/models.rb', line 25453 def Quuid @Quuid end |
Instance Method Details
#deserialize(params) ⇒ Object
25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 |
# File 'lib/v20180228/models.rb', line 25462 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 @Quuid = params['Quuid'] @Order = params['Order'] @By = params['By'] end |