# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------
from msrest.serialization import Model
[docs]class RecommendedMachineConfiguration(Model):
"""The properties describe the recommended machine configuration for this
Image Definition. These properties are updateable.
:param v_cp_us:
:type v_cp_us: ~azure.mgmt.compute.v2018_06_01.models.ResourceRange
:param memory:
:type memory: ~azure.mgmt.compute.v2018_06_01.models.ResourceRange
"""
_attribute_map = {
'v_cp_us': {'key': 'vCPUs', 'type': 'ResourceRange'},
'memory': {'key': 'memory', 'type': 'ResourceRange'},
}
def __init__(self, *, v_cp_us=None, memory=None, **kwargs) -> None:
super(RecommendedMachineConfiguration, self).__init__(**kwargs)
self.v_cp_us = v_cp_us
self.memory = memory