Class: TencentCloud::Cvm::V20170312::Externals

Inherits:
TencentCloud::Common::AbstractModel
  • Object
show all
Defined in:
lib/v20170312/models.rb

Overview

扩展数据

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(releaseaddress = nil, unsupportnetworks = nil, storageblockattr = nil) ⇒ Externals

Returns a new instance of Externals.



3775
3776
3777
3778
3779
# File 'lib/v20170312/models.rb', line 3775

def initialize(releaseaddress=nil, unsupportnetworks=nil, storageblockattr=nil)
  @ReleaseAddress = releaseaddress
  @UnsupportNetworks = unsupportnetworks
  @StorageBlockAttr = storageblockattr
end

Instance Attribute Details

#ReleaseAddressObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ReleaseAddress:

    释放地址

  • UnsupportNetworks:

    不支持的网络类型,取值范围:
    <li>BASIC:基础网络
    <li>VPC1.0:私有网络VPC1.0

  • StorageBlockAttr:

    HDD本地存储属性



3773
3774
3775
# File 'lib/v20170312/models.rb', line 3773

def ReleaseAddress
  @ReleaseAddress
end

#StorageBlockAttrObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ReleaseAddress:

    释放地址

  • UnsupportNetworks:

    不支持的网络类型,取值范围:
    <li>BASIC:基础网络
    <li>VPC1.0:私有网络VPC1.0

  • StorageBlockAttr:

    HDD本地存储属性



3773
3774
3775
# File 'lib/v20170312/models.rb', line 3773

def StorageBlockAttr
  @StorageBlockAttr
end

#UnsupportNetworksObject

注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • ReleaseAddress:

    释放地址

  • UnsupportNetworks:

    不支持的网络类型,取值范围:
    <li>BASIC:基础网络
    <li>VPC1.0:私有网络VPC1.0

  • StorageBlockAttr:

    HDD本地存储属性



3773
3774
3775
# File 'lib/v20170312/models.rb', line 3773

def UnsupportNetworks
  @UnsupportNetworks
end

Instance Method Details

#deserialize(params) ⇒ Object



3781
3782
3783
3784
3785
3786
3787
3788
# File 'lib/v20170312/models.rb', line 3781

def deserialize(params)
  @ReleaseAddress = params['ReleaseAddress']
  @UnsupportNetworks = params['UnsupportNetworks']
  unless params['StorageBlockAttr'].nil?
    @StorageBlockAttr = StorageBlock.new
    @StorageBlockAttr.deserialize(params['StorageBlockAttr'])
  end
end