Class: TencentCloud::Tccatalog::V20241024::TccConnection
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tccatalog::V20241024::TccConnection
- Defined in:
- lib/v20241024/models.rb
Overview
Tcc数据目录连接配置
Instance Attribute Summary collapse
- #EndpointServiceId ⇒ Object
- #HiveVersion ⇒ Object
- #HmsEndpointServiceId ⇒ Object
- #Location ⇒ Object
- #MetaStoreUrl ⇒ Object
- #NetWork ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(endpointserviceid = nil, metastoreurl = nil, network = nil, hiveversion = nil, location = nil, hmsendpointserviceid = nil) ⇒ TccConnection
constructor
A new instance of TccConnection.
Constructor Details
#initialize(endpointserviceid = nil, metastoreurl = nil, network = nil, hiveversion = nil, location = nil, hmsendpointserviceid = nil) ⇒ TccConnection
Returns a new instance of TccConnection.
346 347 348 349 350 351 352 353 |
# File 'lib/v20241024/models.rb', line 346 def initialize(endpointserviceid=nil, =nil, network=nil, hiveversion=nil, location=nil, hmsendpointserviceid=nil) @EndpointServiceId = endpointserviceid @MetaStoreUrl = @NetWork = network @HiveVersion = hiveversion @Location = location @HmsEndpointServiceId = hmsendpointserviceid end |
Instance Attribute Details
#EndpointServiceId ⇒ Object
344 345 346 |
# File 'lib/v20241024/models.rb', line 344 def EndpointServiceId @EndpointServiceId end |
#HiveVersion ⇒ Object
344 345 346 |
# File 'lib/v20241024/models.rb', line 344 def HiveVersion @HiveVersion end |
#HmsEndpointServiceId ⇒ Object
344 345 346 |
# File 'lib/v20241024/models.rb', line 344 def HmsEndpointServiceId @HmsEndpointServiceId end |
#Location ⇒ Object
344 345 346 |
# File 'lib/v20241024/models.rb', line 344 def Location @Location end |
#MetaStoreUrl ⇒ Object
344 345 346 |
# File 'lib/v20241024/models.rb', line 344 def MetaStoreUrl @MetaStoreUrl end |
#NetWork ⇒ Object
344 345 346 |
# File 'lib/v20241024/models.rb', line 344 def NetWork @NetWork end |
Instance Method Details
#deserialize(params) ⇒ Object
355 356 357 358 359 360 361 362 363 364 365 |
# File 'lib/v20241024/models.rb', line 355 def deserialize(params) @EndpointServiceId = params['EndpointServiceId'] @MetaStoreUrl = params['MetaStoreUrl'] unless params['NetWork'].nil? @NetWork = NetWork.new @NetWork.deserialize(params['NetWork']) end @HiveVersion = params['HiveVersion'] @Location = params['Location'] @HmsEndpointServiceId = params['HmsEndpointServiceId'] end |