Class: TencentCloud::Cwp::V20180228::ExportAssetPortInfoListRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::ExportAssetPortInfoListRequest
- Defined in:
- lib/v20180228/models.rb
Overview
ExportAssetPortInfoList请求参数结构体
Instance Attribute Summary collapse
-
#By ⇒ Object
- Port - uint64 - 是否必填:否 - 端口
- Ip - String - 是否必填:否 - 绑定IP
- ProcessName - String - 是否必填:否 - 监听进程
- Pid - uint64 - 是否必填:否 - PID
- User - String - 是否必填:否 - 运行用户
- Group - String - 是否必填:否 - 所属用户组
- Ppid - uint64 - 是否必填:否 - PPID
- Proto - string - 是否必填:否 - tcp/udp或“”(空字符串筛选未知状态)
- OsType - uint64 - 是否必填:否 - windows/linux
- RunTimeStart - String - 是否必填:否 - 运行开始时间
- RunTimeEnd - String - 是否必填:否 - 运行结束时间
. -
#Filters ⇒ Object
- Port - uint64 - 是否必填:否 - 端口
- Ip - String - 是否必填:否 - 绑定IP
- ProcessName - String - 是否必填:否 - 监听进程
- Pid - uint64 - 是否必填:否 - PID
- User - String - 是否必填:否 - 运行用户
- Group - String - 是否必填:否 - 所属用户组
- Ppid - uint64 - 是否必填:否 - PPID
- Proto - string - 是否必填:否 - tcp/udp或“”(空字符串筛选未知状态)
- OsType - uint64 - 是否必填:否 - windows/linux
- RunTimeStart - String - 是否必填:否 - 运行开始时间
- RunTimeEnd - String - 是否必填:否 - 运行结束时间
. -
#Order ⇒ Object
- Port - uint64 - 是否必填:否 - 端口
- Ip - String - 是否必填:否 - 绑定IP
- ProcessName - String - 是否必填:否 - 监听进程
- Pid - uint64 - 是否必填:否 - PID
- User - String - 是否必填:否 - 运行用户
- Group - String - 是否必填:否 - 所属用户组
- Ppid - uint64 - 是否必填:否 - PPID
- Proto - string - 是否必填:否 - tcp/udp或“”(空字符串筛选未知状态)
- OsType - uint64 - 是否必填:否 - windows/linux
- RunTimeStart - String - 是否必填:否 - 运行开始时间
- RunTimeEnd - String - 是否必填:否 - 运行结束时间
. -
#Quuid ⇒ Object
- Port - uint64 - 是否必填:否 - 端口
- Ip - String - 是否必填:否 - 绑定IP
- ProcessName - String - 是否必填:否 - 监听进程
- Pid - uint64 - 是否必填:否 - PID
- User - String - 是否必填:否 - 运行用户
- Group - String - 是否必填:否 - 所属用户组
- Ppid - uint64 - 是否必填:否 - PPID
- Proto - string - 是否必填:否 - tcp/udp或“”(空字符串筛选未知状态)
- OsType - uint64 - 是否必填:否 - windows/linux
- RunTimeStart - String - 是否必填:否 - 运行开始时间
- RunTimeEnd - String - 是否必填:否 - 运行结束时间
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetPortInfoListRequest
constructor
A new instance of ExportAssetPortInfoListRequest.
Constructor Details
#initialize(quuid = nil, filters = nil, order = nil, by = nil) ⇒ ExportAssetPortInfoListRequest
Returns a new instance of ExportAssetPortInfoListRequest.
25893 25894 25895 25896 25897 25898 |
# File 'lib/v20180228/models.rb', line 25893 def initialize(quuid=nil, filters=nil, order=nil, by=nil) @Quuid = quuid @Filters = filters @Order = order @By = by end |
Instance Attribute Details
#By ⇒ Object
25891 25892 25893 |
# File 'lib/v20180228/models.rb', line 25891 def By @By end |
#Filters ⇒ Object
25891 25892 25893 |
# File 'lib/v20180228/models.rb', line 25891 def Filters @Filters end |
#Order ⇒ Object
25891 25892 25893 |
# File 'lib/v20180228/models.rb', line 25891 def Order @Order end |
#Quuid ⇒ Object
25891 25892 25893 |
# File 'lib/v20180228/models.rb', line 25891 def Quuid @Quuid end |
Instance Method Details
#deserialize(params) ⇒ Object
25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 |
# File 'lib/v20180228/models.rb', line 25900 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 |