Class: TencentCloud::Postgres::V20170312::Xlog
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Postgres::V20170312::Xlog
- Defined in:
- lib/v20170312/models.rb
Overview
数据库Xlog信息
Instance Attribute Summary collapse
- #EndTime ⇒ Object
- #ExternalAddr ⇒ Object
- #Id ⇒ Object
- #InternalAddr ⇒ Object
- #Size ⇒ Object
- #StartTime ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(id = nil, starttime = nil, endtime = nil, internaladdr = nil, externaladdr = nil, size = nil) ⇒ Xlog
constructor
A new instance of Xlog.
Constructor Details
#initialize(id = nil, starttime = nil, endtime = nil, internaladdr = nil, externaladdr = nil, size = nil) ⇒ Xlog
7834 7835 7836 7837 7838 7839 7840 7841 |
# File 'lib/v20170312/models.rb', line 7834 def initialize(id=nil, starttime=nil, endtime=nil, internaladdr=nil, externaladdr=nil, size=nil) @Id = id @StartTime = starttime @EndTime = endtime @InternalAddr = internaladdr @ExternalAddr = externaladdr @Size = size end |
Instance Attribute Details
#EndTime ⇒ Object
7832 7833 7834 |
# File 'lib/v20170312/models.rb', line 7832 def EndTime @EndTime end |
#ExternalAddr ⇒ Object
7832 7833 7834 |
# File 'lib/v20170312/models.rb', line 7832 def ExternalAddr @ExternalAddr end |
#Id ⇒ Object
7832 7833 7834 |
# File 'lib/v20170312/models.rb', line 7832 def Id @Id end |
#InternalAddr ⇒ Object
7832 7833 7834 |
# File 'lib/v20170312/models.rb', line 7832 def InternalAddr @InternalAddr end |
#Size ⇒ Object
7832 7833 7834 |
# File 'lib/v20170312/models.rb', line 7832 def Size @Size end |
#StartTime ⇒ Object
7832 7833 7834 |
# File 'lib/v20170312/models.rb', line 7832 def StartTime @StartTime end |
Instance Method Details
#deserialize(params) ⇒ Object
7843 7844 7845 7846 7847 7848 7849 7850 |
# File 'lib/v20170312/models.rb', line 7843 def deserialize(params) @Id = params['Id'] @StartTime = params['StartTime'] @EndTime = params['EndTime'] @InternalAddr = params['InternalAddr'] @ExternalAddr = params['ExternalAddr'] @Size = params['Size'] end |