Class: TencentCloud::Dlc::V20210125::DMSTableInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::DMSTableInfo
- Defined in:
- lib/v20210125/models.rb
Overview
DMSTable信息
Instance Attribute Summary collapse
-
#Asset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Table ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(table = nil, asset = nil) ⇒ DMSTableInfo
constructor
A new instance of DMSTableInfo.
Constructor Details
#initialize(table = nil, asset = nil) ⇒ DMSTableInfo
Returns a new instance of DMSTableInfo.
4194 4195 4196 4197 |
# File 'lib/v20210125/models.rb', line 4194 def initialize(table=nil, asset=nil) @Table = table @Asset = asset end |
Instance Attribute Details
#Asset ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
4192 4193 4194 |
# File 'lib/v20210125/models.rb', line 4192 def Asset @Asset end |
#Table ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。注意:此字段可能返回 null,表示取不到有效值。
4192 4193 4194 |
# File 'lib/v20210125/models.rb', line 4192 def Table @Table end |
Instance Method Details
#deserialize(params) ⇒ Object
4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 |
# File 'lib/v20210125/models.rb', line 4199 def deserialize(params) unless params['Table'].nil? @Table = DMSTable.new @Table.deserialize(params['Table']) end unless params['Asset'].nil? @Asset = Asset.new @Asset.deserialize(params['Asset']) end end |