class Azure::Batch::Mgmt::V2019_04_01::Models::VirtualMachineFamilyCoreQuota
A VM Family and its associated core quota for the Batch
account.
Attributes
core_quota[RW]
@return [Integer] The core quota for the VM family for the Batch
account.
name[RW]
@return [String] The Virtual Machine family name.
Public Class Methods
mapper()
click to toggle source
Mapper for VirtualMachineFamilyCoreQuota
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-04-01/generated/azure_mgmt_batch/models/virtual_machine_family_core_quota.rb, line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'VirtualMachineFamilyCoreQuota', type: { name: 'Composite', class_name: 'VirtualMachineFamilyCoreQuota', model_properties: { name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, core_quota: { client_side_validation: true, required: false, read_only: true, serialized_name: 'coreQuota', type: { name: 'Number' } } } } } end