Class: TencentCloud::Batch::V20170312::TaskInstanceLog
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Batch::V20170312::TaskInstanceLog
- Defined in:
- lib/v20170312/models.rb
Overview
任务实例日志详情。
Instance Attribute Summary collapse
- #StderrLog ⇒ Object
- #StderrRedirectFileName ⇒ Object
- #StderrRedirectPath ⇒ Object
- #StdoutLog ⇒ Object
- #StdoutRedirectFileName ⇒ Object
- #StdoutRedirectPath ⇒ Object
- #TaskInstanceIndex ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(taskinstanceindex = nil, stdoutlog = nil, stderrlog = nil, stdoutredirectpath = nil, stderrredirectpath = nil, stdoutredirectfilename = nil, stderrredirectfilename = nil) ⇒ TaskInstanceLog
constructor
A new instance of TaskInstanceLog.
Constructor Details
#initialize(taskinstanceindex = nil, stdoutlog = nil, stderrlog = nil, stdoutredirectpath = nil, stderrredirectpath = nil, stdoutredirectfilename = nil, stderrredirectfilename = nil) ⇒ TaskInstanceLog
Returns a new instance of TaskInstanceLog.
3824 3825 3826 3827 3828 3829 3830 3831 3832 |
# File 'lib/v20170312/models.rb', line 3824 def initialize(taskinstanceindex=nil, stdoutlog=nil, stderrlog=nil, stdoutredirectpath=nil, stderrredirectpath=nil, stdoutredirectfilename=nil, stderrredirectfilename=nil) @TaskInstanceIndex = taskinstanceindex @StdoutLog = stdoutlog @StderrLog = stderrlog @StdoutRedirectPath = stdoutredirectpath @StderrRedirectPath = stderrredirectpath @StdoutRedirectFileName = stdoutredirectfilename @StderrRedirectFileName = stderrredirectfilename end |
Instance Attribute Details
#StderrLog ⇒ Object
3822 3823 3824 |
# File 'lib/v20170312/models.rb', line 3822 def StderrLog @StderrLog end |
#StderrRedirectFileName ⇒ Object
3822 3823 3824 |
# File 'lib/v20170312/models.rb', line 3822 def StderrRedirectFileName @StderrRedirectFileName end |
#StderrRedirectPath ⇒ Object
3822 3823 3824 |
# File 'lib/v20170312/models.rb', line 3822 def StderrRedirectPath @StderrRedirectPath end |
#StdoutLog ⇒ Object
3822 3823 3824 |
# File 'lib/v20170312/models.rb', line 3822 def StdoutLog @StdoutLog end |
#StdoutRedirectFileName ⇒ Object
3822 3823 3824 |
# File 'lib/v20170312/models.rb', line 3822 def StdoutRedirectFileName @StdoutRedirectFileName end |
#StdoutRedirectPath ⇒ Object
3822 3823 3824 |
# File 'lib/v20170312/models.rb', line 3822 def StdoutRedirectPath @StdoutRedirectPath end |
#TaskInstanceIndex ⇒ Object
3822 3823 3824 |
# File 'lib/v20170312/models.rb', line 3822 def TaskInstanceIndex @TaskInstanceIndex end |
Instance Method Details
#deserialize(params) ⇒ Object
3834 3835 3836 3837 3838 3839 3840 3841 3842 |
# File 'lib/v20170312/models.rb', line 3834 def deserialize(params) @TaskInstanceIndex = params['TaskInstanceIndex'] @StdoutLog = params['StdoutLog'] @StderrLog = params['StderrLog'] @StdoutRedirectPath = params['StdoutRedirectPath'] @StderrRedirectPath = params['StderrRedirectPath'] @StdoutRedirectFileName = params['StdoutRedirectFileName'] @StderrRedirectFileName = params['StderrRedirectFileName'] end |