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.
789 790 791 792 793 794 795 796 |
# File 'lib/v20170320/models.rb', line 789 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” - 已生成;
787 788 789 |
# File 'lib/v20170320/models.rb', line 787 def CreateTime @CreateTime end |
#DownloadUrl ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
787 788 789 |
# File 'lib/v20170320/models.rb', line 787 def DownloadUrl @DownloadUrl end |
#ErrMsg ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
787 788 789 |
# File 'lib/v20170320/models.rb', line 787 def ErrMsg @ErrMsg end |
#FileName ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
787 788 789 |
# File 'lib/v20170320/models.rb', line 787 def FileName @FileName end |
#FileSize ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
787 788 789 |
# File 'lib/v20170320/models.rb', line 787 def FileSize @FileSize end |
#Status ⇒ Object
“creating” - 生成中; “failed” - 创建失败; “success” - 已生成;
787 788 789 |
# File 'lib/v20170320/models.rb', line 787 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
798 799 800 801 802 803 804 805 |
# File 'lib/v20170320/models.rb', line 798 def deserialize(params) @FileName = params['FileName'] @CreateTime = params['CreateTime'] @Status = params['Status'] @FileSize = params['FileSize'] @DownloadUrl = params['DownloadUrl'] @ErrMsg = params['ErrMsg'] end |