Class: TencentCloud::Dlc::V20210125::TCHouseD
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::TCHouseD
- Defined in:
- lib/v20210125/models.rb
Overview
Doris数据源详细信息
Instance Attribute Summary collapse
-
#AccessInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#DbName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#InstanceId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#InstanceName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#JdbcUrl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Location ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Password ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#User ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(instanceid = nil, instancename = nil, jdbcurl = nil, user = nil, password = nil, location = nil, dbname = nil, accessinfo = nil) ⇒ TCHouseD
constructor
A new instance of TCHouseD.
Constructor Details
#initialize(instanceid = nil, instancename = nil, jdbcurl = nil, user = nil, password = nil, location = nil, dbname = nil, accessinfo = nil) ⇒ TCHouseD
Returns a new instance of TCHouseD.
15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 |
# File 'lib/v20210125/models.rb', line 15218 def initialize(instanceid=nil, instancename=nil, jdbcurl=nil, user=nil, password=nil, location=nil, dbname=nil, accessinfo=nil) @InstanceId = instanceid @InstanceName = instancename @JdbcUrl = jdbcurl @User = user @Password = password @Location = location @DbName = dbname @AccessInfo = accessinfo end |
Instance Attribute Details
#AccessInfo ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def AccessInfo @AccessInfo end |
#DbName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def DbName @DbName end |
#InstanceId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def InstanceId @InstanceId end |
#InstanceName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def InstanceName @InstanceName end |
#JdbcUrl ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def JdbcUrl @JdbcUrl end |
#Location ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def Location @Location end |
#Password ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def Password @Password end |
#User ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
15216 15217 15218 |
# File 'lib/v20210125/models.rb', line 15216 def User @User end |
Instance Method Details
#deserialize(params) ⇒ Object
15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 |
# File 'lib/v20210125/models.rb', line 15229 def deserialize(params) @InstanceId = params['InstanceId'] @InstanceName = params['InstanceName'] @JdbcUrl = params['JdbcUrl'] @User = params['User'] @Password = params['Password'] unless params['Location'].nil? @Location = DatasourceConnectionLocation.new @Location.deserialize(params['Location']) end @DbName = params['DbName'] @AccessInfo = params['AccessInfo'] end |