Class: TencentCloud::Tcr::V20190924::CreateImageAccelerationServiceRequest

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

Overview

CreateImageAccelerationService请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(registryid = nil, vpcid = nil, subnetid = nil, storagetype = nil, pgroupid = nil, zone = nil, tagspecification = nil) ⇒ CreateImageAccelerationServiceRequest

Returns a new instance of CreateImageAccelerationServiceRequest.



401
402
403
404
405
406
407
408
409
# File 'lib/v20190924/models.rb', line 401

def initialize(registryid=nil, vpcid=nil, subnetid=nil, storagetype=nil, pgroupid=nil, zone=nil, tagspecification=nil)
  @RegistryId = registryid
  @VpcId = vpcid
  @SubnetId = subnetid
  @StorageType = storagetype
  @PGroupId = pgroupid
  @Zone = zone
  @TagSpecification = tagspecification
end

Instance Attribute Details

#PGroupId ⇒ Object

Parameters:

  • RegistryId: —

    实例Id

  • VpcId: —

    创建CFS的归属的VPCID

  • SubnetId: —

    创建CFS的归属的子网ID

  • StorageType: —

    创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。

  • PGroupId: —

    权限组 ID

  • Zone: —

    可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表

  • TagSpecification: —

    云标签描述



399
400
401
# File 'lib/v20190924/models.rb', line 399

def PGroupId
  @PGroupId
end

#RegistryId ⇒ Object

Parameters:

  • RegistryId: —

    实例Id

  • VpcId: —

    创建CFS的归属的VPCID

  • SubnetId: —

    创建CFS的归属的子网ID

  • StorageType: —

    创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。

  • PGroupId: —

    权限组 ID

  • Zone: —

    可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表

  • TagSpecification: —

    云标签描述



399
400
401
# File 'lib/v20190924/models.rb', line 399

def RegistryId
  @RegistryId
end

#StorageType ⇒ Object

Parameters:

  • RegistryId: —

    实例Id

  • VpcId: —

    创建CFS的归属的VPCID

  • SubnetId: —

    创建CFS的归属的子网ID

  • StorageType: —

    创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。

  • PGroupId: —

    权限组 ID

  • Zone: —

    可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表

  • TagSpecification: —

    云标签描述



399
400
401
# File 'lib/v20190924/models.rb', line 399

def StorageType
  @StorageType
end

#SubnetId ⇒ Object

Parameters:

  • RegistryId: —

    实例Id

  • VpcId: —

    创建CFS的归属的VPCID

  • SubnetId: —

    创建CFS的归属的子网ID

  • StorageType: —

    创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。

  • PGroupId: —

    权限组 ID

  • Zone: —

    可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表

  • TagSpecification: —

    云标签描述



399
400
401
# File 'lib/v20190924/models.rb', line 399

def SubnetId
  @SubnetId
end

#TagSpecification ⇒ Object

Parameters:

  • RegistryId: —

    实例Id

  • VpcId: —

    创建CFS的归属的VPCID

  • SubnetId: —

    创建CFS的归属的子网ID

  • StorageType: —

    创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。

  • PGroupId: —

    权限组 ID

  • Zone: —

    可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表

  • TagSpecification: —

    云标签描述



399
400
401
# File 'lib/v20190924/models.rb', line 399

def TagSpecification
  @TagSpecification
end

#VpcId ⇒ Object

Parameters:

  • RegistryId: —

    实例Id

  • VpcId: —

    创建CFS的归属的VPCID

  • SubnetId: —

    创建CFS的归属的子网ID

  • StorageType: —

    创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。

  • PGroupId: —

    权限组 ID

  • Zone: —

    可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表

  • TagSpecification: —

    云标签描述



399
400
401
# File 'lib/v20190924/models.rb', line 399

def VpcId
  @VpcId
end

#Zone ⇒ Object

Parameters:

  • RegistryId: —

    实例Id

  • VpcId: —

    创建CFS的归属的VPCID

  • SubnetId: —

    创建CFS的归属的子网ID

  • StorageType: —

    创建CFS的存储类型,其中 SD 为标准型存储, HP为性能存储。

  • PGroupId: —

    权限组 ID

  • Zone: —

    可用区名称,例如ap-beijing-1,请参考 概览 文档中的地域与可用区列表

  • TagSpecification: —

    云标签描述



399
400
401
# File 'lib/v20190924/models.rb', line 399

def Zone
  @Zone
end

Instance Method Details

#deserialize(params) ⇒ Object



411
412
413
414
415
416
417
418
419
420
421
422
# File 'lib/v20190924/models.rb', line 411

def deserialize(params)
  @RegistryId = params['RegistryId']
  @VpcId = params['VpcId']
  @SubnetId = params['SubnetId']
  @StorageType = params['StorageType']
  @PGroupId = params['PGroupId']
  @Zone = params['Zone']
  unless params['TagSpecification'].nil?
    @TagSpecification = TagSpecification.new
    @TagSpecification.deserialize(params['TagSpecification'])
  end
end