Class: TencentCloud::Dlc::V20210125::CreateCHDFSBindingProductRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::CreateCHDFSBindingProductRequest
- Defined in:
- lib/v20210125/models.rb
Overview
CreateCHDFSBindingProduct请求参数结构体
Instance Attribute Summary collapse
- #BucketType ⇒ Object
- #EngineName ⇒ Object
- #MountPoint ⇒ Object
- #ProductName ⇒ Object
- #VpcInfo ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(mountpoint = nil, buckettype = nil, productname = nil, enginename = nil, vpcinfo = nil) ⇒ CreateCHDFSBindingProductRequest
constructor
A new instance of CreateCHDFSBindingProductRequest.
Constructor Details
#initialize(mountpoint = nil, buckettype = nil, productname = nil, enginename = nil, vpcinfo = nil) ⇒ CreateCHDFSBindingProductRequest
1604 1605 1606 1607 1608 1609 1610 |
# File 'lib/v20210125/models.rb', line 1604 def initialize(mountpoint=nil, buckettype=nil, productname=nil, enginename=nil, vpcinfo=nil) @MountPoint = mountpoint @BucketType = buckettype @ProductName = productname @EngineName = enginename @VpcInfo = vpcinfo end |
Instance Attribute Details
#BucketType ⇒ Object
1602 1603 1604 |
# File 'lib/v20210125/models.rb', line 1602 def BucketType @BucketType end |
#EngineName ⇒ Object
1602 1603 1604 |
# File 'lib/v20210125/models.rb', line 1602 def EngineName @EngineName end |
#MountPoint ⇒ Object
1602 1603 1604 |
# File 'lib/v20210125/models.rb', line 1602 def MountPoint @MountPoint end |
#ProductName ⇒ Object
1602 1603 1604 |
# File 'lib/v20210125/models.rb', line 1602 def ProductName @ProductName end |
#VpcInfo ⇒ Object
1602 1603 1604 |
# File 'lib/v20210125/models.rb', line 1602 def VpcInfo @VpcInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 |
# File 'lib/v20210125/models.rb', line 1612 def deserialize(params) @MountPoint = params['MountPoint'] @BucketType = params['BucketType'] @ProductName = params['ProductName'] @EngineName = params['EngineName'] unless params['VpcInfo'].nil? @VpcInfo = [] params['VpcInfo'].each do |i| vpcinfo_tmp = VpcInfo.new vpcinfo_tmp.deserialize(i) @VpcInfo << vpcinfo_tmp end end end |