Class: TencentCloud::Cdwch::V20200915::BackupTableContent
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdwch::V20200915::BackupTableContent
- Defined in:
- lib/v20200915/models.rb
Overview
备份表信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(database = nil, table = nil, totalbytes = nil, vcluster = nil, ips = nil) ⇒ BackupTableContent
constructor
A new instance of BackupTableContent.
Constructor Details
#initialize(database = nil, table = nil, totalbytes = nil, vcluster = nil, ips = nil) ⇒ BackupTableContent
Returns a new instance of BackupTableContent.
108 109 110 111 112 113 114 |
# File 'lib/v20200915/models.rb', line 108 def initialize(database=nil, table=nil, totalbytes=nil, vcluster=nil, ips=nil) @Database = database @Table = table @TotalBytes = totalbytes @VCluster = vcluster @Ips = ips end |
Instance Attribute Details
#Database ⇒ Object
106 107 108 |
# File 'lib/v20200915/models.rb', line 106 def Database @Database end |
#Ips ⇒ Object
106 107 108 |
# File 'lib/v20200915/models.rb', line 106 def Ips @Ips end |
#Table ⇒ Object
106 107 108 |
# File 'lib/v20200915/models.rb', line 106 def Table @Table end |
#TotalBytes ⇒ Object
106 107 108 |
# File 'lib/v20200915/models.rb', line 106 def TotalBytes @TotalBytes end |
#VCluster ⇒ Object
106 107 108 |
# File 'lib/v20200915/models.rb', line 106 def VCluster @VCluster end |
Instance Method Details
#deserialize(params) ⇒ Object
116 117 118 119 120 121 122 |
# File 'lib/v20200915/models.rb', line 116 def deserialize(params) @Database = params['Database'] @Table = params['Table'] @TotalBytes = params['TotalBytes'] @VCluster = params['VCluster'] @Ips = params['Ips'] end |