Class: TencentCloud::Ckafka::V20190819::AnalyseParam
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ckafka::V20190819::AnalyseParam
- Defined in:
- lib/v20190819/models.rb
Overview
数据处理-解析参数
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(format = nil, regex = nil, inputvaluetype = nil, inputvalue = nil) ⇒ AnalyseParam
constructor
A new instance of AnalyseParam.
Constructor Details
#initialize(format = nil, regex = nil, inputvaluetype = nil, inputvalue = nil) ⇒ AnalyseParam
Returns a new instance of AnalyseParam.
215 216 217 218 219 220 |
# File 'lib/v20190819/models.rb', line 215 def initialize(format=nil, regex=nil, inputvaluetype=nil, inputvalue=nil) @Format = format @Regex = regex @InputValueType = inputvaluetype @InputValue = inputvalue end |
Instance Attribute Details
#Format ⇒ Object
213 214 215 |
# File 'lib/v20190819/models.rb', line 213 def Format @Format end |
#InputValue ⇒ Object
213 214 215 |
# File 'lib/v20190819/models.rb', line 213 def InputValue @InputValue end |
#InputValueType ⇒ Object
213 214 215 |
# File 'lib/v20190819/models.rb', line 213 def InputValueType @InputValueType end |
#Regex ⇒ Object
213 214 215 |
# File 'lib/v20190819/models.rb', line 213 def Regex @Regex end |
Instance Method Details
#deserialize(params) ⇒ Object
222 223 224 225 226 227 |
# File 'lib/v20190819/models.rb', line 222 def deserialize(params) @Format = params['Format'] @Regex = params['Regex'] @InputValueType = params['InputValueType'] @InputValue = params['InputValue'] end |