Class: Azure::Batch::Mgmt::V2019_08_01::Models::VirtualMachineFamilyCoreQuota
- Inherits:
-
Object
- Object
- Azure::Batch::Mgmt::V2019_08_01::Models::VirtualMachineFamilyCoreQuota
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_batch/models/virtual_machine_family_core_quota.rb
Overview
A VM Family and its associated core quota for the Batch account.
Instance Attribute Summary collapse
-
#core_quota ⇒ Integer
account.
-
#name ⇒ String
The Virtual Machine family name.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for VirtualMachineFamilyCoreQuota class as Ruby Hash.
Instance Attribute Details
#core_quota ⇒ Integer
account.
20 21 22 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/virtual_machine_family_core_quota.rb', line 20 def core_quota @core_quota end |
#name ⇒ String
Returns The Virtual Machine family name.
16 17 18 |
# File 'lib/2019-08-01/generated/azure_mgmt_batch/models/virtual_machine_family_core_quota.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for VirtualMachineFamilyCoreQuota class as Ruby Hash. This will be used for serialization/deserialization.
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/2019-08-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 |