Class: TencentCloud::Keewidb::V20220308::BinlogInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Keewidb::V20220308::BinlogInfo
- Defined in:
- lib/v20220308/models.rb
Overview
实例增量备份信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(starttime = nil, endtime = nil, backupid = nil, filename = nil, filesize = nil) ⇒ BinlogInfo
constructor
A new instance of BinlogInfo.
Constructor Details
#initialize(starttime = nil, endtime = nil, backupid = nil, filename = nil, filesize = nil) ⇒ BinlogInfo
Returns a new instance of BinlogInfo.
111 112 113 114 115 116 117 |
# File 'lib/v20220308/models.rb', line 111 def initialize(starttime=nil, endtime=nil, backupid=nil, filename=nil, filesize=nil) @StartTime = starttime @EndTime = endtime @BackupId = backupid @Filename = filename @FileSize = filesize end |
Instance Attribute Details
#BackupId ⇒ Object
109 110 111 |
# File 'lib/v20220308/models.rb', line 109 def BackupId @BackupId end |
#EndTime ⇒ Object
109 110 111 |
# File 'lib/v20220308/models.rb', line 109 def EndTime @EndTime end |
#Filename ⇒ Object
109 110 111 |
# File 'lib/v20220308/models.rb', line 109 def Filename @Filename end |
#FileSize ⇒ Object
109 110 111 |
# File 'lib/v20220308/models.rb', line 109 def FileSize @FileSize end |
#StartTime ⇒ Object
109 110 111 |
# File 'lib/v20220308/models.rb', line 109 def StartTime @StartTime end |
Instance Method Details
#deserialize(params) ⇒ Object
119 120 121 122 123 124 125 |
# File 'lib/v20220308/models.rb', line 119 def deserialize(params) @StartTime = params['StartTime'] @EndTime = params['EndTime'] @BackupId = params['BackupId'] @Filename = params['Filename'] @FileSize = params['FileSize'] end |