Class: TencentCloud::Cls::V20201016::SplunkDeliverInfo
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::SplunkDeliverInfo
- Defined in:
- lib/v20201016/models.rb
Overview
Splunk投递任务信息
Instance Attribute Summary collapse
- #Channel ⇒ Object
- #CreateTime ⇒ Object
- #DSLFilter ⇒ Object
- #Enable ⇒ Object
- #HasServiceLog ⇒ Object
- #Index ⇒ Object
- #IndexAck ⇒ Object
- #Metadata ⇒ Object
- #Name ⇒ Object
- #NetInfo ⇒ Object
- #Source ⇒ Object
- #SourceType ⇒ Object
- #Status ⇒ Object
- #TaskId ⇒ Object
- #TopicId ⇒ Object
- #Uin ⇒ Object
- #UpdateTime ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskid = nil, name = nil, uin = nil, topicid = nil, status = nil, enable = nil, createtime = nil, updatetime = nil, netinfo = nil, metadata = nil, hasservicelog = nil, source = nil, sourcetype = nil, index = nil, indexack = nil, channel = nil, dslfilter = nil) ⇒ SplunkDeliverInfo
constructor
A new instance of SplunkDeliverInfo.
Constructor Details
#initialize(taskid = nil, name = nil, uin = nil, topicid = nil, status = nil, enable = nil, createtime = nil, updatetime = nil, netinfo = nil, metadata = nil, hasservicelog = nil, source = nil, sourcetype = nil, index = nil, indexack = nil, channel = nil, dslfilter = nil) ⇒ SplunkDeliverInfo
Returns a new instance of SplunkDeliverInfo.
17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 |
# File 'lib/v20201016/models.rb', line 17517 def initialize(taskid=nil, name=nil, uin=nil, topicid=nil, status=nil, enable=nil, createtime=nil, updatetime=nil, netinfo=nil, =nil, hasservicelog=nil, source=nil, sourcetype=nil, index=nil, indexack=nil, channel=nil, dslfilter=nil) @TaskId = taskid @Name = name @Uin = uin @TopicId = topicid @Status = status @Enable = enable @CreateTime = createtime @UpdateTime = updatetime @NetInfo = netinfo @Metadata = @HasServiceLog = hasservicelog @Source = source @SourceType = sourcetype @Index = index @IndexAck = indexack @Channel = channel @DSLFilter = dslfilter end |
Instance Attribute Details
#Channel ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Channel @Channel end |
#CreateTime ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def CreateTime @CreateTime end |
#DSLFilter ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def DSLFilter @DSLFilter end |
#Enable ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Enable @Enable end |
#HasServiceLog ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def HasServiceLog @HasServiceLog end |
#Index ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Index @Index end |
#IndexAck ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def IndexAck @IndexAck end |
#Metadata ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Metadata @Metadata end |
#Name ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Name @Name end |
#NetInfo ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def NetInfo @NetInfo end |
#Source ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Source @Source end |
#SourceType ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def SourceType @SourceType end |
#Status ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Status @Status end |
#TaskId ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def TaskId @TaskId end |
#TopicId ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def TopicId @TopicId end |
#Uin ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def Uin @Uin end |
#UpdateTime ⇒ Object
17515 17516 17517 |
# File 'lib/v20201016/models.rb', line 17515 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 |
# File 'lib/v20201016/models.rb', line 17537 def deserialize(params) @TaskId = params['TaskId'] @Name = params['Name'] @Uin = params['Uin'] @TopicId = params['TopicId'] @Status = params['Status'] @Enable = params['Enable'] @CreateTime = params['CreateTime'] @UpdateTime = params['UpdateTime'] unless params['NetInfo'].nil? @NetInfo = NetInfo.new @NetInfo.deserialize(params['NetInfo']) end unless params['Metadata'].nil? @Metadata = MetadataInfo.new @Metadata.deserialize(params['Metadata']) end @HasServiceLog = params['HasServiceLog'] @Source = params['Source'] @SourceType = params['SourceType'] @Index = params['Index'] @IndexAck = params['IndexAck'] @Channel = params['Channel'] @DSLFilter = params['DSLFilter'] end |