Class: TencentCloud::Cdb::V20170320::AuditLogFile
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdb::V20170320::AuditLogFile
- Defined in:
- lib/v20170320/models.rb
Overview
审计日志文件
Instance Attribute Summary collapse
-
#CreateTime ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;.
-
#DownloadUrl ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;.
-
#ErrMsg ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;.
-
#FileName ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;.
-
#FileSize ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;.
-
#Status ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(filename = nil, createtime = nil, status = nil, filesize = nil, downloadurl = nil, errmsg = nil) ⇒ AuditLogFile
constructor
A new instance of AuditLogFile.
Constructor Details
#initialize(filename = nil, createtime = nil, status = nil, filesize = nil, downloadurl = nil, errmsg = nil) ⇒ AuditLogFile
Returns a new instance of AuditLogFile.
797 798 799 800 801 802 803 804 |
# File 'lib/v20170320/models.rb', line 797 def initialize(filename=nil, createtime=nil, status=nil, filesize=nil, downloadurl=nil, errmsg=nil) @FileName = filename @CreateTime = createtime @Status = status @FileSize = filesize @DownloadUrl = downloadurl @ErrMsg = errmsg end |
Instance Attribute Details
#CreateTime ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
795 796 797 |
# File 'lib/v20170320/models.rb', line 795 def CreateTime @CreateTime end |
#DownloadUrl ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
795 796 797 |
# File 'lib/v20170320/models.rb', line 795 def DownloadUrl @DownloadUrl end |
#ErrMsg ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
795 796 797 |
# File 'lib/v20170320/models.rb', line 795 def ErrMsg @ErrMsg end |
#FileName ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
795 796 797 |
# File 'lib/v20170320/models.rb', line 795 def FileName @FileName end |
#FileSize ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
795 796 797 |
# File 'lib/v20170320/models.rb', line 795 def FileSize @FileSize end |
#Status ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
795 796 797 |
# File 'lib/v20170320/models.rb', line 795 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
806 807 808 809 810 811 812 813 |
# File 'lib/v20170320/models.rb', line 806 def deserialize(params) @FileName = params['FileName'] @CreateTime = params['CreateTime'] @Status = params['Status'] @FileSize = params['FileSize'] @DownloadUrl = params['DownloadUrl'] @ErrMsg = params['ErrMsg'] end |